.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #2E3639;
    border-color: #2E3639;
}

.select2-results__option[aria-selected=true] {
    color: #fff;
    background-color: #2E3639;
}

.sl-dark-1 {
    background-color: #242729;
    color: white;
}

.sl-dark-2 {
    background-color: #2A2D30;
    color: white;
}

.sl-dark-3 {
    background-color: #2E3639;
    color: white;
}

.sl-green-1 {
    background-color: #089900;
    color: white;
}

#errorMessage {
    margin-top: 1rem;
    padding: 0.75rem;
    border: 1px solid #f87171; /* Tailwind's red-400 */
    background-color: #fee2e2; /* Tailwind's red-100 */
    color: #b91c1c; /* Tailwind's red-700 */
    border-radius: 0.375rem;
}

#leadErrorMessage {
    margin-top: 1rem;
    padding: 0.75rem;
    border: 1px solid #f87171; /* Tailwind's red-400 */
    background-color: #fee2e2; /* Tailwind's red-100 */
    color: #b91c1c;
    border-radius: 0.375rem;
}

.sl-blue-1 {
    background-color: #2175f3;
    color: white;
}

.sl-dark-4 {
    background-color: #52575E;
    color: white;
}

.btn-120 {
    width: 120px;
}

.btn-100 {
    width: 100px;
}

.btn-80 {
    width: 80px;
}

a {
    color: #ff4d00d9;
}

a:hover {
    color: #ff4d00d9;
}

.page-content {
    background-color: #f3f4f6;
}

@media (min-width: 768px) {
    .page-content:not(.container) {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1200px) {
    .page-content:not(.container) {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.card {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    border-width: 1px;
    border-color: #fff;
    border-radius: 0.5rem;
}

.border-t-4 {
    border-top-width: 4px;
    border-top-color: #ff765b;
}

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

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

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 10px;
}

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

@media (min-width: 1200px) {
    .navbar:not(.navbar-component) {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

.text-orange {
    color: #ff4d00d9;
}

.bg-color {
    background-color: #ff4d00d9;
}

/* .bg-success {
    background-color: #089900!important;
} */

.bg-slate {
    background-color: #757a83 !important;
}


.text-black {
    color: rgb(37, 37, 37);
}

.text-light-gray {
    color: #c5c5c5;
}

.text-yellow {
    color: #eeca00;
}

.nav-tabs-highlight .nav-link.active:before {
    background-color: #ff4d00d9;
}

@keyframes blink {
    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}

.online-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #089900;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.offline-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #f44336;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.online-indicator .blink {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #089900;
    opacity: 0.7;
    border-radius: 50%;
    animation: blink 1s linear infinite;
}

.offline-indicator .blink {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #f44336;
    opacity: 0.7;
    border-radius: 50%;
    animation: blink 1s linear infinite;
}

.conversation-img img {
    width: 2.5rem;
    height: 2.5rem;
}

.status-indicator-container {
    --indicator-size: .3125rem;
    --indicator-gap: .125rem;
    position: relative;
    display: block;
}

.status-indicator-container img {
    -webkit-mask-image: radial-gradient(circle at calc(100% - var(--indicator-size)) calc(100% - var(--indicator-size)), rgba(0, 0, 0, 0) calc(var(--indicator-size) + var(--indicator-gap)), #000 0);
}

.status-indicator {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: var(--indicator-size);
    border-radius: 50rem;
}

.chat-list .list-group .media.active {
    background-color: #eee;
    border-color: #eee;
    border-radius: 0.5rem;
}

.chat-badge {
    color: #2A2D30;
    background: rgba(255, 255, 255, .8);
    padding: 0.15rem 0.25rem;
    border-radius: 50rem;
    margin-top: 0.3rem;
}

.media-chat-item-reverse .media-chat-item:before {
    right: -4px;
}

.media-chat-item-reverse .btn-delete-msg {
    visibility: hidden;
    font-size: 10px
}

.media-chat-item-reverse:hover .btn-delete-msg {
    visibility: visible;
}

.typingIndicatorBubble {
    display: flex;
    height: 14px;
    align-items: center;
}

.typingIndicatorBubbleDot {
    width: 4px;
    height: 4px;
    margin-right: 4px;
    background-color: #57585a;
    border-radius: 50%;
    animation-name: bounce;
    animation-duration: 1.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.typingIndicatorBubbleDot:first-of-type {
    margin: 0px 4px;
}

.typingIndicatorBubbleDot:nth-of-type(2) {
    animation-delay: 0.15s;
}

.typingIndicatorBubbleDot:nth-of-type(3) {
    animation-delay: 0.3s;
}

.drawerContainer {
    position: fixed;
    right: 0;
    width: 200px;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
}

.sendbirdDrawerContainer {
    padding: 9px;
    position: fixed;
    bottom: 0;
    right: 0;
    border: 1px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    background-color: #ff4d00d9;
    margin-bottom: 10px;
    cursor: pointer;
    /*color: #742ddd;*/
}
.sendbirdDrawer {
    position: fixed;
    bottom: 0;
    justify-content: end;
    right: 0px;
    width: 60%;
    height: 70%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease-in-out;
    z-index: 998;
    padding-bottom: 20px !important;
    margin-bottom: 4%;
    border: 1px solid #9e9e9e;
    border-radius: 5px;
}

.sendbirdDrawerContainer {
    padding: 9px;
    position: fixed;
    bottom: 0;
    right: 10px;
    border: 1px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    background-color: #ff4d00d9;
    margin-bottom: 10px;
    cursor: pointer;
    /*color: #742ddd;*/
}

.sendbird-app__channellist-wrap {
    width: 300px;
}
.sendbirdDrawerContainer .unread-count{
    position: absolute;
    top: -3px;
    right: -4px;
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}
.sendbirdDrawer {
    position: fixed;
    bottom: 0;
    justify-content: end;
    right: 10px;
    width: 340px;
    height: 70%;
    /*background-color: white;*/
    /*box-shadow: 0 0 #0000, 0 0 #0000,0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);*/
    /*transition: bottom 0.3s ease-in-out;*/
    z-index: 998;
    margin-bottom: 60px;
    border: none;
    border-radius: 10px;
    padding: 5px;
}
@media (max-width: 425px) {
    .sendbirdDrawer {
        width: 310px;
        height: 50%;
    }
}

.sendbird-iconbutton {
    color: #ff765b !important;
}
.drawerToggle {
    display: flex;
    justify-content: end;
    position: fixed;
    /*bottom: 0;*/
    right: 0;
    z-index: 999;
    height: 60px;
    transition: height 0.3s ease-in-out;
}

.drawer {
    position: fixed;
    bottom: 0;
    justify-content: end;
    right: 0px;
    width: 20%;
    height: 70%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease-in-out;
    z-index: 998;
    padding-bottom: 20px !important;
}

.chatDrawer {
    position: fixed;
    bottom: 0;
    justify-content: end;
    right: 10px;
    width: 20%;
    height: 50%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease-in-out;
    z-index: 999;
    border-radius: 10px;
}

.conversation-list {
    height: 85% !important;
    overflow: auto;
}

.media-chat-scrollable {
    height: 230px;
}

.mainChat {
    height: 450px;
}

.header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.headerDetails {
    flex: 1;
    min-width: 0;
}

.chat__area-header-avatar {
    flex-shrink: 0;
}

.ml-auto {
    margin-left: auto;
}

@media (max-width: 768px) {
    .header {
        padding-left: 2%;
    }
}
.sendbirdUserDrawerContainer .chat-item {
    position: fixed;
    bottom: 0;
    border: 1px;
    border-radius: 50%;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    cursor: pointer;
}
.sendbirdUserDrawerContainer .chat-item .chat-item__title{
    display: flex;
    background: white;
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    width: 350px;
}
.sendbirdUserDrawerContainer .chat-item .chat-item__title .chat-item_detail{
    display: flex;
    gap: 10px;
    align-items: center;
}

.sendbirdUserDrawerContainer .chat-item img{
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.sendbirdUserDrawerContainer .chat-item img{
    font-size: 15px;
    font-weight: 600;
}

.sendbirdUserDrawer {
    position: fixed;
    bottom: 0;
    justify-content: end;
    width: 350px;
    height: 480px;
    transition: bottom 0.3s ease-in-out;
    z-index: 998;
    margin-bottom: 55px;
}

@media only screen and (max-width: 768px) {
    .drawer {
        width: 60% !important;
        height: 50% !important;
        padding-bottom: 20px !important;
    }

    .conversation-list {
        height: 75% !important;
        overflow: auto;
    }

    .chatDrawer {
        width: 60% !important;
        height: 50% !important;
    }

    .media-chat-scrollable {
        height: 220px !important;
    }
}

@media only screen and (max-width: 1440px) {
    .media-chat-scrollable {
        height: 220px;
    }
}

@media only screen and (max-width: 375px) {
    .drawer {
        width: 90% !important;
        height: 50% !important;
        padding-bottom: 20px !important;
    }

    .chatDrawer {
        width: 90% !important;
        height: 50% !important;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .drawer {
        width: 40%;
        height: 70%;
        padding-bottom: 20px !important;
    }

    .chatDrawer {
        width: 40%;
        height: 60%;
    }

    .conversation-list {
        height: 85% !important;
        overflow: auto;
    }

    .media-chat-scrollable {
        height: 300px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1350px) {
    .chatDrawer {
        width: 40%;
        height: 60%;
    }
}

.custom-dial-button {
    background-color: #ff4d00d9;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 5px;
}

.noty_buttons {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}

.noty_modal {
    background-color: #162034 !important;
}

.noty_body {
    background-color: #162034 !important;
    color: white !important;
    border-radius: 10px;
    padding:0;
}
.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
#remote_video_element_id,#local_video_element_id{
    margin-top: 25px;
}
#local_video_element_id{
    height: 0;
    width: 0;
}
.custom-notification video {
    width: 100%;
    border-radius: 10px;
}

.noty_body .btn-close {
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.noty_bar {
    background-color: #162034 !important;
    color: #fff !important;
    border-color: #546e7a !important;
    border-radius: 10px;
}

.btn-accept {
    background-color: #3eab6c;
    color: #FFFFFF;
}

.transbox {
    background-color: #ffffff;
    opacity: 0.7;
    padding: 10px;
}

.mute-call {
    background-color: #656565;
    color: #fff;
    border-radius: 20px;
}

.video-call {
    background-color: #656565;
    color: #fff;
    border-radius: 20px;
}

.end-call {
    background-color: #fd0303;
    color: #fff;
    border-radius: 10px;
}

.call-message-container {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
    max-width: 300px;
}

.call-message {
    border: 1px solid #9e9e9e;
    border-radius: 10px;
    width: 100px;
    padding: 10px;
    background-color: #fd6625;
}

.call-info {
    font-size: 14px;
    font-weight: bold;
}

.call-duration {
    font-size: 12px;
    color: #ffffff;
    margin-top: 4px;
}

.end-call-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.end-call-btn:hover {
    background: #c0392b;
}


.link-icon {
    font-size: 1.2em;
    color: #ED944D;
    transition: transform 0.1s ease;
}

.link-icon:hover {
    transform: scale(1.1);
}

.model-badge {
    display: inline-block;
    background-color: #eee;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: sans-serif;
    color: #333;
}

.active-card {
    background-color: #f8fafc;
    border-color: #b0b0b0;
}

.inactive-card {
    border-color: #e0e2e4
}

.custom-textarea {
    min-height: 490px !important;
    max-height: 490px !important;
    width: 1080px;
    border-color: #e0e2e4;
    border-radius: 10px
}

.custom-textarea:focus {
    border-color: #858585;
    outline: none;
}

@keyframes bounce {
    0%,
    60%,
    100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}
