html, body{ overflow-x: hidden}
.cursor-pointer{ cursor: pointer !important; }
.validation-error,.error , .custom-error{ color: red !important; font-size: 0.85rem !important; }
.disabled { cursor: not-allowed }
.disabled-input { cursor: not-allowed; background: rgba(0,0,0,0.1) !important; }
.action-icon { font-size: 1.21875rem!important; margin: 0 5px; }
.z-index-1 { z-index: 1 !important; }
.datepicker-container { z-index: 9999 !important; }
input[readonly] { background-color: rgba(0,0,0,0.08) !important; }
select[readonly] { background-color: rgba(0,0,0,0.08) !important; }

#custom_preloader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,0.3);
    z-index: 9999 !important;
    cursor: wait;
    /*pointer-events: none;*/
}

#custom_preloader .loader-div {
    /*perspective: 1000px;
    border-radius: 50%;
    width: 68px;
    height: 68px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
}
#custom_preloader .wrapper{
    position: absolute;
    top: -35px;
    transform: scale(1.5);
}
#custom_preloader .loader{
    height: 25px;
    width: 1px;
    position: absolute;
    animation: rotate 3.5s linear infinite;
}
#custom_preloader .loader .dot{
    top: 30px;
    height: 7px;
    width: 7px;
    background: #fff;
    border-radius: 50%;
    position: relative;
}
.text{
    position: absolute;
    bottom: -85px;
    font-size: 25px;
    font-weight: 400;
    font-family: 'Poppins',sans-serif;
    color: #fff;
}
@keyframes rotate {
    30%{
        transform: rotate(220deg);
    }
    40%{
        transform: rotate(450deg);
        opacity: 1;
    }
    75%{
        transform: rotate(720deg);
        opacity: 1;
    }
    76%{
        opacity: 0;
    }
    100%{
        opacity: 0;
        transform: rotate(0deg);
    }
}
#custom_preloader .loader:nth-child(1){
    animation-delay: 0.15s;
}
#custom_preloader .loader:nth-child(2){
    animation-delay: 0.3s;
}
#custom_preloader .loader:nth-child(3){
    animation-delay: 0.45s;
}
#custom_preloader .loader:nth-child(4){
    animation-delay: 0.6s;
}
#custom_preloader .loader:nth-child(5){
    animation-delay: 0.75s;
}
#custom_preloader .loader:nth-child(6){
    animation-delay: 0.9s;
}
