#chat-list-unread-div{    
    position: fixed;
    z-index: 2000;
    background-color: #fff;   
    top: 5.7rem;
    right: 0;
    width: 20rem;
}
.chat-list-unread-div-container{
    height: 28rem;
    overflow-y: auto;
}

#filter-div{   
    position: fixed;
    z-index: 2000;
    background-color: #fff;   
    top: 5.7rem;
    right: 0;
    width: 25rem;
    height: calc(100% - 5.7rem); 
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    border-radius: 5px;
}

.filter-div-continer{
    padding: 1rem 0rem;
  
    overflow-y: auto;
}

/* font size */

.font-07rem{
    font-size: 0.7rem;
}


.font-08rem{
    font-size: 0.8rem;
}

.font-09rem{
    font-size: 0.9rem;
}


.font-1rem{
    font-size: 1rem;
}

.font-1-1rem{
    font-size: 1.1rem;
}

.font-1-2rem{
    font-size: 1.2rem;
}

/* font size */

/* text colors */
.text-warning-45{
    color: #e6ac00;
}

.text-warning-45-link-hover:hover{
    color: #e6ac00;
}

.text-white-80{
    color: #cccccc;
}
/* text colors */

/* flex */
.c-flex-2{
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
}

.c-flex-3{
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 2%;
}

.c-flex-4{
    display: grid;
    grid-template-columns: 23% 23% 23% 23%; 
    column-gap: 2%;
}

.c-flex-5{
    display: grid;
    grid-template-columns: 19% 19% 19% 19% 19%; 
    column-gap: 1%;
}

.c-flex-1-2{
    display: grid;
    grid-template-columns: 32% 66%;
    column-gap: 2%;
}
/* flex */

/* border radius */
.c-radius-05{
    border-radius: 0.5rem;
    overflow: hidden;
}
/* border radius */

/* borders */
.c-border-none{
    border: none !important;
}
/* borders */

/* buttons */
.cust-btn-warning-filter{
    background-color: #C89328;
    border: 1px solid #C89328;
    padding: 5px;
    color: #ffffff;
    border-radius: 3px;
}

.cust-submit-button{
    display: inline-block;
    background-color: #C89328 !important;
    border: 1px solid #C89328;
    font-size: 15px;
    font-weight: bold;
    height: 48px;
    line-height: 48px; 
    padding-inline: 44px 44px;
    color: #fff;
  }

  .cust-submit-button-sm{
    display: inline-block;
    background-color: #C89328 !important;
    border: 1px solid #C89328;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    /* line-height: 48px;  */
    padding-inline: 20px 20px;
    color: #fff;
    text-align: center;
  }

  .cust-button-sm{
    display: inline-block;
    background-color: #C89328 !important;
    border: 1px solid #C89328;
    font-size: 14px;
    font-weight: bold;
    /* height: 40px; */
    /* line-height: 0.3rem;  */
    padding: 0.2rem 1.3rem;
    color: #fff;
    text-align: center;
    border-radius: 0.1rem;
  }
/* buttons */

/* inputs */
.cust-select-light{   
    padding: 3px 10px;
    background-color: #FFFFFF !important;
    border: 1px solid #cccccc !important;
    border-radius: 0.3rem;
    font-size: 0.7rem;
    height: 1.4rem;
}

.cust-select-light-sm{   
    padding: 1px 5px;
    background-color: #FFFFFF !important;
    border: 1px solid #cccccc !important;
    border-radius: 0.3rem;
    font-size: 0.65rem;
    height: 1.4rem;
}

.cust-select-date-button-light{
    padding-left: 10px;
    padding-right: 10px;
    background-color: #FFFFFF !important;
    border: 1px solid #cccccc !important;
    border-radius: 0.3rem;
    font-size: 0.65rem;    
    height: 1.4rem;
}

.cust-select-date-button-light-sm{
    padding-left: 5px;
    padding-right: 5px;
    background-color: #FFFFFF !important;
    border: 1px solid #cccccc !important;
    border-radius: 0.3rem;
    font-size: 0.7rem;    
    height: 1.4rem;
}

.cust-checkbox-white{
    input[type=checkbox]{
        background-color: #2B2B2B;
        border: 1px solid #707070;
    }
    color: FFFFFF;
}
/* inputs */

/* background colors */
.bg-white-60{
    background-color: #999999;
}
.bg-white-100{
    background-color: #FFFFFF !important;
}
/* background colors */

.c-min-height-0{
    min-height: 0px !important;
}

.mouse-hand{
    cursor: pointer;
}

.hide-me{
    display: none;
    visibility: hidden;
}

.link-tab{
    /* background-color: #C89328 !important; */
    color: #FFFFFF !important;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    border-radius: 0.1rem;
    border-bottom: 2px solid #FFFFFF !important;
}

.link-tab-active{   
    color: #C89328 !important;
    border-bottom: 2px solid #C89328 !important;
}
