.thelegalmind-bg-image {
    /* background-image: url(/static/assets/images/backgrounds/bg_colorbox.png); */
    background-color: #a6a6a6;
    background-position: center;
    /* background-size: contain;
    background-repeat: repeat; */
    background-size: cover;
    background-repeat: no-repeat;
}

.custom_card_header {
    /* display: none; */
    background-color: #f1f1f1;
    color: #222222;
    padding: 10px;
}

.rounded-circle{
    object-fit: cover;
}

.border-primary{
    border: 2px solid;
    background-color: aliceblue;
}

#chat_content{
    overflow: scroll;
    height: 70vh;
}

.bg-light-info {
    background-image: linear-gradient(98deg, #315ACF , #583E80);
    border: 0px;
}

.btn-primary{
    background-color: #315ACF;
}

.bg-light {
    background-color: #F6F9FC !important;
}

.rounded-1 {
    border-radius: 9px !important;
}

#chat_content {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
#chat_content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

#custom_chat_ins{
    display: none;
}

#user_question_ws{
    background-color: transparent;
    border-color: transparent;
    color: #5A6A85;
    padding: 0px;
    line-height: 30px;
    width: calc(100% - 75px);
}

.user_question_with_switch{
    border-radius: 5px;
    background-color: #F1F2F4;
    border-color: #F1F2F4;
}

[data-initials]:before {
    /* background: #099bdd; */
    background: transparent;
    color: white;
    opacity: 1; 
    content: attr(data-initials); 
    display: inline-block; 
    font-weight: bold; 
    border-radius: 50%; 
    vertical-align: middle; 
    /* margin-right: 0.5em;  */
    width: 35px; 
    height: 35px; 
    line-height: 35px; 
    text-align: center; 
}

.ic_custom_profile{
    border-radius: 50%; 
    margin-right: 0.5em; 
    width: 35px; 
    height: 35px;
    text-align: center; 
}

.other_user_name {
    margin: 0rem 0.5rem;
    line-height: 35px;
    margin-left: 0px;
}

.left-sidebar{
    border-right:none;
}

.app-header{
    box-shadow: 0 9px 6px -6px #00000029;
}

.brand-logo{
    box-shadow: 0 9px 6px -6px #00000029;
}

.reply_question{
    border-style: inset;
    border-radius: 7px;
    padding: 5px;
    font-size: 12px;
    color: #6d6d6d;
    background-color: #ededed;
    margin-bottom: 5px;
}

.custom_card{
    margin-bottom:5px;
    max-width: 100vw !important;
}

.room_title{
    font-weight: 600;
}

.room_member{
    font-size: 12px;
    color: #555;
}

.ui-autocomplete{
    border-radius: 5px 5px 0px 0px;
    border: none !important;
}

.ui-menu .ui-state-active{
    border-radius: 5px ;
    border: none;
}

.container_question{
    padding-bottom:0px !important; 
    padding-top:0px !important;
    position: sticky;
    bottom: 5px;
}

#chat_content{
    height: calc(100vh - 250px) !important;
}

#ask_form_ws{
    margin: 5px 10px;
}

.btn_accordion{
    border: 0px;
    background-color: transparent;
    color: #828282;
    margin: 5px 10px 5px 0px;
    font-size: 12px;
}

.accordion_pandu{
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.accordion-item{
    background-color: transparent;
    border: none;
}

.accordion-body{
    padding-top: 0px;
    padding-bottom: 0px;
}

/* body{
    background-color: black;
} */

#ai_checkbox {
    display: none;
}

.switch_pandu{
    float: right;
    height: 34px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.toggle {
    height: 30px;
    width: 65px;
    border-radius: 9999px;
    background-image: url(../../images/icons/sw_chat_pandu.png);
    background-size: cover;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    /* box-shadow: 6px 6px 10px #0000003d; */
}

#ai_checkbox:checked + .toggle {
    background-image: url(../../images/icons/sw_chat_group.png);
    background-size: cover;
}

.toggle::before {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    border-radius: 50%;
    background-color: #cdcdcd;
    transition: all 0.5s ease-in-out;
}

#ai_checkbox:checked + .toggle::before {
    position: absolute;
    left: calc(100% - 30px);
    background-color: #a1c7fe;
}




