.ev-footer,
.create_rom_footer {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: center;
    flex-direction: column
}

.ev-footer__logo svg {
    display: flex;
    width: 30px;
    height: 30px
}

.ev-footer__logo a {
    text-decoration: none;
    font-size: 14px;
    font-family: inherit
}

.ev-footer__link {
    display: flex;
    text-decoration: underline
}

.ev-footer__link:hover {
    text-decoration: none
}

:active,
:focus,
:hover,
:visited,
a,
a:active,
a:focus,
a:hover,
a:visited {
    outline: 0 !important
}

::-moz-focus-inner {
    border: 0;
    outline: 0
}

.order-modal,
.users-online {
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 120px;
    width: 320px;
    background-color: rgba(0, 0, 0, .9);
    color: #fff;
    transition: all 1s;
    font-size: 19px;
    line-height: 22px;
    border-radius: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden
}

.order-modal>div,
.users-online>div {
    margin: 10px
}

.order-modal>div>span,
.users-online>div>span {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 75px);
    margin-left: 10px
}

.show-order,
.show-order-last {
    opacity: 1;
    visibility: visible;
    transition: all 1s
}

.blink {
    color: red !important;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    text-decoration: line-through
}

.blink_me {
    font-size: 24px;
    color: red;
    font-weight: 700
}

.show-order-last:before,
.show-order:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.show-order-last:after,
.show-order-last:before,
.show-order:after,
.show-order:before {
    content: "";
    position: absolute;
    right: 0;
    top: -15px;
    width: 15px;
    height: 5px;
    background: red;
    transition: all 1s
}

.show-order-last:after,
.show-order:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

@media screen and (max-width:767px) {

    .cookie-popup-on .order-modal,
    .cookie-popup-on .users-online {
        top: auto;
        right: 10px;
        bottom: 35px;
        width: 300px
    }
}

@media screen and (max-width:405px) {

    .cookie-popup-on .order-modal,
    .cookie-popup-on .users-online {
        bottom: 45px
    }
}

@media screen and (max-width:335px) {

    .cookie-popup-on .order-modal,
    .cookie-popup-on .users-online {
        bottom: 60px
    }
}

@media screen and (max-width:767px) {

    .order-modal,
    .users-online {
        top: auto;
        right: 10px;
        bottom: 10px;
        width: 300px
    }
}

@-moz-keyframes blinker {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes blinker {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}