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

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "vazir";
    overflow-x: hidden;
}

header .navbar-toggler {
    border: 0;
    transition: .3s;
}

header .navbar-toggler:focus {
    border: 0;
}

header .navbar-light .navbar-toggler:hover {
    background: #c9c9c9;
}

#navbarHeader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

#header-close a {
    cursor: pointer;
    background: transparent;
    transition: .3s;
    font-size: 35px !important;
}

#header-close a:focus {
    box-shadow: 0px !important;
}

#header-close a:hover {
    color: #ffffffa2;
}

.bg-greenn {
    background: #00b300;
    color: white;
}


/* سایدبار */
.sidebarr {
    width: 280px;
    /* عرض سایدبار */
    background-color: #f8f9fa;
    /* رنگ پس‌زمینه */
    border-right: 1px solid #ddd;
    overflow-y: auto;
    /* اسکرول عمودی فقط برای سایدبار */
    position: sticky;
    overflow-x: hidden;
    top: 0;
    /* ارتفاع کامل */
    scrollbar-width: thin;
    /* برای فایرفاکس */
    scrollbar-color: #999 #f0f0f0;
    /* رنگ اسکرول */
}

/* برای کروم و مرورگرهای WebKit */
.sidebarr::-webkit-scrollbar {
    width: 6px;
}

.sidebarr::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.sidebarr::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 3px;
}

.active {
    color: #00b300;
}

header .list-unstyled li {
    cursor: pointer;
}

header .list-unstyled {
    padding-right: 0;
}

a {
    text-decoration: none;
    color: #212529;
    transition: .3s;
}

a:hover {
    text-decoration: none;
    color: #00b300;
}

header .card-header {
    transition: .3s;
}

header .collapse .card-header:hover {
    cursor: pointer;
    color: #00b300;
}

.bg-lowSecondary {
    background-color: rgba(0, 0, 0, .01);
}

.bg-green {
    background: linear-gradient(to bottom, #00b300, rgba(0, 179, 0, .6));
}

.shadow-green {
    box-shadow: 0px 0px 20px 2px #00b300;
}

header .dropdown-menu {
    width: 300px;
}

.pulse-btn {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.99);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.99);
    }
}

.btn-go {
    padding: 3px;
    transition: 0.3s;
    border-radius: 100%;
    box-shadow: 0px 0px 5px 1px #00b300;
    background: #00b300;
}

.item-hover:hover .btn-go {
    box-shadow: 0px 0px 10px 0.2px #00b300da;
    background: #00b30077;
}

.item-hover {
    cursor: pointer;
    transition: .3s;
}

.item-hover:hover {
    box-shadow: 0 0.9rem 1rem rgba(0, 0, 0, .15) !important;
}

.f-small {
    font-size: small;
}

.media-body b {
    white-space: nowrap;
}

.header-hover {
    transition: .3s !important;
}

@media (min-width:756px) {
    .header-hover:hover {
        scale: 1.1 !important;
        z-index: 1000;
    }
}

body {
    background: url("../images/bg.png") no-repeat center center fixed;
    background-size: cover;
}

#logos a:hover img{
    transition: .3s;
    transform: scale(1.1);
}