.captcha_wrapper{
    width: 100%;
    height: 55px;
    background-color: var(--theme-color);
    border-radius: 5px;
}

@media(min-width: 768px) and (max-width: 991px){
    .captcha_wrapper{
        height: 75px !important;
    }
}

.captcha-button{
    background-color: var(--theme-secondary-color) !important;
    color: var(--theme-color) !important;
}
.captcha-button i{
    font-size: 18px;
    font-weight: 700 !important;
    transition: transform 0.5s ease; /* Smooth transition for rotation */
}

.rotate {
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.captcha-button:hover{
    background-color: hsl(var(--hue), var(--sat), calc(var(--light) + 10%)) !important;
    color: var(--theme-secondary-color) !important;
}

.captcha-button:hover i{
    transform: rotate(90deg);
}

.captcha_container{
    height: 100%;
    /*border: 3px solid hsl(var(--hue), var(--sat), calc(var(--light) + 60%));*/
    background-size: cover;
    background-position: center;
}
.app-sidebar {
    background-color: var(--primary-bg-darker);
    color: white !important;
}
input[type=file].form-control{
    padding: .375rem .75rem !important;
}

.side-menu .sub-category {
    color: #eee !important;
}

.side-menu__item,  .slide-item:focus, .slide-item, .side-menu__item.active .side-menu__icon {
    color: white !important;
}

.app-header{
    background-color: var(--primary-bg-darker);
}

.side-header {
    border-bottom: 1px solid var(--primary-bg-darker);
    border-right: 1px solid var(--primary-bg-darker);
    padding: 0;
}
.side-header{
    background-color: var(--primary-bg-darker);
}
.header-brand-img {
    max-width: 200px;
}
.shadow {
    box-shadow: 0 .5rem 1rem var(--primary-bg-color) !important;
}

.side-menu__icon, .slide-item.active, .slide-item:hover, .side-menu__item.active .side-menu__icon {
    --light: 20;
    color: var(--primary-bg-hover) !important;
}
.slide-menu li .slide-item::before {
    color: var(--primary-bg-hover) !important;
}

.side-menu__item:hover, .side-menu__item.active{
    color: var(--primary-bg-hover) !important;
}
.side-menu__item:hover .side-menu__icon, .side-menu__item:hover .side-menu__label, .side-menu__item:focus .side-menu__icon, .side-menu__item:focus .side-menu__label {
    color: var(--primary-bg-hover) !important;
}

.modal-header {
    background-color: var(--primary-bg-color); !important;
    color: #fff !important;
    border-color: var(--primary-bg-color); !important;
}
.modal-header .btn-close{
    color: #fff !important;
}



/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.spinner {
    text-align: center;
}

.logo {
    width: 120px; /* Adjust as needed */
    height: auto;
}

.loading-dots {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.loading-dots span {
    font-size: 100px; /* Increase font size */
    font-weight: bolder; /* Make dots bold */
    margin: 0 10px; /* Increase space between dots */
    animation: bounce 1.5s infinite;
    color: var(--theme-color); /* Set color for visibility */
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.overlay{
    position: relative;
}

.overlay:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0009;
}



/*.card {*/
    /*--opacity: .5;*/
    /*color: #fff !important;*/
    /*background-color: rgba(var(--primary-bg-rgb-color), var(--opacity)) !important;*/
/*}*/
