* {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.select2-container--below .select2-container--focus.select2-container--open {
    width: 200px;
}

select.form-control-sm ~ .select2-container--default {

}

.navbar-bg-colors {
    background-color: #2b7ce3;
}

.load_notifications {
    position: relative;
}

.notifications_count {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    right: 5px;
    top: -14px;
}

.scrolltop {
    left: 10px !important;
    right: auto !important;
}

.scroll {
    left: 20px !important;
    right: auto !important;
}

/* Overwrite x Sign in select2 option box */
.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    color: transparent;
}

/* Begin:Custom checkbox */
.form-check-input {
    display: none;
}

.checkbox-label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
}

.checkbox-label::after {
    content: "\2713";
    font-size: 15px;
    position: absolute;
    left: 3px;
    top: 1px;
    color: #007bff;
    visibility: hidden;
}

.form-check-input:checked + .checkbox-label::after {
    visibility: visible;
}

/* End:Custom checkbox */
