/* Webkit (Chrome, Safari, Edge) */
#drawer-content::-webkit-scrollbar {
    width: 0.7em;
    opacity: 0.7;
}

#drawer-content::-webkit-scrollbar-track {
    background: #ffffff;
    /* Light background for the track */
}

#drawer-content::-webkit-scrollbar-thumb {
    background: #888;
    /* Darker color for the thumb */
    border-radius: 10px;
    /* Adjust value for more/less rounding */
}

#drawer-content::-webkit-scrollbar-thumb:hover {
    background: #555;
    opacity: 1;
    /* Darker color on hover */
}


/* start loader  */
.loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }

    25% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
    }

    50% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
    }

    75% {
        box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }

    100% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }
}

/* end loader */


.gradient-1 {
    background: linear-gradient(to right, #ec4899, #f97316);
}

.gradient-2 {
    background: linear-gradient(to right, #3b82f6, #6366f1);
}

.gradient-3 {
    background: linear-gradient(to right, #4ade80, #14b8a6);
}

.gradient-4 {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.gradient-5 {
    background: linear-gradient(to right, #facc15, #ef4444);
}

.gradient-6 {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
}

.gradient-7 {
    background: linear-gradient(to right, #a3e635, #22c55e);
}

.gradient-8 {
    background: linear-gradient(to right, #fb7185, #d946ef);
}

.gradient-9 {
    background: linear-gradient(to right, #374151, #111827);
}

.gradient-10 {
    background: linear-gradient(to right, #f59e0b, #ea580c);
}




/* start loader-spinner  */
/* From Uiverse.io by Fernando-sv */
.loader-spinner {
    border: 4px solid rgba(0, 0, 0, .1);
    border-left-color: transparent;
    border-radius: 50%;
}

.loader-spinner {
    border: 4px solid rgba(0, 0, 0, .1);
    border-left-color: transparent;
    width: 36px;
    height: 36px;
}

.loader-spinner {
    border: 4px solid rgba(0, 0, 0, .1);
    border-left-color: transparent;
    width: 36px;
    height: 36px;
    animation: spin89345 1s linear infinite;
}

@keyframes spin89345 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* end loader-spinner */


.alizam-badge {
    border-radius: 8px;
    background: rgba(15, 50, 96, 0.10);
    color: #0F3260;
    padding: 5px;
}

.team-profile-image {
    width: 50px !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #0F3260;
    padding: 3px;
    border-radius: 50%;
}


/* ripple effect start */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    /* Adjust color as needed */
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ripple effect start */
