#baguetteBox-overlay {
    direction: ltr;
}

/**{*/
/*  font-family: IRANSans !important;*/
/*}*/

html {
    width: 100%;
}

body {
    overflow-x: hidden !important;
}

body.show-spinner > main {
    overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > * {
    opacity: 0;
}

/* Spinner */
body.show-spinner::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0.3);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    position: fixed;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.dashboard-logs {
    height: 500px;
}

.rounded .app-menu {
    border-top-right-radius: 0.75rem !important;
    border-bottom-right-radius: 0 !important;
}
.rounded .app-menu {
    border-top-left-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
}

.app-menu {
    width: calc(100% - 160px)!important;
    height: 60px!important;
    margin-left: 20px!important;
    bottom: 0!important;
}

.header {
    position: sticky;
    top:75px;
}

main {
    margin-top: 80px;
}

.separator {
    margin-top: -14px;
}

.shBody {
    margin-top: -28px;
}

.flat {
    border-radius: 5px;
}

.rtl .has-float-label label, .rtl .has-float-label>span:last-of-type {
    color: black;
    font-weight: 900;
}







.navbar2 {
    overflow: hidden;
}

.navbar2 a {
    float: left;
    font-size: 16px;
    color: black;
    border-radius: 5px;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.subnav {
    float: left;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 1px;
}

.subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    font-family: inherit;
    margin: 0;
}

.subnav-content {
    display: none;
    position: absolute;
    width: calc(100% - 400px);
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0 auto;
    border: 1px solid gray;
}

.subnav-content a {
    float: right;
    text-decoration: none;
}

.subnav-content a:hover {
    color: black;
}

.subnav:hover .subnav-content {
    display: block;
}