@font-face {
    src: url("/fonts/Vazir.woff");
    font-family: 'BKoodak';
}

* {
    font-family: 'BKoodak', sans-serif;
}

.material-icons {
    vertical-align: middle;
}

.bg-theme-dark {
    background-color: #003d5d;
}

.bg-theme-light {
    background-color: #8c3d5d;
}

.clickable:hover {
    cursor: pointer;
}

.stick-bot-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
}

.stick-bot-right-2 {
    position: fixed;
    bottom: calc(5rem + 20px);
    right: 10px;
    z-index: 1000;
}

.stick-bot-right-3 {
    position: fixed;
    bottom: calc(10rem + 30px);
    right: 10px;
    z-index: 1000;
}

.stick-bot-right-4 {
    position: fixed;
    bottom: calc(15rem + 40px);
    right: 10px;
    z-index: 1000;
}

.stick-bot-right-5 {
    position: fixed;
    bottom: calc(20rem + 50px);
    right: 10px;
    z-index: 1000;
}

.stick-bot-right-6 {
    position: fixed;
    bottom: calc(25rem + 60px);
    right: 10px;
    z-index: 1000;
}

.sidebar-link {
    font-size: 20px;
}

.sidebar.slim {
    width: 20rem;
}

.page-wrapper.with-sidebar > .content-wrapper {
    left: 20rem;
    width: calc(100% - 20rem);
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url("/fonts/material-icons.woff2") format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.datepicker-dropdown {
    border: darkgray solid 2px;
    border-radius: 5px;
    z-index: 10;
    padding: 3px 7px;
    width: 100%;
    margin: 0;
    position: absolute !important;
    top: 6rem !important;
}

body.dark-mode .datepicker-dropdown {
    border: white solid 2px;
}

*.hide {
    display: none !important;
}

.long-label {
    line-height: 21px;
    height: 42px;
}

@media screen and (max-width: 640px) and (min-width: 576px) {
    .form-group.long-label {
        height: 63px;
    }
}

div.datepicker {
    position: relative;
}

.section-title:hover {
    cursor: pointer;
}

.btn-xl {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-xl > * {
    display: block;
}

.autocomplete {
    position: relative;
    display: inline-block;
    width: 100%;
}

.autocomplete-items {
    position: absolute;
    border-bottom: none;
    border-top: none;
    z-index: 99999;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    border-color: rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 0 .2rem rgba(24, 144, 255, .6);
    -webkit-box-shadow: 0 0 0 .2rem rgba(24, 144, 255, .6);
    box-shadow: 0 0 0 .2rem rgba(24, 144, 255, .6);
    outline: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .35)
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, .35)
}

::placeholder {
    color: rgba(0, 0, 0, .35)
}

.autocomplete-items div:hover {
    background-color: lightskyblue;
}

.autocomplete-active {
    background-color: dodgerblue !important;
    color: #ffffff;
}

.text-left {
    text-align: left !important;
}

select[multiple]::before {
    position: absolute;
    content: "Hold Control to select more than one";
    opacity: 0;
    top: 40px;
    background-color: rgba(20, 20, 20, 0.8);
    padding: 2px 5px;
    border-radius: 5px;
    color: white;
    font-size: 10px;
}

select[multiple]:hover::before {
    opacity: 1;
}

