* {
    font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

body {
  margin-bottom: 60px;
}

.textprimary {
    color: #CE0011 !important;
}

/*----------- Confietti Congratulations Starts---------*/

@keyframes confetti-slow {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
    }
}

@keyframes confetti-medium {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
    }
}

@keyframes confetti-fast {
    0% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
    }

    100% {
        transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
    }
}

.container {
    width: 100vw;
    /*height: 100vh;*/
    background: #ffffff;
    border: 1px solid white;
    display: fixed;
    top: 0px;
}

.confetti-container {
    perspective: 700px;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.confetti {
    position: absolute;
    z-index: 1;
    top: -10px;
    border-radius: 0%;
}

.confetti--animation-slow {
    animation: confetti-slow 2.25s linear 1 forwards;
}

.confetti--animation-medium {
    animation: confetti-medium 1.75s linear 1 forwards;
}

.confetti--animation-fast {
    animation: confetti-fast 1.25s linear 1 forwards;
}

/* Checkmark */
.checkmark-circle {
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
}

    .checkmark-circle .background {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: #00C09D;
        position: absolute;
    }

    .checkmark-circle .checkmark {
        border-radius: 5px;
    }

        .checkmark-circle .checkmark.draw:after {
            -webkit-animation-delay: 100ms;
            -moz-animation-delay: 100ms;
            animation-delay: 100ms;
            -webkit-animation-duration: 3s;
            -moz-animation-duration: 3s;
            animation-duration: 3s;
            -webkit-animation-timing-function: ease;
            -moz-animation-timing-function: ease;
            animation-timing-function: ease;
            -webkit-animation-name: checkmark;
            -moz-animation-name: checkmark;
            animation-name: checkmark;
            -webkit-transform: scaleX(-1) rotate(135deg);
            -moz-transform: scaleX(-1) rotate(135deg);
            -ms-transform: scaleX(-1) rotate(135deg);
            -o-transform: scaleX(-1) rotate(135deg);
            transform: scaleX(-1) rotate(135deg);
            -webkit-animation-fill-mode: forwards;
            -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }

        .checkmark-circle .checkmark:after {
            opacity: 1;
            height: 75px;
            width: 37.5px;
            -webkit-transform-origin: left top;
            -moz-transform-origin: left top;
            -ms-transform-origin: left top;
            -o-transform-origin: left top;
            transform-origin: left top;
            border-right: 15px solid white;
            border-top: 15px solid white;
            border-radius: 2.5px !important;
            content: "";
            left: 37px;
            top: 82px;
            position: absolute;
        }

@-webkit-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@-moz-keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    20% {
        height: 0;
        width: 37.5px;
        opacity: 1;
    }

    40% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }

    100% {
        height: 75px;
        width: 37.5px;
        opacity: 1;
    }
}

.submit-btn {
    height: 45px;
    width: 200px;
    font-size: 15px;
    background-color: #00c09d;
    border: 1px solid #00ab8c;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(87, 71, 81, 0.2);
    cursor: pointer;
    transition: all 2s ease-out;
    transition: all 0.2s ease-out;
}

    .submit-btn:hover {
        background-color: #2ca893;
        transition: all 0.2s ease-out;
    }



/*----------- Customer Adjusted Range slider Css Start---------*/
.range {
    display: flex;
    width: 80%;
}

.range__slider {
    width: 130%;
}

.range__value {
    width: 35%;
    margin-left: 45px;
    text-align: center;
    border-left: #e6e4e4 1px solid;
}

.form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .form-group label {
        text-transform: uppercase;
        font-size: .7rem;
        color: #222;
        margin-bottom: 5px;
    }

    .form-group span {
        font-size: 2rem;
        font-weight: 600;
        color: #3c3b3b;
    }

.range__slider label {
    margin-bottom: 10px;
}

.range__slider [type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 13px;
    border-radius: 6px;
    background: #f1f1f1;
    outline: none;
    padding: 0;
    margin: 0;
}

    /* custom thumb */
    .range__slider [type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #8b8989ad;
        border: #f9ca24 5px solid;
        cursor: pointer;
        -webkit-transition: background .15s ease-in-out;
        transition: background .15s ease-in-out;
    }

        .range__slider [type="range"]::-webkit-slider-thumb:hover {
            background: #f0932b;
        }

    .range__slider [type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: 0;
        border-radius: 50%;
        background: #f0932b;
        border: #f9ca24 5px solid;
        cursor: pointer;
        -webkit-transition: background .15s ease-in-out;
        transition: background .15s ease-in-out;
    }

    .range__slider [type="range"]::-moz-range-thumb:hover {
        background: #f9ca24;
    }

/* remove border */
input::-moz-focus-inner, input::-moz-focus-outer {
    border: 0;
}

.overlayloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgb(220,20,60);*/
    background-color: #dee2e6 /*#fff*/ /*rgb(0 0 0 / 50%)*/;
    z-index: 9999;
}
#rbloader {
    color: red;
}

.loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    animation: loader-rotate 1s infinite cubic-bezier(0.62, 0.49, 0.52, 0.32);
    transform: skew(20deg, 20deg);
    transform-origin: center;
}

.main-div {
    position: absolute;
    left: 46%;
    top: 30%;
    width: auto;
}
@media screen and (max-width: 600px) {
    .main-div {
        position: absolute;
        left: 39%;
        top: 38%;
        width: auto;
    }
}

    .loader-icon1 {
        border-bottom: 2px solid red;
        rotate: 4deg;
    }

    .loader-icon2 {
        border-bottom: 2px solid #fff;
        rotate: 129deg;
    }

    .loader-icon3 {
        border-bottom: 2px solid #000;
        rotate: 272deg;
    }

    .text {
        color: #fff;
        position: relative;
        top: 37px;
        left: 22px;
    }

    .text2 {
        color: #000000;
        position: relative;
        top: 70%;
        left: -37%;
        font-weight: bold;
        margin-top: 10%;
    }

    @keyframes loader-rotate {
        0% {
            transform: skew(20deg, 20deg) rotate(0deg)
        }

        100% {
            transform: skew(20deg, 20deg) rotate(360deg)
        }
    }


    /*New Design ApplyPersonalLoan.cshtml css started Here*/

    html {
        font-size: 14px;
    }

    @media (min-width: 768px) {
        html {
            font-size: 16px;
        }
    }

    html {
        position: relative;
        min-height: 100%;
    }

    body {
        margin-bottom: 60px;
    }

    .custom-confirm-button {
        padding: 4px 18px !important;
    }

    .swal2-styled.swal2-confirm {
        background-color: #000000 !important;
    }

    .logowidth {
        width: 10% !important;
    }

    .mt60container {
        margin-top: 60px !important;
    }

    .mb20container {
        margin-bottom: 20px !important;
    }

    .mt100 {
        margin-top: 100px;
    }

    .desktop {
        display: block !important;
    }

    .mobile {
        display: none !important;
    }
/*
@media screen and (min-width: 320px) and (max-width: 768px) {
     Assuming the typical screen width range for Android phones and tablets 
    .desktop {
        display: block !important;
    }
}*/


.cardshdrflex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.dflex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    @media screen and (max-width: 600px) {
        .mt100 {
            margin-top: 25px;
        }
        .cardshdrflex {
            display: block;            
        }
        .dflex {
            display: flex;
            align-items: center;
            flex-direction: row;
            text-align: start !important;
        }

        .logowidth {
            width: 40% !important;
        }

        .mt60container {
            margin-top: 0px !important;
        }

        .desktop {
            display: none !important;
        }

        .mobile {
            display: block !important;
        }

    }



/*Bar Loader*/

.barLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears on top of other content */
}

.loading-wave {
    width: auto;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.loading-bar {
    width: 20px;
    height: 10px;
    margin: 0 5px;
    background-color: #3498db;
    border-radius: 5px;
    animation: loading-wave-animation 1s ease-in-out infinite;
}

    .loading-bar:nth-child(2) {
        animation-delay: 0.1s;
    }

    .loading-bar:nth-child(3) {
        animation-delay: 0.2s;
    }

    .loading-bar:nth-child(4) {
        animation-delay: 0.3s;
    }

@keyframes loading-wave-animation {
    0%, 100% {
        height: 10px; /* Initial and final height */
    }

    50% {
        height: 30px; /* Peak height of the wave */
    }
}

@media screen and (max-width: 600px) {
    .navbar-collapse.open {
        box-shadow: 0px 1px 20px 0px rgba(23, 50, 101, .3)!important;
    }
}

/*        .mobile {
            display: block !important;
        }
    }*/