@charset "UTF-8";
/*@import '../../global/scss/bootstrap-4.0.0/functions';*/
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
/*
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/*
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/*
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
*/
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/*
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}


@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
*/
/*@import 'variables-bootstrap';*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0c3555;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #860f10;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: "iran-sans-web";
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2rem;
}

h2, .h2 {
  font-size: 1.6rem;
}

h3, .h3 {
  font-size: 1.4rem;
}

h4, .h4 {
  font-size: 1.2rem;
}

h5, .h5 {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.8rem;
}

.lead {
  font-size: 1rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 986px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1280px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1300px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #bbc6cf;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #8196a7;
}

.table-hover .table-primary:hover {
  background-color: #acb9c4;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #acb9c4;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #ddbcbc;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #c08283;
}

.table-hover .table-secondary:hover {
  background-color: #d4abab;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #d4abab;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #e3e6d2;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #cbd1ac;
}

.table-hover .table-success:hover {
  background-color: #d9ddc2;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d9ddc2;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fff4b8;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffea7a;
}

.table-hover .table-warning:hover {
  background-color: #fff09f;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #fff09f;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #ddbcbc;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #c08283;
}

.table-hover .table-danger:hover {
  background-color: #d4abab;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #d4abab;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c6c6;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #959595;
}

.table-hover .table-dark:hover {
  background-color: #b9b9b9;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9b9b9;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1299.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #1c7bc5;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #9ba660;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(155, 166, 96, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #9ba660;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%239ba660' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #9ba660;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #9ba660;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%239ba660' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #9ba660;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #9ba660;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #9ba660;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #9ba660;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #b0b881;
  background-color: #b0b881;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #9ba660;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #9ba660;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #9ba660;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #860f10;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(134, 15, 16, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #860f10;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23860f10' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23860f10' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #860f10;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #860f10;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23860f10' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23860f10' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #860f10;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #860f10;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #860f10;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #860f10;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #b41415;
  background-color: #b41415;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #860f10;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #860f10;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #860f10;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: normal;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.btn-primary:hover {
  color: #fff;
  background-color: #072033;
  border-color: #061928;
}
.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #061928;
  border-color: #04121d;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #640b0c;
  border-color: #580a0b;
}
.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #580a0b;
  border-color: #4d0909;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #9ba660;
  border-color: #9ba660;
}
.btn-success:hover {
  color: #fff;
  background-color: #868f50;
  border-color: #7e874c;
}
.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(137, 147, 88, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(137, 147, 88, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #212529;
  background-color: #9ba660;
  border-color: #9ba660;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #7e874c;
  border-color: #767f47;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(137, 147, 88, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(137, 147, 88, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #FFD600;
  border-color: #FFD600;
}
.btn-warning:hover {
  color: #212529;
  background-color: #d9b600;
  border-color: #ccab00;
}
.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 187, 6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 187, 6, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #FFD600;
  border-color: #FFD600;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ccab00;
  border-color: #bfa100;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 187, 6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 187, 6, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-danger:hover {
  color: #fff;
  background-color: #640b0c;
  border-color: #580a0b;
}
.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #580a0b;
  border-color: #4d0909;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(152, 51, 52, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-dark:hover {
  color: #fff;
  background-color: #202020;
  border-color: #1a1a1a;
}
.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #131313;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}

.btn-outline-primary {
  color: #0c3555;
  border-color: #0c3555;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0c3555;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.5);
}

.btn-outline-secondary {
  color: #860f10;
  border-color: #860f10;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #860f10;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
}

.btn-outline-success {
  color: #9ba660;
  border-color: #9ba660;
}
.btn-outline-success:hover {
  color: #212529;
  background-color: #9ba660;
  border-color: #9ba660;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #9ba660;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #9ba660;
  border-color: #9ba660;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(155, 166, 96, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #FFD600;
  border-color: #FFD600;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #FFD600;
  border-color: #FFD600;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #FFD600;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #FFD600;
  border-color: #FFD600;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.5);
}

.btn-outline-danger {
  color: #860f10;
  border-color: #860f10;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #860f10;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #860f10;
  border-color: #860f10;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(134, 15, 16, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #333;
  border-color: #333;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #333;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.btn-link {
  font-weight: normal;
  color: #0c3555;
  text-decoration: none;
}
.btn-link:hover {
  color: #860f10;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0c3555;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #0c3555;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #860f10;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(12, 53, 85, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: bold;
}

.alert-dismissible {
  padding-right: 3.7rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #061c2c;
  background-color: #ced7dd;
  border-color: #bbc6cf;
}
.alert-primary hr {
  border-top-color: #acb9c4;
}
.alert-primary .alert-link {
  color: black;
}

.alert-secondary {
  color: #460808;
  background-color: #e7cfcf;
  border-color: #ddbcbc;
}
.alert-secondary hr {
  border-top-color: #d4abab;
}
.alert-secondary .alert-link {
  color: #180303;
}

.alert-success {
  color: #515632;
  background-color: #ebeddf;
  border-color: #e3e6d2;
}
.alert-success hr {
  border-top-color: #d9ddc2;
}
.alert-success .alert-link {
  color: #33361f;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856f00;
  background-color: #fff7cc;
  border-color: #fff4b8;
}
.alert-warning hr {
  border-top-color: #fff09f;
}
.alert-warning .alert-link {
  color: #524400;
}

.alert-danger {
  color: #460808;
  background-color: #e7cfcf;
  border-color: #ddbcbc;
}
.alert-danger hr {
  border-top-color: #d4abab;
}
.alert-danger .alert-link {
  color: #180303;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1b1b;
  background-color: #d6d6d6;
  border-color: #c6c6c6;
}
.alert-dark hr {
  border-top-color: #b9b9b9;
}
.alert-dark .alert-link {
  color: #020202;
}

.close {
  float: right;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1300px) {
  .modal-xl {
    max-width: 1140px;
  }
}
@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*@import "../../global/scss/bootstrap-4.3.1/utilities/align";*/
.bg-primary {
  background-color: #0c3555 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #061928 !important;
}

.bg-secondary {
  background-color: #860f10 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #580a0b !important;
}

.bg-success {
  background-color: #9ba660 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #7e874c !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #FFD600 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ccab00 !important;
}

.bg-danger {
  background-color: #860f10 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #580a0b !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #333 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1a1a1a !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/*@import "../../global/scss/bootstrap-4.3.1/utilities/borders";*/
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1300px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/*@import "../../global/scss/bootstrap-4.3.1/utilities/embed";*/
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1300px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1300px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
/*@import "../../global/scss/bootstrap-4.3.1/utilities/position";*/
/*@import "../../global/scss/bootstrap-4.3.1/utilities/screenreaders";*/
/*@import "../../global/scss/bootstrap-4.3.1/utilities/sizing";*/
/*@import "../../global/scss/bootstrap-4.3.1/utilities/spacing";*/
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1300px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: normal !important;
}

.font-weight-bold {
  font-weight: bold !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #0c3555 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #030b12 !important;
}

.text-secondary {
  color: #860f10 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #410708 !important;
}

.text-success {
  color: #9ba660 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #6f7743 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #FFD600 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #b39600 !important;
}

.text-danger {
  color: #860f10 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #410708 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #333 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #0d0d0d !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.box.list.list-cols-3 > div ul {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}
.box.list.list-cols-3 > div ul li {
  clear: none;
  margin-bottom: 13.3333333333px;
  width: 33.33333%;
  float: right;
  padding-bottom: 13.3333333333px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
@media (max-width: 1299.98px) {
  .box.list.list-cols-3 > div ul li {
    width: 50%;
    margin-right: 50%;
  }
}
@media (max-width: 767.98px) {
  .box.list.list-cols-3 > div ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .box.list.list-cols-3 > div ul li {
    width: 33.3333%;
    margin-right: 33.3333%;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .box.list.list-cols-3 > div ul li:nth-child(2n+1) {
    width: 33.3333%;
    margin-right: 0;
  }
}
.box.list.list-cols-3.list-bordered > div ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .box.list.list-cols-3.list-bordered > div ul li:last-child:after {
    display: none;
  }
}
.box.list.list-cols-3.first-featured.list-bordered > div ul li:first-child:after {
  display: none;
}
.box.list.list-cols-3.first-featured > div ul li:last-child {
  /*width: 33.33333%;*/
  padding-bottom: 13.3333333333px;
}
.box.list.list-cols-3.first-featured > div ul li:first-child {
  background: transparent;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}
.box.list.list-cols-3.first-featured > div ul li:first-child .desc {
  padding-top: 10px;
}
.box.list.list-cols-3.first-featured > div ul li:first-child .desc h3 a, .box.list.list-cols-3.first-featured > div ul li:first-child .desc h4 a, .box.list.list-cols-3.first-featured > div ul li:first-child .desc h5 a, .box.list.list-cols-3.first-featured > div ul li:first-child .desc h6 a {
  color: #0c3555;
}
.box.list.list-cols-3.first-featured > div ul li:first-child .desc p {
  color: #333;
}
.box.list.list-cols-3.first-featured > div ul li:first-child .desc p {
  display: block;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.list.list-cols-3.first-featured > div ul li:first-child .desc {
    height: 71px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.list.list-cols-3.first-featured > div ul li:first-child .desc {
    height: 110px !important;
  }
}
.box.list.list-cols-3.first-featured > div ul li:first-child figure {
  margin: 0;
  padding: 0;
}
.box.list.list-cols-3.first-featured > div ul li:first-child figure a {
  position: relative;
}
.box.list.list-cols-3.first-featured > div ul li:first-child h3 a:hover {
  color: #860f10;
}
@media (max-width: 1299.98px) {
  .box.list.list-cols-3.first-featured > div ul li:first-child {
    margin-right: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
  .box.list.list-cols-3.first-featured > div ul li:first-child .desc {
    position: static;
    /*background: #333;*/
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .box.list.list-cols-3.first-featured > div ul li:first-child {
    width: 33.33333%;
  }
}
@media (max-width: 767.98px) {
  .box.list.list-cols-3.first-featured > div ul li:first-child {
    position: static;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.list.li-fit > div ul li:nth-child(n+1) .desc h3 {
    font-size: 13px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.list.li-fit > div ul li:nth-child(n+1) .desc h3 {
    font-size: 13px !important;
  }
}
.box.list.li-fit > div ul li .desc {
  height: unset;
  width: 100%;
  max-height: 96px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.list.li-fit > div ul li .desc {
    height: 75px;
    overflow: hidden;
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.list.li-fit > div ul li .desc {
    max-height: 105px;
    height: 75px;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .box.list.li-fit > div ul li:nth-child(n+1) figure {
    display: none;
  }
}

/**
 * Owl Carousel v2.3.1
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.has-carousel > div ul {
  /*display: none;*/
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.has-carousel > div ul .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.has-carousel > div ul .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.has-carousel > div ul .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.has-carousel > div ul .owl-wrapper,
.has-carousel > div ul .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.has-carousel > div ul .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.has-carousel > div ul .owl-item img {
  display: block;
  width: 100%;
}

.has-carousel > div ul .owl-nav.disabled,
.has-carousel > div ul .owl-dots.disabled {
  display: none;
}

.has-carousel > div ul .owl-nav .owl-prev,
.has-carousel > div ul .owl-nav .owl-next,
.has-carousel > div ul .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-carousel > div ul .owl-nav button.owl-prev,
.has-carousel > div ul .owl-nav button.owl-next,
.has-carousel > div ul button.owl-dot {
  /*background: none;*/
  /*color: inherit;*/
  border: none;
  padding: 0 !important;
  /*font: inherit;*/
}

.has-carousel > div ul.owl-loaded {
  display: block;
}

.has-carousel > div ul.owl-loading {
  opacity: 0;
  display: block;
}

.has-carousel > div ul.owl-hidden {
  opacity: 0;
}

.has-carousel > div ul.owl-refresh .owl-item {
  visibility: hidden;
}

.has-carousel > div ul.owl-drag .owl-item {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-carousel > div ul.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-carousel > div ul.owl-rtl {
  direction: rtl;
}

.has-carousel > div ul.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .has-carousel > div ul {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.has-carousel > div ul .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.has-carousel > div ul .owl-animated-in {
  z-index: 0;
}

.has-carousel > div ul .owl-animated-out {
  z-index: 1;
}

.has-carousel > div ul .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.has-carousel > div ul .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.has-carousel > div ul .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.has-carousel > div ul .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.has-carousel > div ul .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.has-carousel > div ul .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.has-carousel > div ul .owl-video-playing .owl-video-tn,
.has-carousel > div ul .owl-video-playing .owl-video-play-icon {
  display: none;
}

.has-carousel > div ul .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.has-carousel > div ul .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.tooltip {
  width: auto;
  text-align: center;
  font-size: 12px;
  color: #fff;
  font-family: Tahoma;
  height: 22px;
  line-height: 20px;
  padding: 1px 5px;
  background: #222;
  border-radius: 3px;
  position: absolute;
  z-index: 1600;
}
.tooltip:empty {
  display: none;
}

/*@import 'fancybox';*/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: "iran-sans-web";
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: rtl;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s, visibility 0s linear 0.25s;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}
body.ltr .fancybox-infobar,
body.ltr .fancybox-toolbar,
body.ltr .fancybox-caption,
body.ltr .fancybox-navigation .fancybox-button {
  direction: ltr;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s, visibility 0s;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  -webkit-transition: opacity 0.25s, visibility 0s, color 0.25s;
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  -webkit-transition: stroke 0.1s;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs img {
  display: block;
  height: 77px;
  width: auto;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
  width: 80vw;
  top: auto;
  bottom: 0;
  background: transparent;
  right: auto;
  left: 10vw;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  /*right: 212px;*/
  bottom: 100px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  /*float: left;*/
  display: inline-block;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  /*width: 100px;*/
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
/*@media all and (max-width: 800px) {
	.fancybox-thumbs {
		width: 110px; }
	.fancybox-show-thumbs .fancybox-inner {
		right: 110px; }
	.fancybox-thumbs > ul > li {
		max-width: calc(100% - 10px); } }*/
/*@import 'carousel';*/
body.rtl .page-item:first-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.rtl .page-item:last-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-results__option {
  color: #333;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slick-slider:hover .slick-arrow {
  opacity: 1;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*padding-top: $grid-gutter-width;*/
  /*.slick-loading & { background:  url("../img/ajax-loader.gif") center center no-repeat #fff; }*/
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  font-family: "nastooh-icons";
  opacity: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.slick-arrow .slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  color: transparent;
  top: 50%;
  padding: 0;
  border: none;
  outline: none;
  z-index: 99;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before, .slick-next:before {
  /*font-family: $slick-font-family;*/
  font-size: 20px;
  line-height: 1;
  color: #343a40;
  opacity: 0.75;
}

.slick-prev {
  left: 0;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 0;
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: 0;
}
[dir=rtl] .slick-next {
  left: 0;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

/* Dots */
/*.slick-dotted.slick-slider { margin-bottom: 30px; }*/
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  /*font-family: $slick-font-family;*/
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #343a40;
  opacity: 0.25;
}
.slick-dots li.slick-active button:before {
  color: #343a40;
  opacity: 0.75;
}

.fancybox-caption:after {
  display: none;
}

.slick-arrow {
  opacity: 1;
  border-radius: 50%;
}
.slick-arrow:hover, .slick-arrow:focus {
  background: #fff;
}

.box ::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: transparent;
}
.box ::-webkit-scrollbar-track {
  border-radius: 30px;
  background-color: transparent;
}
.box ::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: #60636a;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.box ::-webkit-scrollbar-thumb:hover {
  background-color: #54575d;
  opacity: 1;
}

@-moz-document url-prefix() {
  .has-scroll > div ul {
    scrollbar-color: #54575d transparent;
    scrollbar-width: thin;
  }
}
article.item {
  padding: 0;
  -webkit-transform: none;
          transform: none;
}
article.item .item-header {
  font-size: 0.7rem;
}
article.item .item-header .item-nav {
  font-size: 0.7rem;
  margin: 20px 0 20px;
  height: 40px;
  line-height: 40px;
  position: relative;
}
@media (max-width: 991.98px) {
  article.item .item-header .item-nav {
    overflow: hidden;
  }
}
article.item .item-header .item-nav:after {
  display: block;
  content: "";
  border-bottom: 1px dotted #adb5bd;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
body.ltr article.item .item-header .item-nav:after {
  left: auto;
  right: 0;
}
article.item .item-header .item-nav span {
  color: #0c3555;
}
body.dark article.item .item-header .item-nav span {
  color: #eee;
}
article.item .item-header .item-nav .breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent;
  list-style: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
article.item .item-header .item-nav .breadcrumb li {
  display: inline-block;
}
article.item .item-header .item-nav .breadcrumb li ~ li {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
body.ltr article.item .item-header .item-nav .breadcrumb li ~ li {
  padding-right: 0;
  padding-left: 10px;
  margin-right: 0;
  margin-left: 10px;
}
article.item .item-header .item-nav .breadcrumb li ~ li:before {
  display: block;
  content: "/";
  position: absolute;
  top: 0;
  right: -5px;
}
body.ltr article.item .item-header .item-nav .breadcrumb li ~ li:before {
  right: auto;
  left: -5px;
}
article.item .item-header .item-nav .item-date {
  text-align: center;
}
html[lang=ku] article.item .item-header .item-nav .item-date span {
  display: inline-block;
  direction: ltr;
}
article.item .item-header .item-nav .item-date span ~ span {
  margin-left: 0;
}
article.item .item-header .item-nav .item-date span ~ span:before {
  content: "-";
  display: inline-block;
  margin-left: 40px;
}
body.ltr article.item .item-header .item-nav .item-date span ~ span:before {
  margin-left: 0;
  margin-right: 40px;
}
article.item .item-header .item-nav .header-sharing {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
body.ltr article.item .item-header .item-nav .header-sharing {
  text-align: right;
}
article.item .item-header .item-nav .header-sharing li {
  display: inline-block;
  font-size: 0.8rem;
}
article.item .item-header .item-nav .header-sharing li ~ li {
  padding-right: 10px;
}
body.ltr article.item .item-header .item-nav .header-sharing li ~ li {
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 1299.98px) {
  article.item .item-header .item-nav .header-sharing li ~ li {
    padding-right: 5px;
  }
  body.ltr article.item .item-header .item-nav .header-sharing li ~ li {
    padding-right: 0;
    padding-left: 5px;
  }
}
article.item .item-header .item-nav .header-sharing li a {
  color: #0c3555;
}
body.dark article.item .item-header .item-nav .header-sharing li a {
  color: #ddd;
}
article.item .item-header .item-nav .header-sharing li a:hover {
  color: #860f10;
}
article.item .item-header .tools ul {
  list-style: none;
  padding: 0;
  font-size: 0;
  text-align: left;
}
body.ltr article.item .item-header .tools ul {
  text-align: right;
}
article.item .item-header .tools ul li {
  display: inline-block;
  font-size: 2.8rem;
  color: #0c3555;
  padding: 0 6.6666666667px;
}
article.item .item-header .tools ul li.email {
  margin-right: 10px;
}
body.ltr article.item .item-header .tools ul li.email {
  margin-right: 0;
  margin-left: 10px;
}
article.item .item-header .tools ul li span {
  cursor: pointer;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font-size: 0.8rem;
}
article.item .item-header .tools ul li span:hover {
  color: #860f10;
}
article.item .item-header .item-title {
  margin: 10px 0;
}
article.item .item-header .item-title h4 {
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  margin-bottom: 0;
}
body.ltr article.item .item-header .item-title h4 {
  font-family: "Arial";
}
article.item .item-header .item-title h4 a {
  color: #343a40;
}
article.item .item-header .item-title h1 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0.4rem 0 1rem;
}
article.item .item-header .item-title a {
  text-decoration: none;
}
article.item.title-centered .item-header .item-title {
  text-align: center;
}
article.item .item-summary {
  margin-bottom: 20px;
  background: #f8f9fa;
}
article.item .item-summary::after {
  display: block;
  clear: both;
  content: "";
}
body.dark article.item .item-summary {
  background: transparent;
}
article.item .item-summary figure {
  float: left;
  width: 250px;
  margin: 0;
}
body.ltr article.item .item-summary figure {
  float: right;
}
article.item .item-summary figure ~ p {
  margin-left: 270px;
  padding-left: 0;
}
body.ltr article.item .item-summary figure ~ p {
  margin-left: 0;
  margin-right: 270px;
}
article.item .item-summary figure.hide ~ p {
  margin-left: 0;
  padding-left: 20px;
}
body.ltr article.item .item-summary figure.hide ~ p {
  margin-right: 0;
  padding-left: 0;
  padding-right: 20px;
}
article.item .item-summary figure._play {
  position: relative;
  cursor: pointer;
}
article.item .item-summary figure._play:after {
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background: #fff;
  color: #495057;
  -webkit-box-shadow: 0 0 3px #000;
          box-shadow: 0 0 3px #000;
  direction: ltr;
  text-align: center;
  line-height: 100px;
  font-family: "nastooh-icons";
  font-size: 2.5rem;
  text-indent: 3px;
  opacity: 0.8;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}
article.item .item-summary figure._play:hover:after {
  opacity: 1;
  color: #333;
}
article.item .item-summary .introtext {
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
  color: #000;
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  background: transparent;
  padding: 20px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
body.ltr article.item .item-summary .introtext {
  font-family: "Arial";
}
body.dark article.item .item-summary .introtext {
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}
article.item .item-img {
  float: left;
  width: 250px;
}
body.ltr article.item .item-img {
  float: right;
}
article.item .item-img img {
  display: block;
  width: 100%;
  height: auto;
}
article.item .item-body {
  text-align: justify;
  line-height: 1.7;
  font-size: 0.8rem;
}
article.item .item-body figure {
  display: block;
  text-align: center;
  margin: 0 20px 20px 0;
}
body.ltr article.item .item-body figure {
  margin: 0 0 20px 20px;
}
article.item .item-body a {
  color: #0c3555;
}
article.item .item-body a:hover {
  color: #860f10;
}
article.item .item-body p {
  line-height: 1.9;
  font-size: -0.2rem;
  word-spacing: 1px;
}
body.ltr article.item .item-body p {
  word-spacing: 0;
}
article.item .item-body video {
  max-width: 100%;
  /*height: auto; this breaks jwplayer stretch: uniform */
}
article.item .item-body blockquote {
  float: right;
  width: 240px;
  padding: 30px 20px 15px;
  position: relative;
  color: #0c3555;
}
body.ltr article.item .item-body blockquote {
  float: left;
}
article.item .item-body blockquote p {
  color: #0c3555;
  font-size: 0.9rem;
}
article.item .item-body blockquote:before, article.item .item-body blockquote:after {
  display: block;
  position: absolute;
  font-size: 64px;
  line-height: 52px;
  height: 30px;
  color: #0c3555;
}
article.item .item-body blockquote:before {
  content: "”";
  top: 0;
  right: 10px;
}
body.ltr article.item .item-body blockquote:before {
  content: "“";
  right: auto;
  left: 10px;
}
article.item .item-body blockquote:after {
  content: "“";
  bottom: 0;
  left: 10px;
}
body.ltr article.item .item-body blockquote:after {
  content: "”";
  left: auto;
  right: 10px;
}
@media (max-width: 767.98px) {
  article.item .item-body blockquote {
    width: 100%;
  }
}
article.item .item-body .item-text figure {
  margin: 20px 0;
  max-width: 100%;
  text-align: center;
}
article.item .item-body .item-text figure img {
  max-width: 100%;
  /*height: auto;*/
  display: inline-block;
  width: auto;
}
article.item .item-body .item-text img:not([width]) {
  max-width: 100%;
  height: auto;
  display: inline-block;
  width: auto;
}
article.item .item-body .item-text div img {
  margin-bottom: 20px;
}
article.item .item-body .gallery {
  text-align: center;
}
article.item .item-body .gallery figure {
  margin-bottom: 40px;
  display: inline-block;
  width: auto;
}
article.item .item-body .gallery figure figcaption {
  background: #ced4da;
  color: #343a40;
  padding: 20px 40px;
  margin-top: -20px;
}
article.item .item-body br[data-type] {
  display: none;
}
article.item .item-body .box > div ul li .desc h3 {
  font-size: 110%;
}
article.item .item-body .box > div ul li .desc a {
  color: #0c3555;
}
article.item .item-body .box > div ul li .desc a:hover {
  color: #860f10;
}
article.item .item-source {
  margin: 40px 0 30px;
  color: #999;
}
article.item .item-code {
  color: #6c757d;
  font-size: 0.7rem;
  margin-top: 20px;
}
article.item .item-author {
  text-align: center;
  margin-top: 20px;
}
article.item .item-author a {
  display: inline-block;
  color: #0c3555;
  font-size: 13px;
}
article.item .item-author a .avatar {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}
article.item .item-author a .avatar img {
  display: inline-block;
  max-height: 32px;
}
article.item .item-author a .name {
  display: block;
}
article.item .item-author a:hover {
  text-decoration: none;
}
article.item .item-boxes .box {
  -webkit-transform: none;
          transform: none;
  margin: 40px 0;
  position: relative;
}
article.item .item-boxes .box.ads li, article.item .item-boxes .box.ads a {
  display: block;
  text-align: center;
}
article.item .item-boxes .box.ads li img, article.item .item-boxes .box.ads a img {
  display: inline;
  width: auto;
  max-width: 100%;
}
article.item .item-boxes .box.tags {
  margin: 20px 0;
  padding: 0 20px 20px;
}
article.item .item-boxes .box.tags ul li {
  font-size: -1.2rem;
}
article.item .item-boxes .box.tags ul li:first-child {
  margin-right: 10px;
}
body.ltr article.item .item-boxes .box.tags ul li:first-child {
  margin-right: 0;
  margin-left: 10px;
}
article.item .item-footer {
  margin-top: 40px;
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
}
article.item .item-sharing ul li a {
  color: #fff;
}
article.item.full-img .item-summary figure, body.ltr article.item.full-img .item-summary figure {
  width: 100%;
  float: none;
}
article.item.full-img .item-summary figure ~ p, body.ltr article.item.full-img .item-summary figure ~ p {
  margin: 0;
}

.item-sharing ul {
  text-align: right;
}
body.ltr .item-sharing ul {
  text-align: left;
}
.item-sharing ul li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  display: inline-block;
}
.item-sharing ul li a {
  display: block;
  background: #0c3555;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.item-sharing ul li.fb a {
  background: #3b5a9a;
}
.item-sharing ul li.tw a {
  background: #28a9e2;
}
.item-sharing ul li.gp a {
  background: #e04a39;
}
.item-sharing ul li.ln a {
  background: #117bb7;
}
.item-sharing ul li.cl a {
  background: #12AF0A;
}
.item-sharing ul li.tg a {
  background: #5280a4;
}
.item-sharing ul li.fn:hover a {
  background: navy;
}
.item-sharing ul li.wa:hover a {
  background: #44A305;
}
.item-sharing ul li.download {
  width: auto;
}
.item-sharing ul li.download a {
  background: #9ba660;
  width: auto;
  padding: 0 8px;
}

.short-link-container {
  display: inline-block;
  width: 250px;
  position: relative;
  float: left;
}
body.ltr .short-link-container {
  float: right;
}
.short-link-container .input-group {
  margin-bottom: 0;
}
.short-link-container i {
  float: left;
  color: #3b5a9a;
  margin-right: 4px;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 16px;
}
.short-link-container .clean {
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  color: #a9a9a9;
  font-family: Tahoma;
  font-size: 11px;
  font-weight: normal;
  width: 100%;
  padding-left: 30px;
  text-align: left;
  direction: ltr;
  height: 30px;
}
body.dark .short-link-container .clean {
  background: transparent;
}
.short-link-container input {
  outline: 0 none;
}

.box.box-inline {
  display: none;
}

#photo {
  padding: 0;
}
@media (max-width: 767.98px) {
  #photo .item-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#photo .item-title h4 a {
  color: #dee2e6;
}
#photo .item-title h4 a:hover {
  color: #860f10;
}
#photo .item-nav {
  float: left;
  height: auto;
  margin-right: 60px;
  margin-top: 0;
  margin-bottom: 0;
  min-width: 300px;
}
body.ltr #photo .item-nav {
  float: right;
  margin-right: 0;
  margin-left: 60px;
}
@media (max-width: 767.98px) {
  #photo .item-nav {
    margin-right: 0;
  }
}
#photo .item-nav:after {
  border: 0 none;
}
#photo .item-nav > div {
  clear: both;
}
#photo .item-nav .item-sharing ul {
  /*			text-align: left;
  			body.ltr & { text-align: right; }*/
}
#photo .item-nav .item-sharing ul li:first-child {
  margin-right: 0;
  /*body.ltr & { margin-left: 0; }*/
}
#photo .item-nav .item-sharing ul i {
  font-size: 0.9rem;
}
#photo .item-summary {
  margin-bottom: 0;
}
#photo .item-summary figure {
  display: none;
}
@media (max-width: 767.98px) {
  #photo .item-summary .introtext {
    margin-left: 0;
  }
}
#photo .item-footer {
  padding: 0;
  margin: 0;
  border: 0 none;
}
#photo .item-author {
  margin-top: 0;
  text-align: right;
}
body.ltr #photo .item-author {
  text-align: left;
}
#photo .item-author a .avatar {
  float: left;
  margin-right: 10px;
}
body.ltr #photo .item-author a .avatar {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
#photo .item-author a .name {
  display: inline-block;
}
#photo .item-date {
  text-align: right;
}
body.ltr #photo .item-date {
  text-align: left;
}
#photo .summary::after {
  display: block;
  clear: both;
  content: "";
}
#photo .summary, #photo .item-body p {
  margin-bottom: 20px;
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 20px 0 0;
  margin-bottom: 0;
  color: #dee2e6;
}
#photo .short-link-container {
  width: 260px;
  float: right;
}
body.ltr #photo .short-link-container {
  float: left;
}
#photo .short-link-container .form-group {
  position: relative;
}
#photo .short-link-container input {
  background: #343a40;
  color: #dee2e6;
  padding-left: 30px;
  width: 100%;
  border: 0 none;
  -webkit-box-shadow: 0 0 2px #222;
          box-shadow: 0 0 2px #222;
  height: 28px;
  text-align: left;
  direction: ltr;
}
#photo .short-link-container i {
  position: absolute;
  top: 5px;
  left: 0;
  text-align: center;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
#photo .gallery-desc {
  text-align: left;
  margin-bottom: 40px;
  font-size: 85%;
  margin-top: 20px;
}
#photo .box.tags {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 0;
  padding-left: 0;
  /*> div { margin-right: $grid-gutter-width / 2; }*/
}
#photo .box.tags ul li a {
  background: #343a40;
  line-height: 1.45;
  color: #fff;
}
#photo .box.tags ul li a:hover {
  background: #860f10;
}
#photo ~ .box {
  max-width: 767.98px;
}

article.item {
  margin-right: 12rem;
  border-right: 1px solid #e9ecef;
  padding-right: 1rem;
  position: relative;
  /* Rating Star Widgets Style */
}
body.dark article.item {
  border-right-color: #495057;
}
body.ltr article.item {
  margin-right: 0;
  margin-left: 12rem;
  border-right: 0 none;
  border-left: 1px solid #e9ecef;
  padding-right: 0;
  padding-left: 1rem;
}
body.ltr.dark article.item {
  border-left-color: #495057;
}
article.item .item-header .item-nav {
  text-align: right;
  position: absolute;
  right: 0;
  width: 12rem;
  height: auto;
  margin-right: -13rem;
  line-height: 2.5;
}
body.ltr article.item .item-header .item-nav {
  text-align: left;
  margin-right: 0;
  margin-left: -13rem;
  right: auto;
  left: 0;
}
article.item .item-header .item-nav:after {
  display: none;
}
article.item .item-header .item-nav .item-date {
  text-align: inherit;
  font-size: 12px;
  color: #adb5bd;
}
article.item .item-header .item-nav .item-code {
  margin-top: 0;
}
@media (max-width: 1299.98px) {
  article.item .item-header .item-nav {
    width: 11rem;
    margin-right: -12rem;
  }
  body.ltr article.item .item-header .item-nav {
    margin-right: 0;
    margin-left: -12rem;
  }
  body.dark article.item .item-header .item-nav {
    background: rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1300px) {
  article.item .item-header .item-nav .breadcrumb.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding-right: 14px;
    margin: 20px 0;
  }
  body.ltr article.item .item-header .item-nav .breadcrumb.vertical {
    padding-right: 0;
    padding-left: 14px;
  }
  article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item {
    position: relative;
  }
  article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item:before {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 10px;
    right: -12px;
    position: absolute;
    background: #aaa;
  }
  body.ltr article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item:before {
    right: auto;
    left: -12px;
  }
  article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item ~ li {
    margin-right: 12px;
    padding-right: 0;
  }
  body.ltr article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item ~ li {
    margin-right: 0;
    margin-left: 12px;
    padding-left: 0;
  }
  article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item ~ li:before {
    padding: 0;
    margin: 0;
    content: "";
  }
  article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item ~ li:after {
    display: block;
    content: "";
    width: 12px;
    height: 18px;
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    position: absolute;
    top: -4px;
    right: -24px;
  }
  body.ltr article.item .item-header .item-nav .breadcrumb.vertical li.breadcrumb-item ~ li:after {
    border-right: 0 none;
    border-left: 2px solid #ddd;
    right: auto;
    left: -24px;
  }
}
article.item .item-header .item-nav ul.header-sharing {
  text-align: right;
  font-size: 0;
  margin: 0 -5px;
  position: relative;
  padding-bottom: 10px;
}
article.item .item-header .item-nav ul.header-sharing:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  border-bottom: 1px solid #ced4da;
}
body.ltr article.item .item-header .item-nav ul.header-sharing {
  text-align: left;
}
article.item .item-header .item-nav ul.header-sharing li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0;
  margin: 0 5px 5px 0;
  display: inline-block;
  font-size: 1rem;
}
article.item .item-header .item-nav ul.header-sharing li a {
  display: block;
  background: #0c3555;
  width: 30px;
  height: 30px;
  line-height: 36px;
  text-align: center;
  color: #fff;
}
article.item .item-header .item-nav ul.header-sharing li.print {
  float: left;
}
body.ltr article.item .item-header .item-nav ul.header-sharing li.print {
  float: right;
}
article.item .item-header .item-nav ul.header-sharing li.fb a {
  background: #3b5a9a;
}
article.item .item-header .item-nav ul.header-sharing li.tw a {
  background: #28a9e2;
}
article.item .item-header .item-nav ul.header-sharing li.gp a {
  background: #e04a39;
}
article.item .item-header .item-nav ul.header-sharing li.ln a {
  background: #117bb7;
}
article.item .item-header .item-nav ul.header-sharing li.cl a {
  background: #12AF0A;
}
article.item .item-header .item-nav ul.header-sharing li.tg a {
  background: #5280a4;
}
article.item .item-header .item-nav ul.header-sharing li.fn a {
  background: navy;
}
article.item .item-header .item-nav ul.header-sharing li.wa a {
  background: #44A305;
}
article.item .item-header .item-nav ul.header-sharing li:hover a {
  color: #fff;
  background: #860f10;
}
article.item .item-header .item-nav ul.header-sharing li.download {
  width: auto;
}
article.item .item-header .item-nav ul.header-sharing li.download a {
  background: #9ba660;
  width: auto;
  padding: 0 8px;
}
article.item .item-header .item-nav .box.tags {
  /*padding-top: $grid-gutter-width / 2; */
  margin-top: 10px;
}
article.item .item-header .item-nav .source > a, article.item .item-header .item-nav .source > span {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
article.item .item-header .item-nav .source .img {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 145px;
}
article.item .item-header .item-nav .source .img img {
  display: block;
  max-width: 100%;
  height: auto;
}
article.item .item-header .item-nav .source .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  /*font-weight: bold;*/
  line-height: 1.5;
  margin-bottom: 6px;
}
article.item .item-header .item-title h1 {
  line-height: 1.75;
  font-size: 1.5rem;
}
html[lang=ur] article.item .item-header .item-title h4 {
  font-family: "Times New Roman", Arial, Times;
}
article.item .item-header .item-title h4 a {
  color: #343a40;
}
body.dark article.item .item-header .item-title h4 a {
  color: #dee2e6;
}
article.item .item-header .item-title h5, article.item .item-header .item-title h6 {
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  font-weight: bold;
}
article.item#photo .item-header .item-nav .short-link-container {
  float: none;
  margin-bottom: 0;
}
article.item#photo .item-header .item-nav .short-link-container i {
  top: 0;
}
@media (min-width: 992px) {
  body.ltr article.item#photo {
    padding-right: 0;
    padding-left: 1rem;
  }
  body.ltr article.item#photo .item-header .item-nav {
    float: none;
    margin-left: -12rem;
  }
}
@media (max-width: 1299.98px) {
  body.ltr article.item#photo .item-header .item-nav {
    margin-left: 0;
    margin-right: 0;
  }
}
article.item#photo .item-author a .avatar {
  float: right;
  margin-right: 0;
}
body.ltr article.item#photo .item-author a .avatar {
  float: left;
  margin-left: 0;
  margin-right: 8px;
}
article.item#photo .item-author a .name {
  display: inline-block;
  line-height: 32px;
}
@media (max-width: 1299.98px) {
  article.item {
    margin-right: 6rem;
  }
  body.ltr article.item {
    margin-left: 6rem;
    margin-right: 0;
  }
  article.item .item-header .item-nav {
    background: #f8f9fa;
    padding: 10px;
    position: static;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  body.ltr article.item .item-header .item-nav {
    margin-left: 0;
  }
  article.item .item-header .item-nav .rating-stars {
    float: left;
    margin-left: 0;
  }
  article.item .item-header .item-nav .breadcrumb li ~ li:before {
    right: -10px;
  }
  article.item .item-header .item-nav .header-sharing {
    display: none;
  }
  article.item .item-header .item-nav .item-author {
    display: block;
  }
  article.item .item-header .item-nav > * {
    display: inline-block;
    margin-left: 20px;
  }
  body.ltr article.item .item-header .item-nav > * {
    margin-right: 20px;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  article.item {
    margin-right: 0;
    border-right: 0 none;
    padding-right: 0;
  }
  body.ltr article.item {
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
  }
}
article.item .item-img {
  width: 50%;
  margin-right: 20px;
  float: none;
  border: 3px solid #e9ecef;
  margin-bottom: 10px;
}
body.ltr article.item .item-img {
  margin-right: 0;
  margin-left: 20px;
}
article.item .item-img + .summary {
  margin-left: 50%;
}
body.ltr article.item .item-img + .summary {
  margin-right: 50%;
  margin-left: 0;
}
article.item .item-img.hide {
  display: none;
}
article.item .introtext {
  line-height: 2;
  font-size: 0.925rem;
  text-align: justify;
  background: #f7f7f7;
  padding: 10px;
}
body.dark article.item .introtext {
  background: #222;
  /*padding-left: $grid-gutter-width / 2; padding-right: $grid-gutter-width / 2;*/
}
body.ltr article.item .introtext {
  font-size: 0.925rem;
  line-height: 1.8;
  text-align: inherit;
}
html[lang=tr] article.item .introtext {
  font-size: 1rem;
}
html[lang=ku] article.item .introtext, html[lang=ur] article.item .introtext {
  font-family: "Times New Roman", Arial, Times;
}
article.item figure figcaption {
  color: #6c757d;
  line-height: 1.5;
  padding: 0.5rem 0;
  font-size: 0.725rem;
  margin-bottom: 1rem;
}
article.item figure figcaption:before {
  content: "▲";
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 0.85rem;
  color: #ef3f3f;
}
article.item.full-img .item-img {
  width: 100%;
  margin: 0;
  border: 0 none;
}
article.item.full-img .item-img + .summary {
  margin-left: 0;
  margin-right: 0;
}
body.ltr article.item.full-img .item-img + .summary {
  margin-left: 0;
  margin-right: 0;
}
article.item .item-body {
  font-size: 0.9rem;
}
html[lang=tr] article.item .item-body {
  font-size: 1rem;
}
article.item .item-body a {
  color: #860f10;
  font-weight: bold;
}
article.item .item-body p {
  font-size: 0.9rem;
}
html[lang=tr] article.item .item-body p {
  font-size: 1rem;
}
article.item .item-body h4 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 20px;
}
article.item .item-body img {
  max-width: 100% !important;
  height: auto !important;
}
article.item .item-body blockquote {
  float: none;
  width: auto;
  border-right: 4px solid #e9ecef;
}
article.item .item-body blockquote:before, article.item .item-body blockquote:after {
  display: none;
}
body.ltr article.item .item-body blockquote {
  border-right: 0 none;
  border-left: 4px solid #e9ecef;
}
article.item .item-author {
  margin-top: 0;
  text-align: inherit;
}
article.item .item-author a .avatar {
  float: right;
  margin-left: 8px;
}
body.ltr article.item .item-author a .avatar {
  float: left;
  margin-left: 0;
  margin-right: 8px;
}
article.item .item-author a .name {
  display: inline-block;
  line-height: 32px;
}
article.item [class*=quote-] {
  float: right;
  width: 240px;
  padding: 20px 20px;
  position: relative;
  color: #0c3555;
  margin-right: -8rem;
  border: 0 none;
  font-family: "iran-sans-web";
  font-size: 0.8rem;
  background: #f8f9fa;
  margin-left: 20px;
  line-height: 1.85;
}
body.ltr article.item [class*=quote-] {
  float: left;
  margin-right: 20px;
  margin-left: -8rem;
}
article.item [class*=quote-] p {
  color: #0c3555;
  font-size: 0.9rem;
}
article.item [class*=quote-]:before, article.item [class*=quote-]:after {
  display: block;
  position: absolute;
  font-size: 64px;
  line-height: 52px;
  height: 30px;
  color: #0c3555;
}
article.item [class*=quote-]:before {
  display: none;
}
article.item [class*=quote-]:after {
  display: none;
}
@media (max-width: 1299.98px) {
  article.item [class*=quote-] {
    margin-right: -6rem;
  }
  body.ltr article.item [class*=quote-] {
    margin-left: -6rem;
  }
}
@media (max-width: 991.98px) {
  article.item [class*=quote-] {
    margin-right: 0;
  }
  body.ltr article.item [class*=quote-] {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  article.item [class*=quote-] {
    width: 100%;
  }
}
article.item [class*=quote-][class$=-left] {
  float: left;
  margin-right: 10px !important;
  margin-left: 0;
}
body.ltr article.item [class*=quote-][class$=-left] {
  float: right;
  margin-left: 10px !important;
  margin-right: 0 !important;
}
article.item .rating-stars {
  display: none;
}
article.item .rating-stars .rate-count {
  display: inline-block;
}
article.item .rating-stars ul {
  display: inline-block;
  font-size: 0;
  margin-right: 10px;
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none;
}
article.item .rating-stars ul > li.star {
  display: inline-block;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  width: 20px;
  text-align: center;
  /* Idle State of the stars */
  /* Hover state of the stars */
  /* Selected state of the stars */
}
@media (max-width: 1299.98px) {
  article.item .rating-stars ul > li.star {
    height: 30px;
    line-height: 30px;
  }
}
article.item .rating-stars ul > li.star > i {
  font-size: 1rem;
  /* Change the size of the stars */
  color: #ccc;
  /* Color on idle state */
}
article.item .rating-stars ul > li.star.hover > i {
  color: #FFCC36;
}
article.item .rating-stars ul > li.star.selected > i {
  color: #FF912C;
}
article.item .move-outside {
  width: 11rem;
  margin-right: -13rem;
  float: right;
  margin-top: -100%;
}
body.ltr article.item .move-outside {
  margin-right: 0;
  margin-left: -13rem;
  float: left;
}
@media (max-width: 1299.98px) {
  article.item .move-outside {
    width: auto;
    margin-right: 0;
    float: none;
    margin-top: 0;
  }
  body.ltr article.item .move-outside {
    margin-left: 0;
    float: none;
  }
}
article.item .item-footer {
  clear: both;
}
article.item.no-sidebar {
  margin-right: 0;
  border-right: 0 none;
  padding-right: 0;
}
body.ltr article.item.no-sidebar {
  margin-left: 0;
  border-left: 0 none;
  padding-left: 0;
}

.exif {
  padding-top: 10px;
}
.exif li {
  padding: 2px 0;
}

#item.no-publish {
  background: url("../img/forbidden.png") repeat center top transparent;
  background-size: 37%;
}

.archive-fileds {
  background: #466985;
  position: relative;
  line-height: 45px;
  min-height: 45px;
}
@media (max-width: 991.98px) {
  .archive-fileds {
    line-height: 40px;
  }
}
.archive-fileds:before, .archive-fileds:after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: #466985;
  z-index: 0;
  left: 100%;
}
.archive-fileds:after {
  left: auto;
  right: 100%;
}
.archive-fileds .filter-toggle {
  float: left;
  margin-top: 5px;
  margin-left: 5px;
  display: none;
}
@media (max-width: 767.98px) {
  .archive-fileds .filter-toggle {
    display: block;
  }
}
.archive-fileds .filters-group {
  float: right;
}
body.ltr .archive-fileds .filters-group {
  float: left;
}
.archive-fileds .filters-group ~ .filters-group {
  margin-right: 10px;
}
body.ltr .archive-fileds .filters-group ~ .filters-group {
  margin-right: 0;
  margin-left: 10px;
}
@media (max-width: 991.98px) {
  .archive-fileds .filters-group {
    float: none;
    margin: 0 !important;
  }
  .archive-fileds .filters-group:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  body.ltr .archive-fileds .filters-group:last-child {
    left: auto;
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .archive-fileds .filters-group {
    float: none;
    display: none;
  }
  .archive-fileds .filters-group .form-group {
    display: block;
  }
  .archive-fileds .filters-group .form-group label {
    display: block;
  }
  .archive-fileds .filters-group .form-group select.form-control {
    display: block;
    max-width: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .archive-fileds .filters-group:last-child {
    position: static;
    text-align: center;
  }
}
.archive-fileds .form-group {
  margin-bottom: 0;
  margin-left: 5px;
  display: inline-block;
}
body.ltr .archive-fileds .form-group {
  margin-left: 0;
  margin-right: 5px;
}
.archive-fileds .form-group label {
  margin-bottom: 0;
  margin-left: 10px;
  color: #e9ecef;
}
body.ltr .archive-fileds .form-group label {
  margin-left: 0;
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .archive-fileds .form-group label {
    display: none;
  }
}
.archive-fileds .form-group select.form-control {
  display: inline-block;
  max-width: 170px;
  width: auto;
  padding: 0.275rem 0.75rem;
  height: calc(1.75rem + 2px);
  margin-top: 7px;
}
@media (max-width: 1299.98px) {
  .archive-fileds .form-group .select2-container {
    max-width: 170px;
  }
}
@media (max-width: 767.98px) {
  .archive-fileds .form-group .select2-container {
    max-width: none;
    width: 100% !important;
  }
}

.box.search-fields {
  background: #466985;
  position: relative;
  min-height: 45px;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  /*@include media-breakpoint-down(md) { line-height: 40px; }*/
}
.box.search-fields:before, .box.search-fields:after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: #466985;
  z-index: 0;
  left: 100%;
}
.box.search-fields:after {
  left: auto;
  right: 100%;
}
.box.search-fields.header-clean > header h2, .box.search-fields.header-clean > header h2 a {
  color: #fff;
}
.box.search-fields .btn-link {
  color: #dee2e6;
}
.box.search-fields #advanced-fields {
  padding-top: 20px;
}
.box.search-fields #advanced-fields label {
  margin-bottom: 5px;
}
.box.search-fields #advanced-fields .form-group {
  margin-bottom: 0;
}
.box.search-fields #advanced-fields .select2-container .select2-selection--single {
  height: 35px;
}
.box.search-fields #advanced-fields .date-range-inputs {
  margin-top: 10px;
}
.box.search-fields .form-group {
  margin-bottom: 10px;
}
body.ltr .box.search-fields .form-group {
  margin-left: 0;
  margin-right: 5px;
}
.box.search-fields .form-group label {
  margin-bottom: 0;
  margin-left: 10px;
  display: block;
  color: #f8f9fa;
}
body.ltr .box.search-fields .form-group label {
  margin-left: 0;
  margin-right: 10px;
}
.box.search-fields .form-group select.form-control {
  display: inline-block;
  /*max-width: 170px;*/
  width: auto;
  padding: 0.275rem 0.75rem;
  height: calc(1.75rem + 2px);
  margin-top: 7px;
}
.box.search-fields .form-group .select2-container {
  width: 100%;
  min-width: 100%;
  /*			@include media-breakpoint-down(lg) { max-width: 170px; } // MD-
  			@include media-breakpoint-down(sm) { max-width: none; width: 100% !important; } // XS*/
}

body:not(.dark) #photo .item-body p, body:not(.dark) #photo #photo .summary {
  color: #333;
}
body:not(.dark) #photo .short-link-container input {
  background: #efefef;
  -webkit-box-shadow: 0 0 2px #ccc;
          box-shadow: 0 0 2px #ccc;
  color: #333;
}
body:not(.dark) #photo .box.photoGall > div a {
  background: #efefef;
}

@font-face {
  font-family: "nastooh-icons";
  src: url("../../global/font/nastooh-icons/nastooh-icons.eot?63557437");
  src: url("../../global/font/nastooh-icons/nastooh-icons.eot?63557437#iefix") format("embedded-opentype"), url("../../global/font/nastooh-icons/nastooh-icons.woff2?63557437") format("woff2"), url("../../global/font/nastooh-icons/nastooh-icons.woff?63557437") format("woff"), url("../../global/font/nastooh-icons/nastooh-icons.ttf?63557437") format("truetype"), url("../../global/font/nastooh-icons/nastooh-icons.svg?63557437#nastooh-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'nastooh-icons';
    src: url('../font/nastooh-icons.svg?66128524#nastooh-icons') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "nastooh-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-up:before {
  content: "";
}

/* '' */
.icon-right:before {
  content: "";
}

/* '' */
.icon-left:before {
  content: "";
}

/* '' */
.icon-down:before {
  content: "";
}

/* '' */
.icon-thumbs-up:before {
  content: "";
}

/* '' */
.icon-signal:before {
  content: "";
}

/* '' */
.icon-search:before {
  content: "";
}

/* '' */
.icon-mobile:before {
  content: "";
}

/* '' */
.icon-twitter:before {
  content: "";
}

/* '' */
.icon-facebook:before {
  content: "";
}

/* '' */
.icon-tag:before {
  content: "";
}

/* '' */
.icon-star:before {
  content: "";
}

/* '' */
.icon-rss:before {
  content: "";
}

/* '' */
.icon-list:before {
  content: "";
}

/* '' */
.icon-book-open:before {
  content: "";
}

/* '' */
.icon-thumbs-down:before {
  content: "";
}

/* '' */
.icon-print:before {
  content: "";
}

/* '' */
.icon-archive:before {
  content: "";
}

/* '' */
.icon-fullscreen:before {
  content: "";
}

/* '' */
.icon-play:before {
  content: "";
}

/* '' */
.icon-music:before {
  content: "";
}

/* '' */
.icon-volume-off:before {
  content: "";
}

/* '' */
.icon-volume-down:before {
  content: "";
}

/* '' */
.icon-volume-up:before {
  content: "";
}

/* '' */
.icon-user:before {
  content: "";
}

/* '' */
.icon-download:before {
  content: "";
}

/* '' */
.icon-instagram:before {
  content: "";
}

/* '' */
.icon-headphones:before {
  content: "";
}

/* '' */
.icon-aparat:before {
  content: "";
}

/* '' */
.icon-cloob:before {
  content: "";
}

/* '' */
.icon-bisphoon:before {
  content: "";
}

/* '' */
.icon-heart:before {
  content: "";
}

/* '' */
.icon-menu:before {
  content: "";
}

/* '' */
.icon-info-circled:before {
  content: "";
}

/* '' */
.icon-gmail:before {
  content: "";
}

/* '' */
.icon-plus:before {
  content: "";
}

/* '' */
.icon-calendar:before {
  content: "";
}

/* '' */
.icon-language:before {
  content: "";
}

/* '' */
.icon-folder:before {
  content: "";
}

/* '' */
.icon-folder-open:before {
  content: "";
}

/* '' */
.icon-comment:before {
  content: "";
}

/* '' */
.icon-chat:before {
  content: "";
}

/* '' */
.icon-trash-empty:before {
  content: "";
}

/* '' */
.icon-doc:before {
  content: "";
}

/* '' */
.icon-camera:before {
  content: "";
}

/* '' */
.icon-picture:before {
  content: "";
}

/* '' */
.icon-video:before {
  content: "";
}

/* '' */
.icon-book:before {
  content: "";
}

/* '' */
.icon-tags:before {
  content: "";
}

/* '' */
.icon-minus:before {
  content: "";
}

/* '' */
.icon-refresh:before {
  content: "";
}

/* '' */
.icon-mail:before {
  content: "";
}

/* '' */
.icon-play-circled:before {
  content: "";
}

/* '' */
.icon-group:before {
  content: "";
}

/* '' */
.icon-user-add:before {
  content: "";
}

/* '' */
.icon-pencil:before {
  content: "";
}

/* '' */
.icon-edit:before {
  content: "";
}

/* '' */
.icon-speaker:before {
  content: "";
}

/* '' */
.icon-chart-bar:before {
  content: "";
}

/* '' */
.icon-basket:before {
  content: "";
}

/* '' */
.icon-calendar-1:before {
  content: "";
}

/* '' */
.icon-fax:before {
  content: "";
}

/* '' */
.icon-cancel:before {
  content: "";
}

/* '' */
.icon-sun-inv:before {
  content: "";
}

/* '' */
.icon-moon-inv:before {
  content: "";
}

/* '' */
.icon-sunrise:before {
  content: "";
}

/* '' */
.icon-fog-sun:before {
  content: "";
}

/* '' */
.icon-sun:before {
  content: "";
}

/* '' */
.icon-moon:before {
  content: "";
}

/* '' */
.icon-clock:before {
  content: "";
}

/* '' */
.icon-soroush:before {
  content: "";
}

/* '' */
.icon-blank:before {
  content: "";
}

/* '' */
.icon-igap:before {
  content: "";
}

/* '' */
.icon-bale:before {
  content: "";
}

/* '' */
.icon-gap:before {
  content: "";
}

/* '' */
.icon-home:before {
  content: "";
}

/* '' */
.icon-fire:before {
  content: "";
}

/* '' */
.icon-quote-right:before {
  content: "";
}

/* '' */
.icon-quote-left:before {
  content: "";
}

/* '' */
.icon-attention:before {
  content: "";
}

/* '' */
.icon-attention-circled:before {
  content: "";
}

/* '' */
.icon-flight:before {
  content: "";
}

/* '' */
.icon-flight-1:before {
  content: "";
}

/* '' */
.icon-globe:before {
  content: "";
}

/* '' */
.icon-globe-1:before {
  content: "";
}

/* '' */
.icon-eitaa:before {
  content: "";
}

/* '' */
.icon-hotgram:before {
  content: "";
}

/* '' */
.icon-money:before {
  content: "";
}

/* '' */
.icon-dots:before {
  content: "";
}

/* '' */
.icon-telegram-1:before {
  content: "";
}

/* '' */
.icon-ivoox:before {
  content: "";
}

/* '' */
.icon-chart-line-1:before {
  content: "";
}

/* '' */
.icon-chart-area:before {
  content: "";
}

/* '' */
.icon-chart-alt:before {
  content: "";
}

/* '' */
.icon-chart-pie:before {
  content: "";
}

/* '' */
.icon-chart-alt-outline:before {
  content: "";
}

/* '' */
.icon-chart:before {
  content: "";
}

/* '' */
.icon-chart-1:before {
  content: "";
}

/* '' */
.icon-bitcoin:before {
  content: "";
}

/* '' */
.icon-food-1:before {
  content: "";
}

/* '' */
.icon-tree-2:before {
  content: "";
}

/* '' */
.icon-garden:before {
  content: "";
}

/* '' */
.icon-giraffe:before {
  content: "";
}

/* '' */
.icon-appstore:before {
  content: "";
}

/* '' */
.icon-rubika6:before {
  content: "";
}

/* '' */
.icon-pause:before {
  content: "";
}

/* '' */
.icon-stop:before {
  content: "";
}

/* '' */
.icon-x_igap:before {
  content: "";
}

/* '' */
.icon-rubika:before {
  content: "";
}

/* '' */
.icon-heart-broken:before {
  content: "";
}

/* '' */
.icon-link:before {
  content: "";
}

/* '' */
.icon-filter:before {
  content: "";
}

/* '' */
.icon-docs:before {
  content: "";
}

/* '' */
.icon-placeholder:before {
  content: "";
}

/* '' */
.icon-table:before {
  content: "";
}

/* '' */
.icon-gplus:before {
  content: "";
}

/* '' */
.icon-money-1:before {
  content: "";
}

/* '' */
.icon-envelope:before {
  content: "";
}

/* '' */
.icon-linkedin:before {
  content: "";
}

/* '' */
.icon-comment-empty:before {
  content: "";
}

/* '' */
.icon-chat-empty:before {
  content: "";
}

/* '' */
.icon-user-md:before {
  content: "";
}

/* '' */
.icon-bell-alt:before {
  content: "";
}

/* '' */
.icon-food:before {
  content: "";
}

/* '' */
.icon-doc-text:before {
  content: "";
}

/* '' */
.icon-folder-empty:before {
  content: "";
}

/* '' */
.icon-folder-open-empty:before {
  content: "";
}

/* '' */
.icon-code:before {
  content: "";
}

/* '' */
.icon-dollar:before {
  content: "";
}

/* '' */
.icon-doc-inv:before {
  content: "";
}

/* '' */
.icon-doc-text-inv:before {
  content: "";
}

/* '' */
.icon-youtube:before {
  content: "";
}

/* '' */
.icon-apple:before {
  content: "";
}

/* '' */
.icon-android:before {
  content: "";
}

/* '' */
.icon-box:before {
  content: "";
}

/* '' */
.icon-dot-circled:before {
  content: "";
}

/* '' */
.icon-translate:before {
  content: "";
}

/* '' */
.icon-cubes:before {
  content: "";
}

/* '' */
.icon-cab:before {
  content: "";
}

/* '' */
.icon-database:before {
  content: "";
}

/* '' */
.icon-football:before {
  content: "";
}

/* '' */
.icon-newspaper:before {
  content: "";
}

/* '' */
.icon-copyright:before {
  content: "";
}

/* '' */
.icon-chart-line:before {
  content: "";
}

/* '' */
.icon-whatsapp:before {
  content: "";
}

/* '' */
.icon-server:before {
  content: "";
}

/* '' */
.icon-sticky-note:before {
  content: "";
}

/* '' */
.icon-shopping-basket:before {
  content: "";
}

/* '' */
.icon-telegram:before {
  content: "";
}

/* '' */
html, body {
  min-height: 100vh;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: #fff;
  direction: rtl;
  text-align: right;
}
body.has-frame {
  padding-top: 137px;
}
body.has-frame > iframe {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2200;
}

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

a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.placeholders {
  height: 60px;
  background: #adb5bd;
}

@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir.eot");
  src: url("../../global/font/vazir/Vazir.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir.woff2") format("woff2"), url("../../global/font/vazir/Vazir.woff") format("woff"), url("../../global/font/vazir/Vazir.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir-Bold.eot");
  src: url("../../global/font/vazir/Vazir-Bold.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir-Bold.woff2") format("woff2"), url("../../global/font/vazir/Vazir-Bold.woff") format("woff"), url("../../global/font/vazir/Vazir-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir-Black.eot");
  src: url("../../global/font/vazir/Vazir-Black.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir-Black.woff2") format("woff2"), url("../../global/font/vazir/Vazir-Black.woff") format("woff"), url("../../global/font/vazir/Vazir-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir-Medium.eot");
  src: url("../../global/font/vazir/Vazir-Medium.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir-Medium.woff2") format("woff2"), url("../../global/font/vazir/Vazir-Medium.woff") format("woff"), url("../../global/font/vazir/Vazir-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir-Light.eot");
  src: url("../../global/font/vazir/Vazir-Light.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir-Light.woff2") format("woff2"), url("../../global/font/vazir/Vazir-Light.woff") format("woff"), url("../../global/font/vazir/Vazir-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Vazir";
  src: url("../../global/font/vazir/Vazir-Thin.eot");
  src: url("../../global/font/vazir/Vazir-Thin.eot#iefix") format("embedded-opentype"), url("../../global/font/vazir/Vazir-Thin.woff2") format("woff2"), url("../../global/font/vazir/Vazir-Thin.woff") format("woff"), url("../../global/font/vazir/Vazir-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/*@import '../../global/scss/font/mitra';*/
@font-face {
  font-family: "iran-sans-web";
  src: url("../../global/font/iran-sans/eot/IRANSansWeb.eot");
  src: url("../../global/font/iran-sans/eot/IRANSansWeb.eot?#iefix") format("eot"), url("../../global/font/iran-sans/woff2/IRANSansWeb.woff2") format("woff2"), url("../../global/font/iran-sans/woff/IRANSansWeb.woff") format("woff"), url("../../global/font/iran-sans/ttf/IRANSansWeb.ttf") format("ttf");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "iran-sans-web";
  src: url("../../global/font/iran-sans/eot/IRANSansWeb_Bold.eot");
  src: url("../../global/font/iran-sans/eot/IRANSansWeb_Bold.eot?#iefix") format("eot"), url("../../global/font/iran-sans/woff2/IRANSansWeb_Bold.woff2") format("woff2"), url("../../global/font/iran-sans/woff/IRANSansWeb_Bold.woff") format("woff"), url("../../global/font/iran-sans/ttf/IRANSansWeb_Bold.ttf") format("ttf");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "nastooh-icons";
  src: url("../../global/font/nastooh-icons/nastooh-icons.eot?63557437");
  src: url("../../global/font/nastooh-icons/nastooh-icons.eot?63557437#iefix") format("embedded-opentype"), url("../../global/font/nastooh-icons/nastooh-icons.woff2?63557437") format("woff2"), url("../../global/font/nastooh-icons/nastooh-icons.woff?63557437") format("woff"), url("../../global/font/nastooh-icons/nastooh-icons.ttf?63557437") format("truetype"), url("../../global/font/nastooh-icons/nastooh-icons.svg?63557437#nastooh-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'nastooh-icons';
    src: url('../font/nastooh-icons.svg?66128524#nastooh-icons') format('svg');
  }
}
*/
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "nastooh-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-up:before {
  content: "";
}

/* '' */
.icon-right:before {
  content: "";
}

/* '' */
.icon-left:before {
  content: "";
}

/* '' */
.icon-down:before {
  content: "";
}

/* '' */
.icon-thumbs-up:before {
  content: "";
}

/* '' */
.icon-signal:before {
  content: "";
}

/* '' */
.icon-search:before {
  content: "";
}

/* '' */
.icon-mobile:before {
  content: "";
}

/* '' */
.icon-twitter:before {
  content: "";
}

/* '' */
.icon-facebook:before {
  content: "";
}

/* '' */
.icon-tag:before {
  content: "";
}

/* '' */
.icon-star:before {
  content: "";
}

/* '' */
.icon-rss:before {
  content: "";
}

/* '' */
.icon-list:before {
  content: "";
}

/* '' */
.icon-book-open:before {
  content: "";
}

/* '' */
.icon-thumbs-down:before {
  content: "";
}

/* '' */
.icon-print:before {
  content: "";
}

/* '' */
.icon-archive:before {
  content: "";
}

/* '' */
.icon-fullscreen:before {
  content: "";
}

/* '' */
.icon-play:before {
  content: "";
}

/* '' */
.icon-music:before {
  content: "";
}

/* '' */
.icon-volume-off:before {
  content: "";
}

/* '' */
.icon-volume-down:before {
  content: "";
}

/* '' */
.icon-volume-up:before {
  content: "";
}

/* '' */
.icon-user:before {
  content: "";
}

/* '' */
.icon-download:before {
  content: "";
}

/* '' */
.icon-instagram:before {
  content: "";
}

/* '' */
.icon-headphones:before {
  content: "";
}

/* '' */
.icon-aparat:before {
  content: "";
}

/* '' */
.icon-cloob:before {
  content: "";
}

/* '' */
.icon-bisphoon:before {
  content: "";
}

/* '' */
.icon-heart:before {
  content: "";
}

/* '' */
.icon-menu:before {
  content: "";
}

/* '' */
.icon-info-circled:before {
  content: "";
}

/* '' */
.icon-gmail:before {
  content: "";
}

/* '' */
.icon-plus:before {
  content: "";
}

/* '' */
.icon-calendar:before {
  content: "";
}

/* '' */
.icon-language:before {
  content: "";
}

/* '' */
.icon-folder:before {
  content: "";
}

/* '' */
.icon-folder-open:before {
  content: "";
}

/* '' */
.icon-comment:before {
  content: "";
}

/* '' */
.icon-chat:before {
  content: "";
}

/* '' */
.icon-trash-empty:before {
  content: "";
}

/* '' */
.icon-doc:before {
  content: "";
}

/* '' */
.icon-camera:before {
  content: "";
}

/* '' */
.icon-picture:before {
  content: "";
}

/* '' */
.icon-video:before {
  content: "";
}

/* '' */
.icon-book:before {
  content: "";
}

/* '' */
.icon-tags:before {
  content: "";
}

/* '' */
.icon-minus:before {
  content: "";
}

/* '' */
.icon-refresh:before {
  content: "";
}

/* '' */
.icon-mail:before {
  content: "";
}

/* '' */
.icon-play-circled:before {
  content: "";
}

/* '' */
.icon-group:before {
  content: "";
}

/* '' */
.icon-user-add:before {
  content: "";
}

/* '' */
.icon-pencil:before {
  content: "";
}

/* '' */
.icon-edit:before {
  content: "";
}

/* '' */
.icon-speaker:before {
  content: "";
}

/* '' */
.icon-chart-bar:before {
  content: "";
}

/* '' */
.icon-basket:before {
  content: "";
}

/* '' */
.icon-calendar-1:before {
  content: "";
}

/* '' */
.icon-fax:before {
  content: "";
}

/* '' */
.icon-cancel:before {
  content: "";
}

/* '' */
.icon-sun-inv:before {
  content: "";
}

/* '' */
.icon-moon-inv:before {
  content: "";
}

/* '' */
.icon-sunrise:before {
  content: "";
}

/* '' */
.icon-fog-sun:before {
  content: "";
}

/* '' */
.icon-sun:before {
  content: "";
}

/* '' */
.icon-moon:before {
  content: "";
}

/* '' */
.icon-clock:before {
  content: "";
}

/* '' */
.icon-soroush:before {
  content: "";
}

/* '' */
.icon-blank:before {
  content: "";
}

/* '' */
.icon-igap:before {
  content: "";
}

/* '' */
.icon-bale:before {
  content: "";
}

/* '' */
.icon-gap:before {
  content: "";
}

/* '' */
.icon-home:before {
  content: "";
}

/* '' */
.icon-fire:before {
  content: "";
}

/* '' */
.icon-quote-right:before {
  content: "";
}

/* '' */
.icon-quote-left:before {
  content: "";
}

/* '' */
.icon-attention:before {
  content: "";
}

/* '' */
.icon-attention-circled:before {
  content: "";
}

/* '' */
.icon-flight:before {
  content: "";
}

/* '' */
.icon-flight-1:before {
  content: "";
}

/* '' */
.icon-globe:before {
  content: "";
}

/* '' */
.icon-globe-1:before {
  content: "";
}

/* '' */
.icon-eitaa:before {
  content: "";
}

/* '' */
.icon-hotgram:before {
  content: "";
}

/* '' */
.icon-money:before {
  content: "";
}

/* '' */
.icon-dots:before {
  content: "";
}

/* '' */
.icon-telegram-1:before {
  content: "";
}

/* '' */
.icon-ivoox:before {
  content: "";
}

/* '' */
.icon-chart-line-1:before {
  content: "";
}

/* '' */
.icon-chart-area:before {
  content: "";
}

/* '' */
.icon-chart-alt:before {
  content: "";
}

/* '' */
.icon-chart-pie:before {
  content: "";
}

/* '' */
.icon-chart-alt-outline:before {
  content: "";
}

/* '' */
.icon-chart:before {
  content: "";
}

/* '' */
.icon-chart-1:before {
  content: "";
}

/* '' */
.icon-bitcoin:before {
  content: "";
}

/* '' */
.icon-food-1:before {
  content: "";
}

/* '' */
.icon-tree-2:before {
  content: "";
}

/* '' */
.icon-garden:before {
  content: "";
}

/* '' */
.icon-giraffe:before {
  content: "";
}

/* '' */
.icon-appstore:before {
  content: "";
}

/* '' */
.icon-rubika6:before {
  content: "";
}

/* '' */
.icon-pause:before {
  content: "";
}

/* '' */
.icon-stop:before {
  content: "";
}

/* '' */
.icon-x_igap:before {
  content: "";
}

/* '' */
.icon-rubika:before {
  content: "";
}

/* '' */
.icon-heart-broken:before {
  content: "";
}

/* '' */
.icon-link:before {
  content: "";
}

/* '' */
.icon-filter:before {
  content: "";
}

/* '' */
.icon-docs:before {
  content: "";
}

/* '' */
.icon-placeholder:before {
  content: "";
}

/* '' */
.icon-table:before {
  content: "";
}

/* '' */
.icon-gplus:before {
  content: "";
}

/* '' */
.icon-money-1:before {
  content: "";
}

/* '' */
.icon-envelope:before {
  content: "";
}

/* '' */
.icon-linkedin:before {
  content: "";
}

/* '' */
.icon-comment-empty:before {
  content: "";
}

/* '' */
.icon-chat-empty:before {
  content: "";
}

/* '' */
.icon-user-md:before {
  content: "";
}

/* '' */
.icon-bell-alt:before {
  content: "";
}

/* '' */
.icon-food:before {
  content: "";
}

/* '' */
.icon-doc-text:before {
  content: "";
}

/* '' */
.icon-folder-empty:before {
  content: "";
}

/* '' */
.icon-folder-open-empty:before {
  content: "";
}

/* '' */
.icon-code:before {
  content: "";
}

/* '' */
.icon-dollar:before {
  content: "";
}

/* '' */
.icon-doc-inv:before {
  content: "";
}

/* '' */
.icon-doc-text-inv:before {
  content: "";
}

/* '' */
.icon-youtube:before {
  content: "";
}

/* '' */
.icon-apple:before {
  content: "";
}

/* '' */
.icon-android:before {
  content: "";
}

/* '' */
.icon-box:before {
  content: "";
}

/* '' */
.icon-dot-circled:before {
  content: "";
}

/* '' */
.icon-translate:before {
  content: "";
}

/* '' */
.icon-cubes:before {
  content: "";
}

/* '' */
.icon-cab:before {
  content: "";
}

/* '' */
.icon-database:before {
  content: "";
}

/* '' */
.icon-football:before {
  content: "";
}

/* '' */
.icon-newspaper:before {
  content: "";
}

/* '' */
.icon-copyright:before {
  content: "";
}

/* '' */
.icon-chart-line:before {
  content: "";
}

/* '' */
.icon-whatsapp:before {
  content: "";
}

/* '' */
.icon-server:before {
  content: "";
}

/* '' */
.icon-sticky-note:before {
  content: "";
}

/* '' */
.icon-shopping-basket:before {
  content: "";
}

/* '' */
.icon-telegram:before {
  content: "";
}

/* '' */
#header {
  background: #0c3555;
  position: relative;
  z-index: 80;
  color: #ccc;
  height: 100px;
}
#header::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 767.98px) {
  #header {
    height: auto;
  }
}
body.dark #header {
  background: url("../img/header-bg.png") no-repeat center top #404040;
}
body.irna-plus #header {
  background: #0c3555;
}
body.irna-life #header {
  background: #0c3555;
}
#header a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
#header a:hover {
  color: #ccc;
}
#header .container {
  position: relative;
}
#header .logo {
  display: block;
  height: 40px;
  width: 320px;
  margin: 10px 0;
  float: right;
}
body.ltr #header .logo {
  float: left;
}
@media (max-width: 767.98px) {
  #header .logo {
    width: 100%;
  }
}
#header .logo a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  height: 40px;
  background: url("../img/logo.svg") no-repeat right center transparent;
}
html[lang=en] #header .logo a {
  background-image: url("../img/logo-en.svg");
}
html[lang=ar] #header .logo a {
  background-image: url("../img/logo-ar.svg");
}
html[lang=tr] #header .logo a {
  background-image: url("../img/logo-tr.svg");
}
html[lang=es] #header .logo a {
  background-image: url("../img/logo-es.svg");
}
html[lang=ru] #header .logo a {
  background-image: url("../img/logo-ru.svg");
}
html[lang=ur] #header .logo a {
  background-image: url("../img/logo-ur.svg");
}
html[lang=fr] #header .logo a {
  background-image: url("../img/logo-fr.svg");
}
html[lang=de] #header .logo a {
  background-image: url("../img/logo-de.svg");
}
html[lang=zh] #header .logo a {
  background-image: url("../img/logo-zh.svg");
}
head[title=""] #header .logo a {
  background-image: url("../img/plogo2.png");
}
body.ltr #header .logo a {
  background-position: left center;
}
@media (max-width: 767.98px) {
  body.ltr #header .logo a {
    background-size: contain;
  }
}
@media (max-width: 767.98px) {
  #header .logo a {
    width: 100%;
    background-position: right center;
    background-size: 100%;
  }
}
#header .logo-pr {
  display: block;
  height: 40px;
  width: 320px;
  margin: 10px 0;
  float: right;
}
body.ltr #header .logo-pr {
  float: left;
}
@media (max-width: 767.98px) {
  #header .logo-pr {
    width: 100%;
  }
}
#header .logo-pr a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  height: 40px;
  background: url("../img/plogo2.png") no-repeat right;
}
body.ltr #header .logo-pr a {
  background-position: left center;
}
@media (max-width: 767.98px) {
  body.ltr #header .logo-pr a {
    background-size: contain;
  }
}
@media (max-width: 767.98px) {
  #header .logo-pr a {
    width: 100%;
    background-position: right center;
    background-size: 100%;
  }
}
#header .header-slogan {
  width: 100%;
  height: 100px;
  background: url("../img/logo_left.svg") no-repeat left center transparent;
}
@media (max-width: 1299.98px) {
  #header .header-slogan {
    background-image: url("../img/logo_shape.svg");
    background-size: 100%;
  }
}
body._mask #header .header-slogan {
  background-image: url("../img/logo_left_mask_7.png");
}
body.irna-plus #header .header-slogan {
  background-image: url("../img/logo-irnaplus.svg");
}
body.irna-life #header .header-slogan {
  background-image: url("../img/logo-irnalife.png");
}
body.irna-edu #header .header-slogan {
  background-image: url("../img/logo-irnaedu.svg?_=1");
}
#header .menu-toggle {
  background: transparent;
  color: #ccc;
  font-size: 24px;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-left: 2px solid #fff;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
#header .menu-toggle:hover {
  color: #ccc;
}
body.amp #header .menu-toggle {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header .date {
  font-size: 0.7rem;
  color: #ccc;
  margin-right: 40px;
  line-height: 40px;
  padding: 10px 0;
}
body.ltr #header .date {
  margin-left: 40px;
  margin-right: 0;
}
@media (max-width: 767.98px) {
  #header .date {
    line-height: 1.5;
    height: 0.8rem;
    float: right;
    margin-right: 0;
  }
  body.ltr #header .date {
    float: left;
    margin-left: 0;
  }
}
#header .date .province-title {
  font-size: 1rem;
  font-weight: bold;
}
#header .span-logout {
  margin-right: 20px !important;
}
#header .span-logout a {
  color: red !important;
}
#header .profile-name a {
  color: lightseagreen !important;
}
#header .box {
  margin: 0;
  height: 100%;
}
#header .box.ads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .box.ads ul li {
  border: 0 none;
  line-height: 1.5;
  text-align: center;
}
#header .box.ads ul li figure {
  margin-bottom: 0;
  max-height: 60px;
  overflow: hidden;
}
#header button[data-toggle] {
  clear: left;
  height: 40px;
  width: 45%;
  padding: 0;
  text-align: center;
  margin-top: 10px;
  color: #fff;
  font-size: 1.5rem;
  background: transparent;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  #header button[data-toggle] {
    width: 20%;
    text-align: right;
    border: 0 none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    float: right;
  }
  #header button[data-toggle] ~ button {
    text-align: left;
    float: left;
    width: 55%;
    height: 40px;
    background: url("../img/logo_left.svg") no-repeat right center transparent;
    background-image: url("../img/logo_shape.svg");
    background-size: 25%;
  }
  body.irna-plus #header button[data-toggle] ~ button {
    background-image: url("../img/logo-irnaplus.svg");
  }
  body.irna-life #header button[data-toggle] ~ button {
    background-image: url("../img/logo-irnalife.png");
  }
  body.irna-edu #header button[data-toggle] ~ button {
    background-image: url("../img/logo-irnaedu.svg?_=1");
  }
  body.ltr #header button[data-toggle] {
    float: left;
    text-align: left;
  }
  body.ltr #header button[data-toggle] ~ button {
    text-align: right;
  }
}
body.ltr #header button[data-toggle] {
  clear: right;
}
body.sticky-header #header {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 888;
}
body.sticky-header #header #masthead {
  height: 0;
}
body.sticky-header #header .logo {
  height: 45px;
  background-size: contain;
  margin-top: 3px;
}
body.sticky-header #header button[data-toggle] {
  margin-top: 5px;
}

#top-header {
  height: 60px;
}

.languages-menu {
  float: left;
  position: relative;
  line-height: 40px;
  padding: 10px 0;
}
body.ltr .languages-menu {
  float: right;
}
@media (max-width: 767.98px) {
  .languages-menu {
    line-height: 1.5;
    padding: 0;
  }
}
.languages-menu select {
  border: 0 none;
  border-radius: 0;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  color: #ced4da;
  padding: 0 1rem 0 0.5rem;
  vertical-align: middle;
  outline: 0 none;
  font-size: 0.75rem;
  background: transparent;
}
body.ltr .languages-menu select {
  padding: 0 0.5rem 0 1rem;
}
.languages-menu select option {
  background: #1c517c;
}
.languages-menu:before {
  position: absolute;
  display: block;
  content: "";
  font-family: "nastooh-icons";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
}
body.ltr .languages-menu:before {
  right: auto;
  left: 0;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .languages-menu select {
      min-width: 100px;
      text-indent: 20px;
    }
    .languages-menu:before {
      right: 10px;
    }
    body.ltr .languages-menu:before {
      left: 10px;
    }
  }
}
.date {
  display: inline-block;
  font-size: 0.7rem;
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .date {
    float: left;
    line-height: 32px;
  }
}

@media (max-width: 575px) {
  .logout {
    float: left !important;
  }
}

#header .logo-pr a {
  margin-top: -10px;
  height: 60px;
  width: 600px;
  position: relative;
}
@media (max-width: 767.98px) {
  #header .logo-pr a {
    background-size: auto;
  }
}

span.pr {
  margin-right: -240px;
  font-size: 20px;
  font-weight: bolder;
}
@media (max-width: 305px) {
  span.pr {
    display: none;
  }
}
@media (min-width: 306px) and (max-width: 393px) {
  span.pr {
    font-size: 12px;
    display: none;
  }
}
@media (min-width: 394px) and (max-width: 767.98px) {
  span.pr {
    display: block;
    margin-right: 82px;
    font-size: 16px;
    margin-top: 20px;
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.8px) {
  span.pr {
    font-size: 14px;
  }
}

span.pr-location {
  margin-right: 20px;
  display: none;
}
@media (max-width: 767.98px) {
  span.pr-location {
    display: none;
  }
}

@media (max-width: 767px) {
  #header .date.pr-date {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  body.ltr #header button[data-toggle] {
    width: 45% !important;
  }
}

@media (max-width: 767.98px) {
  body.ltr #header button[data-toggle] ~ button {
    width: 55% !important;
    background-position: left center;
  }
}

body.ltr .box > header h2 {
  padding-left: 15px !important;
}

#menu ul li .pr-submenu li {
  width: 250px !important;
}

.pr-menu ul li {
  font-size: 12px !important;
}
@media (max-width: 1299.98px) and (min-width: 992px) {
  .pr-menu ul li {
    font-size: 11px !important;
  }
}

/*
*  EXCEPTION: Mobile-related codes is at the end of file.
*/
#menu {
  background: #1c517c;
  position: relative;
  font-family: "iran-sans-web";
}
#menu::after {
  display: block;
  clear: both;
  content: "";
}
body.ltr #menu {
  font-family: "Arial";
}
body.dark #menu {
  background: #222;
}
body.irna-plus #menu {
  background: #ef3f3f;
}
body.irna-life #menu {
  background: #00876c;
}
body.irna-edu #menu {
  background: #fe6902;
}
html[lang=ku] #menu, html[lang=ur] #menu {
  font-family: "Times New Roman", Arial, Times;
}
#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: block;
  height: 40px;
  font-size: 0;
  max-width: 100%;
  padding-left: 40px;
}
body.ltr #menu ul {
  padding-left: 0;
  padding-right: 40px;
}
#menu ul li {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  display: inline-block;
  line-height: 40px;
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 768px) {
  #menu ul li {
    position: relative;
  }
}
body.ltr #menu ul li {
  float: left;
  font-weight: bold;
  font-size: 13px;
}
#menu ul li a {
  padding: 0 8px;
  display: block;
}
#menu ul li:hover {
  background: #466985;
}
body.irna-plus #menu ul li:hover {
  background: #d01111;
}
body.irna-life #menu ul li:hover {
  background: #006e58;
}
body.irna-edu #menu ul li:hover {
  background: #e65e01;
}
#menu ul li:hover .submenu {
  display: block;
}
#menu ul li.active {
  background: #466985;
}
body.irna-plus #menu ul li.active {
  background: #d01111;
}
body.irna-life #menu ul li.active {
  background: #006e58;
}
body.irna-edu #menu ul li.active {
  background: #e65e01;
}
#menu ul li .submenu-toggler {
  display: none;
}
#menu ul li .submenu {
  display: none;
  position: absolute;
  background: #466985;
  top: 40px;
  right: 0;
  z-index: 78;
  text-align: start;
  white-space: normal;
  width: 320px;
  padding: 10px 0;
  height: auto;
  max-width: none;
  font-size: 0;
}
#menu ul li .submenu:before, #menu ul li .submenu:after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  background: #466985;
  z-index: 0;
  left: 100%;
}
body.irna-plus #menu ul li .submenu:before, body.irna-plus #menu ul li .submenu:after {
  background: #d01111;
}
body.irna-life #menu ul li .submenu:before, body.irna-life #menu ul li .submenu:after {
  background: #006e58;
}
body.irna-edu #menu ul li .submenu:before, body.irna-edu #menu ul li .submenu:after {
  background: #e65e01;
}
#menu ul li .submenu:after {
  left: auto;
  right: 100%;
}
body.ltr #menu ul li .submenu {
  right: auto;
  left: 0;
}
body.irna-plus #menu ul li .submenu {
  background: #d01111;
}
body.irna-life #menu ul li .submenu {
  background: #006e58;
}
body.irna-edu #menu ul li .submenu {
  background: #e65e01;
}
#menu ul li .submenu li {
  line-height: 30px;
  border: 0 none;
  float: right;
  display: block;
  width: 160px;
  border: 0 none;
  margin: 0;
  font-size: 13px;
}
body.ltr #menu ul li .submenu li {
  float: left;
}
#menu ul li .submenu li a {
  color: #fff;
}
#menu ul li .submenu li:hover, #menu ul li .submenu li.active {
  background: #3a576e;
}
body.irna-plus #menu ul li .submenu li:hover, body.irna-plus #menu ul li .submenu li.active {
  background: #a10d0d;
}
body.irna-life #menu ul li .submenu li:hover, body.irna-life #menu ul li .submenu li.active {
  background: #005443;
}
body.irna-edu #menu ul li .submenu li:hover, body.irna-edu #menu ul li .submenu li.active {
  background: #cc5401;
}
@media (min-width: 992px) and (max-width: 1299.98px) {
  #menu ul li {
    font-size: 12px;
    font-weight: normal;
  }
  #menu ul li a {
    padding: 0 5px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #menu ul {
    overflow-x: auto !important;
  }
  #menu ul li {
    display: inline-block;
    float: none !important;
  }
  #menu ul li .submenu {
    overflow: hidden;
  }
}
#menu button[data-toggle] {
  float: left;
  width: 40px;
  margin: 0;
}
body.ltr #menu button[data-toggle] {
  float: right;
}
@media (max-width: 1299.98px) {
  #menu .btn[data-toggle] {
    margin: 0;
    float: left;
    height: 40px;
    line-height: 40px;
  }
  body.ltr #menu .btn[data-toggle] {
    float: right;
  }
}

@media (max-width: 767.98px) {
  #menu {
    position: fixed;
    top: 0;
    left: -75%;
    height: 100vh;
    width: 75%;
    display: none;
    overflow: hidden;
    overflow-y: auto;
  }
  #menu .container {
    padding: 0 2px;
  }
  #menu ul {
    position: absolute;
    z-index: 100;
    width: 100%;
    text-align: right;
    padding-left: 0;
  }
  body.ltr #menu ul {
    text-align: left;
  }
  #menu ul li {
    display: block;
    float: none !important;
    padding: 0 10px;
    position: relative;
    line-height: 40px;
    border: 0 none;
    padding-right: 32px;
  }
  body.ltr #menu ul li {
    padding-right: 0;
    padding-left: 32px;
  }
  #menu ul li.active .submenu {
    display: none;
  }
  #menu ul li .submenu-toggler {
    width: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 3px;
    right: 0;
    display: block;
    z-index: 500;
    cursor: pointer;
  }
  body.ltr #menu ul li .submenu-toggler {
    right: auto;
    left: 0;
  }
  #menu ul li .submenu {
    position: static;
    background: #082136;
    display: none;
  }
  #menu ul li .submenu:before, #menu ul li .submenu:after {
    display: none;
  }
  #menu ul li .submenu li {
    display: block;
    padding-right: 10px;
  }
  body.ltr #menu ul li .submenu li {
    padding-right: 0;
    padding-left: 10px;
  }
  #menu ul li .submenu li a {
    color: #fff;
  }
  #menu ul li .submenu li:hover, #menu ul li .submenu li.active {
    background: #061928;
  }
  #menu ul li .submenu li:hover a, #menu ul li .submenu li.active a {
    color: #fff;
  }
}
body.sticky-header {
  padding-top: 85px;
}

main {
  -webkit-transition: 0.35s all;
  transition: 0.35s all;
}
main:before {
  display: block;
  clear: both;
  content: "";
}

.wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.wrapper.primary {
  background: #0c3555;
}
.wrapper.accent {
  background: #860f10;
}
.wrapper.blue {
  background: #1c517c;
}
.wrapper.dark {
  background: #222;
}
.wrapper.gray {
  background: #e9ecef;
}
.wrapper.primary, .wrapper.accent, .wrapper.dark, .wrapper.blue {
  color: #efefef;
  padding-bottom: 20px;
}
.wrapper.primary a:not(.btn), .wrapper.accent a:not(.btn), .wrapper.dark a:not(.btn), .wrapper.blue a:not(.btn) {
  color: #fff;
}
.wrapper.primary a:not(.btn):hover, .wrapper.accent a:not(.btn):hover, .wrapper.dark a:not(.btn):hover, .wrapper.blue a:not(.btn):hover {
  color: #ddd;
}
.wrapper.primary .box > header h2, .wrapper.accent .box > header h2, .wrapper.dark .box > header h2, .wrapper.blue .box > header h2 {
  color: #fff;
}
.wrapper.primary .box > header h2 > a, .wrapper.primary .box > header h2 > span, .wrapper.accent .box > header h2 > a, .wrapper.accent .box > header h2 > span, .wrapper.dark .box > header h2 > a, .wrapper.dark .box > header h2 > span, .wrapper.blue .box > header h2 > a, .wrapper.blue .box > header h2 > span {
  border-color: #fff;
  color: #fff;
}
.wrapper.primary .box > header h2:before, .wrapper.accent .box > header h2:before, .wrapper.dark .box > header h2:before, .wrapper.blue .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sidebar .box.list.list-thumbs > div ul li figure {
    display: none;
  }
  .sidebar .box.list.list-thumbs > div ul li figure + .desc {
    padding-right: 10px;
  }
  body.ltr .sidebar .box.list.list-thumbs > div ul li figure + .desc {
    padding-left: 10px;
  }
}

#showcase {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
#showcase .bg-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  background-size: cover;
}
#showcase .bg-cover img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

#multimedia .grouped-boxes {
  margin-top: 0;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.placeholder {
  background: #dee2e6;
  height: 120px;
  line-height: 120px;
  text-align: center;
}

.pt-subTopic .mainbody, .pt-topic .mainbody, .pt-news .mainbody {
  margin-top: 35px;
}

#footer {
  background-color: #0c3555;
  padding: 0 0 10px;
  color: #d5d5d5;
  margin-top: 20px;
}
#footer #footer-items {
  background: #adb5bd;
  padding-top: 20px;
}
#footer #footer-items .box > header > h2 {
  background: #adb5bd;
}
#footer .box > header {
  border: 0 none;
}
#footer .box > header h2, #footer .box > header h2 a {
  color: #fff;
}
#footer .box > div ul li .desc h3 {
  font-size: 0.875rem;
  line-height: 2;
}
#footer .footer-icons {
  margin-bottom: 30px;
}
#footer .footer-icons ul {
  margin: 0;
  padding: 0;
  text-align: left;
}
body.ltr #footer .footer-icons ul {
  text-align: right;
}
#footer .footer-icons ul li {
  padding: 0;
  display: inline-block;
}
#footer .footer-icons ul li a {
  color: #e6e6e6;
  font-size: 18px;
}
#footer .footer-icons ul li a:hover {
  color: #ccc;
}
#footer .search {
  float: left;
  width: 100%;
}
body.ltr #footer .search {
  float: right;
}
#footer .search .input-group {
  width: 100%;
  position: relative;
  margin-top: 0;
}
#footer .search input {
  width: 100%;
  height: 36px;
  text-indent: 8px;
  color: #fff;
  background: #595959;
  border: 0 none;
  border-radius: 3px;
}
#footer .search button {
  position: absolute;
  bottom: 2px;
  left: 5px;
  color: #fff;
}
body.ltr #footer .search button {
  left: auto;
  right: 5px;
}
#footer #sitemap {
  margin: 10px 0;
  background: #073E69;
  padding-bottom: 20px;
}
#footer #sitemap a {
  color: #b3b3b3;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
#footer #sitemap a:hover {
  text-decoration: none;
  color: #fff;
}
#footer #copyright {
  height: auto;
  color: rgba(204, 204, 204, 0.7);
}
@media (max-width: 767.98px) {
  #footer #copyright {
    text-align: center;
  }
}
#footer #copyright .copyright-text {
  display: block;
  float: none;
  clear: both;
  font-size: 0.7rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
#footer #copyright .poweredby {
  font-size: 11px;
}
@media (max-width: 767.98px) {
  #footer #copyright .poweredby {
    padding-bottom: 20px;
  }
}
#footer #copyright .poweredby a {
  display: inline-block;
  color: #adb5bd;
  padding-left: 20px;
}
#footer #copyright .poweredby a:hover {
  text-decoration: none;
}
body.ltr #footer #copyright .poweredby a {
  padding-left: 0;
  padding-right: 20px;
}
#footer #footer-logo {
  /*margin: $grid-gutter-width / 2 0 0 0; */
  float: left;
}
#footer #footer-logo > a {
  display: block;
}
#footer #footer-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
body.ltr #footer #footer-logo {
  float: right;
}
@media (max-width: 767.98px) {
  #footer #footer-logo {
    float: none;
    text-align: center;
  }
  #footer #footer-logo img {
    display: inline-block;
  }
}
#footer .responsive-tools {
  text-align: center;
  padding: 20px 0;
  display: none;
}
@media (max-width: 1299.98px) {
  #footer .responsive-tools {
    display: block;
  }
}

#breaking {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 800;
  border-top: 4px solid #ec0000;
  background: #E6E6E6;
}

.breaking {
  margin-bottom: 0;
}
.breaking .box-content {
  padding-right: 120px;
}
.breaking .box-content h3 {
  margin: 0;
  padding: 3px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
.breaking .box-content h3 a {
  color: #EC0000;
}
.breaking .box-content p {
  margin-bottom: 0;
  color: #626262;
}

.news-part-exact-date {
  visibility: hidden;
  font-size: small;
}

.news-part-date:hover .news-part-exact-date {
  visibility: visible;
}

.box {
  margin: 20px 0 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.box::after {
  display: block;
  clear: both;
  content: "";
}
.box > header {
  background: transparent;
  height: 26px;
  line-height: 26px;
  margin-bottom: 10px;
  position: relative;
}
.box > header h1 {
  font-size: 1.75rem;
  font-weight: bold;
  height: 52px;
  line-height: 52px;
}
body.ltr .box > header h1 {
  line-height: 78px;
  text-align: left;
}
.box > header h2 {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 10px 0 20px;
  margin: 0;
  color: #0c3555;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 28px;
  line-height: 26px;
}
@media (max-width: 1299.98px) {
  .box > header h2 {
    padding-left: 0;
  }
  .box > header h2 body.ltr {
    padding-left: 20px;
    padding-right: 0;
  }
}
.box > header h2:before {
  display: block;
  content: "";
  width: 18px;
  top: 50%;
  right: 0;
  height: 18px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%230c3555' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E") no-repeat center top transparent;
}
body.ltr .box > header h2:before {
  right: auto;
  left: -6px;
}
body.dark .box > header h2 {
  color: #fff;
  /*background: $body-bg-dark;*/
}
body.ltr .box > header h2 {
  margin-left: 6px;
  margin-right: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
}
.box > header h2 > a {
  display: block;
  text-decoration: none;
  color: #0c3555;
}
body.dark .box > header h2 > a {
  color: #fff;
}
.box > header h2 > span {
  display: block;
}
.box > header h2:hover a {
  color: #860f10;
}
.box > header .subcategories {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: absolute;
  top: 0;
  height: 26px;
  line-height: 26px;
  padding-right: 120px;
}
.box > header .subcategories li a {
  color: #adb5bd;
  display: block;
  padding: 0 10px;
  text-decoration: none;
}
.box > header .subcategories li:hover a {
  color: #860f10;
}
.box > header > .pagination {
  display: block;
  line-height: 0;
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 100;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
body.ltr .box > header > .pagination {
  left: auto;
  right: 10px;
}
.box > header > .pagination ul {
  margin: 0;
  padding: 0;
}
.box > header > .pagination li {
  display: inline-block;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 0.75rem;
  height: 0.75rem;
  background: #c4c4c4;
  margin-right: 10px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 0;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.box > header > .pagination li[class*=active], .box > header > .pagination li:hover {
  background: #466985;
}
.box > header > .pagination li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0 none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
.box > footer {
  text-align: center;
}
.box > footer .pagination {
  padding-right: 0;
}
.box > footer .pagination li {
  margin: 0;
}
.box > footer .more {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  color: #212529;
  background-color: #f8f9fa;
  border-color: #ced4da;
}
.box > footer .more:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #b1bbc4;
}
.box > footer .more:focus, .box > footer .more.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
}
.box > footer .more.disabled, .box > footer .more:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #ced4da;
}
.box > footer .more:not(:disabled):not(.disabled):active, .box > footer .more:not(:disabled):not(.disabled).active, .show > .box > footer .more.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #aab4bf;
}
.box > footer .more:not(:disabled):not(.disabled):active:focus, .box > footer .more:not(:disabled):not(.disabled).active:focus, .show > .box > footer .more.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(180, 186, 191, 0.5);
}
.box > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.box > div ul.slick-slider {
  margin: 0 !important;
}
.box > div ul li figure {
  margin: 0;
}
.box > div ul li figure > a {
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
  display: block;
  overflow: hidden;
  position: relative;
}
.box > div ul li figure > a img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.box > div ul li .desc {
  position: relative;
}
.box > div ul li .desc h1, .box > div ul li .desc h2, .box > div ul li .desc h3, .box > div ul li .desc h4, .box > div ul li .desc h5 {
  margin: 0;
}
.box > div ul li .desc h3 {
  font: bold 1rem/1.75 "iran-sans-web";
}
body.ltr .box > div ul li .desc h3 {
  font-family: "Arial";
  line-height: 1.5;
}
html[lang=ku] .box > div ul li .desc h3, html[lang=ur] .box > div ul li .desc h3 {
  font-family: "Times New Roman", Arial, Times;
}
.box > div ul li .desc h3 a {
  padding-bottom: 5px;
}
.box > div ul li .desc h4 {
  font: normal 0.75rem/1.4 "iran-sans-web";
}
body.ltr .box > div ul li .desc h4 {
  font-family: "Arial";
}
html[lang=ku] .box > div ul li .desc h4, html[lang=ur] .box > div ul li .desc h4 {
  font-family: "Times New Roman", Arial, Times;
}
.box > div ul li .desc h4, .box > div ul li .desc h4 a {
  color: #999;
}
.box > div ul li .desc h4 a {
  padding-bottom: 5px;
}
.box > div ul li .desc p {
  color: #6c757d;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .box > div ul li .desc p {
    display: none;
  }
}
.box > div ul li .desc em {
  font-style: normal;
  background: yellow;
  padding: 0 3px;
  color: #000;
}
.box > div ul li .desc time a {
  color: #adb5bd;
  font-size: 0.7rem;
  display: inline-block;
  padding-top: 5px;
}
.box > div ul li .desc time a:before {
  font-family: "nastooh-icons";
  content: "";
  display: inline-block;
  margin-left: 5px;
  font-size: 0.75rem;
}
body.ltr .box > div ul li .desc time a:before {
  margin-left: 0;
  margin-right: 5px;
}
.box > div ul li .desc .author {
  margin-top: 10px;
}
.box > div ul li .desc .author a {
  color: #adb5bd;
  font-size: 0.7rem;
  display: block;
}
.box > div ul li .desc .category {
  display: inline;
  color: #880a0a;
}
.box > div ul li .desc .category:after {
  content: "  |  ";
  font-size: 85%;
}
.box > div ul li .desc .category a {
  color: #880a0a;
}
.box > div ul li .desc .category a:hover {
  color: #860f10;
}
.box > div ul li .desc .comments-label {
  display: inline-block;
  background: #595782;
  color: #fff;
  margin-right: 4px;
  font: normal 0.6rem/1 "iran-sans-web";
  padding: 4px 6px;
  border-radius: 3px;
}
body.ltr .box > div ul li .desc .comments-label {
  margin-left: 4px;
  margin-right: 0;
}
.box > div ul li .desc .related-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 5px 20px 0;
}
.box > div ul li .desc .related-box:before {
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  top: 0;
  right: 10px;
  background: #ced4da;
  position: absolute;
}
body.ltr .box > div ul li .desc .related-box:before {
  right: auto;
  left: 10px;
}
.box > div ul li .desc .related-box > ul > li {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  clear: both;
  position: relative;
  line-height: 1.5;
  list-style-position: outside;
  padding-right: 20px;
  color: transparent;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.box > div ul li .desc .related-box > ul > li::after {
  display: block;
  clear: both;
  content: "";
}
.box > div ul li .desc .related-box > ul > li .desc:after {
  display: table;
  content: "";
  width: 100%;
  clear: both;
  height: 1px;
}
.box > div ul li .desc .related-box > ul > li .desc p {
  margin-bottom: 5px;
  color: #343a40;
}
.box > div ul li .desc .related-box > ul > li:before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background: #1c517c;
  position: absolute;
  top: 4px;
  right: 0;
  border-radius: 50%;
}
body.ltr .box > div ul li .desc .related-box > ul > li:before {
  right: auto;
  left: 0;
}
body.ltr .box > div ul li .desc .related-box > ul > li {
  padding-left: 20px;
  padding-right: 0;
}
.box > div ul li .desc .related-box > ul > li:hover:before {
  background: #860f10;
}
.box > div ul li .desc .related-box > ul > li:hover .desc h3 a {
  color: #860f10;
}
@media (max-width: 991.98px) {
  .box > div ul li .desc .related-box > ul > li {
    padding-bottom: 2px;
    margin-bottom: 2px;
  }
}
.box > div ul li .desc .related-box > ul > li h3 {
  display: inline;
  font: 500 0.75rem/1.5 "iran-sans-web";
}
.box > div ul li .desc .related-box > ul > li h3:before {
  display: none;
}
body.ltr .box > div ul li .desc .related-box > ul > li h3 {
  font-family: "Arial";
}
.box > div ul li .desc .related-box > ul > li h3 a {
  color: #333;
}
body.dark .box > div ul li .desc .related-box > ul > li h3 a {
  color: #f8f9fa;
}
@media (max-width: 1299.98px) {
  .box > div ul li .desc .related-box {
    display: none !important;
  }
}
.box > div ul li.hot .desc h3:after {
  display: inline-block;
  content: "";
  font-family: "nastooh-icons";
  color: #860f10;
  padding-right: 6px;
}
body.ltr .box > div ul li.hot .desc h3:after {
  padding-left: 6px;
  padding-right: 0;
}
.box > div ul li.live figure {
  position: relative;
}
.box > div ul li.live figure:before {
  content: "● زنده";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.65);
  color: #860f10;
  z-index: 10;
  padding: 2px 10px;
  font-weight: bold;
  font-size: 12px;
}
.box > div ul li a {
  color: #0c3555;
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.box > div ul li a:hover {
  color: #860f10;
}
body .mainbody .box > div ul li.inline-ad figure {
  float: none;
  width: 100%;
  margin-left: 0;
}
body .mainbody .box > div ul li.inline-ad figure a {
  height: auto;
  padding: 0;
}
body .mainbody .box > div ul li.inline-ad figure a > img {
  position: static;
  min-height: 0;
  -webkit-transform: none;
          transform: none;
}
.box > div > .pagination {
  text-align: center;
  padding-top: 10px;
  display: block;
}
.box > div > .pagination > ul {
  margin: 0;
  padding: 0;
}
.box > div > .pagination > ul li {
  display: inline-block;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 0.75rem !important;
  height: 0.75rem !important;
  background: #c4c4c4;
  margin-right: 10px;
  float: none !important;
  border: 0 none !important;
  margin-top: 0 !important;
  padding: 0 !important;
}
.box > div > .pagination > ul li[class*=active], .box > div > .pagination > ul li:hover {
  background: #466985;
}
.box > div > .pagination > ul li button {
  width: 100%;
  height: 100%;
  opacity: 0;
  border: 0 none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: transparent;
}
.box.img-v > div ul li figure a {
  width: 100%;
  height: 0;
  padding-bottom: 125%;
}
.box.img-rounded > div ul li figure a {
  border-radius: 4px;
}
.box.img-rounded .placeholder {
  border-radius: 4px;
}
.box.desc-bg > div > ul li .desc {
  background: #f1f1f1;
  height: 100%;
  padding: 10px;
  max-height: 350px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.desc-bg > div > ul li .desc {
    height: auto;
  }
}
.box.desc-bg.desc-bg-dark > div > ul li:not(.live):not(.article) .desc {
  background: #333;
  color: #adb5bd;
}
body.dark .box.desc-bg.desc-bg-dark > div > ul li:not(.live):not(.article) .desc {
  background: #222;
}
.box.desc-bg.desc-bg-dark > div > ul li:not(.live):not(.article) .desc a {
  color: #fff;
}
.box.desc-bg.desc-bg-dark > div > ul li:not(.live):not(.article) .desc p {
  color: #adb5bd;
}
@media (min-width: 1300px) {
  .box.desc-fix div > ul li .desc {
    min-height: 172px !important;
    max-height: 172px !important;
    overflow: hidden;
  }
}
@media (min-width: 1025px) and (max-width: 1299px) {
  .box.desc-fix div > ul li .desc {
    min-height: 221px !important;
    max-height: 221px !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .box.desc-fix div > ul li .desc {
    min-height: 207px !important;
    max-height: 207px !important;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.desc-fix div > ul li .desc {
    min-height: 253px !important;
    max-height: 253px !important;
    overflow: hidden;
  }
}
@media (max-width: 425px) {
  .box.desc-fix div > ul li .desc {
    min-height: 5.333rem !important;
    max-height: 5.333rem !important;
    overflow: unset;
  }
}
@media (min-width: 1300px) {
  .box.desc-fixed div > ul li .desc {
    min-height: 215px !important;
    max-height: 215px !important;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.desc-fixed div > ul li .desc {
    min-height: 327px !important;
    max-height: 327px !important;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.desc-fixed div > ul li .desc {
    min-height: 185px !important;
    max-height: 185px !important;
    overflow: hidden;
  }
}
.box.gray-bgr {
  background: #f1f1f1;
}
.box.desc-overlay ul li {
  position: relative;
}
.box.desc-overlay ul li .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  z-index: 13;
}
.box.desc-overlay ul li .desc a:hover {
  color: #062741;
}
.box.desc-overlay ul li .desc p {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-bottom: 0;
}
@media (min-width: 1300px) {
  .box.desc-overlay ul li .desc {
    text-shadow: 0 0 3px #333;
  }
  .box.desc-overlay ul li .desc a {
    color: #fff;
  }
  .box.desc-overlay ul li .desc a:hover {
    color: #ced4da !important;
  }
  .box.desc-overlay ul li .desc p {
    color: #fff;
  }
}
.box.desc-overlay ul li .desc h6 {
  color: #eee;
}
.box.desc-overlay ul li .desc .author {
  color: #ddd;
}
.box.desc-overlay ul li .desc .category {
  color: #ccd3e4;
}
.box.desc-overlay ul li .desc time, .box.desc-overlay ul li .desc time a {
  color: #ccc;
}
@media (max-width: 767.98px) {
  .box.desc-overlay ul li .desc {
    position: static;
    padding: 10px 0;
    background: transparent;
  }
  .box.desc-overlay ul li .desc p {
    display: none;
  }
}
.box.desc-overlay ul li figure {
  background: #000;
  position: relative;
}
.box.desc-overlay ul li figure a {
  position: relative;
}
.box.desc-overlay ul li figure a:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 11;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
  max-height: 100px;
}
@media (max-width: 1299.98px) {
  .box.desc-overlay ul li figure a:after {
    background: unset !important;
  }
}
.box.desc-overlay ul li figure a img {
  z-index: 9;
}
.box.desc-overlay ul li h3 a:hover {
  color: #860f10;
}
.box.desc-overlay.top1 ul li .desc h3 {
  font-size: 1.2rem;
}
.box.desc-on-hover ul li {
  position: relative;
  overflow: hidden;
}
.box.desc-on-hover ul li .desc {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.box.desc-on-hover ul li:hover .desc {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.box.no-header > header, .box.no-title > header {
  display: none;
}
.box.header-clean > header {
  background: transparent;
  border: 0 none;
}
.box.header-clean > header h2 {
  background: transparent;
  padding: 0;
}
.box.header-clean > header h2:before, .box.header-clean > header h2:after {
  display: none;
}
.box.header-clean > header, .box.header-clean > header h2, .box.header-clean > header h2 a {
  color: #212529;
  border: 0 none;
}
.box.header-clean > header:after {
  display: none;
}
.box.header-clean > header .social-links {
  background: transparent;
}
.box.header-sm > header {
  float: right;
  background: #0c3555;
}
body.ltr .box.header-sm > header {
  float: left;
}
.box.header-sm > header h2 {
  color: #fff;
  background: transparent;
  padding: 0;
}
.box.header-sm > header h2:before {
  display: none;
}
body.ltr .box.header-sm > header h2 {
  padding: 0;
}
.box.header-sm > header h2 > a, .box.header-sm > header h2 > span {
  color: #fff;
  padding: 0 20px;
}
.box.header-sm > header + div {
  clear: right;
}
body.ltr .box.header-sm > header + div {
  clear: left;
}
.box.header-lg > header h2 {
  font-size: 1.5rem;
}
.box.header-accent > header h2 {
  margin-right: 0;
  background: transparent;
  padding-right: 0;
}
body.ltr .box.header-accent > header h2 {
  margin-left: 0;
  padding-left: 0;
}
.box.header-accent > header h2:before {
  display: none;
}
.box.header-accent > header h2 a {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.box.header-accent > header h2 a:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #860f10;
}
div .box.header-bg-primary > header h2 {
  background: #0c3555;
  padding-right: 20px;
}
body.ltr div .box.header-bg-primary > header h2 {
  padding-left: 20px;
}
body.dark div .box.header-bg-primary > header h2 {
  border-left: 10px solid #333;
}
.box.header-inline {
  position: relative;
}
.box.header-inline > header {
  width: 140px;
  float: right;
}
body.ltr .box.header-inline > header {
  float: left;
}
.box.header-inline > header h2:before {
  display: none;
}
.box.header-inline > header + div {
  margin-right: 140px;
  padding-right: 20px;
}
body.ltr .box.header-inline > header + div {
  margin-right: 0;
  padding-right: 0;
  margin-left: 140px;
  padding-left: 20px;
}
@media (max-width: 767.98px) {
  .box.header-inline > header {
    display: none;
  }
  .box.header-inline > header + div {
    margin-right: 0;
    padding-right: 0;
  }
  body.ltr .box.header-inline > header + div {
    padding-left: 0;
    margin-left: 0;
  }
}
.box.header-lg > header {
  height: 52px;
  line-height: 52px;
}
.box.header-lg > header .social-links {
  margin: 0;
  list-style: none;
  padding: 0;
  margin-top: -52px;
}
.box.header-lg > header .social-links li {
  font-size: 2rem;
  float: left;
}
body.ltr .box.header-lg > header .social-links {
  float: right;
}
.box.header-blink > header {
  padding-right: 20px;
}
.box.header-blink > header:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #860f10;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-radius: 50%;
  -webkit-animation: blink 1s;
          animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.box.header-flat > header {
  height: 32px;
  line-height: 32px;
}
.box.header-flat > header h2 {
  margin-right: 0;
  float: none;
  border-radius: 0;
  display: block;
  line-height: 32px;
  font-size: 1.3rem;
}
.box.header-flat > header h2:before {
  display: none;
}
body.ltr .box.header-flat > header h2 {
  margin-left: 0;
  border-radius: 0;
}
.box.header-invert > header h2 {
  background: #0c3555;
}
.box.header-invert > header h2, .box.header-invert > header h2 a {
  color: #fff;
}
.box.header-icon > header h2 {
  padding-right: 32px;
}
body.ltr .box.header-icon > header h2 {
  padding-left: 32px;
  padding-right: 0;
}
.box.header-icon > header h2:before {
  display: none;
}
.box.header-icon > header h2:after {
  display: block;
  content: "";
  height: 18px;
  width: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  margin: 0;
  color: #0c3555;
  font-family: "nastooh-icons";
  font-size: 1rem;
  line-height: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  direction: ltr;
  text-align: center;
  text-indent: 0.1rem;
}
body.ltr .box.header-icon > header h2:after {
  right: auto;
  left: 0;
  direction: rtl;
}
.box.header-icon.header-icon-star > header h2:after {
  content: "";
}
.box.header-icon.header-icon-chat > header h2:after {
  content: "";
}
.box.header-icon.header-icon-speaker > header h2:after {
  content: "";
}
.box.header-icon.header-icon-folder > header h2:after {
  content: "";
}
.box.header-icon.header-icon-heart > header h2:after {
  content: "";
}
.box.header-icon.header-icon-links > header h2:after {
  content: "";
}
.box.header-icon.header-icon-play > header h2:after {
  content: "";
}
.box.header-icon.header-icon-comment > header h2:after {
  content: "";
}
.box.header-icon.header-icon-user > header h2:after {
  content: "";
}
.box.header-icon.header-icon-pencil > header h2:after {
  content: "";
}
.box.header-icon.header-icon-camera > header h2:after {
  content: "";
}
.box.header-icon.header-icon-chart > header h2:after {
  content: "";
}
.box.header-icon.header-icon-tags > header h2:after {
  content: "";
}
.box.has-more-block > footer .more {
  display: block;
  margin-top: 20px;
  height: 70px;
  line-height: 54px;
  font-family: "iran-sans-web";
  font-size: 1.3rem;
}
body.dark .box.has-more-block > footer .more {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
body.dark .box.has-more-block > footer .more:hover {
  color: #fff;
  background-color: #101214;
  border-color: #0a0c0d;
}
body.dark .box.has-more-block > footer .more:focus, body.dark .box.has-more-block > footer .more.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
}
body.dark .box.has-more-block > footer .more.disabled, body.dark .box.has-more-block > footer .more:disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
body.dark .box.has-more-block > footer .more:not(:disabled):not(.disabled):active, body.dark .box.has-more-block > footer .more:not(:disabled):not(.disabled).active, .show > body.dark .box.has-more-block > footer .more.dropdown-toggle {
  color: #fff;
  background-color: #0a0c0d;
  border-color: #050506;
}
body.dark .box.has-more-block > footer .more:not(:disabled):not(.disabled):active:focus, body.dark .box.has-more-block > footer .more:not(:disabled):not(.disabled).active:focus, .show > body.dark .box.has-more-block > footer .more.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
}
body.ltr .box.has-more-block > footer .more {
  font-family: "Arial";
}
html[lang=ku] .box.has-more-block > footer .more, html[lang=ur] .box.has-more-block > footer .more {
  font-family: "Times New Roman", Arial, Times;
}
.box[class*=has-border] {
  position: relative;
}
.box[class*=has-border]:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  clear: both;
  position: absolute;
  background: #dee2e6;
}
.box[class*=has-border].border-pattern:after {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAD0lEQVQImWNgQAKhoaH/AQQNAf/txTd4AAAAAElFTkSuQmCC");
}
.box.has-border-top {
  padding-top: 20px;
}
.box.has-border-top:after {
  top: 0;
}
.box.has-border-bottom {
  padding-bottom: 20px;
}
.box.has-border-bottom:after {
  top: auto;
  bottom: 0;
}
.box.has-carousel.center-items > div > ul li {
  opacity: 0.35;
}
.box.has-carousel.center-items > div > ul li.slick-center {
  opacity: 1;
}
@media (max-width: 1299.98px) {
  .box.has-carousel.desc-overlay > div > ul li .desc {
    position: static;
  }
}
.box.has-article > div > ul li.article .desc h3 {
  font-size: 1.25rem;
}
@media (max-width: 1299.98px) {
  .box.has-article > div > ul li.article .desc h3 {
    font-size: 1.1rem;
  }
}
.box.hidden-time > div ul li time {
  display: none;
}
.box.hidden-summary ul li p {
  display: none;
}
.box.hidden-subtitle ul li h4 {
  display: none;
}
.box.hidden-title ul li h3 {
  display: none;
}
.box.hidden-desc ul li .desc {
  display: none;
}
.box.hidden-img ul li figure {
  display: none;
}
.box.hidden-related ul li .related-box {
  display: none;
}
.box.hidden-first-related ul li:first-child .related-box {
  display: none;
}
.box.hidden-last-related ul li:last-child .related-box {
  display: none;
}
.box.title-only ul li .desc > *:not(h3) {
  display: none;
}
.box.ignore-hot ul li.hot .desc h3:after {
  display: none;
}
.box.tabs-container .nav-tabs {
  padding-right: 0;
}
.box.tabs-container .nav-tabs .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
@media (max-width: 991.98px) {
  .box.tabs-container .nav-tabs .nav-item {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    width: 100%;
  }
}
.box.tabs-container .nav-tabs .nav-item .nav-link {
  font-size: 1rem;
  font-weight: bold;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  background: #e9ecef;
  border-top-right-radius: 4px;
  border-left-top-radius: 4px;
  border-color: #fff;
  dispaly: inline-block;
  font-family: "iran-sans-web";
}
body.ltr .box.tabs-container .nav-tabs .nav-item .nav-link {
  font-family: "Arial";
  font-size: 0.8rem;
}
@media (max-width: 1299.98px) {
  .box.tabs-container .nav-tabs .nav-item .nav-link {
    padding: 0 8px;
  }
}
@media (max-width: 991.98px) {
  .box.tabs-container .nav-tabs .nav-item .nav-link {
    padding: 0;
  }
}
.box.tabs-container .nav-tabs .nav-item .nav-link.active {
  background: #0c3555;
  color: #fff;
}
.box.ghost-header > div {
  padding-top: 36px;
}
@media (max-width: 767.98px) {
  .box.ghost-header > div {
    padding-top: 0;
  }
}
@media (max-width: 991.98px) {
  .col-sm-12 > .box.ghost-header > div {
    padding-top: 0;
  }
}
.box.center-item {
  background: #f5fbff !important;
  padding: 0 !important;
  margin: 10px 20px !important;
  border-radius: 15px 15px 10px 10px !important;
}
.box.center-item header {
  text-align: center;
  border: 2px solid #466985;
  border-radius: 15px 0 15px 0;
  background: cornsilk;
  height: 35px;
  margin-left: -2px;
}
.box.center-item header h2 a {
  padding-top: 2px;
  color: #466985;
}
.box.center-item div ul {
  padding-left: 5%;
  padding-right: 5%;
}
.box.center-item div ul li {
  text-align: center;
}
.box.center-item div ul li figure a {
  padding-bottom: 57.666667%;
  width: 80%;
  margin: 0 auto;
}
.box.center-item div ul li a {
  color: #466985 !important;
  font-size: 14px;
}
@media (min-width: 1300px) {
  .box.center-item {
    min-height: 220px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.center-item {
    min-height: 170px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box.center-item {
    min-height: 150px;
  }
}
.box[class*=" bg-"] {
  padding: 10px;
}
.box[class*=" bg-"] > header {
  margin: 0 -10px 10px -10px;
}
.box.bg-graylight {
  background: #f1f1f1;
}
.box.bg-graylight > header h2 {
  background: #f1f1f1;
}
.box.bg-graylight.bg-continuous:before, .box.bg-graylight.bg-continuous:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 1000px;
  height: 100%;
  background: #f1f1f1;
}
.box.bg-graylight.bg-continuous:after {
  right: auto;
  left: 100%;
}
.box.bg-primary {
  background: #0c3555;
}
.box.bg-primary.bg-continuous:before, .box.bg-primary.bg-continuous:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 1000px;
  height: 100%;
  background: #0c3555;
}
.box.bg-primary.bg-continuous:after {
  right: auto;
  left: 100%;
}
.box.bg-primary > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-primary > header h2, .box.bg-primary > header h2 a {
  color: #fff;
}
.box.bg-primary > div ul li h4 a {
  color: #dee2e6;
}
.box.bg-primary > div ul li a {
  color: #fff;
}
.box.bg-primary > div ul li p {
  color: #adb5bd;
}
.box.bg-dark {
  background: #333;
}
.box.bg-dark.bg-continuous:before, .box.bg-dark.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #333;
  left: 100%;
}
.box.bg-dark.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-dark > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-dark > header h2, .box.bg-dark > header h2 a {
  color: #fff;
}
.box.bg-dark.desc-bg > div > ul li .desc {
  background: #444;
}
.box.bg-dark.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.box.bg-dark.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .box.bg-dark.desc-overlay > div > ul li .desc a {
    color: #fff !important;
  }
}
.box.bg-blue {
  background: #466985;
}
.box.bg-blue.bg-continuous:before, .box.bg-blue.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #466985;
  left: 100%;
}
.box.bg-blue.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-blue > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-blue > header h2, .box.bg-blue > header h2 a {
  color: #fff;
}
.box.bg-blue.desc-bg > div > ul li .desc {
  background: #3E7099;
}
.box.bg-blue.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.box.bg-blue.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .box.bg-blue.desc-overlay > div > ul li .desc a {
    color: #fff !important;
  }
}
.box.bg-green {
  background: #2e826d;
}
.box.bg-green.bg-continuous:before, .box.bg-green.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #2e826d;
  left: 100%;
}
.box.bg-green.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-green > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-green > header h2, .box.bg-green > header h2 a {
  color: #fff;
}
.box.bg-green.desc-bg > div > ul li .desc {
  background: rgba(3, 60, 46, 0.15);
}
.box.bg-green.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.box.bg-green.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .box.bg-green.desc-overlay > div > ul li .desc a {
    color: #fff !important;
  }
}
.box.bg-green-light {
  background: rgba(26, 109, 88, 0.1);
}
.box.bg-green-light.bg-continuous:before, .box.bg-green-light.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(26, 109, 88, 0.1);
  left: 100%;
}
.box.bg-green-light.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-green-light > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%230c3555' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-green-light > header h2, .box.bg-green-light > header h2 a {
  color: #0c3555;
}
.box.bg-green-light.desc-bg > div > ul li .desc {
  background: rgba(3, 60, 46, 0.05);
}
.box.bg-green-light.desc-bg > div > ul li .desc * > a {
  color: #0c3555;
}
.box.bg-green-light.desc-bg > div > ul li .desc p {
  color: #6c757d;
}
@media (max-width: 767.98px) {
  .box.bg-green-light.desc-overlay > div > ul li .desc a {
    color: #0c3555 !important;
  }
}
.box.bg-red {
  background: #cb0000;
}
.box.bg-red.bg-continuous:before, .box.bg-red.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #cb0000;
  left: 100%;
}
.box.bg-red.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-red > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-red > header h2, .box.bg-red > header h2 a {
  color: #fff;
}
.box.bg-red.desc-bg > div > ul li .desc {
  background: #ad1010;
}
.box.bg-red.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.box.bg-red.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .box.bg-red.desc-overlay > div > ul li .desc a {
    color: #fff !important;
  }
}
.box.bg-yellow {
  background: #FFD600;
}
.box.bg-yellow.bg-continuous:before, .box.bg-yellow.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #FFD600;
  left: 100%;
}
.box.bg-yellow.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-yellow > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%230c3555' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-yellow > header h2, .box.bg-yellow > header h2 a {
  color: #0c3555;
}
.box.bg-yellow.desc-bg > div > ul li .desc {
  background: #FBC02D;
}
.box.bg-yellow.desc-bg > div > ul li .desc * > a {
  color: #0c3555;
}
.box.bg-yellow.desc-bg > div > ul li .desc p {
  color: #6c757d;
}
@media (max-width: 767.98px) {
  .box.bg-yellow.desc-overlay > div > ul li .desc a {
    color: #0c3555 !important;
  }
}
.box.bg-orange {
  background: #FF5722;
}
.box.bg-orange.bg-continuous:before, .box.bg-orange.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #FF5722;
  left: 100%;
}
.box.bg-orange.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.bg-orange > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.box.bg-orange > header h2, .box.bg-orange > header h2 a {
  color: #fff;
}
.box.bg-orange.desc-bg > div > ul li .desc {
  background: #d84315;
}
.box.bg-orange.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.box.bg-orange.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
@media (max-width: 767.98px) {
  .box.bg-orange.desc-overlay > div > ul li .desc a {
    color: #fff !important;
  }
}
.box.bg-opaque {
  background: rgba(0, 0, 0, 0.5);
}
.box.bg-opaque.bg-continuous:before, .box.bg-opaque.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  left: 100%;
}
.box.bg-opaque.bg-continuous:after {
  left: auto;
  right: 100%;
}
.box.is-indicator {
  background: rgba(12, 53, 85, 0.7);
  padding: 10px;
  padding-left: 0;
  margin-top: -10px;
}
body.ltr .box.is-indicator {
  padding-left: 10px;
  padding-right: 0;
}
@media (max-width: 1299.98px) {
  .box.is-indicator {
    margin-top: -16px;
  }
}
@media (max-width: 991.98px) {
  .box.is-indicator {
    margin-top: -20px;
  }
}
@media (max-width: 767.98px) {
  .box.is-indicator {
    display: none;
  }
}
.box.is-indicator .desc {
  display: none;
}
.box.is-indicator .slick-arrow {
  display: none;
}
.box.h6-overlay > div ul li figure {
  position: relative;
}
.box.h6-overlay > div ul li figure h6 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0c3555;
  z-index: 100;
  margin: 0;
  text-align: center;
  font: normal 0.75rem/2 "iran-sans-web";
  color: #fff;
}
.box.h6-overlay > div ul li figure h6 a {
  display: block;
  color: #fff;
  outline: 0 none;
}
.box._types ul li.video figure a, .box._types ul li.audio figure a, .box._types ul li.photo figure a, .box._types ul li.article figure a {
  position: relative;
}
.box._types ul li.video figure a:before, .box._types ul li.audio figure a:before, .box._types ul li.photo figure a:before, .box._types ul li.article figure a:before {
  display: block;
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  left: 0;
  background: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font: normal 15px/32px "nastooh-icons";
  color: #0c3555;
  text-align: center;
  z-index: 90;
  opacity: 0.7;
}
body.ltr .box._types ul li.video figure a:before, body.ltr .box._types ul li.audio figure a:before, body.ltr .box._types ul li.photo figure a:before, body.ltr .box._types ul li.article figure a:before {
  left: auto;
  right: 0;
}
.box._types ul li.video:hover figure:before, .box._types ul li.audio:hover figure:before, .box._types ul li.photo:hover figure:before, .box._types ul li.article:hover figure:before {
  background: rgba(0, 181, 175, 0.7);
}
.box._types ul li.video figure a:before {
  content: "";
}
.box._types ul li.audio figure a:before {
  content: "";
}
.box._types ul li.photo figure a:before {
  content: "";
}
.box._types ul li.article figure a:before {
  content: "";
}
.box._types.hidden-img:not(.list-bullets) ul li.video .desc h3 a:after, .box._types.hidden-img:not(.list-bullets) ul li.audio .desc h3 a:after, .box._types.hidden-img:not(.list-bullets) ul li.photo .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.video .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.audio .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.photo .desc h3 a:after {
  display: inline-block;
  font-family: "nastooh-icons";
  padding-right: 6px;
  font-size: 85%;
}
body.ltr .box._types.hidden-img:not(.list-bullets) ul li.video .desc h3 a:after, body.ltr .box._types.hidden-img:not(.list-bullets) ul li.audio .desc h3 a:after, body.ltr .box._types.hidden-img:not(.list-bullets) ul li.photo .desc h3 a:after, body.ltr .box._types.title-only:not(.list-bullets) ul li.video .desc h3 a:after, body.ltr .box._types.title-only:not(.list-bullets) ul li.audio .desc h3 a:after, body.ltr .box._types.title-only:not(.list-bullets) ul li.photo .desc h3 a:after {
  padding-left: 6px;
  padding-right: 0;
}
.box._types.hidden-img:not(.list-bullets) ul li.video .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.video .desc h3 a:after {
  content: "";
}
.box._types.hidden-img:not(.list-bullets) ul li.audio .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.audio .desc h3 a:after {
  content: "";
}
.box._types.hidden-img:not(.list-bullets) ul li.photo .desc h3 a:after, .box._types.title-only:not(.list-bullets) ul li.photo .desc h3 a:after {
  content: "";
}
.box._play ul li.video figure a {
  position: relative;
}
.box._play ul li.video figure a:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  content: "";
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  font: normal 4rem/1 "nastooh-icons";
  color: #fff;
  z-index: 10;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0.75;
  text-align: center;
  background: transparent;
}
@media (max-width: 767.98px) {
  .box._play ul li.video figure a:before {
    font-size: 2.5rem;
  }
}
.box._play ul li.video figure a:hover:before {
  opacity: 1;
}
.box._play ul li.video:not(.video) figure a:before {
  display: none;
}
@media (max-width: 991.98px) {
  .box._play.top ul li figure a:before {
    font-size: 4rem;
  }
}
.box._play-forced ul li figure a:before {
  display: block !important;
}
.box.lazy-player ul li.playing figure:after {
  display: none;
}
.box.lazy-player ul li.playing figure a:before {
  display: none;
}
.box.lazy-player ul li.playing figure a:after {
  display: none;
}
.box.lazy-player ul li.playing .desc {
  height: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
  overflow: visible;
  top: 10px;
  right: 20px;
}
.box.lazy-player ul li.playing .desc h4, .box.lazy-player ul li.playing .desc p {
  display: none;
}
.box.lazy-player ul li.playing .desc h3 {
  font: bold 1rem/1.75 "iran-sans-web";
}
.box.lazy-player ul li.playing .desc h3 a {
  display: block;
}
.box.lazy-player ul li.playing .desc h3 a:before {
  content: "";
  font-family: "nastooh-icons";
  margin-left: 5px;
}
.box:not(.cards):not(.list) > div > ul li.live .desc {
  background: #466985;
  color: #adb5bd;
}
.box:not(.cards):not(.list) > div > ul li.live .desc a {
  color: #fff;
}
.box:not(.cards):not(.list) > div > ul li.live .desc p {
  color: #adb5bd;
}
.box:not(.cards):not(.list) > div > ul li.article .desc {
  background: #466985;
  color: #adb5bd;
}
@media (min-width: 1300px) {
  .box:not(.cards):not(.list) > div > ul li.article .desc {
    max-height: none;
  }
}
@media (max-width: 767.98px) {
  .box:not(.cards):not(.list) > div > ul li.article .desc {
    height: 100%;
  }
}
.box:not(.cards):not(.list) > div > ul li.article .desc h3:before {
  content: "";
  font-family: "nastooh-icons";
  font-size: 48px;
  line-height: 48px;
}
@media (max-width: 1299.98px) {
  .box:not(.cards):not(.list) > div > ul li.article .desc h3:before {
    font-size: 32px;
    line-height: 32px;
  }
}
.box:not(.cards):not(.list) > div > ul li.article .desc a {
  color: #fff;
}
.box:not(.cards):not(.list) > div > ul li.article .desc p {
  color: #adb5bd;
}
@media (max-width: 1299.98px) {
  .box:not(.cards):not(.list) > div > ul li.article .desc p {
    display: none;
  }
}
.box.fixed-h {
  min-height: 372px !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .box.fixed-h {
    min-height: 358px !important;
    max-height: 358px !important;
    overflow: scroll;
  }
}
@media (max-width: 767px) {
  .box.fixed-h {
    min-height: unset !important;
    max-height: unset !important;
    overflow: hidden;
  }
}
.box.fixed-h2 {
  min-height: 425px !important;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.fixed-h2 div > ul li .desc h3 a {
    font-size: 12px !important;
  }
}
.box.has-scroll > div ul {
  max-height: 335px !important;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-color: #54575d transparent;
  scrollbar-width: thin;
}
@media (max-width: 425px) {
  .box.has-scroll > div ul {
    min-height: unset !important;
    max-height: unset !important;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.top-desc div > ul li .desc {
    min-height: 162px !important;
    max-height: 162px;
    background-color: #f1f1f1;
  }
}

.grouped-boxes {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  clear: both;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.grouped-boxes > * {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grouped-boxes[class*=bg-] {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.grouped-boxes.bg-graylight {
  background: #eee;
}
.grouped-boxes.bg-graylight.bg-continuous:before, .grouped-boxes.bg-graylight.bg-continuous:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #eee;
  left: 100%;
}
.grouped-boxes.bg-graylight.bg-continuous:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-dark {
  background: #333;
}
.grouped-boxes.bg-dark:before, .grouped-boxes.bg-dark:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #333;
  left: 100%;
}
.grouped-boxes.bg-dark:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-dark .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-dark .box > header h2, .grouped-boxes.bg-dark .box > header h2 a {
  color: #fff;
}
.grouped-boxes.bg-dark .box.desc-bg > div > ul li .desc {
  background: #444;
}
.grouped-boxes.bg-dark .box.desc-bg > div > ul li .desc .category {
  color: #ced4da;
}
.grouped-boxes.bg-dark .box.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.grouped-boxes.bg-dark .box.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
.grouped-boxes.bg-blue {
  background: #466985;
}
.grouped-boxes.bg-blue:before, .grouped-boxes.bg-blue:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #466985;
  left: 100%;
}
.grouped-boxes.bg-blue:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-blue .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-blue .box > header h2, .grouped-boxes.bg-blue .box > header h2 a {
  color: #fff;
}
.grouped-boxes.bg-blue .box.desc-bg > div > ul li .desc {
  background: #3E7099;
}
.grouped-boxes.bg-blue .box.desc-bg > div > ul li .desc .category {
  color: #880a0a;
}
.grouped-boxes.bg-blue .box.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.grouped-boxes.bg-blue .box.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
.grouped-boxes.bg-green {
  background: #2e826d;
}
.grouped-boxes.bg-green:before, .grouped-boxes.bg-green:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #2e826d;
  left: 100%;
}
.grouped-boxes.bg-green:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-green .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-green .box > header h2, .grouped-boxes.bg-green .box > header h2 a {
  color: #fff;
}
.grouped-boxes.bg-green .box.desc-bg > div > ul li .desc {
  background: rgba(3, 60, 46, 0.15);
}
.grouped-boxes.bg-green .box.desc-bg > div > ul li .desc .category {
  color: #adb5bd;
}
.grouped-boxes.bg-green .box.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.grouped-boxes.bg-green .box.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
.grouped-boxes.bg-green-light {
  background: rgba(26, 109, 88, 0.1);
}
.grouped-boxes.bg-green-light:before, .grouped-boxes.bg-green-light:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(26, 109, 88, 0.1);
  left: 100%;
}
.grouped-boxes.bg-green-light:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-green-light .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%230c3555' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-green-light .box > header h2, .grouped-boxes.bg-green-light .box > header h2 a {
  color: #0c3555;
}
.grouped-boxes.bg-green-light .box.desc-bg > div > ul li .desc {
  background: rgba(3, 60, 46, 0.05);
}
.grouped-boxes.bg-green-light .box.desc-bg > div > ul li .desc .category {
  color: #880a0a;
}
.grouped-boxes.bg-green-light .box.desc-bg > div > ul li .desc * > a {
  color: #0c3555;
}
.grouped-boxes.bg-green-light .box.desc-bg > div > ul li .desc p {
  color: #6c757d;
}
.grouped-boxes.bg-red {
  background: #cb0000;
}
.grouped-boxes.bg-red:before, .grouped-boxes.bg-red:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #cb0000;
  left: 100%;
}
.grouped-boxes.bg-red:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-red .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-red .box > header h2, .grouped-boxes.bg-red .box > header h2 a {
  color: #fff;
}
.grouped-boxes.bg-red .box.desc-bg > div > ul li .desc {
  background: #ad1010;
}
.grouped-boxes.bg-red .box.desc-bg > div > ul li .desc .category {
  color: #ced4da;
}
.grouped-boxes.bg-red .box.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.grouped-boxes.bg-red .box.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
.grouped-boxes.bg-yellow {
  background: #FFD600;
}
.grouped-boxes.bg-yellow:before, .grouped-boxes.bg-yellow:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #FFD600;
  left: 100%;
}
.grouped-boxes.bg-yellow:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-yellow .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%230c3555' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-yellow .box > header h2, .grouped-boxes.bg-yellow .box > header h2 a {
  color: #0c3555;
}
.grouped-boxes.bg-yellow .box.desc-bg > div > ul li .desc {
  background: #FBC02D;
}
.grouped-boxes.bg-yellow .box.desc-bg > div > ul li .desc .category {
  color: #880a0a;
}
.grouped-boxes.bg-yellow .box.desc-bg > div > ul li .desc * > a {
  color: #0c3555;
}
.grouped-boxes.bg-yellow .box.desc-bg > div > ul li .desc p {
  color: #6c757d;
}
.grouped-boxes.bg-orange {
  background: #FF5722;
}
.grouped-boxes.bg-orange:before, .grouped-boxes.bg-orange:after {
  display: block;
  content: "";
  width: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #FF5722;
  left: 100%;
}
.grouped-boxes.bg-orange:after {
  left: auto;
  right: 100%;
}
.grouped-boxes.bg-orange .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
.grouped-boxes.bg-orange .box > header h2, .grouped-boxes.bg-orange .box > header h2 a {
  color: #fff;
}
.grouped-boxes.bg-orange .box.desc-bg > div > ul li .desc {
  background: #d84315;
}
.grouped-boxes.bg-orange .box.desc-bg > div > ul li .desc .category {
  color: #880a0a;
}
.grouped-boxes.bg-orange .box.desc-bg > div > ul li .desc * > a {
  color: #fff;
}
.grouped-boxes.bg-orange .box.desc-bg > div > ul li .desc p {
  color: #ced4da;
}
.grouped-boxes[class*=has-border] {
  position: relative;
}
.grouped-boxes[class*=has-border]:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  clear: both;
  position: absolute;
  background: #dee2e6;
}
.grouped-boxes.has-border-top {
  padding-top: 20px;
}
.grouped-boxes.has-border-top:after {
  top: 0;
}
.grouped-boxes.has-border-bottom {
  padding-bottom: 20px;
}
.grouped-boxes.has-border-bottom:after {
  top: auto;
  bottom: 0;
}

.box-img h3 img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.stc-box {
  margin-top: 20px !important;
}

.box.list > div ul li {
  clear: both;
}
.box.list > div ul li::after {
  display: block;
  clear: both;
  content: "";
}
.box.list > div ul li .desc:after {
  display: table;
  content: "";
  width: 100%;
  clear: both;
  height: 1px;
}
.box.list > div ul li .desc p {
  margin-bottom: 5px;
  color: #343a40;
}
.box.list.list-bordered > div ul li {
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.box.list.list-bordered > div ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  clear: both;
  position: absolute;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAEElEQVQYV2NkQAK7d+/+DwAHtAMyHS0C6AAAAABJRU5ErkJggg==");
}
body.dark .box.list.list-bordered > div ul li:after {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAD0lEQVQYV2NkQAKFhYX/AQUaAlTx34dkAAAAAElFTkSuQmCC");
}
.box.list.list-bordered > div ul li:last-child:after {
  display: none;
}
.box.list.list-bullets > div ul {
  list-style: disc inside;
}
.box.list.list-bullets > div ul li {
  position: relative;
  line-height: 1.5;
  list-style-position: outside;
  padding-right: 20px;
  color: transparent;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.box.list.list-bullets > div ul li:before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background: #1c517c;
  position: absolute;
  top: 4px;
  right: 0;
  border-radius: 50%;
}
body.ltr .box.list.list-bullets > div ul li:before {
  right: auto;
  left: 0;
}
body.ltr .box.list.list-bullets > div ul li {
  padding-left: 20px;
  padding-right: 0;
}
.box.list.list-bullets > div ul li:hover:before {
  background: #860f10;
}
.box.list.list-bullets > div ul li:hover .desc h3 a {
  color: #860f10;
}
@media (max-width: 991.98px) {
  .box.list.list-bullets > div ul li {
    padding-bottom: 2px;
    margin-bottom: 2px;
  }
}
.box.list.list-bullets > div ul li .desc {
  display: inline;
}
.box.list.list-bullets > div ul li .desc h3 {
  display: inline;
  font: 500 0.75rem/1.5 "iran-sans-web";
}
body.ltr .box.list.list-bullets > div ul li .desc h3 {
  font-family: "Arial";
}
.box.list.list-bullets > div ul li .desc h3 a {
  color: #333;
}
body.dark .box.list.list-bullets > div ul li .desc h3 a {
  color: #f8f9fa;
}
.box.list.list-bullets.list-bullets.accented-bullets > div ul {
  list-style-type: square;
}
.box.list.list-bullets.list-bullets.accented-bullets > div ul li {
  color: #860f10;
}
.box.list.list-bullets._types > div ul {
  list-style: none;
}
.box.list.list-bullets._types > div ul li {
  margin-right: 0;
  padding-right: 20px;
}
body.ltr .box.list.list-bullets._types > div ul li {
  margin-left: 0;
  padding-left: 20px;
  padding-right: 0;
}
.box.list.list-bullets._types > div ul li:before {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 90;
  opacity: 0.7;
  width: 6px;
  height: 6px;
  background: #0c3555;
  right: 6px;
  top: 6px;
}
body.ltr .box.list.list-bullets._types > div ul li:before {
  right: auto;
  left: 0;
}
.box.list.list-bullets._types > div ul li.video:before, .box.list.list-bullets._types > div ul li.audio:before, .box.list.list-bullets._types > div ul li.photo:before {
  top: 1px;
  right: 0;
  width: 1rem;
  height: 1rem;
  font: normal 13px/1rem "nastooh-icons";
  color: #0c3555;
  text-align: center;
  background: transparent;
}
body.dark .box.list.list-bullets._types > div ul li.video:before, body.dark .box.list.list-bullets._types > div ul li.audio:before, body.dark .box.list.list-bullets._types > div ul li.photo:before {
  background: transparent;
  color: #e9ecef;
}
.box.list.list-bullets._types > div ul li.video:before {
  content: "";
}
.box.list.list-bullets._types > div ul li.audio:before {
  content: "";
}
.box.list.list-bullets._types > div ul li.photo:before {
  content: "";
}
.box.list.list-bullets._types > div ul li:hover:before {
  opacity: 1;
}
.box.list.list-bullets.list-cols > div ul {
  margin-left: -10px;
  margin-right: -10px;
}
.box.list.list-bullets.list-cols > div ul li {
  width: 50%;
  margin-right: 50%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  clear: none;
}
body.ltr .box.list.list-bullets.list-cols > div ul li {
  margin-right: 0;
  margin-left: 50%;
}
.box.list.list-bullets.list-cols > div ul li .desc:after {
  display: none;
}
.box.list.list-bullets.list-cols > div ul li:after {
  display: none;
}
.box.list.list-bullets.list-cols > div ul li:first-child {
  margin-right: 0;
  float: right;
  padding-right: 0;
}
body.ltr .box.list.list-bullets.list-cols > div ul li:first-child {
  float: left;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .box.list.list-bullets.list-cols > div ul li {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .box.list.list-bullets.list-cols > div ul li:first-child {
    float: none;
  }
}

.box.list.list-spaced > div ul li {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
@media (max-width: 1299.98px) {
  .box.list.list-spaced > div ul li {
    padding-bottom: 0;
  }
  .box.list.list-spaced > div ul li time a {
    padding: 0;
  }
}
.box.list.list-numbers > div ul {
  counter-reset: list;
  list-style-type: persian;
  list-style: none;
}
.box.list.list-numbers > div ul li {
  counter-increment: list;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 70px;
  margin: 0;
  padding: 0;
}
.box.list.list-numbers > div ul li:before {
  content: counter(list, persian);
  text-indent: -5px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-align: center;
  font-family: "iran-sans-web";
  font-size: 2.5rem;
  /* font-weight: bold;*/
  display: inline-block;
  float: right;
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: #666;
  min-width: 70px;
  background: #F1F1F1;
  border-radius: 50%;
}
body.ltr .box.list.list-numbers > div ul li:before {
  content: counter(list, decimal);
  font-family: "Arial";
}
html[lang=ar] .box.list.list-numbers > div ul li:before, html[lang=ku] .box.list.list-numbers > div ul li:before, html[lang=ur] .box.list.list-numbers > div ul li:before {
  font-family: "Times New Roman", Arial, Times;
  content: counter(list, arabic-indic);
}
@media (max-width: 1299.98px) {
  .box.list.list-numbers > div ul li:before {
    width: 50px;
    height: 50px;
    min-width: 50px;
    line-height: 50px;
    font-size: 1.75rem;
  }
}
.box.list.list-numbers > div ul li .desc {
  padding-right: 20px;
}
body.ltr .box.list.list-numbers > div ul li .desc {
  padding-right: 0;
  padding-left: 20px;
}
@media (max-width: 1299.98px) {
  .box.list.list-numbers > div ul li .desc {
    padding-right: 10px;
  }
  body.ltr .box.list.list-numbers > div ul li .desc {
    padding-right: 0;
    padding-left: 10px;
  }
}
.box.list.list-numbers > div ul li .desc h3 {
  padding: 4px 0;
  font-size: 0.95rem;
}
.box.list.list-numbers > div ul li:hover:before {
  background: #860f10;
  color: #fff;
}
.box.list.list-numbers.cols > div ul li {
  margin-bottom: 10px;
}
@media (max-width: 1299.98px) {
  .box.list.list-numbers.cols > div ul li {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .box.list.list-numbers.cols > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.box.list.list-thumbs > div ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767.98px) {
  .box.list.list-thumbs > div ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .box.list.list-thumbs > div ul li figure {
    margin-left: 8px;
  }
  body.ltr .box.list.list-thumbs > div ul li figure {
    margin-left: 0;
    margin-right: 8px;
  }
}
.box.list.list-thumbs > div ul li .desc p {
  color: #6c757d;
}
.box.list.list-thumbs.thumbs-xs > div ul li figure {
  min-width: 6rem;
}
.box.list.list-thumbs.thumbs-sm > div ul li figure {
  min-width: 8rem;
}
.box.list.list-thumbs.thumbs-sm > div ul li .desc h3 {
  font: bold 1rem/1.4 "iran-sans-web";
}
body.ltr .box.list.list-thumbs.thumbs-sm > div ul li .desc h3 {
  font-family: "Arial";
  font-size: 0.85rem;
}
html[lang=ku] .box.list.list-thumbs.thumbs-sm > div ul li .desc h3, html[lang=ur] .box.list.list-thumbs.thumbs-sm > div ul li .desc h3 {
  font-family: "Times New Roman", Arial, Times;
}
@media (max-width: 991.98px) {
  .box.list.list-thumbs.thumbs-md > div ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box.list.list-thumbs.thumbs-md > div ul li figure {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .box.list.list-thumbs.thumbs-md > div ul li .desc {
    padding-right: 0;
    padding-top: 5px;
  }
  .box.list.list-thumbs.thumbs-md > div ul li .desc time {
    display: none;
  }
  .box.list.list-thumbs.thumbs-md.first-featured > div ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.box.list.list-thumbs.thumbs-lg > div ul li figure {
  width: 11rem;
}
.box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
  padding-right: 11.5rem;
  min-height: 7.333rem;
  max-height: 7.333rem;
}
body.ltr .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
  padding-right: 10px;
  padding-left: 11.5rem;
}
@media (max-width: 1299.98px) {
  .box.list.list-thumbs.thumbs-lg > div ul li figure {
    width: 9rem;
  }
  .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
    padding-right: 9.5rem;
    min-height: 6rem;
    max-height: 6rem;
  }
  body.ltr .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
    padding-left: 9.5rem;
  }
  .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc p {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .box.list.list-thumbs.thumbs-lg > div ul li figure {
    width: 8rem;
  }
  .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
    padding-right: 8.5rem;
    min-height: 5.333rem;
    max-height: 5.333rem;
  }
  body.ltr .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc {
    padding-left: 8.5rem;
  }
  .box.list.list-thumbs.thumbs-lg > div ul li figure + .desc p {
    display: none;
  }
}
.box.list.list-thumbs.thumbs-lg > div ul li .desc h3 {
  font-size: 1rem;
}
.box.list.list-thumbs.thumbs-lg > div ul li .desc h3 a {
  display: block;
  padding-bottom: 5px;
}
@media (max-width: 991.98px) {
  .box.list.list-thumbs.thumbs-lg > div ul li .desc h3 {
    font-size: 0.85rem;
  }
}
.box.list.list-thumbs.thumbs-rounded > div ul li figure a {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.box.list.list-thumbs.first-featured > div ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.box.list.list-thumbs.first-featured > div ul li figure {
  min-width: 9rem;
  float: none;
}
.box.list.list-thumbs.first-featured > div ul li .desc {
  margin-right: 0;
}
.box.list.list-thumbs.first-featured > div ul li:first-child {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.box.list.list-thumbs.first-featured > div ul li:first-child figure {
  width: 100%;
  float: none;
}
.box.list.list-thumbs.first-featured > div ul li:first-child .desc {
  margin-right: 0;
}
.box.list.first-featured > div ul li:first-child {
  list-style: none;
  margin-right: 0;
  padding-right: 0;
}
body.ltr .box.list.first-featured > div ul li:first-child {
  margin-left: 0;
}
.box.list.first-featured > div ul li:first-child:before {
  display: none;
}
.box.list.first-featured > div ul li:first-child figure {
  display: block;
  padding-bottom: 10px;
}
.box.list.first-featured > div ul li:first-child figure + .desc {
  display: block;
}
.box.list.first-featured > div ul li:first-child .desc h3 {
  font: bold 1rem/1.4 "iran-sans-web";
}
body.ltr .box.list.first-featured > div ul li:first-child .desc h3 {
  font-family: "Arial";
  font-size: 1.2rem;
}
html[lang=ku] .box.list.first-featured > div ul li:first-child .desc h3, html[lang=ur] .box.list.first-featured > div ul li:first-child .desc h3 {
  font-family: "Times New Roman", Arial, Times;
}
.box.list.first-featured.bg-graylight > div ul li:first-child {
  background: #343a40;
  margin-bottom: 10px;
}
.box.list.first-featured.bg-graylight > div ul li:first-child .desc {
  padding: 0 10px 10px;
}
.box.list.first-featured.bg-graylight > div ul li:first-child .desc h4 a, .box.list.first-featured.bg-graylight > div ul li:first-child .desc p {
  color: #e9ecef;
}
.box.list.first-featured.bg-graylight > div ul li:first-child .desc h3 a {
  color: #fff;
}
.box.list.first-featured:not(.hidden-subtitle) ul li:first-child h4 {
  display: block;
}
.box.list.first-thumb > div ul li:first-child {
  list-style: none;
  margin-right: 0;
}
.box.list.first-thumb > div ul li:first-child:before {
  display: none;
}
body.ltr .box.list.first-thumb > div ul li:first-child {
  margin-left: 0;
}
.box.list.first-thumb > div ul li:first-child figure {
  display: block;
  width: 9rem;
  float: right;
}
body.ltr .box.list.first-thumb > div ul li:first-child figure {
  float: left;
}
.box.list.first-thumb > div ul li:first-child figure + .desc {
  display: block;
  margin-right: 9rem;
  padding-right: 8px;
}
body.ltr .box.list.first-thumb > div ul li:first-child figure + .desc {
  margin-right: 0;
  margin-left: 9rem;
  padding-right: 0;
  padding-left: 8px;
}
.box.list.first-thumb > div ul li:first-child .desc h3 {
  font-size: 1.06rem;
  font-family: "iran-sans-web";
  font-weight: bold;
}
body.ltr .box.list.first-thumb > div ul li:first-child .desc h3 {
  font-family: "Arial";
}
html[lang=ku] .box.list.first-thumb > div ul li:first-child .desc h3, html[lang=ur] .box.list.first-thumb > div ul li:first-child .desc h3 {
  font-family: "Times New Roman", Arial, Times;
}
.box.list.list-cols > div ul {
  margin-left: -10px;
  margin-right: -10px;
}
.box.list.list-cols > div ul li {
  width: 50%;
  margin-right: 50%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  clear: none;
}
body.ltr .box.list.list-cols > div ul li {
  margin-right: 0;
  margin-left: 50%;
}
.box.list.list-cols > div ul li .desc:after {
  display: none;
}
.box.list.list-cols > div ul li:after {
  display: none;
}
.box.list.list-cols > div ul li:first-child {
  margin-right: 0;
  float: right;
  padding-right: 0;
}
body.ltr .box.list.list-cols > div ul li:first-child {
  float: left;
  margin-left: 0;
}
@media (max-width: 991.98px) {
  .box.list.list-cols > div ul li {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .box.list.list-cols > div ul li:first-child {
    float: none;
  }
}
.box.list.list-cols.list-bullets > div ul li {
  list-style-position: inside;
}
@media (min-width: 1300px) {
  .box.list.list-cols.second-desc > div ul li:nth-child(2) {
    padding-right: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .box.list.list-cols.second-desc > div ul li:nth-child(2):before {
    display: none;
  }
  .box.list.list-cols.second-desc > div ul li:nth-child(2) .desc h3 {
    text-align: center;
    display: block;
    font: bold 1rem/1.75 "iran-sans-web";
    font-size: 1.15rem;
    padding-bottom: 10px;
  }
  .box.list.list-cols.second-desc > div ul li:nth-child(2) .desc p {
    display: block;
    font-size: 0.75rem;
  }
}
@media (min-width: 1300px) {
  .box.list.list-cols.second-desc.list-bullets > div ul li:nth-child(2) {
    list-style: none;
  }
}
@media (min-width: 1300px) {
  .box.list.list-cols.has-desc > div ul li:not(:first-of-type) {
    padding-right: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .box.list.list-cols.has-desc > div ul li:not(:first-of-type):before {
    display: none;
  }
  .box.list.list-cols.has-desc > div ul li:not(:first-of-type) .desc h3 {
    text-align: center;
    display: block;
    font: bold 1rem/1.75 "iran-sans-web";
    font-size: 1.15rem;
    padding-bottom: 10px;
  }
  .box.list.list-cols.has-desc > div ul li:not(:first-of-type) .desc p {
    display: block;
    font-size: 0.75rem;
  }
}
@media (min-width: 1300px) {
  .box.list.list-cols.has-desc.list-bullets > div ul li:not(:first-of-type) {
    list-style: none;
  }
}
.box.list.list-cols.list-bordered > div ul li:after {
  display: block;
}
.box.list.list-cols.list-bordered > div ul li:first-child:after {
  display: none;
}
.box.list.list-spaced > div ul li .desc h3 {
  font-size: 0.9rem;
}
.box.list.list-spaced > div ul li .desc h3 a {
  padding: 0;
}
.box.list.headlines > div ul li .desc h3 {
  font: bold 0.825rem/1.4 "iran-sans-web";
}
body.ltr .box.list.headlines > div ul li .desc h3 {
  font-size: 0.8rem;
}
.box.list.highlights > div > ul li {
  margin-bottom: 20px;
  padding-bottom: 0;
}
.box.list.cols > div ul li {
  margin-right: 0;
  clear: none;
}
@media (max-width: 991.98px) {
  .box.list.cols > div ul li figure {
    width: 5rem;
    display: none;
  }
  .box.list.cols > div ul li figure + .desc {
    padding: 10px;
    min-height: unset;
  }
  body.ltr .box.list.cols > div ul li figure + .desc {
    padding: 10px;
  }
}
@media (max-width: 991.98px) {
  .box.list.cols > div ul li .desc {
    padding: 10px;
  }
}
@media (max-width: 1299.98px) {
  .box.list.cols.title-only.list-bordered > div ul li {
    width: 100%;
    float: none;
  }
}
.box.list.cols.list-bullets > div ul li {
  list-style-position: inside;
}
body.ltr .box.list.cols.list-bullets > div ul li {
  margin-left: 0;
}
.box.list.cols.list-bordered > div ul li {
  height: 3rem;
}
.box.list.cols.list-bordered.cols-2 > div ul li:nth-child(n+3) {
  margin-top: 0;
}
.box.list.cols.list-condensed > div ul li {
  margin-bottom: 5px;
}

.box.cols > div ul {
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.box.cols > div ul::after {
  display: block;
  clear: both;
  content: "";
}
.box.cols > div ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols > div ul li {
    max-width: 50%;
  }
}
.box.cols > div ul li figure {
  right: 0;
}
body.ltr .box.cols > div ul li figure {
  right: auto;
  left: 0;
}
.box.cols > div ul li.article {
  position: relative;
}
.box.cols > div ul li.article figure {
  position: absolute;
  bottom: 0.375rem;
  right: auto;
  left: 0.625rem;
  z-index: 11;
  border-radius: 50%;
  overflow: hidden;
  width: 10rem;
}
.box.cols > div ul li.article figure a {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
body.ltr .box.cols > div ul li.article figure {
  left: auto;
  right: 0.25rem;
}
@media (max-width: 1299.98px) {
  .box.cols > div ul li.article figure {
    width: 8rem;
  }
}
@media (max-width: 991.98px) {
  .box.cols > div ul li.article figure {
    width: 62%;
  }
}
.box.cols:not(.hidden-img) > div ul li > figure + .desc > *:first-child a, .box.cols:not(.title-only) > div ul li > figure + .desc > *:first-child a {
  display: block;
}
body.ltr .box.cols:not(.hidden-img) > div ul li > figure + .desc > *:first-child a, body.ltr .box.cols:not(.title-only) > div ul li > figure + .desc > *:first-child a {
  padding-top: 0;
}
.box.cols.cols-2 > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: 20px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols.cols-2 > div ul li {
    max-width: 50%;
  }
}
.box.cols.cols-3 > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols.cols-3 > div ul li {
    max-width: 33.33333%;
  }
}
.box.cols.cols-3 > div ul li:nth-child(n+4) {
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .box.cols.cols-3 > div ul li {
    max-width: 33%;
  }
}
@media (max-width: 991.98px) {
  .box.cols.cols-3 > div ul li .desc h3 {
    font-size: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .box.cols.cols-3.desc-overlay > div ul li figure a:after {
    display: none;
  }
  .box.cols.cols-3.desc-overlay > div ul li .desc {
    text-shadow: none;
  }
  .box.cols.cols-3.desc-overlay > div ul li .desc a {
    color: #0c3555;
  }
  body.dark .box.cols.cols-3.desc-overlay > div ul li .desc a {
    color: #fff;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li figure {
    width: 8rem;
    position: absolute;
    z-index: 12;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li figure + .desc {
    padding-right: 8.378rem;
    min-height: 5.333rem;
    max-height: 5.333rem;
    width: 100%;
  }
  body.ltr .box.cols.cols-3:not(.has-carousel) > div ul li figure + .desc {
    padding-left: 8.378rem;
    padding-right: 10px;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li p, .box.cols.cols-3:not(.has-carousel) > div ul li time {
    display: none;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li.article figure {
    left: auto;
    right: 0.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 4.75rem;
    width: 4.75rem;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li.article figure + .desc {
    padding-right: 5.5rem;
  }
  .box.cols.cols-3:not(.has-carousel) > div ul li.article figure + .desc h3:before {
    font-size: 24px;
    line-height: 24px;
  }
  body.ltr .box.cols.cols-3:not(.has-carousel) > div ul li.article figure {
    right: auto;
    left: 0.25rem;
  }
  body.ltr .box.cols.cols-3:not(.has-carousel) > div ul li.article figure + .desc {
    padding-right: 10px;
    padding-left: 5.5rem;
  }
}
.box.cols.cols-4 > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols.cols-4 > div ul li {
    max-width: 25%;
  }
}
.box.cols.cols-4 > div ul li:nth-child(n+5) {
  margin-top: 20px;
}
.box.cols.cols-4 > div ul li .desc h3 {
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .box.cols.cols-4 > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.box.cols.cols-4.first-featured > div ul li .desc {
  height: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols.cols-4.first-featured > div ul li .desc {
    height: auto;
  }
}
.box.cols.cols-4.first-featured > div ul li:nth-child(n+5) {
  margin-top: 0;
}
.box.cols.cols-4.first-featured > div ul li:nth-child(n+4) {
  margin-top: 20px;
}
.box.cols.cols-4.first-featured > div ul li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.cols.cols-4.first-featured > div ul li:first-child {
    width: 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .box.cols.cols-4.first-featured > div ul li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
    max-width: none;
  }
}
.box.cols.cols-4.first-featured > div ul li:first-child figure {
  background: #000;
  height: 100%;
}
.box.cols.cols-4.first-featured > div ul li:first-child figure a {
  position: relative;
}
.box.cols.cols-4.first-featured > div ul li:first-child figure a:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 11;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
  max-height: 100px;
}
.box.cols.cols-4.first-featured > div ul li:first-child figure a img {
  z-index: 9;
}
.box.cols.cols-4.first-featured > div ul li:first-child .desc {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  text-shadow: 0 0 3px #333;
  height: auto;
  background: transparent;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  overflow: hidden;
  z-index: 13;
}
.box.cols.cols-4.first-featured > div ul li:first-child .desc a {
  color: #fff;
}
.box.cols.cols-4.first-featured > div ul li:first-child .desc p {
  color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-bottom: 0;
}
.box.cols.cols-4.first-featured > div ul li:first-child .desc h3 {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .box.cols.cols-4.first-featured > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .box.cols.cols-4.first-featured > div ul li:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 991.98px) {
  .box.cols.cols-4.first-featured.desc-overlay ul li .desc {
    padding: 10px;
  }
}
.box.cols.cols-5 > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
@media (max-width: 991.98px) {
  .box.cols.cols-5 > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .box.cols.cols-5.desc-overlay > div ul li figure a:after {
    display: none;
  }
  .box.cols.cols-5.desc-overlay > div ul li .desc {
    text-shadow: none;
  }
  .box.cols.cols-5.desc-overlay > div ul li .desc a {
    color: #0c3555;
  }
  body.dark .box.cols.cols-5.desc-overlay > div ul li .desc a {
    color: #fff;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li figure {
    width: 8rem;
    position: absolute;
    z-index: 12;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li figure + .desc {
    padding-right: 8.378rem;
    min-height: 5.333rem;
    max-height: 5.333rem;
    width: 100%;
  }
  body.ltr .box.cols.cols-5:not(.has-carousel) > div ul li figure + .desc {
    padding-left: 8.378rem;
    padding-right: 10px;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li p, .box.cols.cols-5:not(.has-carousel) > div ul li time {
    display: none;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li.article figure {
    left: auto;
    right: 0.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 4.75rem;
    width: 4.75rem;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li.article figure + .desc {
    padding-right: 5.5rem;
  }
  .box.cols.cols-5:not(.has-carousel) > div ul li.article figure + .desc h3:before {
    font-size: 24px;
    line-height: 24px;
  }
  body.ltr .box.cols.cols-5:not(.has-carousel) > div ul li.article figure {
    right: auto;
    left: 0.25rem;
  }
  body.ltr .box.cols.cols-5:not(.has-carousel) > div ul li.article figure + .desc {
    padding-right: 10px;
    padding-left: 5.5rem;
  }
}
.box.cols.cols-6 > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666666%;
          flex: 0 0 16.666666%;
}
.box.cols.cols-6 > div ul li h3 {
  font-size: 14px;
  font-family: "iran-sans-web";
}
body.ltr .box.cols.cols-6 > div ul li h3 {
  font-family: "Arial";
}
html[lang=ku] .box.cols.cols-6 > div ul li h3, html[lang=ur] .box.cols.cols-6 > div ul li h3 {
  font-family: "Times New Roman", Arial, Times;
}
@media (max-width: 991.98px) {
  .box.cols.cols-6 > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .box.cols.cols-6 > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-bottom: 20px;
  }
}
.box.cols.first-featured > div ul li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.box.cols.first-featured > div ul li:first-child ~ li figure > a {
  /*max-height: 120px;*/
  overflow: hidden;
}
.box.cols.first-featured > div ul li:first-child ~ li figure > a img {
  min-height: 100%;
}
@media (max-width: 767.98px) {
  .box.cols.cols-sm-2 > div ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .box.cols.cols-sm-2 > div ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.box.cols.has-carousel > div ul li {
  clear: none !important;
  width: 100%;
  /*border-left: 0 none; */
  margin-top: 0 !important;
}
body.ltr .box.cols.has-carousel > div ul li {
  border-right: 0;
  border-left: 10px solid transparent;
}
.box.cols.has-carousel > div ul li .desc {
  min-height: 86px;
}
@media (max-width: 1299.98px) {
  .box.cols.has-carousel > div ul li .desc {
    min-height: 114px;
  }
}
@media (min-width: 992px) {
  .box.cols.desc-bg:not(.cards):not(.has-carousel):not([class*=cols-]) > div ul li {
    min-height: 18.5rem;
  }
}
@media (min-width: 1300px) {
  .box.cols.desc-bg:not(.cards):not(.has-carousel):not([class*=cols-]) > div ul li {
    min-height: 22.5rem;
  }
}
@media (min-width: 992px) {
  .box.cols.desc-bg:not(.cards):not(.has-carousel):not([class*=cols-]).hidden-summary > div ul li {
    min-height: 16rem;
  }
}
@media (min-width: 1300px) {
  .box.cols.desc-bg:not(.cards):not(.has-carousel):not([class*=cols-]).hidden-summary > div ul li {
    min-height: 17rem;
  }
}
@media (min-width: 992px) {
  .box.cols.secondary.wrap-row > div ul li {
    min-height: 0;
  }
}
@media (min-width: 1300px) {
  .box.cols.secondary.wrap-row > div ul li {
    min-height: 0;
  }
}
@media (min-width: 576px) {
  .box.cols.secondary.wrap-row {
    height: 100%;
  }
  .box.cols.secondary.wrap-row > div {
    height: 100%;
  }
  .box.cols.secondary.wrap-row > div > ul {
    height: 100%;
  }
  .box.cols.secondary.wrap-row > div > ul li {
    /*height: 100%;*/
    margin-bottom: 20px;
  }
}
.box.cols.ads > div ul li figure {
  width: auto !important;
  position: static !important;
}
.box.cols > footer .pagination {
  margin-top: 20px;
}
.box.cols > footer .pagination li {
  clear: none !important;
  width: auto;
  float: none;
  padding: 0;
}

.box.cards > div > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.box.cards > div > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .box.cards > div > ul li {
    margin-bottom: 1em;
  }
}
.box.cards > div > ul li figure {
  position: absolute;
  width: 10rem;
  z-index: 12;
}
.box.cards > div > ul li figure + .desc {
  padding-right: 10.378rem;
  min-height: 6.666rem;
  max-height: 6.666rem;
}
body.ltr .box.cards > div > ul li figure + .desc {
  padding-right: 10px;
  padding-left: 10.378rem;
}
@media (max-width: 1299.98px) {
  .box.cards > div > ul li figure {
    width: 9rem;
  }
  .box.cards > div > ul li figure + .desc {
    padding-right: 9.578rem;
    min-height: 6rem;
    max-height: 6rem;
  }
  body.ltr .box.cards > div > ul li figure + .desc {
    padding-right: 10px;
    padding-left: 9.578rem;
  }
}
.box.cards > div > ul li .desc {
  border-right: 1px solid rgba(28, 81, 124, 0.5);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
}
body.ltr .box.cards > div > ul li .desc {
  border-right: 0 none;
  border-left: 1px solid rgba(28, 81, 124, 0.5);
}
.box.cards > div > ul li .desc h3 {
  font-size: 0.95rem;
}
@media (max-width: 1299.98px) {
  .box.cards > div > ul li .desc h3 {
    font-size: 0.825rem;
  }
}
.box.cards > div > ul li .desc h3 a {
  color: #333;
  padding: 0;
}
@media (max-width: 991.98px) {
  .box.cards > div > ul li .desc p {
    display: none;
  }
}
.box.cards > div > ul li .desc time a {
  padding-top: 0;
}
.box.cards > div > ul li:hover .desc h3 a {
  color: #860f10;
}
.box.cards.cards-sm > div > ul li figure {
  width: 7.5rem;
}
.box.cards.cards-sm > div > ul li figure + .desc {
  padding-right: 7.878rem;
  min-height: 5rem;
  max-height: 5rem;
}
body.ltr .box.cards.cards-sm > div > ul li figure + .desc {
  padding-left: 7.878rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .box.cards.cards-sm > div > ul li figure {
    width: 100% !important;
    position: static;
  }
  .box.cards.cards-sm > div > ul li figure + .desc {
    padding-right: 0.378rem;
  }
  body.ltr .box.cards.cards-sm > div > ul li figure + .desc {
    padding-left: 0.378rem;
  }
}
.box.cards.cards-sm > div > ul li .desc {
  padding: 0.378rem;
}
.box.cards.cards-sm > div > ul li .desc h3 {
  font-size: 0.8rem;
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.cards.cards-sm.top-cards > div > ul li figure {
    width: 6.5rem;
    margin-top: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.cards.cards-sm.top-cards > div > ul li figure + .desc {
    padding-right: 6.2rem;
    min-height: 6.5rem;
    max-height: 6.5rem;
    border-right: 0px;
  }
  body.ltr .box.cards.cards-sm.top-cards > div > ul li figure + .desc {
    padding-left: 6.2rem;
  }
}
@media (min-width: 992px) and (max-width: 1299px) {
  .box.cards.cards-sm.top-cards > div > ul li .desc h3 a {
    max-width: 120px;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box.cards.cards-sm.top-cards > div > ul li .desc h3 a {
    max-width: 146px;
    overflow: hidden;
  }
}
.box.cards.wrap-row {
  max-height: 100%;
  height: 100%;
}
.box.cards.wrap-row > div {
  max-height: 100%;
  height: 100%;
}
.box.cards.wrap-row > div > ul {
  max-height: 100%;
  height: 100%;
}
.box.cards.wrap-row:not(.no-header) > header + div {
  height: calc(100% - 26px);
}
.box.cards.wrap-row:not(.no-header) > header + div > ul {
  height: calc(100% - 26px);
}
.box.cards.cols > div > ul > li .desc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.box.cards.compact > div > ul > li {
  min-height: 0;
}
.box.cards.compact > div > ul > li .desc {
  padding: 5px;
}
.box.cards.compact > div > ul > li .desc h3 {
  font-size: 0.825rem;
}
.box.cards.compact.cols > div > ul > li:nth-child(n+4) {
  margin-top: 5px;
}

.mrg-right div > ul li figure {
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .mrg-right div > ul li figure {
    margin-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cards-first div > ul li {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
            flex: 0 0 50% !important;
    margin-left: 0px;
  }
}

.box.snip > div ul li .desc h3 {
  font: bold 1.1rem/1.4 "iran-sans-web";
}
body.ltr .box.snip > div ul li .desc h3 {
  font-family: "Arial";
  font-size: 1rem;
}
@media (max-width: 1299.98px) {
  .box.snip > div ul li .desc h3 {
    margin-bottom: 0;
    font-size: 0.825rem;
  }
}
.box.snip > div ul li .desc > *:first-child a {
  display: inline-block;
  padding-top: 5px;
}
.box.snip > div ul li:first-child ~ li {
  padding-top: 20px;
}
.box.snip > div ul li.photo .author span {
  display: inline-block;
}
.box.snip > div ul li.photo .author span:before {
  font-family: "nastooh-icons";
  content: "";
  margin-left: 8px;
}
body.ltr .box.snip > div ul li.photo .author span:before {
  margin-left: 0;
  margin-right: 8px;
}
.box.snip.bg-dark ul li .desc a {
  color: #fff;
}
.box.snip.has-carousel > div ul li:first-child ~ li {
  padding-top: 0;
}
.box.snip.cols ul li:first-child ~ li {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .box.snip.cols.cols-4 ul li {
    width: 50%;
  }
  .box.snip.cols.cols-4 ul li:nth-child(2n+1) {
    clear: both;
  }
  .box.snip.cols.cols-4 ul li:nth-child(n+1) {
    margin-top: 20px;
  }
}
.box.snip.snip-lg ul li .desc h3 {
  font: bold 1.2rem/1.8 "iran-sans-web";
}
.box.snip.snip-sm ul li .desc h3 {
  font: bold 0.85rem/1.5 "iran-sans-web";
}
body.ltr .box.snip.snip-sm ul li .desc h3 {
  font-size: 0.85rem;
  line-height: 1.1rem;
}
.box.snip.snip-cols ul {
  margin: 0 -10px;
}
.box.snip.snip-cols ul li {
  padding-right: 10px;
  padding-left: 10px;
  width: 50%;
  float: right;
}
body.ltr .box.snip.snip-cols ul li {
  float: left;
}
.box.snip.snip-cols ul li .desc h3 {
  font-size: 1rem;
}
.box.snip.snip-cols:not(.first-featured) ul li:first-child ~ li {
  padding-top: 0;
}
.box.snip.snip-cols:not(.first-featured) ul li:nth-child(2n+1) {
  clear: right;
}
body.ltr .box.snip.snip-cols:not(.first-featured) ul li:nth-child(2n+1) {
  clear: left;
}
.box.snip.snip-cols:not(.first-featured) ul li:nth-child(n+2) ~ li {
  padding-top: 20px;
}
.box.snip.snip-cols.first-featured ul li:first-child {
  width: 100%;
  float: none;
}
.box.snip.snip-cols.first-featured ul li:first-child .desc h3 {
  font-size: 1.3rem;
}
body.ltr .box.snip.snip-cols.first-featured ul li:first-child .desc h3 {
  font-size: 1.1rem;
}
.box.snip.snip-cols.first-featured ul li:nth-child(2n) {
  clear: right;
}
body.ltr .box.snip.snip-cols.first-featured ul li:nth-child(2n) {
  float: left;
}

.box.ads ul li figure a {
  padding: 0;
  height: auto;
}
.box.ads ul li figure a > img {
  position: static;
  -webkit-transform: none;
          transform: none;
  min-height: 0;
}
.box.ads:not(.cols) ul li {
  margin-bottom: 10px;
}
.box.ads:not(.cols) ul li figure {
  margin-bottom: 10px;
}
.box.ads.ad-cols ul {
  margin: 0 -10px;
}
.box.ads.ad-cols ul::after {
  display: block;
  clear: both;
  content: "";
}
.box.ads.ad-cols ul li {
  width: 50%;
  float: right;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.box.ads._trim-figure ul li figure {
  margin-bottom: 0;
}
.box.fixed-ad {
  position: fixed !important;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.box.fixed-ad li {
  margin-bottom: 0;
}
.box.fixed-ad li figure {
  margin-bottom: 0;
}

.box.comments > div {
  /*padding-top: $grid-gutter-width;*/
}
@media (max-width: 767.98px) {
  .box.comments > div {
    padding-top: 0;
    margin-top: 20px;
  }
}
.box.comments .comment-stats {
  width: 80%;
  float: left;
  position: relative;
  font-size: 11px;
  margin-top: -36px;
}
body.ltr .box.comments .comment-stats {
  float: right;
}
@media (max-width: 767.98px) {
  .box.comments .comment-stats {
    margin-top: -13px;
    float: none;
    width: 100%;
    margin-bottom: 20px;
    background: #e9ecef;
  }
}
.box.comments .comment-stats ul {
  text-align: left;
}
body.ltr .box.comments .comment-stats ul {
  text-align: right;
}
@media (max-width: 767.98px) {
  .box.comments .comment-stats ul {
    text-align: center;
  }
}
.box.comments .comment-stats ul li {
  display: inline-block;
  padding: 0 20px;
  border-left: 1px solid #e9ecef;
  margin: 0;
  border: 0 none;
}
@media (max-width: 767.98px) {
  .box.comments .comment-stats ul li {
    padding: 0 5px;
  }
}
.box.comments .comment-stats ul li:last-child {
  border: 0 none;
  padding-left: 0;
}
body.ltr .box.comments .comment-stats ul li:last-child {
  padding-left: 20px;
  padding-right: 0;
}
.box.comments .comments-list .comment-header {
  background: transparent;
  font-size: 11px;
  margin: -10px;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 5px;
}
.box.comments .comments-list .comment-header::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header {
    height: 60px;
  }
}
.box.comments .comments-list .comment-header > * {
  float: right;
}
body.ltr .box.comments .comments-list .comment-header > * {
  float: left;
}
.box.comments .comments-list .comment-header .meta {
  font-size: 0;
  width: 58.33333%;
  padding: 0 10px;
  height: 30px;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .meta {
    width: 100%;
  }
}
.box.comments .comments-list .comment-header .meta span {
  display: inline-block;
  font-size: 11px;
  overflow: hidden;
  overflow: hidden;
  height: 30px;
}
.box.comments .comments-list .comment-header .meta span.author {
  width: 40%;
  text-align: right;
  font-weight: bold;
  font-size: 0.9rem;
  /*text-indent: $grid-gutter-width / 2;*/
}
body.ltr .box.comments .comments-list .comment-header .meta span.author {
  text-align: left;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .meta span.author {
    width: 50%;
    font-size: 11px;
  }
}
.box.comments .comments-list .comment-header .meta span.flag {
  width: 20%;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .meta span.flag {
    width: 10%;
  }
}
.box.comments .comments-list .comment-header .meta span.flag img {
  margin-top: -1px;
  width: 24px;
}
.box.comments .comments-list .comment-header .meta span.date {
  width: 40%;
  color: #6c757d;
  line-height: 30px;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .meta span.date {
    text-align: left;
  }
  body.ltr .box.comments .comments-list .comment-header .meta span.date {
    text-align: right;
  }
}
.box.comments .comments-list .comment-header .rating {
  padding: 0 0 0 16px;
  width: 33.33333%;
  padding: 0 10px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .rating {
    width: 85%;
    text-align: right;
  }
  body.ltr .box.comments .comments-list .comment-header .rating {
    text-align: left;
  }
}
.box.comments .comments-list .comment-header .rating .rate {
  display: inline-block;
  position: relative;
  color: #41d32a;
  height: 16px;
  cursor: pointer;
  /* border: 1px solid $box_comments-comment-rating-border-color; */
  line-height: 18px;
  overflow: hidden;
  font-size: 10px;
  border-radius: 2px;
  padding: 0 0 0 16px;
  width: 60px;
  margin: 4px 0 0 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .rating .rate {
    text-align: center;
  }
}
body.dark .box.comments .comments-list .comment-header .rating .rate {
  border-color: #6c757d;
}
.box.comments .comments-list .comment-header .rating .rate:before {
  content: "+";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  color: white;
  width: 18px;
  height: 20px;
  background: #41d32a;
}
.box.comments .comments-list .comment-header .rating .rate.minus {
  color: #ff4440;
  padding-left: 0;
  padding-right: 16px;
}
.box.comments .comments-list .comment-header .rating .rate.minus:before {
  content: "-";
  left: auto;
  right: 0;
  background: #ff4440;
}
.box.comments .comments-list .comment-header .rating .rate:hover {
  border-color: #6c757d;
}
.box.comments .comments-list .comment-header .reply-button {
  width: 8.33333%;
  padding: 0 10px;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list .comment-header .reply-button {
    width: 15%;
  }
}
.box.comments .comments-list .comment-header .reply-button .btn {
  padding: 0 12px;
  margin-top: 2px;
  float: left;
  color: #860f10;
}
body.ltr .box.comments .comments-list .comment-header .reply-button .btn {
  float: right;
}
body.dark .box.comments .comments-list .comment-header .reply-button .btn {
  color: #3E7099;
}
.box.comments .comments-list ul li {
  border: 1px solid #ddd;
  margin-bottom: 5px;
  padding: 15px 10px 0;
  border-radius: 4px;
}
body.dark .box.comments .comments-list ul li {
  border-bottom-color: #525252;
}
.box.comments .comments-list ul li .comment-header {
  border-bottom: 1px solid #dee2e6;
}
.box.comments .comments-list ul li .comment-body {
  padding: 20px 0;
  font-size: 13px;
  line-height: 1.8;
  word-spacing: 0.7px;
}
.box.comments .comments-list ul li ul {
  position: relative;
  /*padding-top: $grid-gutter-width; padding-bottom: $grid-gutter-width;*/
  margin-right: 40px;
  margin-top: 10px;
  /*border-top: 2px solid $box_comments-comment-reply-border-color;*/
  margin-bottom: 10px;
  /*				&:before {
                      display: block; content: ''; position: absolute; top: -10px; right: 10px;
                      border-bottom: 10px solid $box_comments-comment-reply-border-color; border-left: 10px solid transparent; border-right: 10px solid transparent;
                      body.ltr & { right: auto; left: 10px; }
                      body.dark & { border-bottom-color: $box_comments-comment-reply-border-color-dark; }
                  }*/
}
body.ltr .box.comments .comments-list ul li ul {
  margin-right: 0;
  margin-left: 40px;
}
body.dark .box.comments .comments-list ul li ul {
  border-top-color: #525252;
  background: #404040;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list ul li ul {
    margin-right: 20px;
  }
  body.ltr .box.comments .comments-list ul li ul {
    margin-right: 0;
    margin-left: 20px;
  }
}
.box.comments .comments-list ul li ul li {
  background: #ededed;
}
body.dark .box.comments .comments-list ul li ul li {
  background: #404040;
}
@media (max-width: 767.98px) {
  .box.comments .comments-list ul li ul li .comment-header {
    padding: 0 10px;
  }
}
.box.comments .comments-list ul li ul > li .comment-body {
  padding: 20px;
}
.box.comments .comments-list ul li ul > li:last-child {
  margin-bottom: 0;
  border-bottom: 0 none;
}
.box.comments .comments-list ul li .btn-xs {
  padding: 0 6px;
  font-size: 12px;
}
.box.comments.homepage-comments > div {
  padding-top: 0;
  max-height: 503px;
  overflow: hidden;
  overflow-y: auto;
}
.box.comments.homepage-comments ul li {
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.box.comments.homepage-comments ul li .comment-header {
  background: #dee2e6;
  line-height: 1.75rem;
}
.box.comments.homepage-comments ul li .comment-header .meta {
  height: 1.75rem;
}
.box.comments.homepage-comments ul li .comment-header span {
  display: block;
  float: right;
  padding: 0 10px;
}
body.ltr .box.comments.homepage-comments ul li .comment-header span {
  float: left;
}
.box.comments.homepage-comments ul li .comment-header span:before {
  display: inline-block;
  font-family: "nastooh-icons";
  padding-left: 6px;
  font-size: 85%;
  content: "";
}
body.ltr .box.comments.homepage-comments ul li .comment-header span:before {
  padding-left: 0;
  padding-right: 6px;
}
.box.comments.homepage-comments ul li .comment-header span.date {
  float: left;
  color: #343a40;
}
body.ltr .box.comments.homepage-comments ul li .comment-header span.date {
  float: right;
}
.box.comments.homepage-comments ul li .comment-header span.date:before {
  content: "";
}
.box.comments.homepage-comments ul li .comment-header span.author:before {
  content: "";
}
.box.comments.homepage-comments ul li .comment-body {
  padding: 10px;
}
.box.comments.homepage-comments ul li .comment-body h3 {
  font: bold 1.25rem/1.5 "iran-sans-web";
}
.box.comments.homepage-comments ul li .comment-body p:last-child {
  margin-bottom: 0;
}

.box.comment-form {
  margin-bottom: 40px;
}
.box.comment-form .comment-policies {
  margin: 20px 0;
}
.box.comment-form .comment-policies p {
  margin: 0;
  font-size: 90%;
}
.box.comment-form .comment-policies ul {
  font-size: 90%;
  list-style: disc inside;
}
.box.comment-form .comment-policies ul li {
  margin-top: 10px;
}
.box.comment-form .alert {
  border-radius: 0;
  position: relative;
  display: none;
}
.box.comment-form .alert .btn {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.box.comment-form fieldset {
  margin: -10px;
}
.box.comment-form fieldset .comment-policies {
  padding: 0 10px;
}
.box.comment-form .form-group {
  padding: 0 10px;
}
.box.comment-form .form-group.name-group, .box.comment-form .form-group.email-group {
  width: 50%;
  float: right;
  padding: 0 10px;
}
body.ltr .box.comment-form .form-group.name-group, body.ltr .box.comment-form .form-group.email-group {
  float: left;
}
@media (max-width: 767.98px) {
  .box.comment-form .form-group.name-group, .box.comment-form .form-group.email-group {
    width: 100%;
  }
}
.box.comment-form .form-group.name-group label, .box.comment-form .form-group.email-group label {
  display: none;
}
.box.comment-form .form-group.captcha-group::after {
  display: block;
  clear: both;
  content: "";
}
body.dark .box.comment-form .form-group.captcha-group input {
  background: #343a40;
  border: 1px solid #6c757d;
  color: #fff;
}
.box.comment-form .form-group.text-group label {
  display: none;
}
.box.comment-form .form-group.text-group textarea {
  color: #333;
  width: 100%;
  height: 5rem;
}
.box.comment-form .form-group.submit-group {
  text-align: left;
}
.box.comment-form .form-group.submit-group button {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.box.comment-form .form-group.submit-group button:hover {
  color: #fff;
  background-color: #072033;
  border-color: #061928;
}
.box.comment-form .form-group.submit-group button:focus, .box.comment-form .form-group.submit-group button.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
}
.box.comment-form .form-group.submit-group button.disabled, .box.comment-form .form-group.submit-group button:disabled {
  color: #fff;
  background-color: #0c3555;
  border-color: #0c3555;
}
.box.comment-form .form-group.submit-group button:not(:disabled):not(.disabled):active, .box.comment-form .form-group.submit-group button:not(:disabled):not(.disabled).active, .show > .box.comment-form .form-group.submit-group button.dropdown-toggle {
  color: #fff;
  background-color: #061928;
  border-color: #04121d;
}
.box.comment-form .form-group.submit-group button:not(:disabled):not(.disabled):active:focus, .box.comment-form .form-group.submit-group button:not(:disabled):not(.disabled).active:focus, .show > .box.comment-form .form-group.submit-group button.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(48, 83, 111, 0.5);
}
.box.comment-form .form-group label {
  font-weight: normal;
}
body.dark .box.comment-form .form-group .form-control {
  background: #343a40;
  border-color: #6c757d;
  color: #fff;
}
.box.comment-form .form-group input:not(.btn) {
  text-align: right;
  color: #333;
}
body.ltr .box.comment-form .form-group input:not(.btn) {
  text-align: left;
}
.box.comment-form .form-group .captcha > div {
  float: left;
}
body.ltr .box.comment-form .form-group .captcha > div {
  float: right;
}

#photo {
  padding-right: 1rem;
}
@media (max-width: 991.98px) {
  #photo {
    padding-right: 0;
  }
}
#photo .item-header .item-nav {
  float: none;
  width: 11rem;
  height: auto;
  margin-right: -12rem;
  min-width: 0;
}
@media (max-width: 1299.98px) {
  #photo .item-header .item-nav {
    margin-right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1299.98px) {
  #photo .item-author {
    display: inline-block;
  }
}
#photo .short-link-container {
  width: 11rem;
  margin-top: 40px;
}
@media (max-width: 1299.98px) {
  #photo .short-link-container {
    margin-top: 10px;
  }
}
#photo .item-sharing {
  padding-top: 40px;
}
@media (max-width: 1299.98px) {
  #photo .item-sharing {
    padding-top: 0;
  }
}
#photo .item-sharing ul li.download {
  margin-top: 10px;
  margin-right: 0;
}
#photo .item-sharing ul li.download a {
  background: transparent;
  padding-right: 0;
}

.box.photoGall > div ul {
  margin: -10px;
}
.box.photoGall > div ul li {
  width: 25%;
  float: right;
  padding: 10px;
}
body.ltr .box.photoGall > div ul li {
  float: left;
}
.box.photoGall > div ul li:nth-child(4n+1) {
  clear: right;
}
body.ltr .box.photoGall > div ul li:nth-child(4n+1) {
  clear: left;
}
@media (max-width: 767.98px) {
  .box.photoGall > div ul li {
    width: 50%;
  }
  .box.photoGall > div ul li:nth-child(2n+1) {
    clear: right;
  }
  body.ltr .box.photoGall > div ul li:nth-child(2n+1) {
    clear: left;
  }
}
.box.photoGall > div ul li.large-item {
  width: 100% !important;
  height: auto !important;
}
.box.photoGall > div ul li.large-item a img {
  min-height: 0 !important;
}
.box.photoGall > div a {
  display: block;
  text-align: center;
  overflow: hidden;
  background: #232323;
}
.box.photoGall > div a img {
  display: block;
  width: auto;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.box.gallery.desc-overlay > div ul li {
  position: relative;
}
.box.gallery.desc-overlay > div ul li .desc {
  width: 33.3333%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(12, 53, 85, 0.7);
}
.box.gallery.desc-overlay > div ul li .desc h3 {
  font-size: 1.7rem;
}
.box.gallery.desc-overlay > div ul li .desc p {
  color: #dee2e6;
}
@media (max-width: 991.98px) {
  .box.gallery.desc-overlay > div ul li .desc {
    width: 44%;
  }
  .box.gallery.desc-overlay > div ul li .desc h3 {
    font-size: 1.3rem;
  }
  .box.gallery.desc-overlay > div ul li .desc p {
    display: none;
  }
}

.box.sports-table {
  font-size: 0.8rem;
}
.box.sports-table .table-striped > tbody > tr:nth-of-type(odd) {
  background: #fafafa;
}
.box.sports-table .table tbody tr td {
  background: #fff;
}
.box.sports-table .table tbody tr td:first-child {
  text-align: left;
}
.box.sports-table .table tbody tr td:nth-child(n+3) {
  text-align: center;
  direction: ltr;
}
.box.sports-table .table thead tr {
  background: #3E7099;
  color: #fff;
  border-bottom: 0 none;
}
.box.sports-table .table thead tr th {
  border-bottom: 0 none;
}
.box.sports-table .table thead tr th:nth-child(n+2) {
  text-align: center;
}
.box.sports-table .form-group {
  margin-bottom: 10px;
}
.box.sports-table .form-group .form-control {
  border-radius: 0;
}
.box.sports-table .fixture-results {
  margin-top: 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.box.sports-table .fixture-results .results-group {
  margin-top: 20px;
}
.box.sports-table .fixture-results .results-group h5 {
  text-align: center;
  margin: 0;
  line-height: 24px;
  color: #fff;
  background: #3E7099;
  font-family: "iran-sans-web";
  font-size: 12px;
}
.box.sports-table .fixture-results .results-group ul li {
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #efefef;
  background: #fff;
}
.box.sports-table .fixture-results .results-group ul li:nth-of-type(even) {
  background: #fafafa;
}
.box.sports-table .fixture-results .results-group ul li:nth-of-type(even) time {
  background: #fafafa;
}
.box.sports-table .fixture-results .results-group ul li:nth-child(3) {
  border: 0 none;
}
.box.sports-table .fixture-results .results-group ul li span {
  display: inline-block;
  position: absolute;
  text-align: center;
  width: 20%;
  font-weight: bold;
  left: 50%;
  margin-left: -10%;
  top: 0;
}
.box.sports-table .fixture-results .results-group ul li span:first-child, .box.sports-table .fixture-results .results-group ul li span:nth-child(3) {
  width: 42.5%;
  font-weight: normal;
  position: absolute;
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
}
.box.sports-table .fixture-results .results-group ul li span:first-child {
  text-align: left;
  right: 0;
}
.box.sports-table .fixture-results .results-group ul li span:nth-child(3) {
  text-align: right;
  left: 0;
}
.box.sports-table .fixture-results .results-group ul li time {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 0 4px;
  float: left;
  z-index: 80;
  background: #fff;
  font-size: 10px;
  font-weight: bold;
}
.box.sports-table .fixture-results .results-group ul li.live > span:first-child:before {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #eb1f1f;
  content: "";
  margin-left: 8px;
  -webkit-animation: blink 1s;
          animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  position: absolute;
  top: 50%;
  right: 2px;
  margin-top: -3.5px;
}
.box.sports-table .fixture-results .results-group ul li .details {
  position: absolute;
  right: 2px;
  top: 0;
  display: block;
  cursor: pointer;
  color: #0c3555;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.box.sports-table .fixture-results .results-group ul li .details:hover {
  color: #0c3555;
}
.box.sports-table table.table-responsive {
  /*display: table;*/
}
@media (min-width: 768px) {
  .box.sports-table table.table-responsive {
    display: inline-table;
  }
}
.box.sports-table [data-type=table], .box.sports-table [data-type=list] {
  min-height: 60px;
  background: url("../img/_loading.gif") no-repeat center center transparent;
}
.box.sports-table [data-service=live] > div {
  margin-top: 0;
}
.box.sports-table .alert {
  text-align: center;
  min-height: 50px;
  background: #fff;
}
.box.sports-table > header {
  position: relative;
}
.box.sports-table > header button {
  position: absolute;
  top: 0;
  left: 0;
  border: 0 none;
  background: transparent;
  color: #fff;
  height: 26px;
  line-height: 26px;
  outline: 0 none;
}
.box.sports-table > header button[data-task=reload] {
  display: none;
}

.fixture-details .modal-header {
  display: block;
}
.fixture-details .close {
  float: left;
}
.fixture-details .fixture-date {
  background: #f9f9f9;
  height: 32px;
  line-height: 32px;
  font-size: 0.8rem;
  padding: 0 10px;
  margin: 20px 0 0;
  border-bottom: 1px solid #e9ecef;
  /*.time { float: left; }*/
}
.fixture-details .fixture-date .date, .fixture-details .fixture-date .time {
  display: inline-block;
  padding: 0 15px;
  color: #495057;
}
.fixture-details .detail-header .fixture-status {
  position: relative;
  height: 32px;
  line-height: 32px;
  font-size: 1.25rem;
}
.fixture-details .detail-header .fixture-status .result {
  text-align: center;
  display: block;
}
.fixture-details .detail-header .fixture-status .home, .fixture-details .detail-header .fixture-status .away {
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 60px;
}
.fixture-details .detail-header .fixture-status .home {
  margin-right: 0;
  margin-left: 60px;
  right: auto;
  left: 50%;
}
.fixture-details .detail-content {
  margin: -10px;
  font-size: 0.8rem;
}
.fixture-details .detail-content::after {
  display: block;
  clear: both;
  content: "";
}
.fixture-details .detail-content .home, .fixture-details .detail-content .away {
  width: 50%;
  float: right;
  padding: 20px 10px;
  max-width: 320px;
}
.fixture-details .detail-content .away {
  float: left;
}
.fixture-details .detail-content .item {
  background: #f0f0f0;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
  height: 32px;
  line-height: 6px;
}
.fixture-details .detail-content .item .time {
  width: 32px;
  text-align: right;
  display: inline-block;
  direction: ltr;
  font-weight: bold;
  padding-right: 3px;
}
.fixture-details .detail-content .item .event {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  direction: ltr;
}
.fixture-details .detail-content .item .event:before {
  display: inline-block;
  content: "";
  text-align: center;
  text-shadow: 1px 0px 1px #adb5bd;
  text-indent: 20px;
}
.fixture-details .detail-content .item .event:after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  font-family: "nastooh-icons";
  text-align: center;
  text-shadow: 1px 0px 1px #adb5bd;
  position: absolute;
  top: 0;
  left: 0;
}
.fixture-details .detail-content .item .event.event-1:after {
  content: "";
}
.fixture-details .detail-content .item .event.event-2:after {
  content: "";
  color: yellow;
}
.fixture-details .detail-content .item .event.event-3:after {
  content: "";
  color: red;
}
.fixture-details .detail-content .item .event.event-4:after {
  content: "";
  color: red;
}
.fixture-details .detail-content .item .event.event-5:after {
  content: "";
  color: tomato;
}
.fixture-details .detail-content .item .event.event-5:before {
  content: "P";
  color: tomato;
}
.fixture-details .detail-content .item .event.event-6:after {
  content: "";
}
.fixture-details .detail-content .item .event.event-6:before {
  content: "P";
}
.fixture-details .detail-content .item .event.event-7:after {
  content: "";
}
.fixture-details .detail-content .item .event.event-7:before {
  content: "O";
}
.fixture-details .detail-content .item .event.event-9:after {
  content: "";
  color: green;
}
.fixture-details .detail-content .item .event.event-10:after {
  content: "";
  color: red;
}
.fixture-details .detail-content .item .event.event-12:after {
  content: "";
  color: tomato;
}
.fixture-details .detail-content .item .event.event-12:before {
  content: "P";
  color: tomato;
}
.fixture-details .detail-content .item[data-event-id="11"], .fixture-details .detail-content .item[data-event-id="13"] {
  display: none;
}
.fixture-details .modal-header {
  border: 0 none;
}

.box.poll {
  /*	.percent { display: none; }
  	&.show-percent {*/
  /*}*/
}
.box.poll .question {
  font-size: 16px;
  margin-bottom: 10px;
}
.box.poll .form-group {
  margin-bottom: 0;
}
.box.poll .form-group label {
  line-height: 18px;
  margin-top: -4px;
}
.box.poll .form-group input {
  margin: 10px 0 0 8px;
  display: inline-block;
}
.box.poll .percent {
  display: block;
  margin: 3px 0 12px;
  height: 10px;
  border: 1px solid #ababab;
  padding: 1px;
  position: relative;
}
.box.poll .percent:before {
  content: attr(title);
  display: block;
  position: absolute;
  left: 2px;
  top: 10px;
  text-shadow: 0 0 2px #fff;
  font-size: 12px;
}
.box.poll .percent.hidden {
  display: none;
}
.box.poll .percent .bar {
  height: 6px;
  background: #ababab;
}
.box.poll .btn-wrapper {
  float: left;
  margin-top: 8px;
}
.box.poll .btn-wrapper .btn {
  border-radius: 0;
}
.box.poll.show-results .results .form-group label:after {
  content: "(" attr(data-vote) ")";
}

#header .search {
  display: none;
  float: none;
  margin: 0;
  padding-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
}
body.ltr #header .search {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}
#header .search:before {
  position: fixed;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  z-index: 500;
  top: 0;
  left: 0;
}
#header .search .close {
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1800;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  font-size: 40px;
}
#header .search form {
  width: 100%;
  position: fixed;
  top: 30%;
  left: 50%;
  max-width: 70vw;
  z-index: 502;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#header .search form input {
  height: 60px;
  font-size: 30px;
}
#header .search form button {
  height: 60px;
  width: 60px;
  font-size: 40px;
}
#header .search .input-group {
  width: 100%;
  position: relative;
}
#header .search input {
  width: 100%;
  line-height: 1.5;
  color: #fff;
  font-size: 12px;
  margin-top: 3.5px;
  height: 26px;
  background: #555;
  padding: 0 10px;
  font-family: "iran-sans-web";
  border: 0 none;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
#header .search input::-webkit-input-placeholder {
  color: #ddd;
}
#header .search input::-moz-placeholder {
  color: #ddd;
}
#header .search input:-ms-input-placeholder {
  color: #ddd;
}
#header .search input::-ms-input-placeholder {
  color: #ddd;
}
#header .search input::placeholder {
  color: #ddd;
}
body.dark #header .search input {
  background: #333;
}
body.ltr #header .search input {
  border-right: 0 none;
  border-left: 1px solid black;
  font-family: "Arial";
  -webkit-box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.075);
}
html[lang=ku] #header .search input, html[lang=ur] #header .search input {
  font-family: "Times New Roman", Arial, Times;
}
#header .search button {
  position: absolute;
  top: 3px;
  left: 2px;
  font-size: 18px;
  color: #ddd;
  line-height: 28px;
  border: 0 none;
  background: transparent;
  padding: 0;
  margin: 0;
}
body.ltr #header .search button {
  left: auto;
  right: 0;
}

.box.search {
  padding: 20px 0;
  margin: 0;
}
.box.search .form-control, .box.search .btn {
  border-radius: 0;
}
.box.search .form-group {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-preferred-size: content-box;
      flex-basis: content-box;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.box.search .form-group .btn {
  margin-left: 20px;
  white-space: nowrap;
}

.box.rss-help > header h5 {
  margin: 0;
  line-height: 26px;
  padding: 0 10px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body {
    width: 100%;
  }
}
.box.top ul {
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.box.top ul li {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.top ul li {
    max-width: 25%;
  }
}
@media (max-width: 767.98px) {
  .box.top ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.box.top ul li .desc {
  padding-left: 10px;
  height: 100%;
  max-height: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.top ul li .desc {
    height: auto;
  }
}
.box.top ul li .desc > h3 {
  line-height: 1.75;
  font-size: 1rem;
}
body.ltr .box.top ul li .desc > h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
}
.box.top ul li .desc > h3 a {
  display: inline-block;
  padding: 0 0 10px;
}
@media (max-width: 991.98px) {
  .box.top ul li .desc > h3 {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
@media (max-width: 991.98px) {
  .box.top ul li .desc p {
    display: none;
  }
}
.box.top ul li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box.top ul li:first-child {
    max-width: 75%;
  }
}
@media (max-width: 767.98px) {
  .box.top ul li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
.box.top ul li:first-child figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767.98px) {
  .box.top ul li:first-child figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.box.top ul li:first-child .desc {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34%;
          flex: 0 0 34%;
  max-height: none;
}
@media (max-width: 767.98px) {
  .box.top ul li:first-child .desc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.box.top ul li:first-child .desc > h3 {
  font-size: 1.4rem;
  line-height: 1.75;
}
@media (max-width: 991.98px) {
  .box.top ul li:first-child .desc > h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.box.top ul li:first-child .desc > h3 a {
  padding-top: 10px;
}
@media (max-width: 991.98px) {
  .box.top ul li:first-child .desc > h3 a {
    padding: 0;
  }
}
body.ltr .box.top ul li:first-child .desc > h3 {
  font-size: 1.3rem;
  line-height: 1.8rem;
  padding-bottom: 10px;
}
.box.top ul li:first-child .related-box {
  display: block;
}
.box.top.hidden-summary-2 ul li .desc > p {
  display: none;
}
.box.top.hidden-summary-2 ul li:first-child .desc > p {
  display: block;
}
.box.top.single > div ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.box.top.single > div ul li:first-child {
  padding-bottom: 0;
}
.box.top.single > div ul li:first-child ~ li {
  padding-top: 20px;
}
.box.top.single.has-carousel > div ul {
  margin: 0;
}
.box.top.single.has-carousel > div ul li {
  display: block;
  width: 100%;
  padding-top: 0 !important;
}
.box.top.single.has-carousel > div ul li .desc > h3 {
  font-size: 1.5rem;
  line-height: 1.75;
}
.box.top.single.desc-overlay > div ul li figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.box.top.single.desc-overlay > div ul li .desc {
  height: auto;
  /*flex: none;*/
}

/*@import 'map';*/
.box.tags ul {
  font-size: 0;
}
.box.tags ul li {
  display: inline-block;
  margin: 0 0 5px 5px;
  font-size: 0.8rem;
}
.box.tags ul li a {
  display: block;
  background: #e9ecef;
  line-height: 1.3;
  padding: 5px 10px;
}
.box.tags ul li a:hover {
  background: #0c3555;
  color: #fff;
}
body.dark .box.tags ul li a {
  background: #343a40;
  line-height: 1.45;
  color: #fff;
}
body.dark .box.tags ul li a:hover {
  background: #860f10;
}
.box.tags ul.featured {
  margin-top: 20px;
  margin-bottom: 10px;
}
.box.tags ul.featured li {
  font-size: 1rem;
  font-weight: bold;
}

.box.trending-tags {
  padding-left: 20px;
  padding-right: 20px;
  margin: 10px 0;
}
@media (max-width: 991.98px) {
  .box.trending-tags {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.box.trending-tags + .box {
  margin-top: 10px;
}
.box.trending-tags > header {
  margin: 0;
}
.box.trending-tags > header h2 {
  color: #a4a4a4;
  font-size: 14px;
}
.box.trending-tags > header h2:after {
  color: #a4a4a4;
}
.box.trending-tags > header h2 a {
  color: #a4a4a4;
  font-size: 18px;
  padding: 0;
  text-decoration: none;
}
.box.trending-tags ul {
  padding: 0;
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 26px;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  .box.trending-tags ul {
    overflow-x: auto;
    width: 100%;
  }
}
.box.trending-tags ul li {
  margin: 5px;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}
.box.trending-tags ul li h3 {
  margin: 0;
  padding: 0;
  font-size: 0.825rem;
}
.box.trending-tags ul li h3 a {
  color: #595959;
  display: block;
  padding: 0 8px;
  position: relative;
}
.box.trending-tags ul li h3 a:hover {
  text-decoration: none;
  color: #333;
}

.box.contributors > div ul li .desc h5 {
  font: normal 0.75rem/1 "iran-sans-web";
}
.box.contributors > div ul li .desc h5 a {
  color: #860f10;
}
.box.contributors > div ul li .desc h5 + h3 {
  line-height: 28px !important;
}
html[lang=ku] .box.contributors > div ul li .desc h5, html[lang=ur] .box.contributors > div ul li .desc h5 {
  font-family: "Times New Roman", Arial, Times;
}
.box.contributor {
  margin-bottom: 20px;
}
.box.contributor > header {
  position: static;
  background: transparent;
  border: 0 none;
  display: block;
  float: none;
  height: auto;
  margin: 0;
}
.box.contributor > header h2, .box.contributor > header h2 > a, .box.contributor > header h2 > span {
  color: #0c3555;
}
.box.contributor > header:after {
  display: none;
}
.box.contributor > header a {
  padding-right: 0 !important;
}
.box.contributor > header span {
  display: block;
  /*& ~ span { margin-right: $grid-gutter-width / 2; }*/
  /*&.service:after { content: '\00a0-\00a0'; margin-right: $grid-gutter-width / 2; }*/
}
.box.contributor > header span.name {
  font-weight: bold;
  /*&:after { content: ':'; }*/
}
.box.contributor > header span.service {
  font-size: 70%;
  font-family: "iran-sans-web";
}
.box.contributor > header span.stats {
  font-size: 12px;
  font-family: "iran-sans-web";
  font-weight: normal;
}
.box.contributor > header span.stats i {
  font-style: normal;
  display: inline-block;
}
.box.contributor > header span.stats i:before {
  content: ": ";
  margin-right: -3px;
}
body.ltr .box.contributor > header span.stats i:before {
  margin-right: 0;
  margin-left: -3px;
}
.box.contributor > header .social-links {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 200;
}
.box.contributor > header .social-links li {
  display: inline-block;
}
body.ltr .box.contributor > header .social-links {
  left: auto;
  right: 10px;
}
@media (max-width: 1299.98px) {
  .box.contributor > header h2 {
    font-size: 0.78rem;
  }
}
.box.contributor > div {
  position: relative;
}
.box.contributor ul li figure {
  width: 120px;
  float: right;
  border-radius: 50%;
  overflow: hidden;
}
body.ltr .box.contributor ul li figure {
  float: left;
}
.box.contributor ul li figure > a {
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.box.contributor ul li .desc {
  margin-right: 130px;
  padding: 10px 10px 0 0;
}
body.ltr .box.contributor ul li .desc {
  margin-right: 0;
  margin-left: 150px;
  padding-right: 0;
  padding-left: 10px;
}

/*@import 'breaking';*/
.box.splitter {
  min-height: 80px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.box.splitter.newspaper header {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: visible;
  position: static;
}
.box.splitter.newspaper header > h2 {
  position: static;
}
.box.splitter.newspaper header > h2:before {
  display: none;
}
.box.splitter.newspaper header > h2 a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  pointer-events: none;
  width: 180px;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/logo-iran.svg") no-repeat left center transparent;
  background-size: 125%;
}
body.ltr .box.splitter.newspaper header > h2 a {
  right: auto;
  left: 0;
  background-position: right center;
}
.box.splitter.newspaper > div {
  padding: 0 180px 0 0;
}
body.ltr .box.splitter.newspaper > div {
  padding: 0 0 0 180px;
}
.box.splitter.newspaper > div > ul li {
  position: relative;
  height: 80px;
}
@media (max-width: 767.98px) {
  .box.splitter.newspaper > div > ul li {
    height: auto;
  }
}
.box.splitter.newspaper > div > ul li:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 0;
}
body.ltr .box.splitter.newspaper > div > ul li:before {
  left: auto;
  right: 0;
}
.box.splitter.newspaper > div > ul li:after {
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/iran-sphere.png") center center transparent;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .box.splitter.newspaper > div > ul li:after {
    display: none;
  }
}
body.ltr .box.splitter.newspaper > div > ul li:after {
  left: auto;
  right: 0;
}
.box.splitter.newspaper > div > ul li figure {
  position: absolute;
  left: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 165px;
  -webkit-box-shadow: 0 0 4px #aaa;
          box-shadow: 0 0 4px #aaa;
}
@media (max-width: 767.98px) {
  .box.splitter.newspaper > div > ul li figure {
    float: left;
    position: static;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}
body.ltr .box.splitter.newspaper > div > ul li figure {
  left: auto;
  right: 120px;
}
.box.splitter.newspaper > div > ul li .desc {
  position: absolute;
  left: 300px;
  top: 10px;
}
@media (max-width: 767.98px) {
  .box.splitter.newspaper > div > ul li .desc {
    position: static;
    clear: both;
  }
}
body.ltr .box.splitter.newspaper > div > ul li .desc {
  left: auto;
  right: 300px;
}
.box.splitter.newspaper > div > ul li:first-child ~ li {
  display: none;
}
.box.splitter.newspaper.alvefagh header > h2 > a {
  background-image: url("../img/logo-alvefagh.svg");
}
.box.splitter.newspaper.irandaily header > h2 > a {
  background-image: url("../img/logo-irandaily.png");
  background-size: 100%;
}
.box.splitter.podcast {
  padding: 0;
}
.box.splitter.podcast circle {
  fill: #466985;
  opacity: 0.45;
}
.box.splitter.podcast svg > circle:last-child {
  fill: #466985;
  opacity: 1;
}
.box.splitter.podcast #rp1 {
  -webkit-animation: ripple1 1s linear infinite;
          animation: ripple1 1s linear infinite;
}
@-webkit-keyframes ripple1 {
  0% {
    -webkit-transform: scale(5.5);
            transform: scale(5.5);
    opacity: 0.45;
  }
  100% {
    -webkit-transform: scale(8.5);
            transform: scale(8.5);
    opacity: 0;
  }
}
@keyframes ripple1 {
  0% {
    -webkit-transform: scale(5.5);
            transform: scale(5.5);
    opacity: 0.45;
  }
  100% {
    -webkit-transform: scale(8.5);
            transform: scale(8.5);
    opacity: 0;
  }
}
.box.splitter.podcast #rp2 {
  -webkit-animation: ripple2 1s linear infinite;
          animation: ripple2 1s linear infinite;
}
@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
  100% {
    -webkit-transform: scale(5.5);
            transform: scale(5.5);
  }
}
@keyframes ripple2 {
  0% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
  100% {
    -webkit-transform: scale(5.5);
            transform: scale(5.5);
  }
}
.box.splitter.podcast #rp3 {
  -webkit-animation: ripple3 1s linear infinite;
          animation: ripple3 1s linear infinite;
}
@-webkit-keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
}
@keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
}
.box.splitter.podcast #rp4 {
  -webkit-animation: ripple4 1s linear infinite;
          animation: ripple4 1s linear infinite;
}
@-webkit-keyframes ripple4 {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes ripple4 {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.box.splitter.podcast header {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 12;
}
body.ltr .box.splitter.podcast header {
  right: auto;
  left: 0;
}
@media (max-width: 767.98px) {
  .box.splitter.podcast header {
    top: 10px;
    -webkit-transform: none;
            transform: none;
  }
}
.box.splitter.podcast header > h2 {
  font-size: 150%;
}
.box.splitter.podcast header > h2:before {
  background: transparent;
  content: "";
  font-family: "nastooh-icons";
  height: 100%;
}
.box.splitter.podcast > div {
  float: left;
  position: relative;
  z-index: 11;
}
body.ltr .box.splitter.podcast > div {
  float: right;
}
@media (max-width: 767.98px) {
  body.ltr .box.splitter.podcast > div {
    float: none;
    padding-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .box.splitter.podcast > div {
    float: none;
    padding-top: 40px;
  }
}
.box.splitter.podcast > div h3 {
  line-height: 80px;
  font-size: 1.2rem;
  font-weight: normal;
}
body.ltr .box.splitter.podcast > div h3 {
  line-height: 80px;
}
.box.splitter.podcast > div h3 a:after {
  display: inline-block;
  content: "";
  font-family: "nastooh-icons";
  font-size: 14px;
  border-radius: 50%;
  background: #e9ecef;
  color: #0c3555;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  text-indent: 0.1rem;
  margin-right: 10px;
}
body.ltr .box.splitter.podcast > div h3 a:after {
  content: "";
  margin-right: 0;
  margin-left: 10px;
}
.box.splitter.podcast > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0);
          transform: translateX(-50%) translateY(-50%) translateZ(0);
}
.box.splitter.edu header {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: visible;
  position: static;
}
.box.splitter.edu header > h2 {
  position: static;
}
.box.splitter.edu header > h2:before {
  display: none;
}
.box.splitter.edu header > h2 a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  pointer-events: none;
  width: 180px;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/logo-irnaedu.png?_=1") no-repeat left center transparent;
  background-size: contain;
}
body.ltr .box.splitter.edu header > h2 a {
  right: auto;
  left: 0;
  background-position: right center;
}
.box.splitter.edu > div {
  padding: 0 180px 0 0;
}
body.ltr .box.splitter.edu > div {
  padding: 0 0 0 180px;
}
.box.splitter.edu > div > ul li {
  position: relative;
  height: 80px;
}
@media (max-width: 767.98px) {
  .box.splitter.edu > div > ul li {
    height: auto;
  }
}
.box.splitter.edu > div > ul li:before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  left: 0;
}
body.ltr .box.splitter.edu > div > ul li:before {
  left: auto;
  right: 0;
}
.box.splitter.edu > div > ul li figure {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 165px;
  -webkit-box-shadow: 0 0 4px #aaa;
          box-shadow: 0 0 4px #aaa;
}
@media (max-width: 767.98px) {
  .box.splitter.edu > div > ul li figure {
    float: left;
    position: static;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
}
body.ltr .box.splitter.edu > div > ul li figure {
  left: auto;
  right: 0px;
}
.box.splitter.edu > div > ul li .desc {
  position: absolute;
  left: 180px;
  top: 10px;
}
@media (max-width: 767.98px) {
  .box.splitter.edu > div > ul li .desc {
    position: static;
    clear: both;
  }
}
body.ltr .box.splitter.edu > div > ul li .desc {
  left: auto;
  right: 180px;
}
.box.splitter.edu > div > ul li:first-child ~ li {
  display: none;
}

.box.login {
  margin-top: 0;
  /*margin-bottom: $grid-gutter-width * 2;*/
  padding: 20px 0;
}
@media (min-width: 992px) {
  .box.login {
    padding: 30px 0;
  }
}
.box.login .form-group {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .box.login .form-group > * {
    margin-bottom: 20px;
  }
  .box.login .form-group > *:last-child {
    margin-bottom: 0;
  }
}
.box.login .form-control, .box.login .btn {
  border-radius: 0;
}
.box.login .btn {
  /*margin-top: 26px;*/
}
.box.login .login-links {
  /*margin-top: 26px;*/
  line-height: 34px;
  list-style: disc inside;
}
@media (min-width: 768px) {
  .box.login .login-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .box.login .login-links li {
    margin-left: 40px;
  }
}
.box.login .basket-btn {
  color: #fff;
  background-color: #d84315;
  border-color: transparent;
}
.box.login .basket-btn:hover {
  color: #fff;
  background-color: #b53812;
  border-color: rgba(0, 0, 0, 0);
}
.box.login .basket-btn:focus, .box.login .basket-btn.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.box.login .basket-btn.disabled, .box.login .basket-btn:disabled {
  color: #fff;
  background-color: #d84315;
  border-color: transparent;
}
.box.login .basket-btn:not(:disabled):not(.disabled):active, .box.login .basket-btn:not(:disabled):not(.disabled).active, .show > .box.login .basket-btn.dropdown-toggle {
  color: #fff;
  background-color: #aa3510;
  border-color: rgba(0, 0, 0, 0);
}
.box.login .basket-btn:not(:disabled):not(.disabled):active:focus, .box.login .basket-btn:not(:disabled):not(.disabled).active:focus, .show > .box.login .basket-btn.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.box.login .basket-btn strong {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
  margin-left: 0.3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50%;
}
.box.login .basket-btn strong:empty {
  display: none;
}

.box.metadata-table {
  margin: 0;
}
.box.metadata-table .short-link-container {
  margin-top: 0 !important;
  width: auto !important;
  float: none !important;
  display: block;
}
.box.metadata-table .short-link-container i {
  top: 0 !important;
}
.box.metadata-table .short-link-container .form-group {
  margin-bottom: 0;
}
.box.metadata-table .basket-btn {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .box.metadata-table .table > tbody > tr td {
    border-top: 0 none;
  }
  .box.metadata-table .table > tbody > tr th, .box.metadata-table .table > tbody > tr td {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1300px) {
  .box.showcase .slick-prev {
    margin-left: -60px;
  }
  .box.showcase .slick-next {
    margin-right: -60px;
  }
}
@media (min-width: 992px) {
  .box.showcase > div {
    padding: 6rem 0;
  }
}
.box.showcase > div > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  outline: 0 none;
}
@media (max-width: 991.98px) {
  .box.showcase > div > ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
}
.box.showcase > div > ul li figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: auto;
}
@media (min-width: 992px) {
  .box.showcase > div > ul li figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.box.showcase > div > ul li .desc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: auto;
}
@media (min-width: 768px) {
  .box.showcase > div > ul li .desc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666666%;
            flex: 0 0 66.666666%;
    max-width: 66.666666%;
    padding: 20px;
    padding-bottom: 0;
  }
}
.box.showcase > div > ul li .desc h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.box.showcase > div > ul li .desc p {
  font-size: 0.85rem;
  color: #ccc;
}
.box.showcase > div > ul li a {
  pointer-events: none;
  cursor: default;
}

.category-desc {
  background: #e7e7e7;
  padding: 10px;
  border-radius: 0.25rem;
  padding-bottom: 20px;
}
.category-desc h1 {
  font-weight: bold;
  font-size: 1.5rem;
}
.category-desc button {
  color: #860f10;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 15;
  font-weight: bold;
  display: none;
}
.category-desc.clipped {
  padding-bottom: 40px;
}
.category-desc.clipped button {
  display: block;
}
.category-desc.clipped .desc {
  max-height: 60px;
  overflow: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.category-desc.clipped:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background: -webkit-gradient(linear, left bottom, left top, from(#efefef), to(rgba(239, 239, 239, 0)));
  background: linear-gradient(to top, #efefef 0%, rgba(239, 239, 239, 0) 100%);
}

.box.ticker {
  height: 26px;
}
.box.ticker::after {
  display: block;
  clear: both;
  content: "";
}
.box.ticker > header {
  float: right;
  margin-left: 20px;
  line-height: 54px;
  margin-bottom: 0;
  background: transparent;
  border: 0 none;
}
.box.ticker > header h2 {
  padding: 0 20px;
  border: 0 none;
  line-height: 26px;
  color: #e8e7e7;
  font-weight: 400;
  background: #0c3555;
}
.box.ticker > header h2:after {
  display: none;
}
.box.ticker > header h2 a {
  background: transparent;
  color: #333;
}
.box.ticker > div {
  padding-top: 0 !important;
}
.box.ticker > div ul {
  height: 26px;
  overflow: hidden;
}
.box.ticker > div ul li h3 {
  line-height: 26px;
  font-family: "iran-sans-web";
  margin: 0;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 0;
}
.box.ticker[class*=" bg-"] {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
  margin-top: 12px;
}

.blinker {
  -webkit-animation: blinker 1s linear infinite;
          animation: blinker 1s linear infinite;
}

@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.box.bg-blue {
  background: #1c517c !important;
}

.box.ticker > div ul a {
  color: white;
}

.box.ticker > header h2 > span {
  -webkit-animation: blinker 1.5s linear infinite;
          animation: blinker 1.5s linear infinite;
}

.box.ticker > div ul li a:hover {
  color: #0c3555;
}

.box.ticker > header {
  line-height: 0 !important;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.6;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 0.4;
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 0.6;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 0.4;
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}
.ripple::after {
  -webkit-animation: ripple 4.5s ease-out infinite;
          animation: ripple 4.5s ease-out infinite;
}

body.dark {
  background: #333;
  color: #dee2e6;
}
body.dark a {
  color: #fff;
}
body.dark a:hover {
  color: #860f10;
}
body.dark .box > header h2:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24'%3E%3Cpath fill='%23ffffff' d='M20.1538 7.86383C20.1538 13.2766 20.1538 18.6383 20.1538 24.0511C17.4359 24.0511 14.7179 24.0511 12.0513 24.0511C9.38461 21.3957 6.76922 18.7915 4.15384 16.1872C4.15384 10.7745 4.15384 5.41277 4.15384 0C6.87179 2.60426 9.58974 5.20851 12.2564 7.86383C14.9231 7.86383 17.5385 7.86383 20.1538 7.86383Z'/%3E%3C/svg%3E");
}
body.dark .box ul li .desc * a {
  color: #fff;
}
body.dark .box ul li .desc * a:hover {
  color: #3E7099;
}

@media print {
  body {
    min-width: 0 !important;
  }

  .container {
    width: auto;
    min-width: 0 !important;
    max-width: 100%;
  }

  #mainbody .row:not(.item-nav) [class*=col-] {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .print-header {
    display: block !important;
  }
  .print-header .logo {
    float: right;
  }
  .print-header .meta .barcode {
    float: left;
  }
  .print-header .meta .barcode img {
    float: left;
    margin-right: 20px;
  }
  .print-header .meta ul {
    float: left;
    text-align: left;
  }
  .print-header .meta ul li {
    margin-bottom: 7px;
  }
  .print-header .meta ul li.date {
    color: #333;
    font-size: 0.8rem;
  }
  .print-header .meta ul li ol {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .print-header .meta ul li ol li {
    display: inline-block;
  }
  .print-header .meta ul li ol li ~ li {
    position: relative;
  }
  .print-header .meta ul li ol li ~ li:before {
    content: "/";
    padding: 0 10px;
  }

  .row {
    display: block;
  }

  aside, .sidebar {
    display: none !important;
  }

  #header, #footer, #ads-container {
    display: none !important;
  }

  .box:not(#item) {
    display: none;
  }

  article.item {
    margin-right: 0;
    border: 0 none;
  }
  article.item .item-header {
    clear: both;
  }
  article.item .item-header .item-nav {
    display: none;
  }
  article.item .item-body p {
    font-size: 16px;
  }
  article.item .item-footer {
    display: none;
  }
  article.item .item-img {
    display: none;
  }
  article.item .item-summary {
    background: transparent;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ced4da;
  }
  article.item .item-summary .introtext {
    padding: 0;
    color: #6c757d;
    font-size: 16px;
  }
  article.item .gallery-item {
    display: none !important;
  }
  article.item blockquote {
    border: 0 none;
    margin-right: 0;
    margin-left: 0;
  }
  article.item .item-code {
    display: none;
  }
  article.item .item-author {
    display: none;
  }

  [id^=yektanet-], [class*=yektanet-] {
    display: none;
  }
}
body.ltr {
  font-family: "Arial";
}
body.ltr > * {
  direction: ltr;
  text-align: left;
}
body.ltr .h1, body.ltr .h2, body.ltr .h2, body.ltr .h3, body.ltr .h4, body.ltr .h5, body.ltr .h6, body.ltr h1, body.ltr h2, body.ltr h2, body.ltr h3, body.ltr h4, body.ltr h5, body.ltr h6 {
  font-family: "Arial";
}

html[lang=ku] body {
  font-family: "Times New Roman", Arial, Times;
}
html[lang=ku] body .h1, html[lang=ku] body .h2, html[lang=ku] body .h2, html[lang=ku] body .h3, html[lang=ku] body .h4, html[lang=ku] body .h5, html[lang=ku] body .h6, html[lang=ku] body h1, html[lang=ku] body h2, html[lang=ku] body h2, html[lang=ku] body h3, html[lang=ku] body h4, html[lang=ku] body h5, html[lang=ku] body h6 {
  font-family: "Times New Roman", Arial, Times;
}

html[lang=ur] body {
  font-family: "Times New Roman", Arial, Times;
}
html[lang=ur] body .h1, html[lang=ur] body .h2, html[lang=ur] body .h2, html[lang=ur] body .h3, html[lang=ur] body .h4, html[lang=ur] body .h5, html[lang=ur] body .h6, html[lang=ur] body h1, html[lang=ur] body h2, html[lang=ur] body h2, html[lang=ur] body h3, html[lang=ur] body h4, html[lang=ur] body h5, html[lang=ur] body h6 {
  font-family: "Times New Roman", Arial, Times;
}

/* taken from nastooh ck editor quotes */
blockquote, cite {
  font-style: normal;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
}

.quote-t1 {
  float: left;
  width: 200px;
  padding-left: 8px;
  padding-right: 15px;
  border-right-width: 5px;
  margin-right: 22px;
}

.quote-t2 {
  float: right;
  width: 200px;
  padding-left: 20px;
  padding-right: 8px;
  border-right-width: 5px;
  margin-left: 12px;
}

.quote-t3 {
  display: block;
  padding: 7px 11px;
  margin-left: 5px;
  width: 170px;
  float: left;
  margin-right: 12px;
  background: #999;
  color: #FEFEFE;
  font-weight: bold;
  line-height: 20px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.quote-t4 {
  background: none repeat scroll 0 0 #FFFFFF;
  border-left: 2px solid #C76C0C;
  border-right: 9px solid #C76C0C;
  color: #666666;
  display: block;
  float: left;
  font: 1em/1.5em "iran-sans-web", serif;
  margin: 0 16px 20px 0;
  padding: 15px 15px 15px 14px;
  position: relative;
  text-align: justify;
  width: 200px;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

.quote-t4::before {
  content: "“";
  /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  right: 10px;
  top: 5px;
}

.quote-t4::after {
  /*Reset to make sure*/
  content: "";
}

.quote-t4 a {
  background: #eee;
  padding: 0 3px;
  color: #c76c0c;
}

.quote-t4 a:hover {
  color: #666;
}

.quote-t4 em {
  font-style: italic;
}

.quote-t5 {
  background: none repeat scroll 0 0 #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 5px;
  color: #444444;
  display: block;
  float: left;
  font: 12px/1.7em tahoma;
  margin-left: 5px;
  margin-right: 12px;
  padding: 7px 11px;
  text-align: right;
  width: 170px;
}

.quote-t6 {
  color: #505050;
  display: block;
  float: left;
  font: 1.1em/1.8em "iran-sans-web", serif;
  margin: 28px 8px 20px 5px;
  padding: 10px;
  position: relative;
  text-align: right;
  width: 200px;
}

.quote-t6::before {
  content: "”";
  /*Unicode for Right Double Quote*/
  border-bottom: 1px solid #D8D8D8;
  border-top: 1px solid #D8D8D8;
  color: #999999;
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  height: 35px;
  line-height: 58px;
  position: absolute;
  right: 0;
  top: -29px;
  width: 200px;
}

.quote-t6::after {
  content: '"';
  font-family: Georgia, serif;
}

.quote-t7 {
  background: none repeat scroll 0 0 #f9f5e4;
  border-right: 10px solid #f6ebc1;
  float: left;
  font: 1.1em/1.7em "iran-sans-web", serif;
  margin: 6px 12px 6px 6px;
  padding: 6px;
  quotes: removed;
  width: 209px;
}

.quote-t7:before {
  color: #f7ef76;
  content: "»";
  font-size: 4em;
  line-height: 0.5em;
  margin-left: 0.25em;
  vertical-align: -0.2em;
}

.quote-t7 p {
  display: inline;
}

.quote-t8 {
  margin: 1.5em -1.5em 0.75em 0;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  background: #FFF;
  padding: 0.75em 1em 0.75em 0.5em;
  border-right: 0.5em solid #DDDDDD;
  font: 1.2em/1.7em "iran-sans-web", serif;
}

.quote-t8:before {
  color: #999999;
  /* content: removed; */
  display: block;
  font: italic 400%/1 Cochin, Georgia, "Times New Roman", serif;
  height: 0;
  margin-right: -0.95em;
}

.quote-t9-left, .quote-t9-right {
  color: #0034cc;
  width: 200px;
  border-top-width: 1px;
  border-top-style: dotted;
}

.quote-t9-left img, .quote-t9-right img {
  max-width: 190px;
  text-align: center;
}

.quote-t9-left {
  float: left;
  padding-left: 6px;
  padding-right: 12px;
  margin-right: 14px;
  margin-top: 12px;
}

.quote-t9-right {
  float: right;
  padding-left: 12px;
  padding-right: 6px;
  margin-left: 12px;
  margin-top: 12px;
}

/* end of nastooh ck quotes */