



@font-face {
    font-family: "IRANSans";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/IRANSans/IRANSansWebFaNum.eot") format("embedded-opentype"), url("../fonts/IRANSans/IRANSansWebFaNum.ttf") format("truetype"), url("../fonts/IRANSans/IRANSansWebFaNum.woff") format("woff"), url("../fonts/IRANSans/IRANSansWebFaNum.woff2") format("woff2");
}
@font-face {
    font-family: 'IRANSans';
    src: url('../fonts/iransans/woff/iransansweb.woff') format('woff'), url('../fonts/iransans/woff2/iransansweb.woff2') format('woff2'), url('../fonts/iransans/ttf/iransansweb.ttf') format('truetype'),url('../fonts/iransans/eot/iransansweb.eot') format('embedded-opentype');
}

html {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "IRANSans";
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
  transition: all 0.5s ease;
}

a:hover {
  color: #c8b090;
}

button:focus {
  box-shadow: none !important;
}

:root {
  --header-height: 3rem;
  --nav-width: 52px;
  --first-color: #f0f0f0;
  --first-color-light: #757575;
  --black-color: #000000;
  --navy-color: #050c38 ;
  --body-font: "Nunito", sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100 ;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  font-size: var(--normal-font-size);
  transition: 0.5s;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--navy-color);
  border-radius: 2px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.light-theme {
  background-color: white;
  color: black;
}

.dark-theme {
  background-color: var(--navy-color);
  color: white;
}
.dark-theme .header {
  background-color: var(--navy-color);
  box-shadow: -20px 0px 371px 0px #3366ff;
}
.dark-theme .l-navbar {
  background-color: var(--navy-color);
  box-shadow: -20px 0px 371px 0px rgba(51, 102, 255, 0.431372549);
}
.dark-theme a {
  color: white;
}
.dark-theme p {
  color: white !important;
}
.dark-theme .header_toggle {
  color: white;
}
.dark-theme .nav_logo-icon, .dark-theme .nav_logo-name {
  color: white;
}
.dark-theme .nav_link:hover {
  color: #f8e1aa;
}
.dark-theme .active {
  color: #ffbc23;
}
.dark-theme #main-bg {
  background-color: rgba(0, 0, 0, 0.72);
}
.dark-theme .card {
  background-color: rgba(255, 255, 255, 0.0705882353) !important;
}
.dark-theme .card .card-body {
  padding: 10px !important;
}
.dark-theme .dropdown-toggle {
  color: white;
}
.dark-theme .dropdown-menu {
  background-color: #07207f;
  box-shadow: 1px 1px 20px 0 #000000;
  color: white;
  border: 1px solid rgba(0, 120, 255, 0.48);
}

.dropdown-menu {
  width: 200px;
}

body::-webkit-scrollbar-track {
  background-color: var(--first-color);
}

.dropdown-toggle {
  color: black;
}

.dropdown-toggle::after {
  display: none;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle.show {
  width: 50px !important;
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: #ffffff;
  z-index: 150;
  transition: 0.5s;
  /* border-bottom: 1px solid gainsboro; */
  box-shadow: 2px 5px 15px -7px grey;
}
@media only screen and (max-width: 990px) {
  .header {
    height: 3.9rem !important;
  }
}

.header_toggle {
  color: var(--black-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.header_img {
  display: flex;
  align-items: center;
}

.header_img img {
  width: 66px;
}

#main-wrapper {
  position: relative;
  width: 100vw;
}

#main-bg {
  background-color: rgba(0, 0, 0, 0.4431372549);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  display: none;
  transition: all 1s ease-in-out;
}

#main-bg.show {
  transition: all 1s ease-in-out;
  display: block;
}

.l-navbar {
  top: 3.5rem;
  position: fixed;
  right: 0%;
  width: var(--nav-width);
  height: 95%;
  background-color: #ffffff;
  padding: 0.5rem 1rem 0 0;
  transition: 0.8s;
  overflow-y: auto;
  z-index: 100;
  box-shadow: -20px 4px 20px -24px grey;
}
@media only screen and (max-width: 990px) {
  .l-navbar {
    top: 3.5rem;
  }
}

.l-navbar .nav_list {
  border-bottom: 1px solid gainsboro;
}

.nav_name {
  position: relative;
  opacity: 0;
  transition: all 0.5s ease-in;
}

.l-navbar.show .nav_name {
  opacity: 1;
}

.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  direction: rtl;
}

.nav::-webkit-scrollbar {
  width: 2px;
  display: none;
}

.nav:hover::-webkit-scrollbar {
  display: block;
}

.nav::-webkit-scrollbar-thumb {
  background-color: rgb(160, 159, 159);
  border-radius: 2px;
}

.nav::-webkit-scrollbar-track {
  background-color: var(--first-color);
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.nav_logo {
  margin-bottom: 2rem;
}

.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--navy-color);
}

.nav_logo-name {
  color: var(--navy-color);
  font-weight: 700;
}

.nav_link {
  position: relative;
  color: var(--first-color-light);
  margin-bottom: 1.5rem;
  transition: 0.3s;
  font-size: 0.9rem;
}

.nav_link:hover {
  color: var(--navy-color);
}

.nav_icon {
  font-size: 1.25rem;
}

.show {
  left: 0;
}

.active {
  color: var(--navy-color);
  font-weight: 600;
}

.active-link {
  color: var(--navy-color);
  font-weight: 600;
}

.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 32px;
  background-color: var(--navy-color);
}

.height-100 {
  height: 100vh;
}

@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }
  .header_img .header_img {
    width: 66px;
    height: 51px;
  }
  .header_img img {
    width: 66px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }
}
.l-navbar.show {
  width: 15%;
}
@media only screen and (min-width: 2000px) {
  .l-navbar.show {
    width: 250px;
  }
}
@media only screen and (max-width: 998px) {
  .l-navbar.show {
    width: 40%;
  }
}
@media only screen and (max-width: 500px) {
  .l-navbar.show {
    width: 60%;
  }
}

#close-mode {
  transition: all .3s ease-out;
}

.close-mode {
  width: 85% !important;
}
@media only screen and (max-width: 998px) {
    .close-mode {
        width: 77% !important;
    }
}
#wheel-modal .modal-content {
  direction: rtl;
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 0px solid #00462d;
  width: 45%;
  box-shadow: 1px 1px 20px 2px #000;
  border-radius: 15px;
}
@media only screen and (max-width: 990px) {
  #wheel-modal .modal-content {
    width: 80%;
  }
}

#wheel-modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#wheel-modal .close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#wheel-modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.container-video-list {
  padding: 0 115px 0 50px;
}

.title-list {
  background-color: rgba(117, 117, 117, 0.1);
  padding: 0 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.list-row {
  display: flex;
  flex-wrap: nowrap;

  direction:ltr;
}
.list-row .card {
  background: none;
  position: relative;
  border: none;
  width: 95%;
  margin: auto;
  direction: rtl;
  text-align: right;
}
.list-row .card .card-body {
  text-align: justify;
}
.list-row .card .card-body .time {
  position: absolute;
  top: 45%;
  left: 5%;
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 5px;
}
.list-row .card .card-body .card-text {
  color: #565656;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
}
.list-row .card .card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border: none;
}/*# sourceMappingURL=style.css.map */


.font-weight-bold{
    font-weight:900;
}
#topBtn {
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #00523c;
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0px 0px 4px 1px white;
    width: 50px;
    height: 50px;
    transition: all .5s ease-in-out;
}

    #topBtn:hover {
        background-color: #017657;
    }
.details .list-style {
    list-style: none;
}
    .details .list-style li{
        margin-bottom:20px;
    }
    .details .list-style .thumbnail-image {
        width: 100%;
        border-radius: 5px;
    }
.discreption p{
text-align:justify;
}