:root {
    --white: #fff;
    --light: #f4f4f4;
    --light-txt: #9EA4AA;
    --primary: #193675;
    --secondary: #FFC600;
    --red-light: #FF3C38;
    --gray: #ECEDF8;
    --gray-dark: #A9B8CB;
    --light-gray: #D1DBE8;
}

@font-face {
    font-family: "Yekan Bakh";
    src: url("../fonts/YekanBakh.woff");
}

html {
    overflow-x: hidden;
}

body {
    background: #F4F4F4;
    font-family: "Yekan Bakh", Tahoma, serif;
}

p {
    font-size: 15px;
    line-height: 25px;
}

a {
    text-decoration: none;
    color: #b58900;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 60px 0;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.normal {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.arrow-back-home {
    display: none;
}

.dir-rtl {
    direction: rtl;
}

.dir-ltr {
    direction: ltr;
}

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

.text-right {
    text-align: right;
}

.no-wrap {
    white-space: nowrap;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #112653;
}

::-webkit-scrollbar-thumb:hover {
    background: #193675;
}

.font-heavy-16 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mr-30 {
    margin-right: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.px-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.pb-70 {
    padding-bottom: 70px;
}

.bg-gray-radius {
    background-color: var(--gray);
    border-radius: 50px;
}

.bg-main {
    background-color: var(--white);
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    position: relative;
    top: -175px;

}

.container-middle {
    width: 90%;
}

.btn-no-style {
    color: var(--primary);
    background: none;
    transition: all .3s;
    padding: 6px 12px;
    border: none;
}

.btn-no-style img {
    margin-left: 10px;
}

.btn-no-style:hover, .btn-no-style.active {
    background-color: var(--gray);
    border-radius: 4px;
    color: var(--primary);
}

.btn-no-hover:hover {
    background-color: transparent;
    border-radius: 4px;
    color: var(--primary);
}

.btn-tab-aline {
    background-color: transparent;
    color: var(--primary);
    border: none;
    width: 33%;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
}

.btn-tab-aline:hover, .btn-tab-aline.active {
    background-color: var(--secondary);
    border-radius: 50px;
}

.video_wrapper {
    position: relative;
}

.video_wrapper video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.video_wrapper .video_content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #bebebe, #d6d6d626);
    border-radius: 10px;
}

.video_wrapper .video_content .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.top-bg {
    background-image: url("../images/background.jpg");
    height: 350px;
}

.radio-box-brd {
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    min-width: 190px;
    padding: 10px 30px;
    margin-left: 0;
    margin-right: 25px;
}

.radio-box-brd.active {
    border-color: var(--primary);
}

.radio-box-brd label {
    margin-right: 10px;
}

.radio-box-brd.active .radio-option {
    border-color: var(--primary);
}

.form-style .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-range {
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;

}

.range-sliders input[type=range] {
    max-width: 100%;
    min-width: 360px;
    /*background: linear-gradient(to right, #193674 0%, #193674 50%, #9FAABC 50%, #9FAABC 100%);*/
    border-radius: 4px;
    height: 4px;
    outline: none;
    -webkit-appearance: none;
}

.range-sliders input[type=range]:focus {
    outline: none;
}

.range-sliders input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    box-shadow: none;
    background-color: #9FAABC;
    border-radius: 0;
}

.range-sliders input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    box-shadow: none;
    background-color: #9FAABC;
    border-radius: 0;
}

.range-sliders input[type=range]::-webkit-slider-thumb {
    box-shadow: none;
    height: 20px;
    width: 20px;
    border-color: transparent;
    border-radius: 100%;
    background-color: #999;
    cursor: ew-resize;
    -webkit-appearance: none;
    margin-top: -8px;
}

.range-sliders input[type=range]::-moz-range-thumb {
    box-shadow: none;
    height: 20px;
    width: 20px;
    border-color: transparent;
    border-radius: 100%;
    background-color: #999;
    cursor: ew-resize;
    -webkit-appearance: none;
    margin-top: -8px;
}

.range-sliders input[type=range]::-moz-focus-outer {
    border: 0;
}

.range-sliders input[type=range]::-webkit-slider-runnable-track {
    background-color: rgba(0, 0, 0, 0.1);
}

.range-sliders input[type=range]::-moz-range-track {
    background-color: rgba(0, 0, 0, 0.1);
}

.range-sliders input[type=range]::-webkit-slider-thumb {
    background-color: #193674;
}

.range-sliders input[type=range]::-moz-range-thumb {
    background-color: #193674;
}

.range-sliders .input-slider {
    border: 1px solid #e6e6e6;
    padding: 0.5rem;
    -moz-appearance: textfield;
}

.range-sliders .input-slider::-webkit-outer-spin-button,
.range-sliders .input-slider::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-sliders .range-slider-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.range-sliders .range-slider-group .range-label {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.range-sliders .range-slider-group .input-slider {
    width: 55px;
    color: #152738;
    border: none;
    background: #F0F1F9;
    font-weight: 700;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.dropdown {
    position: relative;
    font-size: 14px;
    color: #333;
}

.dropdown .dropdown-list {
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 30px;
    left: 2px;
    right: 2px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
    transform-origin: 50% 0;
    transform: scale(1, 0);
    transition: transform 0.15s ease-in-out 0.15s;
    max-height: 66vh;
    overflow-y: scroll;
}

.dropdown .dropdown-option {
    display: block;
    padding: 8px 12px;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.dropdown .dropdown-label {
    display: block;
    height: 38px;
    background: #fff;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.dropdown .dropdown-label:before {
    content: "▼";
    float: left;
}

.dropdown.on .dropdown-list {
    transform: scale(1, 1);
    transition-delay: 0s;
}

.dropdown.on .dropdown-list .dropdown-option {
    opacity: 1;
    transition-delay: 0.2s;
}

.dropdown.on .dropdown-label:before {
    content: "▲";

}

.dropdown [type=checkbox] {
    position: relative;
    top: 3px;
    margin-left: 8px;
}

.category_holder .input-group-text {
    background: transparent;
}

.category_holder .form-control {
}

.hide-on-chart.hide {
    display: none;
}

.form-control {
    padding: 13px 20px 13px 20px;
    font-size: 14px;
    color: #979797;
    border-color: var(--gray-dark);
}

.form-control:focus {
    color: var(--primary);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    box-shadow: none;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    color: var(--secondary);
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    margin-top: 30px;
}

.btn-primary-custom img {
    margin-right: 10px;
}

.btn-white-custom {
    background-color: var(--white);
    border: none;
    color: #545454;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px;
    min-width: 100px;
}

.btn-white-custom svg {
    margin-left: 10px;
    fill: #545454;
}

.btn-white-custom.active {
    background-color: var(--secondary);
    border: none;
    color: var(--white);
    box-shadow: none;
    border-radius: 4px;
    padding: 10px 20px;
}

.btn-white-custom.active svg {
    margin-left: 10px;
    fill: var(--white);
}

.btn-white-custom:hover {
    background-color: var(--gray);
    color: #545454;
}

.btn-white-custom:hover svg {
    fill: #545454;
}

.chart-tabs .nav-item {
    margin-left: 10px;
}

.chart-tabs {
    background-image: url("../images/inner-page/box.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    min-height: 350px;
}

.guide-btn {
    position: absolute;
    left: 6%;
}

.jstree-default .jstree-clicked {
    background:transparent !important;
}

.jstree-default .jstree-wholerow-clicked {
    background:transparent !important;
}

.jstree-default a {
    white-space: normal !important;
    height: auto;
}

.jstree-anchor {
    height: auto !important;
}

.jstree-default li > ins {
    vertical-align: top;
}

.jstree-leaf {
    height: auto;
}

.jstree-leaf a {
    height: auto !important;
}

.jstree-open > .jstree-anchor, .jstree-closed > .jstree-anchor {
    color: black !important;
}

.jstree-open {
    color: black !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-family: 'Yekan Bakh' !important;
}