a::selection {
    background-color: #EF8037; /* Replace #YOUR_COLOR with the desired highlight color */
    color: #fff; /* Change the text color if needed */
}

a::-moz-selection {
    background-color: #EF8037; /* Replace #YOUR_COLOR with the desired highlight color */
    color: #fff; /* Change the text color if needed */
}

a {
    color: #EF8037;
}

.rotate-transition {
    transition: transform 0.4s; /* Adjust the duration as needed */
}

.body {
    margin: 0;
}

/* .bkg_grey_700 {
    background-color: #343542;
}

.bkg_light_grey {
    background-color: rgb(140, 147, 168);
} */


/* -------------------------- CHAT -------------------------- */
/* TOGGLE SWITCH */

.toggle {
    position: relative;
    display: block;
    width: 70px;
    height: 30px;
    padding: 3px;
    margin: auto;
    border-radius: 50px;
    cursor: pointer;
}
.toggle-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.toggle-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 12px;
    background: #FBE3A3;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 3px
    rgba(0, 0, 0, 0.15);
}
.toggle-label:before,
.toggle-label:after {
    position: absolute;
    top: 50%;
    color: black;
    margin-top: -.5em;
    line-height: 1;
}
.toggle-label:before {
    content: attr(data-off);
    right: 11px;
    color: #fff;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.toggle-label:after {
    content: attr(data-on);
    left: 11px;
    color: #fff;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}
.toggle-input:checked~.toggle-label {
    background: #444654;
}
.toggle-input:checked~.toggle-label:before {
    opacity: 0;
}
.toggle-input:checked~.toggle-label:after {
    opacity: 1;
}
.toggle-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 29px;
    height: 29px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    border-radius: 50%;
}
.toggle-handle:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 16px;
    height: 16px;
}
.toggle-input:checked~.toggle-handle {
    left: 42px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Transition*/
.toggle-label,
.toggle-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}

/* LOADING SPINNER */
.processing-message {
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

.spinner-dark {
    border: 4px solid rgb(255, 255, 255, 0.1);
    border-left-color: #fff;
}
.spinner-light {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
}

.message {
    margin-left: 8px;
    font-size: 14px;
    font-family: sans-serif;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.no-scrollbar {
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
}

.no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}


/* custom-scrollbar class */
.custom-scrollbar {
    overflow: auto;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #888; 
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* chat-scrollbar class */
/* .chat-scrollbar { */
    /* overflow: auto; */
    /* overflow_y: scroll; */
/* } */

.chat-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.chat-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

.chat-scrollbar::-webkit-scrollbar-thumb {
    background: #888; 
}

.chat-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.chat-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* HOME PAGE STYLES */

.video-autoplay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    overflow: hidden;
}

/* @media screen and (max-width: 450px) {
    .disappear-on-small {
        display: none;
    }
} */


/* END OF HOME PAGE STYLES */