@import url("../dashboard/js/libs/bootstrap/css/bootstrap.min.css");
@import url("../dashboard/css/bootstrap-icons/font/bootstrap-icons.css");
@import url("../dashboard/css/font-awesome/css/font-awesome.min.css");
@import url("../dashboard/css/scrollbar.css");
@import url("../dashboard/js/libs/toastr/toastr.min.css");
@import url("../dashboard/js/libs/blueimpGallery/css/blueimp-gallery.min.css");
@import url("../dashboard/js/libs/datepicker/css/bootstrap-datepicker3.standalone.min.css");


:root {
    --transition-time: 0.2s;
}

hr{
    border: 1px solid #0369a1;
}

.bg-color-our {
    background-color: #f0f9ff;
}

.bg-color-our2 {
    background-color: #0369a1;
}


.dropdown-menu>li>a:hover {
    background-color: #0c4a6e !important;
}

.nav-link {
    color: white;
}

.nav-link {
    font-weight: 600;
}

.nav-link:hover {
    font-weight: 600;
}

.nav-link.active {
    font-weight: bolder;
}

body{
    font-family: 'SF Pro Display', sans-serif;
}


#toggleThemeBtn{
    display: inline-block;
    cursor: pointer;
    font-size: var(--theme-btn-size);
    height: var(--theme-btn-size);
    user-select: none;
    opacity: 0.8;
    white-space: nowrap;
}

#toggleThemeBtn i{
    transition: font-size var(--transition-time);
}

#toggleThemeBtn i:first-child{
    font-size: 0;
}

#toggleThemeBtn i:last-child{
    font-size: var(--theme-btn-size);
}

[data-bs-theme=dark] #toggleThemeBtn i:first-child{
    font-size: var(--theme-btn-size);
}

[data-bs-theme=dark] #toggleThemeBtn i:last-child{
    font-size: 0;
}

#toggleThemeBtn:hover i:first-child{
    font-size: var(--theme-btn-size) !important;
}

#toggleThemeBtn:hover i:last-child{
    font-size: 0 !important;
}

[data-bs-theme=dark] #toggleThemeBtn:hover i:first-child{
    font-size: 0 !important;
}

[data-bs-theme=dark] #toggleThemeBtn:hover i:last-child{
    font-size: var(--theme-btn-size) !important;
}

@media (max-width: 991.98px) {
    #toggleThemeBtn{
        display: block;
        width: fit-content;
        margin: auto;
    }
}



.file-progress-bar{
    margin: 0 0 10px 0;
    width: 0;
    height: 12px;
    font-size: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-image: linear-gradient(90deg, #d9534f, #29a645);
    color: #dddddd;
    transition: width 0.2s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav .nav-link.d-flex i{
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .navbar > .container .d-flex{
        width: 100%;
    }
}