html {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));

}

body.web {
    padding: 0;
    background: #EDF4F9;
}

.container__footer {
    position: absolute;
    bottom: 0;
    padding: 20px;
    font-size: 0.8rem;
}

input:focus {
    outline: none;
    transform: none;
    /* Remove any transform effect */
}

.form-section {
    background: #ffffff;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.slider.slider-horizontal {
    width: 100%;
}

.slider-handle {
    background-image: none;
    background-color: #fcc500;
    top: -5px;
    width: 30px;
    height: 30px;
}

.slider-selection {
    background-image: none;
    background-color: #fcc5005e;
    box-shadow: none;
}

.select2-container--default .select2-selection--single {
    transform: translateX(50px);
    -webkit-animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    animation: 0.4s intro-x-animation ease-in-out 0.33333s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    --tw-border-opacity: 1;
    border-color: rgba(226, 232, 240, var(--tw-border-opacity));
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    appearance: none;
    border-radius: 0.375rem;
    border-width: 1px;
}

.form-group {
    overflow: hidden;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 35px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.mask-container {
    display: flex;
    align-items: center;
    width: auto;
}

.prefix-symbol {
    font-weight: bold;
    color: #888;
    margin-right: 5px;
}

.mask-input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 1em;
}

.btn-warning {
    color: white;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: inline-block;
    float: right;
    margin-top: -10px;
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#ffc74c 0 0);
    background: var(--c) 0% 50%,
        var(--c) 50% 50%,
        var(--c) 100% 50%;
    background-size: 20% 100%;
    animation: l1 1s infinite linear;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

@keyframes l1 {
    0% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }

    33% {
        background-size: 20% 10%, 20% 100%, 20% 100%
    }

    50% {
        background-size: 20% 100%, 20% 10%, 20% 100%
    }

    66% {
        background-size: 20% 100%, 20% 100%, 20% 10%
    }

    100% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
}

.step {
    justify-content: space-evenly;
    align-items: center;
}

.step img {
    height: 100px;
}

.slide-in {
    z-index: 10;
    /* to position it in front of the other content */
    overflow: hidden;
    /* to prevent scrollbar appearing */
    opacity: 0;
    transition: visibility 0s, opacity 1.5s linear;
}

.slide-in.from-left {
    left: 0;
}

.slide-in.from-right {
    right: 0;
}

.slide-in-content {
    transition: transform 2s ease;
    /* our nice transition */
}

.slide-in.from-left .slide-in-content {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.slide-in.from-right .slide-in-content {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

.slide-in.show {
    visibility: visible;
    opacity: 1;
}

.slide-in.show .slide-in-content {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.step-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

.step-wizard-list {
    color: #333;
    list-style-type: none;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 100px;
    position: relative;
}

.step-wizard-item+.step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #ffc74c;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
}

.progress-count:after {
    content: "";
    height: 40px;
    width: 40px;
    background: #ffc74c;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}

.progress-count:before {
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.current-item .progress-count:before,
.current-item~.step-wizard-item .progress-count:before {
    display: none;
}

.current-item~.step-wizard-item .progress-count:after {
    /*height: 10px;*/
    /*width: 10px;*/
}

.current-item~.step-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count:after {
    background: #fff;
    border: 2px solid #ffc74c;
}

.current-item .progress-count {
    color: #ffc74c;
}

.control-label {
    display: block;
}

.form-section .form-content {
    width: 100%;
    margin-top: 0px;
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.web .has-success input {
    border-color: transparent !important;
}

.funnel section {
    background-color: #F7F9FB;
}

.funnel .special-offer-logo {
    margin-top: 30px;
    margin-bottom: 150px;
}

.funnel .special-heder-text {
    font-size: 50px;
    font-weight: 700;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.funnel .special-description {
    font-size: 18px;
    font-weight: 400;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 20px;
    line-height: 30px
}

.funnel .special-offer-black {
    background-color: #222222;
    color: white;
    border-radius: 5px;
    border: 1px solid #222222;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 98%;
    height: 60px;
    margin-top: 14px;
    padding-bottom: 9px;
}

.funnel .special-offer-white {
    background-color: white;
    color: #222222;
    border-radius: 5px;
    border: 1px solid #222222;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 98%;
    height: 60px;
    margin-top: 14px;
    margin-bottom: 9px;
}

.funnel .text-pink {
    color: #F95479;
}

.funnel .special-low-description {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #222222;
    width: 90%;
    margin: auto;
    margin-bottom: 40px;
}

.funnel .special-offer-page {
    
}

.funnel .field-steppersonalform-phone .iti {
    width: 100% !important;
}

.funnel .last-funnel-btn {
    width: 100% !important;
    padding: 12px;
}

.funnel .progress-count {
    color: black;
    font-weight: 600;
}

.funnel .current-item .progress-count {
    color: white;
}

.funnel .progress-count:after {
    background: #fff;
    border: 2px solid #ffc74c;
}

.funnel .current-item .progress-count:after {
    background: #ffc74c;
    border: 2px solid #ffc74c;
}

.funnel .done.progress-count:after {
    background: #ffc74c !important;
}

.funnel * {
    --tw-ring-color: transparent;
}

.funnel .left-funnel-section {
    background: #EDF4F9;
}

/*//////////////////////////////*/

.funnel .form-group {
    margin-bottom: 1.5rem;
}


.funnel .input-wrapper {
    position: relative;

}


.funnel .form-group .form-control {

    border-radius: 5px !important;
    height: 50px;

    padding-right: 3rem;

    border: 1px solid #d2d6dc;
    width: 100%;
    transition: border-color .15s ease-in-out;
}

.funnel .form-group .form-control.icon-left {
    padding-left: 3rem;

}


.funnel .input-wrapper .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;

    pointer-events: none;

}


.funnel .validation-icon-container {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.funnel .form-group .form-control:focus {
    outline: none;

}


.funnel .validation-icon-svg {
    display: none;
}


.funnel .form-group.has-success .validation-icon-svg.validation-success {
    width: 50px;
    display: block;

    color: #28a745;

}




.funnel .form-group.has-error .validation-icon-svg.validation-error {
    height: 50px;
    width: 50px;
    display: block;

    color: #dc3545;

}



.funnel .form-group .input-wrapper {
    display: flex;
    align-items: center;

    gap: 10px;

}


.funnel .form-group .input-wrapper {
    flex-grow: 1;

}

.funnel .form-group .validation-icon-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.funnel .form-padding {
    padding-left: 90px;
    padding-right: 90px;
}

.funnel .form-group {
    overflow: visible;
}

.funnel .btn-funnel {
    background-color: #222222;
    color: white;
    border-radius: 5px;
    border: 1px solid #222222;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 40%;
    margin-top: 14px;
}

.funnel .btn-funnel-back {
    color: #222222;
    border-radius: 5px;
    border: 1px solid #222222;
    width: 40%;
    margin-top: 14px;
}

.funnel .yellow-a-hig {
    color: #ffc74c;
}

.funnel .select2-container .select2-selection--single {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #d2d6dc;
    width: 100%;
    transition: border-color .15s ease-in-out;
}

.funnel .has-success .select2-container .select2-selection--single,
.has-success input,
.has-success .mask-container {
    border: 1px solid #d2d6dc;
}

.funnel .has-error .select2-container .select2-selection--single,
.has-success input,
.has-success .mask-container {
    border: 1px solid #d2d6dc;
}

.funnel .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 12px;
}

.funnel .has-success .select2-container .select2-selection--single .select2-selection__rendered:before,
.funnel .has-success .mask-container:before,
.funnel .has-error .select2-container .select2-selection--single .select2-selection__rendered:before,
.funnel .has-error .mask-container:before {
    display: none !important;
    content: none !important;
}

.funnel .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgb(210, 214, 220) transparent transparent transparent;
}

.funnel .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent rgb(210, 214, 220) transparent;
}

.funnel .select-gray .select2-selection__rendered {
    color: rgb(210, 214, 220) !important;
}

.funnel .select-black .select2-selection__rendered {
    color: #222222;
}

.funnel .control-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.funnel .step-four-title {
    color: #26CBFF;
    display: flex;
    justify-content: space-around;
    height: 70px;
    align-items: center;
}

.funnel .step-four-title {
    color: #26CBFF;
}



.step-four-loader {
    display: inline-flex;
    align-items: flex-end;
    height: 24px;
    gap: 5px;
    margin-right: 1rem;
}


.step-four-loader span {
    display: block;
    width: 6px;
    height: 100%;
    border-radius: 4px;
    transform-origin: bottom;
    animation: wave 1.2s ease-in-out infinite;
}


@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.2);
        /* Bar is at its shortest */
    }

    50% {
        transform: scaleY(1.0);
        /* Bar is at its tallest */
    }
}

/* Assigning the specific colors and animation delays to each bar */
.step-four-loader span:nth-child(1) {
    background-color: #64B5F6;
    /* Light Blue */
    animation-delay: 0s;
}

.step-four-loader span:nth-child(2) {
    background-color: #EC407A;
    /* Pink/Magenta */
    animation-delay: 0.15s;
}

.step-four-loader span:nth-child(3) {
    background-color: #5C6BC0;
    /* Indigo */
    animation-delay: 0.3s;
}

.step-four-loader span:nth-child(4) {
    background-color: #FFCA28;
    /* Yellow */
    animation-delay: 0.45s;
}

.funnel section.declined {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333C4B;
}

.funnel .declined-button {
    display: flex;
    justify-content: center;
}

.funnel .btn-contact {
    width: 50%;
    background-color: #26CBFF;
    color: #ffffff;
    border: none;
    border-radius: 0;
    margin-bottom: 12px;
    height: 48px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.funnel .btn-yellow {
    width: 50%;
    background-color: #FFC74D;
    color: #ffffff;
    border: none;
    border-radius: 0;
    height: 48px;
}

.funnel .funnel-form-header {
    font-size: 24px;
}

.funnel .prefix-symbol {
    position: absolute;
    left: 18px;
}

.funnel .hp-widget-rating-stars-container-container {
    display: none;
}

.funnel .swiper-button-next,
.funnel .swiper-button-prev {
    display: none !important;
}

.funnel a.es-header-btn {
    display: none !important;
}

.funnel .es-swiper-container {
    display: none !important;
}
@media (max-width: 1279px) {
    .funnel .special-offer-logo {
        margin-bottom: 50px;
    }
    .funnel .special-description {
        font-weight: bold;
    }
}

@media (max-width: 640px) {

    .funnel .step-four-container {
        margin-top: 0;
    }

    .funnel .special-offer-page {
        overflow: auto;
    }

    .funnel .btn-funnel {
        border-radius: 5px;
    }

    .funnel .form-group .form-control {
        border-radius: 5px !important;
    }

    .funnel .btn-funnel-back {
        border-radius: 5px !important;
    }

    .funnel .select2-container .select2-selection--single {
        border-radius: 5px !important;
    }

    .funnel .field-steppersonalform-phone .validation-icon-container {
        display: none;
    }

    .funnel .has-error #steppersonaldetails-monthly_income,
    .funnel .has-success #steppersonaldetails-monthly_income {
        padding-left: 60px !important;
    }

    .funnel .has-error .prefix-symbol,
    .funnel .has-success .prefix-symbol {
        left: 48px;
    }

    .funnel .step-four {
        background-color: #EDF4F9;
    }

    .funnel .funnel-form-header {
        font-size: 22px;
    }

    .funnel .yellow-a-hig {
        color: #222222;
    }

    .funnel .control-buttons {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
    }

    .funnel .btn-funnel,
    .funnel .btn-funnel-back {
        margin-top: 10px;
        height: 56px;
        width: 95%;
    }

    .funnel .form-container {
        padding: 12px;
        box-shadow: none !important;
    }

    .funnel .form-section {
        padding-top: 0;
        margin-top: 0;
    }

    .funnel .step-four section {
        position: relative;
        margin-bottom: 0;
        border-radius: 37px 37px 0 0;
        top: 6px;
    }

    .funnel .step-four.declined section {
        position: relative;
        margin-bottom: 0;
        border-radius: 37px 37px 0 0;
        top: 28px;
    }

    .funnel .form-padding {
        padding-left: 10px;
        padding-right: 10px;
    }

    .funnel .step-four .form-padding {
        padding-left: 10px;
        padding-right: 10px;
    }

    .funnel section {
        background-color: transparent;
    }

    .funnel .step-four section {
        background-color: #F7F9FB;
    }

    .funnel .step-four.declined section {
        background-color: #333C4B;
    }

    .funnel .form-group.has-success .form-control {
        border-color: #28a745;
        /* Зелена рамка */
    }

    .funnel .has-success .select2-container .select2-selection--single,
    .has-success input,
    .has-success .mask-container {
        border-color: #28a745;
        ;
    }

    .funnel .has-error .select2-container .select2-selection--single,
    .has-success input,
    .has-success .mask-container {
        border-color: #dc3545;
        ;
    }


    .funnel .form-group.has-error .form-control {
        border-color: #dc3545;
        /* Червона рамка */
    }

    .funnel .input-wrapper .input-icon {
        left: auto;
        right: 1rem;
    }

    .funnel .form-group .form-control {
        width: 100%;
    }

    .funnel .validation-icon-container {
        left: 12px;
        width: 24px;
        height: 20px;
    }

    .funnel .form-group .form-control.icon-left {
        padding-left: 1rem;
    }

    .funnel .form-group.has-success .form-control,
    .funnel .form-group.has-error .form-control {
        padding-left: 3rem;
    }

    .funnel .form-group.has-success .select2-container .select2-selection--single .select2-selection__rendered,
    .funnel .form-group.has-error .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 3rem;
    }

    .funnel .deposit .validation-icon-container {
        display: none;
    }

    .funnel .full-page-pdf .aprove-header-img {
        border-radius: 2rem 2rem 0 0;
    }

    .funnel .full-page-pdf .aprove-content {
        border-radius: 0 0 2rem 2rem;
    }

    .funnel .new-approval .form-section {
        background-color: #EDF4F9;
    }
}



@media (min-width: 768px) {
    .form-section .form-content {
        width: 40rem;
        padding-left: 0px;
        padding-right: 0px;
    }

    .funnel .form-section .form-content {
        width: 100%;
    }

    .funnel .new-approval .form-section .form-content {
        width: 40rem;
    }

    .step-wizard-item {
        min-width: 140px;
    }
}

@media (min-width: 1280px) {
    .form-section .form-content {
        width: 25rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: auto;
        margin-bottom: auto;
    }

    .new-approval .form-section .form-content {
        width: 40rem;
    }
}

.has-success {}

.has-success .select2-container .select2-selection--single .select2-selection__rendered:before,
.has-success .mask-container:before {
    content: '';
    display: inline-block;
    transform: rotate(45deg);
    height: 20px;
    width: 12px;
    margin-left: 5px;
    border-bottom: 5px solid #78b13f;
    border-right: 5px solid #78b13f;
    margin-right: 10px;
}

.has-success .mask-container:before {
    margin-left: -3px;
    margin-top: -10px;
}

.has-success .select2-container .select2-selection--single,
.has-success input,
.has-success .mask-container {
    border-color: #78b13f;
}



.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* Full background color */
    display: flex;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader-container.show {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.no-scroll {
    overflow: hidden;
    /* Hide scrollbars */
}

.loader-page {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #222222;
    font-size: 2.875rem;
}

.loader-page:before,
.loader-page:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader-page:after {
    color: #ffc74c;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.slider-handle {
    display: inline-block;
    animation: pulse 1.2s infinite;
}

@keyframes min-slider-handle {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.border-box-blue {
    background-color: #E7F3FE;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 9px -6px;
}

.background-gray {
    background: #ebebeb;
}

.deposit-field {
    background: #ebebeb;
    font-size: 14px;
    font-weight: bold;
}