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;
}

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

    .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;
    }
}

.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: #edf4f9;
    /* 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;
}