:root{
    --color-black: #424242;
    --color-light-gray: #f5f5f5; /* #f7f7f8; */
    --color-dark-gray: #9ba6b2;
    --color-gray: #dce0e6;
    --color-theme: #2b97bf;
    --color-ultra-light-theme: #f0f3f7;
    --color-success: #96c464;
    --color-danger: #dc3545;
}


html{
    font-size: 12px !important;
    line-height: 18px;
}

body{
    font-family: 'Open Sans', sans-serif;
    color: var(--color-black);
    background: #fff;
    overflow-x: hidden;
    /* -webkit-font-smoothing:subpixel-antialiased !important;
    -webkit-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: 700;
}

::selection {
    background: var(--color-theme);
    color: #fff;
}
::-moz-selection {
    background:  var(--color-theme);
    color: #fff;
}

input:not(.number-with-arrow)::-webkit-outer-spin-button,
input:not(.number-with-arrow)::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nobr{
    white-space: nowrap;
}

.modal-top-layer{
    background: #00000034;
    padding-top: 50px;
}

.left-sidebar .list-group-item.has-tab-error {
    background: #e7caca;
}

.left-sidebar .list-group-item.has-tab-error i{
    background: #e19d9d;
    color: #fff;
}

.left-sidebar .list-group-item.has-tab-error.active{
    color: #495057;
}

@media (min-width: 982px){
    .modal-top-layer .modal-dialog{
        width: 466px !important;
    }
}

@media (min-width: 982px){
    .modal-top-layer .modal-dialog.modal-lg {
        width: 990px !important;
    }
}

.badge-join{
    display: flex;
}

.badge-join a:first-of-type .badge{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.badge-join a:last-of-type .badge{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.tag{
    background-color: #dfe3e7;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90px;
    display: block;
    overflow: hidden;
    padding: 0px 5px;
    border-radius: 8px;
    cursor: pointer;
    opacity: .4;
}

.notification-count{
    position: absolute;
    background: #c75c5c;
    width: 16px;
    height: 16px;
    text-align: center;
    font-size: 8px;
    border-radius: 50px;
    border: 2px solid #f5f5f5;
    top: 7px;
    line-height: 1.58;
    left: 6px;
    color: #ffffffeb;
    font-weight: 600;
    padding: 0px 4px;
}

.notification-count.notification-count-small {
    width: 10px;
    height: 10px;
    top: 0;
    left: 7px;
    padding: 0;
}

.jq-toast-single {
    box-shadow: 0px 3px 4px 1px rgb(0 0 0 / 20%);
}

.jq-toast-single a {
    color: #656f76 !important;
}

.jq-toast-single.jq-icon-success a {
    color: #ffffff !important;
}

.jq-toast-single.jq-icon-warning a {
    color: #ffffff !important;
}

.jq-toast-single.jq-icon-error a {
    color: #ffffff !important;
}

.jq-toast-single.jq-icon-info a {
    color: #ffffff !important;
}

.notify-item-icon .notify-icon {
    height: 100%;
    aspect-ratio: 1/1;
    background-color: white;
    object-fit: cover;
    border-radius: 100rem;
}

.notify-item{
    padding: 10px;
    background: #f0f3f7;
    border-bottom: 1px solid  #e9ecef;
    display: flex;
    transition: background 0.5s cubic-bezier(0.68, 0.02, 1, 1.05);
    cursor: pointer;
}

.notify-item:last-child{
    border-bottom: none;
}

.notify-item:hover{
    background: #f8f9fa;
}

.notify-item.clickable:hover {
    cursor: pointer;
}

.notify-item-icon-section{
    min-width: 40px;
}

.notify-item-icon{
    background: #f0f3f7;
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    overflow: hidden;
}

.notify-item-icon *{
    margin: auto;
}

.notify-text{
    line-height: 1.3;
    margin-bottom: 0;
}

.white-space-normal {
    white-space: normal;
}

.gap-5 {
    gap: 6px;
}