.timer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #b8433f;
    text-align: center;
    color: #ffffff;

    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    z-index: 1000;
}

@media (max-width: 500px) {
    .timer {
        max-width: 100%;
        padding: 10px 0;
    }
}

.timer--show {
    opacity: 1;
    pointer-events: auto;
}

.timer span {
    font-size: 22px;
    color: #ffffff;
}

.count {
    white-space: nowrap;
    margin: 0 10px;
}

.alert {
    box-shadow: 1px 1px 5px 2px #000;
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 5px;
    max-width: 450px;
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    transition: opacity .3s;
    opacity: 0;
    border-radius: 10px;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

.alert--show {
    opacity: 1;
    pointer-events: auto;
}

.alert__img {
    max-height: 50px;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
}




/*COMMENTS STYLES*/

.like,
.reply {
    color: #365899;
    font-size: 13px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.like:hover,
.reply:hover {
    text-decoration: underline
}

.like:after,
.reply:after {
    content: " · ";
    position: absolute;
    font-weight: 700;
    right: -10px;
    top: 0;
    color: #90949c
}

* {
    outline: 0
}

.com_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.img_me {
    width: 48px;
    margin-right: 8px;
}

.img_me img {
    /*max-width: 50px;*/
    width: 48px;
    max-width: 48px;
}

.me_name {
    color: #365899;
    text-decoration: none;
    font-weight: 700;
}

.me_sub-text {
    display: flex;
    align-items: center;
}

.like_img svg {
    color: #365899;
    height: 12px;
    margin-right: 5px;
    margin-left: 2px;
}

.me_sub-text {
    font-size: 12px;
    color: #90949c;
}

.me_sub-text a {
    font-size: 12px;
    font-weight: normal;
}

.data-text {
    margin-left: 3px;
}

.like-text {
    margin-right: 3px;
}

.reply {
    margin-left: 3px;
}

.answer_com {
    margin-left: 50px;
}

.fa-heart {
    color: white;
    width: 12px !important;
}

.answer_com {
    border-left: 1px dotted lightgray;
    padding-left: 5px;
}

button.create-com-btn {
    cursor: pointer;
    border: 1px solid;
    border-radius: 2px;
    box-sizing: content-box;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
    padding: 0 8px;
    position: relative;
    text-align: center;
    text-shadow: none;
    vertical-align: middle;
    color: #fff;
    line-height: 22px;
    font-size: 14px;
    white-space: normal;
    background-color: #4c80cd;
    border-color: #9cb4d8;
}

.left-create {
    max-width: 50px;
}

.create_com {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.left-btn-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.left-create img {
    padding: 0;
}

.left-create {
    margin-right: 7px;
}

textarea._1cb._1u9t {
    font-size: 14px;
    padding: 12px 8px;
    border: 1px solid #d3d6db;
    word-wrap: break-word;
    width: 100%;
}

.rigth-create {
    width: 100%;
}

.rigth-create {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.create-btn-sec {
    background: #f6f7f9;
    text-align: right;
    padding: 8px;
    width: 100%;
}

.create-btn-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #90949c;
}

.comment-img {
    display: block;
    margin-bottom: 6px;
}

.me_com {
    margin-bottom: 10px;
}

.link__main {
    display: block;
    margin: 40px auto;
    padding: 20px;
    font-size: 20px;
    background-color: #de0606;
    text-align: center;
    color: #fff !important;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none !important;
    animation: 1s pulse infinite alternate ease-in-out;
}


.me_comments .me_name, .me_comments .me_text {
    font-size: 14px;
}

.create_com input {
    font-size: 14px;
    padding: 4px 8px;
    border: 1px solid #d3d6db;
    width: 100%;
    margin-bottom: 8px;
}

.create_com input, .create_com textarea {
    box-sizing: border-box;
}
.submit-roulette {
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 15px 0;
    outline: 0;
    border: none;
    margin-top: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 3px #242120;
    box-shadow: 0 4px 3px #242120;
    background: red;
    color: #fff;
    font-weight: 700;
    -webkit-transition: background .3s;
    transition: background .3s
}

.submit-roulette:hover {
    background: #b00;
    -webkit-transition: background .3s;
    transition: background .3s
}

.submit-roulette:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none
}

input[value="Получить бесплатно"] {
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 15px 0;
    outline: 0;
    border: none;
    margin-top: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 3px #242120;
    box-shadow: 0 4px 3px #242120;
    background: red;
    color: #fff;
    font-weight: 700;
    -webkit-transition: background .3s;
    transition: background .3s
}

input[value="Получить бесплатно"]:hover {
    background: #b00 !important;
    -webkit-transition: background .3s;
    transition: background .3s
}

input[value="Получить бесплатно"]:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.input-roulette {
    padding-left: 5px;
    height: 42px;
    margin-bottom: 10px;

}

input[placeholder="Ваш телефон"], input[placeholder="Ваше имя"] {
    padding-left: 5px;
    height: 42px;
    margin-bottom: 10px
}

.ruletka-p {
    text-indent: 0;
    color: #000;
    text-align: center;
    margin: 15px;
    line-height: 25px;
    font-weight: 700
}

.ruletka-p h2 {
    font-size: 25px;
    margin-bottom: 15px
}

.ruletka-a {
    color: #1697ce
}

.spin-wrapper {
    -webkit-box-shadow: 0 0 10px;
    box-shadow: 0 0 10px;
    border: 3px solid red;
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 20px
}

.spin-wrapper .ruletka-p {
    margin-bottom: 15px
}

.danger-text {
    color: red;
    font-weight: 700
}

.wheel {
    width: 380px !important;
    margin: 0 auto;
    position: relative
}

.wheel img {
    max-width: 100%;
    margin-bottom: 0
}

.wheel-img {
    -webkit-transition: 4s;
    transition: 4s
}

.wheel-cursor {
    position: absolute;
    width: 35% !important;
    height: 35%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.cursor-text {
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 50% !important;
    height: 50%;
    font: 11px Arial !important;
    line-height: 61px !important;
    cursor: pointer;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    background-color: #ccc;
    border: 1px solid #ccc;
    top: 50%;
    left: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    background: #fff
}

.order_block {
    display: none;
    text-align: center !important
}

.order_block img {
    width: 100%;
}

.order_block h3 {
    font: 700 18px Arial !important;
    background: 0 0
}
.lt63,.lt64{
    color:black;
}

.btn-order {
    border-radius: 10px;
    border: 1px solid #ff0000;
    -webkit-box-shadow: inset -30px -30px 75px -10px #ff0000;
    box-shadow: inset -30px -30px 75px -10px #ff0000;
    outline: 1px solid;
    outline-color: #ff0000;
    outline-offset: 0px;
    text-shadow: none;
    -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 22px;
}
.btn-order:hover {
    border: 1px solid;
    -webkit-box-shadow: inset 0 0 60px rgb(255, 0, 0), 0 0 15px rgba(255, 0, 0, 0.8);
    box-shadow: inset 0 0 60px rgb(255, 0, 0), 0 0 15px rgba(255, 0, 0, 0.8);
    outline-color: rgba(255, 0, 0, 0);
    outline-offset: 15px;
    text-shadow: 1px 1px 2px #427388;
}
.btn-order a{
    text-decoration: none;
    color: white;
}
.btn-order a:hover{
    color: white;
    text-decoration: none;
}
.btn-order a:visited{
    color: white;
}
@media (max-width: 800px){
    .btn-order{
        margin:0;
    }
}
@media (max-width: 600px){
    .btn-order{
        height: 60px;
    }
}

#apilead_form, #drcash_form, #everad_form, #hp_form, #leadtrade_form, #luckyshop_form, #omni_form, #p_omni_form, #profit_form2, #rocket_form, #shakes_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: proxima nova, Arial, helvetica neue, sans-serif
}

.time_remains {
    font-size: 1.1em;
    color: red;
    font-weight: 700
}

.spin-result-wrapper {
    display: none;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    top: 0;
    z-index: 999;
    left: 0;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, .6);
    text-align: center
}

.pop-up-window {
    position: relative;
    max-width: 400px;
    right: 0;
    left: 0;
    top: 20%;
    margin: 0 auto;
    background: #fff none repeat scroll 0 0;
    text-align: center;
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 20px;
    border-radius: 10px;
    -webkit-animation: .7s ease 0s normal none 1 running pop-up-appear;
    animation: .7s ease 0s normal none 1 running pop-up-appear
}

.close-popup {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../images/cross.svg);
    background-size: 100%;
    top: -40px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
    right: -40px;
    cursor: pointer
}

.pop-up-heading {
    font-size: 40px;
    margin-bottom: 20px
}

.pop-up-text {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 30px;
    text-align: center !important
}

.pop-up-button {
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 10px 20%;
    font-size: 20px;
    border-radius: 5px;
    background-color: #71c341;
    color: #fff !important;
    border: medium;
    cursor: pointer;
    outline: medium
}

.super-rotation {
    -webkit-animation-name: super-rotation;
    animation-name: super-rotation;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

@-webkit-keyframes super-rotation {
    70% {
        -webkit-transform: rotate(1783deg);
        transform: rotate(1783deg)
    }
    100% {
        -webkit-transform: rotate(1774deg);
        transform: rotate(1774deg)
    }
}

@keyframes super-rotation {
    70% {
        -webkit-transform: rotate(1783deg);
        transform: rotate(1783deg)
    }
    100% {
        -webkit-transform: rotate(1774deg);
        transform: rotate(1774deg)
    }
}

.cursor-text:active {
    -webkit-box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset;
    box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset
}

.pop-up-layer {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, .7) !important;
    z-index: 99 !important
}

.pop-up-layer-show {
    display: block
}

.pop-up-window {
    position: relative;
    max-width: 400px;
    right: 0;
    left: 0;
    top: 40%;
    margin: 0 auto;
    background: #fff none repeat scroll 0 0;
    text-align: center;
    padding: 10px;
    padding-top: 70px;
    padding-bottom: 20px;
    border-radius: 10px;
    -webkit-animation: .7s ease 0s normal none 1 running pop-up-appear;
    animation: .7s ease 0s normal none 1 running pop-up-appear
}

.pop-up-window::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    top: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #71c341;
    border-radius: 50%;
    -webkit-animation: .5s ease .6s normal backwards 1 running pop-up-appear-before;
    animation: .5s ease .6s normal backwards 1 running pop-up-appear-before
}

.pop-up-window::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-width: medium medium 4px 4px;
    border-style: none none solid solid;
    border-color: currentcolor currentcolor #fff #fff;
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -o-border-image: none;
    border-image: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
    -webkit-animation: .5s ease .6s normal backwards 1 running pop-up-appear-after;
    animation: .5s ease .6s normal backwards 1 running pop-up-appear-after
}

@-webkit-keyframes pop-up-appear {
    0% {
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    30% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes pop-up-appear {
    0% {
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    30% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes pop-up-appear-before {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pop-up-appear-before {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes pop-up-appear-after {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes pop-up-appear-after {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.pop-up-button:hover {
    color: #fff !important;
    text-decoration: none !important
}

.best-form {
    font: 16px/1.2 "Roboto Condensed", sans-serif;
    padding: 1rem;
    padding-bottom: 40px;
    background-color: #ddff89;
    background-size: cover;
    margin-left: -10px;
    margin-right: -10px
}

.product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.product .left {
    width: 50%;
    margin-bottom: 15px;
}

.product .right {
    width: 50%;
    text-align: center
}

.product .discount {
    background-image: -webkit-gradient(linear, left top, right top, from(#ff0), to(#ffeb3b));
    background-image: linear-gradient(to right, #ff0, #ffeb3b);
    color: red;
    border-radius: 10px;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    width: 85%;
    height: 5rem;
    line-height: 5rem;
    letter-spacing: -3px;
    margin-top: -.3rem
}

.product .discount div {
    -webkit-transform: skew(15deg);
    transform: skew(15deg)
}

.product .price {
    color: #ed1b24;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1
}

.product .discount-text {
    margin-top: 1rem;
    color: #000;
    font-size: 18px
}

.product .price span {
    font-weight: 300;
    font-size: 50%;
    margin-left: 5px
}

.product .price-old {
    line-height: 1
}

.product .price-old span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 3rem;
    color: #000;
    position: relative
}

.product .price-old span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 5px solid #ed1b24;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
}

.country-input,
.name-input,
.phone-input {
    color: #000;
    background: #fff;
    border: 0;
    width: 90%;
    margin: 0 auto;
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 20px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out
}

.name-input input,
.phone-input input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: 0;
    font: inherit;
    color: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 0;
    padding: 5px 10px;

    border-radius: 6px;
    line-height: 2.5;
    background: #fff!important
}

.button-submit:focus,
.name-input:focus-within,
.phone-input:focus-within {
    outline: 0;
    -webkit-box-shadow: 0 0 0 4px #bdab3c;
    box-shadow: 0 0 0 4px #bdab3c
}

.name-input:focus-within input,
.phone-input:focus-within input {
    outline: 0
}

.name-input .country {
    border-radius: 3px;
    vertical-align: -2px;
    margin: 0;
    width: auto
}

.name-input label,
.phone-input label {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;

    width: 40px;
    font-weight: bold
}

.button-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box!important;
    box-sizing: border-box!important;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    border-radius: 6px;
    border: 0;
    padding: 14px 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#137c09), to(#16ac0c));
    background-image: linear-gradient(to top, #137c09, #16ac0c);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    cursor: pointer
}

.button-submit-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.button-submit-arrow {
    width: 0;
    height: 0;
    border-top: .6rem solid transparent;
    border-bottom: .6rem solid transparent;
    border-left: 1rem solid #fff;
    margin-right: 1rem
}

.form-title {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    margin-top: 0
}

::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

::placeholder {
    color: #000;
    opacity: 1;
}

.best-form>.wrap {
    width: 600px;
    max-width: 100%;
    margin: 0 auto
}

.countdown-block {
    margin-top: 0;
    text-align: center;
    background: #ed1b24;
    color: #fff;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px
}

.countdown-block>h3 {
    font-weight: 800;
    font-size: 34px;
    padding-top: 10px;
    margin: 0;
    padding-bottom: 0
}


@media all and (max-width: 520px) {
    .wheel {
        width: 280px !important
    }

    .cursor-text {
        line-height: 45px !important;
        font-size: 12px !important
    }

    .close-popup {
        right: 0
    }
}

@media screen and (max-width: 345px) {
    .wheel {
        width: 250px !important
    }

    .cursor-text {
        line-height: 43px !important;
        font-size: 10px !important
    }
}
.cursor-text {
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 45% !important;
    height: 45%;
    font: 16px Arial !important;
    line-height: 61px !important;
    cursor: pointer;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    background-color: #ccc;
    border: 1px solid #ccc;
    top: 49%;
    left: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    background: #fff
}
.cursor-text:active {
    -webkit-box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset;
    box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset
}
@media all and (max-width: 520px) {
    .wheel {
        width: 280px !important
    }

    .cursor-text {
        line-height: 45px !important;
        font-size: 12px !important
    }

    .close-popup {
        right: 0
    }
}
@media screen and (max-width: 345px) {
    .wheel {
        width: 228px !important
    }

    .cursor-text {
        line-height: 40px !important;
        font-size: 11px !important
    }

    .order_block img {
        width: 100%
    }
}


.order_block {

    font-family: 'Arial', sans-serif;
}
.prod_img_wrapper {
    max-width: 300px;
    margin: 15px auto;
    position: relative;
    text-align: center;
}
.prod_img {
    width: 100%;
    max-width: 190px;
}
.priceСЃ {
    position: absolute;
    font-family: 'Arial', sans-serif;
    right: 0;
    bottom: 0;

    color:#000;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 3px 30px;
    width: 165px;
    height: 98px;
    text-align: center !important;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.3;
    transform: rotateZ(-7deg);
    margin: -0px auto 0px;
    background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    border-radius: 19%;
}
span.discountСЃ {
    display: block;
    margin-top: 9px;
    font-size: 18px;
}
.price_main {
    font-size: 24px;
    line-height: 15px;
    margin: 10px auto;
    display: block;
}
.js_old_price {
    display: block;
    margin: 0 auto;
}
.wheel_input {
    padding: 10px !important;
    display: block !important;
    margin: 0 auto 20px!important;
    padding: 10px !important;
    width: 50%;
    border: 2px solid grey !important;
    border-radius: 5px !important;
}
.data_label {
    line-height: 30px;
    display: block;
    text-align: center;
}
.country_select {
    display: none!important;
    width: 52%!important;
}

.order_form {
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
}
@media screen and (max-width: 480px) {
    .wheel_input {
        width: 90%;
    }
    .country_select {
        width: 96%!important;

    }
}
.main-link {
    display: block;
    margin: 20px auto ;
    padding: 20px;
    font-size: 20px;
    text-decoration: none;
    background-color: #de0606;
    text-align: center;
    color: #fff!important;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.main-link:hover {
    opacity: 0.8;
}

.time_remains_title {
    padding-top: 15px;
    text-align: center;
    font-size: 22px;
}

.js-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    width: 54.5%;
}

@media (max-width: 480px) {
    .js-select {
        width: 95%;
    }
}
figure,
figcaption {
	display: block
}

.transition {
	-webkit-transition: top 400ms linear;
	-moz-transition: top 400ms linear;
	-ms-transition: top 400ms linear;
	-o-transition: top 400ms linear;
	transition: top 400ms linear
}

.timeTo {
	font-family: Tahoma, Verdana, Aial, sans-serif;
	font-size: 28px!important;
	line-height: 108%;
	font-weight: 700;
	height: 32px
}

.timeTo div ul li {
	font-size: 28px!important
}

.timeTo span {
	vertical-align: top
}

.timeTo.timeTo-white div {
	color: #f00;
	background: #fff;
	background: -moz-linear-gradient(top, #ffffff 38%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(38%, #ffffff), color-stop(100%, #cccccc));
	background: -webkit-linear-gradient(top, #ffffff 38%, #cccccc 100%);
	background: -o-linear-gradient(top, #ffffff 38%, #cccccc 100%);
	background: -ms-linear-gradient(top, #ffffff 38%, #cccccc 100%);
	background: linear-gradient(to bottom, #ffffff 38%, #cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc', GradientType=0)
}

.timeTo.timeTo-black div {
	color: #fff;
	background: #45484d;
	background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #45484d), color-stop(100%, #000000));
	background: -webkit-linear-gradient(top, #45484d 0%, #000000 100%);
	background: -o-linear-gradient(top, #45484d 0%, #000000 100%);
	background: -ms-linear-gradient(top, #45484d 0%, #000000 100%);
	background: linear-gradient(to bottom, #45484d 0%, #000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000', GradientType=0)
}

.timeTo.timeTo-black .timeTo-alert {
	background: #a74444;
	background: -moz-linear-gradient(top, #a74444 0%, #3f0000 67%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a74444), color-stop(67%, #3f0000));
	background: -webkit-linear-gradient(top, #a74444 0%, #3f0000 67%);
	background: -o-linear-gradient(top, #a74444 0%, #3f0000 67%);
	background: -ms-linear-gradient(top, #a74444 0%, #3f0000 67%);
	background: linear-gradient(to bottom, #a74444 0%, #3f0000 67%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a74444', endColorstr='#3f0000', GradientType=0)
}

.timeTo.timeTo-white .timeTo-alert {
	background: #fff;
	background: -moz-linear-gradient(top, #ffffff 35%, #e17373 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, #ffffff), color-stop(100%, #e17373));
	background: -webkit-linear-gradient(top, #ffffff 35%, #e17373 100%);
	background: -o-linear-gradient(top, #ffffff 35%, #e17373 100%);
	background: -ms-linear-gradient(top, #ffffff 35%, #e17373 100%);
	background: linear-gradient(to bottom, #ffffff 35%, #e17373 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e17373', GradientType=0)
}

.timeTo figure {
	display: inline-block;
	margin: 0;
	padding: 0
}

.timeTo figcaption {
	text-align: center;
	line-height: 80%;
	font-weight: 400;
	color: #888
}

.timeTo div {
	position: relative;
	display: inline-block;
	width: 25px;
	height: 30px;
	border-top: 1px solid silver;
	border-right: 1px solid silver;
	border-bottom: 1px solid silver;
	border-left: 1px solid silver;
	overflow: hidden
}

.timeTo div {
	margin-left: -10px;
}

.timeTo div:first-child {
	margin-left: 0px;
}

.timeTo ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 3px;
	line-height: 1!important
}

.timeTo ul li {
	margin: 0;
	padding: 0;
	list-style: none
}

.popups {
	position: fixed;
	z-index: 11111;
	top: 0;
	right: 0;
	color: black;
	left: 0;
}

.buy-pop,
.count-pop,
.pop-center {
	display: none
}

.popup {
	margin: 0 auto;
	background: linear-gradient(#da0000, #a00303);
	padding: 10px;
	text-align: center;
	position: relative;
	font-family: Roboto;
	box-shadow: 0 0 6px black;
}

.popup p {
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #ffffff;
}

.cls-pop {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 20px;
	height: 20px;
	opacity: 0.7;
	cursor: pointer;
}

.cls-pop:hover {
	opacity: 1;
}

.cls-pop:before,
.cls-pop:after {
	position: absolute;
	top: 2px;
	left: 8px;
	content: ' ';
	height: 16px;
	width: 4px;
	background-color: #fff;
}

.cls-pop:before {
	transform: rotate(45deg);
}

.cls-pop:after {
	transform: rotate(-45deg);
}

.pop-name,
.pop-city,
.pop-prod,
.pop-count {
	color: #feffb9;
	font-weight: bold;
}

.pop-center{
	width:100%;
	min-height:100%;
	background-color: rgba(0,0,0,0.8);
	overflow:hidden;
	position:fixed;
	top:0px;
	z-index: 11111;
}

.pop-center .pop-center-content{
	margin:40px auto 0px auto;
	width:300px;
	padding:10px;
	background-color: #f1f1f1;
	border-radius:5px;
	box-shadow: 0px 0px 10px #000;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -50%);
}
.pop-center .cls-pop {
	right: -10px;
	top: -10px;
	background: #000000;
	border-radius: 50%;
}
.ac_footer {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 50px 0;
    color: #A12000;
}

.ac_footer a {
    color: #A12000;
}

.ac_footer p {
    text-align: center;
}

img[height="1"],
img[width="1"] {
    display: none !important;
}
* {
    margin: 0px;
    padding: 0px;
  }
  
  body {
    background: url('../images/background.png') repeat scroll 0% 0% rgb(255, 255, 255);
    font-family: Tahoma, Verdana;
    font-size: 16px;
    line-height: 23px;
    width: 100%;
  }
  
  a {
    color: rgb(10, 120, 194);
    outline: medium none;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  p {
    margin: 0px 0px 11px;
  }
  
  strong, b {
    font-weight: bolder;
  }
  
  img {
    border: medium none;
  }
  
  h1 {
    margin: 10px 0px;
    font-size: 26px;
    line-height: 1;
  }
  
  h2 {
    margin: 10px 0px;
    font-size: 24px;
  }
  
  h3 {
    margin: 2px 0px 10px;
    font-size: 22px;
    font-weight: normal;
  }
  
  .container {
    width: 960px;
    margin: 0px auto;
  }
  
  
  .left-column {
    float: left;
    width: 570px;
    background: none repeat scroll 0% 0% white;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    margin-right: 20px;
    padding: 30px;
    margin-bottom: 10px;
  }
  
  .sidebar {
    float: left;
    width: 309px;
    font-size: 12px;
  }
  
  .sidebar-bloggers {
    background: none repeat scroll 0% 0% white;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .sidebar-bloggers-avatar {
    display: inline-block;
  }
  
  .sidebar-bloggers img {
    margin: 5px;
    widht: 48px;
    height: 48px;
  }
  
  .footer {
    clear: both;
    font-size: 12px;
    color: rgb(119, 119, 119);
    margin: 20px auto;
    text-align: center;
    padding-bottom: 50px;
  
  }
  
  .vk-container {
    font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
    font-size: 14px;
    line-height: 17px;
    color: black;
    text-decoration: none;
  }
  
  .vk-container a {
    text-decoration: none;
  }
  
  .vk-container a:hover {
    text-decoration: none;
  }
  
  .vk-header {
    background: none repeat scroll 0% 0% rgb(218, 226, 232);
    padding: 4px 4px 4px 6px;
    margin-bottom: 10px;
  }
  
  .vk-logo {
    background: url('../images/icon-fb.png') no-repeat scroll 0% 0% transparent;
    width: 16px;
    height: 16px;
    float: right;
    margin-top: -1px;
  }
  
  .vk-header-text {
    padding: 2px 3px 1px;
    line-height: 100%;
    color: rgb(69, 104, 142);
    font-weight: bold;
  }
  
  .vk-avatar img {
    float: left;
    margin-right: 10px;
    width: 48px;
    height: 48px;
  }
  
  .vk-comment, .vk-comment-load {
    margin-bottom: 15px;
    position: relative;
    border-bottom: 1px solid rgb(218, 225, 232);
    padding-bottom: 15px;
  }
  
  .vk-comment:last-child {
    border-bottom: 0px none;
  }
  
  .vk-comment-name {
    color: rgb(43, 88, 122);
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
  }
  
  .vk-comment-name:hover {
    text-decoration: none;
  }
  
  .vk-comment-text {
    margin-left: 60px;
  }
  
  .vk-comment-date {
    margin-left: 60px;
    color: rgb(153, 153, 153);
  }
  
  .vk-comment-like {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: url('../images/like0000.png') no-repeat scroll left center transparent;
    width: 30px;
    height: 16px;
    display: inline-block;
    text-decoration: none;
  }
  
  .vk-comment-like:hover {
    opacity: 0.5;
    cursor: pointer;
    text-decoration: none;
  }
  
  .vk-comment-like-count {
    padding-left: 20px;
    font-weight: bold;
    color: rgb(114, 149, 178);
    font-size: 10px;
    text-decoration: none;
  }
  
  .vk-comment-answer {
    color: rgb(43, 88, 122);
    text-decoration: none;
  }
  
  .vk-comment-answer:hover {
    opacity: 0.5;
    cursor: pointer;
    text-decoration: none;
  }
  
  /* Header */
  .header {
    width: 960px;
    margin: 0px auto 20px;
    background-image: url('../images/header_s.jpeg');
    height: 131px;
    background-size: contain;
    box-shadow: 0px 1px 2px rgb(129, 129, 129);
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  
  a.hlink {
    text-decoration: none;
  }
  
  .header h1 {
    position: absolute;
    top: 45px;
    left: 45px;
  }
  
  .header div {
    position: absolute;
    font-weight: bold;
    top: 25px;
  }
  
  .header .h-comment {
    right: 230px;
  }
  
  .header .h-comment:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 35px;
    top: 35px;
    background-image: url('../images/speech-bubbles-comment-option.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .header .h-popular {
    right: 128px;
  }
  
  .header .h-popular:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 17px;
    top: 35px;
    background-image: url('../images/bookmark-star.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .header .h-likes {
    right: 23px;
  }
  
  .header .h-likes:after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 17px;
    top: 35px;
    background-image: url('../images/thumbs-up-hand-symbol.png');
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Header */
  @media (max-width: 990px) {
    .header .h-comment, .header .h-popular, .header .h-likes {
      display: none;
    }
  
    .container {
      width: auto;
    }
  
    .header {
      width: auto;
    }
  
    .header h1 {
      text-align: center;
      position: relative;
      top: 51px;
      left: 0;
      right: 0;
    }
  
    .sidebar {
      display: none;
    }
  
    .left-column {
      float: none;
      width: auto;
      margin-right: 0;
    }
  
    .vk-container>.vk-comment:nth-last-child(n+7) {
      display: none;
    }
  }
  
  .img-left {
    float: left;
    margin: 0px 10px 10px 0px;
    max-width: 250px;
  }
  
  .img-right {
    float: right;
    margin: 0px 0px 10px 10px;
    max-width: 250px;
  }
  
  @media (max-width: 600px) {
    .img-left, .img-right {
      display: block;
      margin: 0 auto;
      float: none;
    }
  }
  @media (max-width: 500px){
    .header h1 {
      font-size: 17px;
    }
  }
  .btn {
    display: inline-block;
    padding: 5px 10px;    transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;background-color: #346bc5;
    color:#fff;
    text-decoration: none;
            
  }
  .btn:hover{
    text-decoration: none;
      transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -o-transform: scale(1.1);
  }
            
  
  .me_footer a {
    color: rgb(119, 119, 119);
  
    text-decoration: none;
  }
  
  .me_footer a:hover {
    color: rgb(119, 119, 119);
  
    text-decoration: underline;
  }
  
  .form-disclaimer {
    font-size: 12px;
    color: rgb(119, 119, 119);
  }
  @keyframes appear1 {
    0%   { transform: scale(0); }
    25%   { transform: scale(1); }
    100%  { transform: scale(1); }
}

@keyframes appear2 {
    0%   { transform: scale(0); }
    50%   { transform: scale(1); }
    100%  { transform: scale(1); }
}

@keyframes appear3 {
    0%   { transform: scale(0); }
    100%  { transform: scale(1); }
}

@-webkit-keyframes appear1 {
    0%   { transform: scale(0); }
    25%   { transform: scale(1); }
    100%  { transform: scale(1); }
}

@-webkit-keyframes appear2 {
    0%   { transform: scale(0); }
    50%   { transform: scale(1); }
    100%  { transform: scale(1); }
}

@-webkit-keyframes appear3 {
    0%   { transform: scale(0); }
    100%  { transform: scale(1); }
}






@keyframes comment-appear {
    0%   { background: rgba(85, 136, 186, 0.3); }
    100%  { background: rgba(0, 0, 0, 0); }
}

@-webkit-keyframes comment-appear {
    0%   { background: rgba(85, 136, 186, 0.3); }
    100%  { background: rgba(0, 0, 0, 0); }
}

@keyframes animated-gradient {
    100%  { background-position: 100% 0; }
}


.me_text .appear {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}

.me_text .appear:first-child {
    animation-name: appear1;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.me_text .appear:nth-child(2) {
    animation-name: appear2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.me_text .appear:last-child {
    animation-name: appear3;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.answer-wrap {
    max-height: 0;
    opacity: 0;
}

.typing-block, .additional-block {
    max-height: 0;
    opacity: 0;
    transition: .3s;
}
.typed-text {
    max-height: 0;
    opacity: 0;
    transition: 2s;
}

.answer-wrap.typing {
    background: linear-gradient(to left, rgba(85, 136, 186, 0.2), rgba(85, 136, 186, 0.2), rgba(85, 136, 186, 0.1), rgba(85, 136, 186, 0.2), rgba(85, 136, 186, 0.0));
    background-size: 200% 100%;
    animation: animated-gradient 2s infinite alternate;
}

.answer-wrap.typing, .answer-wrap.just-typed, .answer-wrap.already-typed {
    max-height: 900px;
    opacity: 1;
}

.answer-wrap.typing .typing-block {
    max-height: 50px;
    opacity: 1;
}

.answer-wrap.just-typed {
    animation-name: comment-appear;
    animation-duration: 2s;
    animation-iteration-count: 1;
}

.answer-wrap.just-typed .typed-text, .answer-wrap.already-typed .typed-text, .comment-layout .typed-text {
    max-height: 100%;
    opacity: 1;
}

.answer-wrap.just-typed .additional-block, .answer-wrap.already-typed .additional-block {
    max-height: 50px;
    opacity: 1;
}

.answer-wrap.already-typed {
    animation: none;
}

.answer-wrap.already-typed .typed-text, .answer-wrap.already-typed .additional-block {
    transition: none;
}

.answer-wrap.already-typed .typing-block, .answer-wrap.just-typed .typing-block {
    position: relative;
    z-index: -1;
}


.answer-wrap.type .typing {
    max-height: 50px;
    opacity: 1;
}
.cntr {
    text-align: center;
}
.countdown-block {
    text-align: center;
    background: #fff500;
    color: #fff;
    padding: 10px 0;
    margin-left: -10px;
    margin-right: -10px
}

.countdown-block>h3 {
    font-weight: 800;
    font-size: 36px;
    padding-top: 5px;
    margin: 0
}

.countdown-container {
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 10px
}

.countdown-container .redd {
    color: red;
    font-weight: 800;
    font-size: 30px;
    margin: 0 auto 10px;

    line-height: 30px;
}

.countdown-container h3 {
    color: #000;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    font-family: Roboto
}

.countdown-container h6 {
    font-size: 14px;
    color: #0079f2;
    font-family: inherit
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 39px;
    line-height: 1
}

.countdown-item {
    color: red;
    width: 5rem;
    font-weight: 800
}

.countdown-divider {
    color: #000;
    width: 1rem
}

.countdown-text {
    margin: 0 auto;
    margin-bottom: -8px;
    width: 90%;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: Roboto
}

.countdown-text span {
    width: 4rem;
    margin-right: 2rem
}

.countdown-text span:last-child {
    margin-right: 0
}

.best-form {
    font: 16px/1.2 Arial;
    padding: 16px;
    background-image: linear-gradient(to top, #d1f0ff, #e9f8ff);
    margin-left: -10px;
    margin-right: -10px
}

.product {
    display: flex;
    margin-bottom: 15px
}

.product .left {
    width: 50%
}

.product .right {
    width: 50%;
    text-align: center;
    font-family: Roboto
}

.product .discount {
    background-image: linear-gradient(to right, #ff0, #ffeb3b);
    color: red;
    border-radius: 10px;
    transform: skew(-15deg);
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    width: 85%;
    height: 5rem;
    line-height: 5rem;
    letter-spacing: -3px;
    margin-top: -.3rem
}

.product .discount div {
    transform: skew(15deg)
}

.product .price {
    color: #ed1b24;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1
}

.product .discount-text {
    margin-top: 1rem;
    color: #000;
    font-size: 18px
}

.product .price span {
    font-weight: 300;
    font-size: 50%;
    display: inline-block
}

.product .price-old {
    line-height: 1
}

.product .price-old span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 25px;
    color: #000;
    position: relative;
    font-weight: 700
}

.product .price-old span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 5px solid #ed1b24;
    transform: rotate(-10deg)
}

.country-input,
.name-input,
.phone-input {
    position: relative;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    font-size: 20px;
    margin-bottom: 10px
}

.form-control {
    border: 0;
    font: inherit;
    color: #000;
    box-sizing: border-box;
    min-width: 0;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    padding-left: 35px;
    transition: all .15s ease-in-out;
    background-color: rgb(232, 240, 254);
}

.phone-input::before {
    position: absolute;
    content: '';
    width: 21px;
    height: 24px;
    background-image: url(../images/telefon-icon.svg);
    background-repeat: no-repeat;
    top: 35px;
    left: 10px
}

.name-input::before {
    position: absolute;
    content: '';
    width: 22px;
    height: 23px;
    background-image: url(../images/user-icon.svg);
    background-repeat: no-repeat;
    top: 35px;
    left: 10px
}

.button-submit:focus,
input:focus-within {
    outline: 0;
    box-shadow: 0 0 0 4px #bdab3c
}

.name-input:focus-within input,
.phone-input:focus-within input {
    outline: 0
}

.name-input .country {
    border-radius: 3px;
    vertical-align: -2px
}

.name-input label,
.phone-input label {
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.button-submit {
    text-align: center;
    display: flex;
    box-sizing: border-box !important;
    width: 100%;
    margin: 15px auto;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    color: #544c4c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    border-radius: 6px;
    border: 0;
    padding: 14px 0;
    background-image: linear-gradient(to top, #d8b81b, #fff080);
    cursor: pointer;
    font: 24px/1.4 "Open Sans", sans-serif;
    font-weight: 400
}

.button-submit:hover {
    transform: scale(1.1)
}

.button-submit-text {
    color: #544c4c;
    flex: 1 1 auto;
    font: inherit;
    font-weight: 700;
    line-height: 1
}

.button-submit-arrow {
    width: 0;
    height: 0;
    border-top: .6rem solid transparent;
    border-bottom: .6rem solid transparent;
    border-left: 1rem solid #fff;
    margin-right: 1rem
}

.ord_button {
    background-color: #5d9d52;
    color: #fff !important;
    display: inline-block;
    padding: 10px 30px;
    font-size: 25px !important;
    box-shadow: 2px 3px 8px #999;
    text-decoration: none !important;
    border-radius: 8px;
    border: 3px solid #fff;
    margin: 20px 0 30px;
    line-height: 27px;
    text-transform: uppercase;
    transition: all .3s ease-in 0s
}

.ord_button:hover {
    background-color: #5d9d52;
    box-shadow: 2px 3px 3px #999;
    text-decoration: none !important;
    transform: scale(1.1)
}
.prod-price {
    display: flex;
    max-width: 300px;
    margin: 0 auto 20px;
    line-height: 1
}

.pop-old-price {
    font-size: 24px;
    color: gray;
    text-decoration: line-through
}

.pop-new-price {
    font-size: 32px;
    color: #544c4c;
    font-weight: bold;
    text-shadow: 0 0 4px #e3c72e
}

.pop-price::before {
    position: absolute;
    left: 16px;
    top: -60px;
    content: ' ';
    background: url(../images/50sale.png) no-repeat;
    width: 120px;
    height: 65px;
    background-size: 120px
}

.price-bottom {
    position: absolute;
    width: 100%
}

.pop-prod,
.pop-price {
    position: relative;
    flex: 1 50%;
    text-align: center;
    margin: auto
}
.icon {
    position: relative;
    width: 48px;
    height: 48px;
}
.icon:after {
    content: '';
    width: 48px;
    height: 48px;
    background-image: url(../images/profile.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.x_country_select {
    display: none !important;
}
.field {
    display: block;
    margin: 0 auto 10px;
    height: 45px;
    padding: 0 10px;
    font-size: 20px;
    border-radius: 4px;
    border: 1px solid #000;
    max-width: 383px;
    width: 100%;
    box-sizing: border-box;
}
.field_phone {
    margin: 0 auto;
}
.inL_946929 { font-size: 13px; }
.inL_594556 { font-weight: normal; text-decoration: none; color: rgb(0, 0, 0);  }
.inL_144620 { font-weight: normal; text-decoration: none; color: rgb(0, 0, 0);  }
.inL_952999 { font-size: 18px; }
.inL_137677 { text-align: center; }
.inL_530778 { margin: 15px auto;text-align: center; }
.inL_346798 { display: block; }
.inL_303275 { text-align: center; }
.inL_874267 { display: none; }
.inL_281127 { text-align: center }
.inL_579167 { display: none; }
.inL_927526 { max-width:350px; width:100% }
.inL_315189 { max-width:350px; width:100% }
.inL_190486 { font-size: 18px; }
.inL_108135 { font-weight: normal; text-decoration: none; color: rgb(0, 0, 0); cursor: normal; }
.inL_342662 { cursor: normal; }
.inL_256357 { cursor: normal; }
.inL_288417 { cursor: normal; }
.inL_265538 { cursor: normal; }
.inL_783543 { cursor: normal; }
.inL_428219 { cursor: normal; }
.inL_430568 { cursor: normal; }
.inL_748757 { cursor: normal; }
.inL_746449 { cursor: normal; }
.inL_442474 { cursor: normal; }
.inL_800366 { cursor: normal; }
.inL_382389 { cursor: normal; }
.inL_148208 { cursor: normal; }
.inL_534795 { cursor: normal; }
.inL_809742 { cursor: normal; }
.inL_371155 { cursor: normal; }
.inL_804361 { cursor: normal; }
.inL_858635 { cursor: normal; }
.inL_413055 { cursor: normal; }
.inL_762108 { font-size: 12px; color: rgb(119, 119, 119); }