.calculator-promo input[type=range] {
    width: 100%;
    margin: 11.45px 0;
    background-color: transparent;
    -webkit-appearance: none;
    background: -webkit-linear-gradient(left, #fde1a0 0%, #fde1a0 20%, #e6e6e6 20%);
}

.calculator-promo input[type=range]:focus {
    outline: none;
}

.calculator-promo input[type=range]::-webkit-slider-runnable-track {
    /* background: #fde1a0; */
    border: 0;
    border-radius: 5.4px;
    width: 100%;
    height: 7.1px;
    cursor: pointer;
}

.calculator-promo input[type=range]::-webkit-slider-thumb {
    margin-top: -11.45px;
    width: 30px;
    height: 30px;
    background: #ff7f00;
    border: 1px solid #ff7f00;
    border-radius: 36px;
    cursor: pointer;
    -webkit-appearance: none;
}

.calculator-promo input[type=range]::-moz-range-track {
    background: #fde1a0;
    border: 0;
    border-radius: 5.4px;
    width: 100%;
    height: 7.1px;
    cursor: pointer;
}

.calculator-promo input[type=range]::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #ff7f00;
    border: 1px solid #ff7f00;
    border-radius: 36px;
    cursor: pointer;
}

.calculator-promo input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 12.45px 0;
    color: transparent;
    width: 100%;
    height: 7.1px;
    cursor: pointer;
}

.calculator-promo input[type=range]::-ms-fill-lower {
    background: #e6e6e6;
    border: 0;
    border-radius: 10.8px;
}

.calculator-promo input[type=range]::-ms-fill-upper {
    background: #fde1a0;
    border: 0;
    border-radius: 10.8px;
}

.calculator-promo input[type=range]::-ms-thumb {
    width: 30px;
    height: 30px;
    background: #ff7f00;
    border: 1px solid #ff7f00;
    border-radius: 36px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}

.calculator-promo input[type=range]:focus::-ms-fill-lower {
    background: #e6e6e6;
}

.calculator-promo input[type=range]:focus::-ms-fill-upper {
    background: #fde1a0;
}

/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {

    /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
    .calculator-promo input[type=range] {
        margin: 0;
        /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
}


/* Main calc style */

.calculator-promo {
    max-width: 920px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.orange-text {
    color: #ff7f00;
}

.calculator-promo .calculator-promo__title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
}

.calculator-promo .calculator-promo__email-fix {
    display: flex;
    justify-content: space-evenly;
}

.calculator-promo__email-fix input {
    width: 100% !important;
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.calculator-promo__email-fix .jq-selectbox__select-text {
    font-size: 16px;
    color: rgb(151, 151, 151);
    padding-left: 10px;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .calculator-promo__email-fix .jqselect {
            margin: 2px 0;
        }
    }
}

.calculator-promo__email-fix .jq-selectbox__trigger {
    margin-top: 2px;
}

@media (max-width: 700px) {
    .calculator-promo__email-fix .has-float-label {
        width: 47%;
    }

    .calculator-promo__email-fix .jq-selectbox {
        width: 45%;
    }
}

@media (max-width: 424px) {
    .calculator-promo__email-fix .jq-selectbox__select {
        margin-top: 8px;
    }
}

.calculator-promo__email-fix .jq-selectbox {
    background: #fff;
    border: 1px solid rgb(151, 151, 151);
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    padding-top: 5px;
}

.calculator-promo .calculator-promo__subtitle {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #979797;
    margin-top: 5px;
    margin-bottom: -10px;
}

.calculator-promo .calculator-promo__content {
    display: flex;
    align-content: center;
    justify-content: center;
    box-shadow: 0 0 57px -12px rgba(0, 0, 0, 0.5);
}

.calculator-promo__left-form {
    display: flex;
    align-content: center;
    flex-direction: column;
    padding: 18px;
    background: #fff;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    box-shadow: 0px 0px 50px rgb(38 43 82 / 5%);
}

.calculator-promo .promo-scroll {
    display: flex;
    align-content: center;
    flex-direction: column;
    margin: 20px 0;
}

.promo-scroll .promo-scroll__top-panel {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.promo-scroll__top-panel .promo-scroll__left-text {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.promo-scroll__top-panel .promo-scroll__right-text {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
}

.promo-scroll .promo-scroll__scroll input {
    width: 100%;
    border: 0 solid;
}

.promo-scroll .promo-scroll__bottom-panel {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 25px;
}

.promo-scroll__bottom-panel .promo-scroll__left-text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.promo-scroll__bottom-panel .promo-scroll__right-text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.calculator-promo .day-n-amount {
    display: flex;
    align-content: center;
    flex-direction: column;
}

.day-n-amount .day-n-amount__titles {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.day-n-amount .day-n-amount__pay-title {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.day-n-amount .day-n-amount__day-title {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
}

.day-n-amount .day-n-amount__values {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.day-n-amount .day-n-amount__pay-value {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.day-n-amount .day-n-amount__old-pay {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #3c3c3c;
}

.day-n-amount .day-n-amount__new-pay {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #f88b00;
    margin-left: 5px;
}

.day-n-amount .day-n-amount__day-value {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #000000;
}

.calculator-promo .bottom-legal-text {
    margin-top: 40px;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #979797;
    opacity: 0;
}

.calculator-promo .calculator-promo__right-form {
    background-color: #e6e6e6;
    padding: 10px 15px;
    display: flex;
    align-content: center;
    flex-direction: column;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px 0px 50px rgb(38 43 82 / 5%);
}

.calculator-promo__right-form .calculator-promo__text-inputs {
    display: flex;
    align-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.calculator-promo__text-inputs .calculator-promo__input {
    margin-top: 20px;
    text-align: center;
}

.calculator-promo__text-inputs .calculator-promo__input input {
    padding: 10px;
    max-width: 272px;
    width: calc(100% - 20px);
    border-radius: 5px;
    border: solid 1px #979797;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}

.calculator-promo .calculator-promo__submit {
    margin-bottom: 25px;
    text-align: center;

    position: relative;
}

.calculator-promo .calculator-promo__submit button {
    width: 100%;
    padding: 10px;
    max-width: 296px;
    border: 0 solid #FB7D01;
    font-size: 20px;
    line-height: 120%;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #ffffff;
    cursor: pointer;
    background: #FB7D01;
    box-shadow: 0px 0px 50px rgba(38, 43, 82, 0.05);
    border-radius: 25px;

    position: relative; 
    z-index: 1;
}

.js-disabled-button-overlay {
    position: absolute;
    width: 296px; /* Точно по размеру вашей кнопки */
    height: 45px; /* Точно по размеру вашей кнопки */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    cursor: not-allowed; /* Курсор для disabled состояния */
    z-index: 2;

    /* По умолчанию слой неактивен, не перехватывает события */
    pointer-events: none;
}

/* Класс, который JS будет добавлять для активации слоя */
.js-disabled-button-overlay.active {
    pointer-events: all; /* Слой становится интерактивным */
}

.calculator-promo .calculator-promo__submit button:disabled {
    background: #b3b3b3;
    cursor: not-allowed;
    border: 0 solid #b3b3b3;
}

.calculator-promo__legal-text {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
}

.calculator-promo .hint-language {
    display: none;
    font-size: 12px;
    color: #fec454;
    padding: 15px 40px 0px;
    text-align: center;
}

.calculator-promo input[name="full_name"] {
    text-transform: capitalize;
}

.calculator-promo__legal-text .terms-n-conditions a {
    text-decoration: none;
}

.terms-n-conditions {
    font-size: 11px;
    line-height: 130%;
    color: #868686;
    max-width: 810px;
    text-align: left;
}

.terms-n-conditions .custom-checkbox-container {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 20px;
    /* Обеспечиваем минимальную высоту */
    line-height: 20px;
    /* Для вертикального выравнивания текста */
}

.terms-n-conditions .custom-checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.terms-n-conditions .custom-checkbox-checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 1px solid #ff7f00;
    border-radius: 3px;
    margin-right: 10px;
    /* Отступ справа от чекбокса */
    position: relative;
    vertical-align: middle;
    /* Выравнивание по вертикали */
}

.terms-n-conditions .custom-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid #ff7f00;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.terms-n-conditions .custom-checkbox-container input[type="checkbox"]:checked~.custom-checkbox-checkmark:after {
    display: block;
}

.terms-n-conditions .checkbox-text {
    display: inline;
    vertical-align: middle;
}

.calculator-promo__submit button:disabled {
    background-color: #979797;
    cursor: not-allowed;
    color: #e6e6e6;
}

.calculator-promo__legal-text .mobile-legal-text {
    display: none;
}

.cross-price {
    position: absolute;
    /*border-bottom: 1px solid #f82e00;*/
    /*height: 0;*/
    /*margin-left: -42px;*/
    /*transform: rotate(8deg);*/
}

.day-n-amount__old-pay:before {
    position: absolute;
    border-bottom: 1px solid #f82e00;
    height: 0;
    margin-left: -5px;
    margin-top: 7px;
    transform: rotate(8deg);
    content: "";
    width: 55px;
}

.day-n-amount__old-pay.calc-500:before {
    width: 46px;
}

.day-n-amount__old-pay.calc-1000:before {
    width: 62px;
}

.placeholder {
    position: relative;
    height: 0;
    top: -31px;
    color: #979797;
    transition: top 0.2s;
}

input:focus~.placeholder,
input:not(:placeholder-shown)~.placeholder {
    top: -60px;
    left: 20px;
    text-align: left;
    color: #000;
    font-size: 14px;
    margin-left: 0;
}

[name="email-main"]~.placeholder {
    text-align: left;
    margin-left: 20px;
}


@media (max-width: 700px) {
    .calculator-promo .calculator-promo__right-form {
        margin-top: -5px;
        padding-top: 0;
        background: #fff;
        border-top-right-radius: 0;
        border-bottom-left-radius: 20px;
    }

    .calculator-promo .calculator-promo__left-form {
        border-bottom-left-radius: 0;
        border-top-right-radius: 20px;
    }

    .calculator-promo .calculator-promo__submit input {
        max-width: none;
        width: 96%;
    }

    .calculator-promo {
        width: 95%;
    }

    .calculator-promo .calculator-promo__content {
        flex-direction: column;
    }

    .calculator-promo .bottom-legal-text {
        display: none;
    }

    .calculator-promo__legal-text .mobile-legal-text {
        display: block;
        margin-top: 20px;
    }

    .calculator-promo__text-inputs .calculator-promo__input input {
        max-width: none;
        width: 90%;
    }

    input:focus~.placeholder,
    input:not(:placeholder-shown)~.placeholder {
        left: 2%;
    }

    .calculator-promo__legal-text {
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #979797;
        text-align: left;
    }

    .calculator-promo .calculator-promo__title {
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: center;
        color: #000000;
    }

    .promo-scroll__top-panel .promo-scroll__left-text {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
    }

    .promo-scroll__top-panel .promo-scroll__right-text {
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        text-align: right;
        color: #000000;
    }

    .promo-scroll__bottom-panel .promo-scroll__left-text {
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
    }

    .promo-scroll__bottom-panel .promo-scroll__right-text {
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
    }

    .day-n-amount .day-n-amount__pay-title {
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
    }

    .day-n-amount .day-n-amount__day-title {
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000000;
    }

    .promo-scroll .promo-scroll__top-panel {
        margin-bottom: 5px;
    }

    .promo-scroll .promo-scroll__bottom-panel {
        margin-top: 5px;
    }
}

#floatingCirclesG {
    position: relative;
    width: 51px;
    height: 51px;
    margin: auto;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
}

.f_circleG {
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 9px;
    width: 9px;
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    animation-name: f_fadeG;
    -o-animation-name: f_fadeG;
    -ms-animation-name: f_fadeG;
    -webkit-animation-name: f_fadeG;
    -moz-animation-name: f_fadeG;
    animation-duration: 1.04s;
    -o-animation-duration: 1.04s;
    -ms-animation-duration: 1.04s;
    -webkit-animation-duration: 1.04s;
    -moz-animation-duration: 1.04s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#frotateG_01 {
    left: 0;
    top: 21px;
    animation-delay: 0.39s;
    -o-animation-delay: 0.39s;
    -ms-animation-delay: 0.39s;
    -webkit-animation-delay: 0.39s;
    -moz-animation-delay: 0.39s;
}

#frotateG_02 {
    left: 6px;
    top: 6px;
    animation-delay: 0.52s;
    -o-animation-delay: 0.52s;
    -ms-animation-delay: 0.52s;
    -webkit-animation-delay: 0.52s;
    -moz-animation-delay: 0.52s;
}

#frotateG_03 {
    left: 21px;
    top: 0;
    animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
    -ms-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
}

#frotateG_04 {
    right: 6px;
    top: 6px;
    animation-delay: 0.78s;
    -o-animation-delay: 0.78s;
    -ms-animation-delay: 0.78s;
    -webkit-animation-delay: 0.78s;
    -moz-animation-delay: 0.78s;
}

#frotateG_05 {
    right: 0;
    top: 21px;
    animation-delay: 0.91s;
    -o-animation-delay: 0.91s;
    -ms-animation-delay: 0.91s;
    -webkit-animation-delay: 0.91s;
    -moz-animation-delay: 0.91s;
}

#frotateG_06 {
    right: 6px;
    bottom: 6px;
    animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -moz-animation-delay: 1.04s;
}

#frotateG_07 {
    left: 21px;
    bottom: 0;
    animation-delay: 1.17s;
    -o-animation-delay: 1.17s;
    -ms-animation-delay: 1.17s;
    -webkit-animation-delay: 1.17s;
    -moz-animation-delay: 1.17s;
}

#frotateG_08 {
    left: 6px;
    bottom: 6px;
    animation-delay: 1.3s;
    -o-animation-delay: 1.3s;
    -ms-animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
}



@keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-o-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-ms-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-webkit-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-moz-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

#floatingCirclesG {
    position: relative;
    width: 51px;
    height: 51px;
    margin: auto;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
}

.f_circleG {
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 9px;
    width: 9px;
    border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    animation-name: f_fadeG;
    -o-animation-name: f_fadeG;
    -ms-animation-name: f_fadeG;
    -webkit-animation-name: f_fadeG;
    -moz-animation-name: f_fadeG;
    animation-duration: 1.04s;
    -o-animation-duration: 1.04s;
    -ms-animation-duration: 1.04s;
    -webkit-animation-duration: 1.04s;
    -moz-animation-duration: 1.04s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#frotateG_01 {
    left: 0;
    top: 21px;
    animation-delay: 0.39s;
    -o-animation-delay: 0.39s;
    -ms-animation-delay: 0.39s;
    -webkit-animation-delay: 0.39s;
    -moz-animation-delay: 0.39s;
}

#frotateG_02 {
    left: 6px;
    top: 6px;
    animation-delay: 0.52s;
    -o-animation-delay: 0.52s;
    -ms-animation-delay: 0.52s;
    -webkit-animation-delay: 0.52s;
    -moz-animation-delay: 0.52s;
}

#frotateG_03 {
    left: 21px;
    top: 0;
    animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
    -ms-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
}

#frotateG_04 {
    right: 6px;
    top: 6px;
    animation-delay: 0.78s;
    -o-animation-delay: 0.78s;
    -ms-animation-delay: 0.78s;
    -webkit-animation-delay: 0.78s;
    -moz-animation-delay: 0.78s;
}

#frotateG_05 {
    right: 0;
    top: 21px;
    animation-delay: 0.91s;
    -o-animation-delay: 0.91s;
    -ms-animation-delay: 0.91s;
    -webkit-animation-delay: 0.91s;
    -moz-animation-delay: 0.91s;
}

#frotateG_06 {
    right: 6px;
    bottom: 6px;
    animation-delay: 1.04s;
    -o-animation-delay: 1.04s;
    -ms-animation-delay: 1.04s;
    -webkit-animation-delay: 1.04s;
    -moz-animation-delay: 1.04s;
}

#frotateG_07 {
    left: 21px;
    bottom: 0;
    animation-delay: 1.17s;
    -o-animation-delay: 1.17s;
    -ms-animation-delay: 1.17s;
    -webkit-animation-delay: 1.17s;
    -moz-animation-delay: 1.17s;
}

#frotateG_08 {
    left: 6px;
    bottom: 6px;
    animation-delay: 1.3s;
    -o-animation-delay: 1.3s;
    -ms-animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
}

.text-field_floating .email-mask:focus~.text-field__label {
    opacity: 1;
    transform: translateY(-27px) translateX(-22px);
}

.text-field_floating .email-mask:not(:placeholder-shown)~.text-field__label {
    opacity: 1;
    transform: translateY(-27px) translateX(-22px);
}

.text-field_floating .text-field__label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 12px 40px;
    opacity: .65;
    color: #000;
    font-size: 14px;
    transition: transform 0.2s;
    will-change: transform;
}

@keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-o-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-ms-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-webkit-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

@-moz-keyframes f_fadeG {
    0% {
        background-color: rgb(255, 255, 255);
    }

    100% {
        background-color: rgb(138, 138, 138);
    }
}

.overlay-disabled-button {

}