#kt_aside {
    background: #fff;
}

.l-section {
    overflow: auto;
}

:root {
    --primary: #3F51B5;
    --warning: #e6b325;
    --hover-primary: #000066;
    --sec-primary: #DDF3FF;
    --trans-primary: rgba(160, 122, 201, 0.1);
}

.hr-comment {
    border-top: 2px solid rgba(0, 0, 0, .1);
    border-style: dashed;
}

.border-setter .nav-item {
    display: flex;
    align-items: center;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.border-setter .nav-item > a,
.border-setter .nav-item a.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 1.3rem;
    color: #3f4254;
}

.border-setter .nav-item a.nav-link {
    position: relative;
}

.border-setter .nav-item .dropdown::before,
.border-setter .nav-item .nav-link::before {
    transition: 0.3s ease-in-out;
    width: 0;
    background: var(--warning);
    height: 2px;
    position: absolute;
    bottom: 5px;
    content: "";
    left: calc(50% - 0px);
    opacity: 0;
}

.border-setter .nav-item:hover .dropdown::before,
.border-setter .nav-item:hover .nav-link::before {
    transition: 0.3s ease-in-out;
    width: 12px;
    left: calc(50% - 6px);
    opacity: 1;
}

.navbar-dark .navbar-nav .show > .nav-link {
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
}

.menu-item-active a.nav-link {
    position: relative;
}

.text-default {
    color: #3f4254 !important;
}

.navbar-nav .nav-item i {
    color: #3f4254
}

.menu-item-active a.nav-link:after {
    width: 12px;
    background: var(--warning);
    height: 2px;
    position: absolute;
    bottom: 5px;
    content: "";
    left: calc(50% - 6px);
}

table.custom-table thead tr th:first-child {
    border-right: 2px solid #eee;
    border-radius: 0 5px 5px 0;
    background: var(--primary);
    color: #fff
}

table.custom-table thead tr th {
    border-radius: 0;
    background: var(--primary);
    color: #fff
}

table.custom-table thead tr th:last-child {
    border-left: 2px solid #eee;
    border-radius: 5px 0 0 5px;
    background: var(--primary);
    color: #fff
}

table.custom-table tbody tr {
    border: 5px solid #eee;
}

table.custom-table tr td {
    background: #fff;
    padding: 0.5rem;
}

table.custom-table tr td:first-child {
    background: #fff;
    border-radius: 0 10px 10px 0;
}

table.custom-table tr td:last-child {
    background: #fff;
    border-radius: 10px 0 0 10px;
}

.card.card-custom {
    background: transparent;
    box-shadow: none;
}

.card.card-custom .card-header {
    border-bottom: none;
    position: relative;
}

.card.card-custom .card-header .card-title::before {
    background-size: cover;
    background: url("/static/assets/svg/card-header.svg") no-repeat;
    width: 16px;
    height: 19px;
    right: 1px;
    content: "";
    position: absolute;
}

.card.card-custom .card-header .card-title.yellow-svg::before {
    background: url("/static/assets/svg/card-header-yellow.svg") no-repeat;
}

.card.card-custom .card-body {
    background: #eee;
    border-radius: 1rem;
}

.nav-item a i {
    color: #fff;
}

.dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

.nav-item .dropdown-item i {
    width: 28px;
}

.nav-item .dropdown-item:not(.active) i {
    color: #181c32;
}

.menu-item-active .dropdown a.nav-link {
    padding: 10px 0.7rem;
    margin: 0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.menu-item-active .dropdown a.nav-link i {
    margin-left: 5px;
}

.bg-black {
    background: #2b2b2b !important;
}

.border-dashed {
    border-style: dashed !important;
}

.footer-picture {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    opacity: 0.1;
}

.bg-000 {
    background: #000 !important;
}

.modal-footer {
    flex-direction: row-reverse;
    justify-content: end;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    background: transparent !important;
}

.hovereffect {
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.hovereffect .overlay {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
}

.hovereffect:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.hovereffect:hover img {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
    filter: brightness(0.6);
    -webkit-filter: brightness(0.6);
}

.hovereffect h2 {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    font-size: 17px;
    background-color: transparent;
    color: #FFF;
    padding: 1em 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.hovereffect a, .hovereffect p {
    color: #FFF;
    padding: 1em 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.navbar-toggler {
    background: #fff;
}

@media (min-width: 992px) {
    .navbar-collapse {
        height: 100% !important;
    }
}

.mobile-menu .menu-item-active {
    border-right: 2px solid var(--primary);
}

.mobile-menu .menu-item-active a, .mobile-menu .nav-item:hover a {
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    background: transparent;
}

.mobile-menu .menu-item-active a, .mobile-menu .nav-item:hover a i {
    color: var(--primary) !important;
}

.mobile-menu a.nav-link {
    display: flex;
    align-items: center;
    background: transparent;
    color: #707070;
}

.navbar-dark .navbar-nav.mobile-menu .nav-link {
    color: #707070;
}

.mobile-menu a.nav-link i {
    color: #707070;
}

.mobile-menu .menu-item-active i {
    color: var(--primary) !important;
}

.tooltip.show {
    opacity: 1;
}

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
    padding: 0.4rem 0;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: IRANSans, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .9rem;
    word-wrap: break-word;
    opacity: 0;
}

.fade {
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a.item-custom-color {
    position: relative;
    border: 2px solid #fff;
}

a.item-custom-color:hover {
    border: 2px solid #000;
}

.item-custom-color.success {
    background: #39a951;
    color: #fff;
}

.item-custom-color.danger {
    background: #dc5563;
    color: #fff;
}

.item-custom-color.success-s {
    background: #007c22;
    color: #fff;
}

.item-custom-color.danger-s {
    background: #94000f;
    color: #fff;
}

.item-custom-color.secondary {
    background: #eee;
    color: #2d2d2d;
}

.overflow-visible {
    overflow: visible !important;
}

#tree-chart tspan {
    font-family: IRANSans, Sans-serif;
    font-weight: 300 !important;
}

.apexcharts-tooltip .fa {
    font-family: "Font Awesome 5 Free", Sans-serif !important;
}

.scroll-sm::-webkit-scrollbar {
    height: 5px !important;
    width: 5px !important;
}

.table.first-freeze {
    position: relative;
}

.table.first-freeze tr th:first-child {
    background: #3F51B5;
}

.table.first-freeze tr td:first-child {
    background: #fff;
}

.table.first-freeze tr:nth-of-type(even) td:first-child {
    background: #f9f9f9;
}

.table.tr-hover tbody tr:hover,
.table.tr-hover.first-freeze tbody tr:hover td:first-child {
    background: #DDF3FF !important;
}

.table.first-freeze tr td:first-child,
.table.first-freeze tr th:first-child {
    position: sticky;
    right: 0;
    top: auto;
}

.floating-holder {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.floating-container {
    display: flex;
    align-items: center;
    position: relative;
}

#floating-toggle {
    -webkit-appearance: none;
}

.floating-button {
    box-shadow: 2px 2px 7px rgb(81 81 81 / 29%);
    position: absolute;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
}

.floating-nav {
    z-index: -999;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    transform: translateY(0%);
    box-shadow: 2px 2px 7px rgb(81 81 81 / 29%);
    border: 1px solid #e4e4e4;
    padding: 5px 10px;
}

.floating-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.floating-nav a {
    padding: 12px 0;
    text-decoration: none;
    font-size: 14px;
    padding-left: 20px;
}

.floating-nav a {
    /*color: var(--dark);*/
}

#floating-toggle:checked ~ .floating-nav {
    z-index: 9999;
    opacity: 1;
    transform: translateY(-30%);
}

#floating-toggle:checked ~ .floating-button:before {
    transform: rotate(225deg);
}

#floating-toggle:checked ~ .floating-button:after {
    transform: rotate(135deg);
}

.overflow-x-auto {
    overflow-x: auto;
}

.bg-bronze {
    background: #a24400;
}

.bg-silver {
    background: rgb(104, 144, 162);
}

.bg-gold {
    background: #ecb500;
}

.bg-primary-hover {
    background: var(--hover-primary) !important;
}

.bg-black-hover {
    background: #000;
}

.text-primary-hover {
    color: var(--hover-primary) !important;
}

.text-muted-black {
    color: #9E9E9E !important;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

.border-10 {
    border-width: 12px !important;
}

@media (min-width: 1000px) {
    .mt-sm-n20 {
        margin-top: -50px !important;
    }
}

@media (max-width: 1000px) {
    .mt-sm-n20 {
        margin-top: 0 !important;
    }
}

svg.apexcharts-svg {
    background-image: url(/static/assets/media/riskav-chart.png) !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}

.apexcharts-tooltip {
    direction: rtl;
    font-family: IRANSans, Arial, sans-serif;
}

.apexcharts-tooltip-marker {
    margin-right: 0 !important;
    margin-left: 10px;
}

.overflow-y-auto {
    overflow-y: auto !important;
    overflow-x: hidden;
}

.show-icon-on-hover > div.hider {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.show-icon-on-hover:hover > div.hider {
    opacity: 1;
    pointer-events: auto;
    transition: 0.3s;
}

.datepicker-plot-area * {
    font-family: 'IRANSans', Sans-serif !important;
}

.toast-top-right {
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
}

#toast-container > div {
    opacity: .95;
    width: 450px !important;
}

#toast-container .toast-message {
    font-size: 15px;
}

.bg-gradient {
    background: linear-gradient(226deg, #c8b2fb, #f2caff, #f7dfff, #f7e5fe) !important
}

.text-black {
    color: #212121
}