.ruletka-p {
    text-indent: 0;
    color: #000;
    text-align: center !important;
    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;
    background: #fff;
    margin: 0 10px;
}
.spin-wrapper .ruletka-p {
    margin-bottom: 15px;
}
.wheel {
    width: 380px !important;
    margin: 0 auto;
    position: relative;
}
.wheel img {
    max-width: 100%;
}
.wheel-img {
    -webkit-transition: 4s;
    -o-transition: 4s;
    transition: 4s;
}
.wheel-cursor {
    position: absolute;
    width: 35% !important;
    height: 35%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.cursor-text {
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 48% !important;
    height: 48%;
    font: 12px 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%);
    -ms-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, 0.4) 0 0 5px;
    box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset,
    rgba(0, 0, 0, 0.4) 0 0 5px;
    background: #fff;
    background: -o-radial-gradient(
            center,
            ellipse cover,
            rgba(255, 255, 255, 1) 0%,
            rgba(234, 234, 234, 1) 100%
    );
    background: -o-radial-gradient(
            center,
            ellipse,
            rgba(255, 255, 255, 1) 0%,
            rgba(234, 234, 234, 1) 100%
    );
    background: radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 1) 0%,
            rgba(234, 234, 234, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eaeaea',GradientType=1);
}
.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, 0.6);
    text-align: center;
}
.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: 0.7s ease 0s normal none 1 running pop-up-appear;
    animation: 0.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;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
@-webkit-keyframes super-rotation {
    70% {
        -webkit-transform: rotate(1580deg);
        transform: rotate(1580deg);
    }
    100% {
        -webkit-transform: rotate(1570deg);
        transform: rotate(1570deg);
    }
}
@keyframes super-rotation {
    70% {
        -webkit-transform: rotate(1580deg);
        transform: rotate(1580deg);
    }
    100% {
        -webkit-transform: rotate(1570deg);
        transform: rotate(1570deg);
    }
}
.cursor-text:active {
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px inset;
    box-shadow: rgba(0, 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, 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: 0.7s ease 0s normal none 1 running pop-up-appear;
    animation: 0.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: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
    animation: 0.5s ease 0.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);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: opacity 1s ease 0s;
    -o-transition: opacity 1s ease 0s;
    transition: opacity 1s ease 0s;
    -webkit-animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
    animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}
.text_small {
    font-size: 0.5em !important;
    font-weight: 400 !important;
}
@-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(0px);
        transform: translateY(0px);
    }
}
@keyframes pop-up-appear {
    0% {
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    30% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@-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;
}
@media all and (max-width: 520px) {
    .wheel {
        width: 280px !important;
    }
    .cursor-text {
        line-height: 47px !important;
        font-size: 9px !important;
    }
    @media screen and (max-width: 345px) {
        .wheel {
            width: 250px !important;
        }
        .cursor-text {
            line-height: 40px !important;
            font-size: 8px !important;
        }
    }
}




.certificate-block {
    font-family: Arial, Helvetica, sans-serif;
}

/*#certificate-block {*/
/*    display: none;*/
/*}*/

.order-info {
    text-align: center;
}

.order-info__title {
    font-size: 24px;
    color: red;
}

.order-info__date {
    text-decoration: underline;
}

.order-info__count {
    display: block;
    background: red;
    padding: 10px;
    margin: 12px auto;
    width: 178px;
    color: #fff;
    text-shadow: 0 -1px 0 #000000, 0 -1px 0 #000000, 0 1px 0 #000000, 0 1px 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px 0 0 #000000, 1px 0 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
    font-size: 32px;
    border-radius: 5px;
}

.order-info__count-val {
    font-size: 52px;
    line-height: 1;
}

.order-info__subtitle {
    font-size: 22px;
    margin: 22px auto;
}

.order-info__subtitle-price {
    font-weight: 700;
    color: red;
}

#order-form {
    padding: 20px 20px 40px;
    max-width: 600px;
    margin: 20px auto;
    background-image: url('../images/formbg.jpg');
    background-repeat: no-repeat;
    line-height: 16px;
    text-align: center;
    background-size: 100% 100%;

}

.article__text .order-form__header-pic,
.order-form__header-pic {
    max-width: 100px;
}

.order-form__header-title {
    margin: 0;
    padding: 0;
    line-height: 32px;
    font-size: 32px;
}

@media all and (max-width: 767px) {
    .order-form__header-title {
        font-size: 27px;
    }
}

.order-form__header-number {
    color: blue;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.order-form__header-subtitle {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.order-form__header-subtitle--price {
    font-weight: 700;
    color: red;
}

.order-form__header-annotation {
    display: block;
    margin: 5px 10px;
    border: 2px solid #0299ff;
    padding: 10px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.order-form__pole {
    display: inline-block;
    margin: 10px auto 0;
    padding: 0 10px;
    width: 100%;
    max-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.order-form__pole label {
    display: block;
    width: 100%;
    max-width: 230px;
    margin: 0 auto 8px;
    padding: 5px 0;
    font-weight: bold;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.order-form__pole input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 21px;
    padding: 15px;
    border-radius: 3px;
    border: 2px solid #e9d7dc;
    width: 100%;
}

.order-form__pole .country-select {
    font-size: 21px;
    height: 58px;
    border-radius: 3px;
    border: 2px solid #e9d7dc;
    width: 100%;
    padding: 15px;
}

.order-form__btn-wrap {
    padding: 25px 5px;
}

.order-form__btn {
    display: inline-block;
    padding: 20px 60px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    border-radius: 5px;
    background-color: #0299ff;
    background-position: 1.35em .94em;
    background-size: 1em;
    background-repeat: no-repeat;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
    -webkit-animation: 1s pulse infinite alternate ease-in-out;
    animation: 1s pulse infinite alternate ease-in-out;

}

.order-form__btn:after {
    display: inline-block;
    -webkit-animation: dotty steps(1, end) 1.5s infinite;
    animation: dotty steps(1, end) 1.5s infinite;
    content: '';
    position: absolute;
    margin-left: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@-webkit-keyframes dotty {
    0% {
        content: '';
    }

    25% {
        content: '>';
    }

    50% {
        content: '>>';
    }

    75% {
        content: '>>>';
    }

    100% {
        content: '';
    }
}

@keyframes dotty {
    0% {
        content: '';
    }

    25% {
        content: '>';
    }

    50% {
        content: '>>';
    }

    75% {
        content: '>>>';
    }

    100% {
        content: '';
    }
}

.order-form__btn:hover {
    background-color: #017ACC;
}

.order-form__additional {
    font-size: 12px;
}

.timelimit {
    font-size: 14px;
    margin: 0;
    margin-top: 10px;
}

.timelimit span {
    display: inline-block;
    margin-bottom: 5px;
}

.timer {
    display: inline-block;
    background: url(../images/timerIcon2.png) no-repeat;
    padding-left: 14px;
    color: red;
    font-weight: 700;
    line-height: 15px;
}

@media (max-width:525px) {
    .order-form__btn {
        font-size: 17px;
    }
}

@media (max-width:414px) {
    .order-form__btn {
        font-size: 15px;
    }
}

@media (max-width:375px) {
    .order-form__btn {
        padding: 20px 45px;
        font-size: 12px;
    }

    .order-form__btn:after {
        font-size: 12px;
    }
}



.alert {
    font-family: "Roboto", sans-serif;
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    max-width: 90%;
    background: #F7F7F7;
    box-shadow: 2px 4px 15px rgb(0 0 0 / 10%);
    border-radius: 10px;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 400;
    font-size: 16px;
    line-height: 135%;
}

.alert--show {
    opacity: 1;
    pointer-events: auto;
}

.alert__img {
    max-height: 50px;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
}

.alert-offer {
    margin-bottom: 40px;
    text-align: center;
    color: red;
}


.alert-offer {
    margin-bottom: 40px;
    text-align: center;
    color: red
}

@media (max-width: 767.98px) {
    .alert-offer {
        margin-bottom: 15px
    }
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.spin-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.certificate-block {
    margin: 0 10px;
}