@font-face {
  font-family: Shabnam;
  src: url("font/Normal/Shabnam.eot");
  src: url("font/Normal/Shabnam.eot?#iefix") format("embedded-opentype"), url("font/Normal/Shabnam.woff2") format("woff2"), url("font/Normal/Shabnam.woff") format("woff"), url("font/Normal/Shabnam.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: Shabnam;
  src: url("font/Bold/Shabnam-Bold.eot");
  src: url("font/Bold/Shabnam-Bold.eot?#iefix") format("embedded-opentype"), url("font/Bold/Shabnam-Bold.woff2") format("woff2"), url("font/Bold/Shabnam-Bold.woff") format("woff"), url("font/Bold/Shabnam-Bold.ttf") format("truetype");
  font-weight: bold;
}

* {
  outline: none;
  box-sizing: border-box;
}
a {
  color: var(--body-color);
  text-decoration: none;
}
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
img {
  color: var(--body-color);
  max-width: 100%;
}
:root {
  --body-font: Shabnam, sans-serif;
  --theme-bg: #1f1d2b;
  --body-color: #808191;
  --button-bg: #353340;
  --border-color: rgba(128, 129, 145, 0.24);
  --ParsGrid-bg: #252936;
  --delay: 0s;
}
hr {
  width: 100%;
  border: none;
  border-top: 1px solid var(--ParsGrid-bg);
  margin: 30px 0 0 0;
}
body {
  font-family: var(--body-font);
  color: var(--body-color);
  width: 100%;
  height: 100%;
  margin: 0;
}
.message {
  z-index: 10;
  position: absolute;
  top: 0;
  width: 100%;
  height: 40px;
  background: #cf3232;
  padding: 0 20px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  transform: translateY(-100%);
  box-shadow: none;
}
.message svg {
  width: 17px;
  height: 17px;
  color: #ffffff;
  cursor: pointer;
}
.message p {
  font-weight: bold;
  color: #ffffff;
}
.container {
  background-color: var(--theme-bg);
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  direction: rtl;
}
.sidebar {
  width: 220px;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition-duration: 0.2s;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar .logo-expand {
  text-decoration: none;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 34px;
  position: sticky;
  top: 0;
}
.sidebar .logo-expand:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  background: var(--theme-bg);
  width: 200px;
  height: 70px;
  z-index: -1;
}
.sidebar-link:hover,
.sidebar-link.is-active {
  color: #fff;
  font-weight: 600;
}
.sidebar-link:hover:nth-child(2n + 1) svg,
.sidebar-link.is-active:nth-child(2n + 1) svg {
  background: #ff7551;
}
.sidebar-link:hover:nth-child(2n) svg,
.sidebar-link.is-active:nth-child(2n) svg {
  background: #32a7e2;
}
.sidebar-link:hover:nth-child(2n + 3) svg,
.sidebar-link.is-active:nth-child(2n + 3) svg {
  background: #6c5ecf;
}
.sidebar-link svg {
  width: 30px;
  height: 30px;
}
.sidebar.collapse {
  width: 90px;
  border-right: 1px solid var(--border-color);
}
.sidebar.collapse .logo-expand,
.sidebar.collapse .side-title {
  display: none;
}
.sidebar.collapse .logo {
  display: flex;
}
.sidebar.collapse .side-wrapper {
  width: 30px;
}
.sidebar.collapse .side-menu svg {
  margin-left: 60px;
}
@keyframes bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.side-menu {
  display: flex;
  flex-direction: column;
}
.side-menu a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--body-color);
}
.side-menu a + a {
  margin-top: 26px;
}
.side-menu svg {
  width: 30px;
  padding: 8px;
  border-radius: 10px;
  background-color: var(--button-bg);
  flex-shrink: 0;
  margin-left: 16px;
}
.side-menu svg:hover {
  color: #fff;
}
.side-title {
  font-size: 12px;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
}
.side-wrapper {
  border-bottom: 1px solid var(--border-color);
  padding: 36px 0;
  width: 145px;
}
.side-wrapper + .side-wrapper + .side-wrapper {
  border-bottom: none;
}
.side-wrapper .eNAMAD {
  display: flex;
  height: 140px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 0 0 20px 0;
  border: 1px solid #353340;
}
.side-wrapper .eNAMAD img {
  border-radius: 20px;
  padding: 20px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 30px;
}
.search-bar {
  height: 34px;
  display: flex;
  width: 100%;
  max-width: 450px;
}
input,
textarea {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--button-bg);
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px 0 60px;
  box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 5%;
  color: #fff;
}
.user-settings {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  flex-shrink: 0;
  height: 34px;
}
.user-settings svg {
  width: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.user-settings .notify {
  position: relative;
}
.user-settings .notify svg {
  margin-left: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.user-settings .notify .notification {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ec5252;
  position: absolute;
  right: 1px;
  border: 1px solid var(--theme-bg);
  top: -2px;
}
.user-name {
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.main-container {
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px;
  flex-grow: 1;
  overflow: auto;
}
span {
  color: #ffae00;
}
.anim {
  animation: bottom 0.8s var(--delay) both;
}
.small-header {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 30px 0 20px;
}
.main-box {
  position: relative;
  width: 100%;
  height: auto;
  background: var(--body-color);
  border-radius: 20px;
  cursor: pointer;
}
.main-box img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.author-img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 4px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}
.author-info {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
.author-detail {
  margin-left: 16px;
}
.ParsGrids {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.ParsGrid {
  position: relative;
  background-color: var(--ParsGrid-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
}
.ParsGrid-wrapper {
  position: relative;
}
.ParsGrid-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.ParsGrid-name {
  color: #fff;
  font-size: 16px;
  line-height: 1.4em;
  padding: 12px 20px 0;
  overflow: hidden;
  background-color: var(--ParsGrid-bg);
  z-index: 9;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ParsGrid-view {
  font-size: 12px;
  padding: 7px 20px 17px;
  background-color: var(--ParsGrid-bg);
  position: relative;
}
.ParsGrid-time {
  position: absolute;
  background: rgba(21, 13, 13, 0.44);
  color: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
  top: 10px;
  z-index: 1;
  right: 8px;
}
.ParsGrid:hover ParsGrid {
  transform: scale(1.6);
  transform-origin: center;
}
.ParsGrid:hover .ParsGrid-time {
  display: none;
}
.Orders,
.Product,
.About,
.Contact,
.Work {
  display: none;
  direction: rtl;
  min-height: 100%;
}
.main-container input,
.main-container textarea {
  background-image: none;
  padding: 10px 16 10px 16px;
  height: auto;
  margin: 10px 0;
}
.main-container textarea {
  min-height: 200px;
  resize: vertical;
}
.main-container form {
  margin: 20px 0 0 0;
}
.main-container button {
  margin: 20px 0 0 0;
}
.Product .box-product {
  background: var(--button-bg);
}
.showWork .Work {
  display: flex;
}
.showOrder .Orders {
  display: flex;
}
.showProduct .Product {
  display: flex;
}
.showAbout .About {
  display: flex;
}
.showContact .Contact {
  display: flex;
}
.showProduct .main-box,
.showProduct .small-header,
.showProduct .ParsGrids,
.showOrder .main-box,
.showOrder .small-header,
.showOrder .ParsGrids,
.showAbout .main-box,
.showAbout .small-header,
.showAbout .ParsGrids,
.showContact .main-box,
.showContact .small-header,
.showContact .ParsGrids,
.showWork .main-box,
.showWork .small-header,
.showWork .ParsGrids {
  display: none;
}
.ParsGrid-box {
  direction: rtl;
  width: 65%;
  object-fit: cover;
  transition: 0.3s;
}
.ParsGrid-box:hover .ParsGrid-js .vjs-big-play-button {
  opacity: 1;
}
.ParsGrid-box img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.ParsGrid-p {
  margin-right: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
  top: 0;
  left: 0;
}
.ParsGrid-p .author-img {
  border: 0;
}
.ParsGrid-p-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.ParsGrid-p-wrapper .author-img {
  border: 0;
}
.ParsGrid-p-wrapper svg {
  width: 20px;
  padding: 4px;
}
.ParsGrid-p-sub {
  font-size: 12px;
}
.ParsGrid-p-title {
  font-size: 24px;
  color: #fff;
  line-height: 1.4em;
  margin: 16px 0 20px;
}
.ParsGrid-p-subtitle {
  font-size: 14px;
  line-height: 1.5em;
  text-align: justify;
  font-weight: normal;
}
.ParsGrid-p-subtitle + .ParsGrid-p-subtitle {
  margin-top: 16px;
}
.ParsGrid-p-name {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}
.ParsGrid-p-name:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #22b07d;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.ParsGrid-p-name.offline:after {
  background-color: #ff7551;
}
.ParsGrid-content {
  width: 100%;
  margin: 0 0 50px 0;
}
.button-wrapper {
  display: flex;
  align-items: center;
}
.button {
  display: flex;
  align-items: center;
  background-color: #ea5f5f;
  color: #fff;
  border: 0;
  font-family: var(--body-font);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  flex-direction: row-reverse;
}
.button svg {
  width: 18px;
  flex-shrink: 0;
  margin-right: 10px;
  padding: 0;
}
.ParsGrid-stats {
  margin-left: 30px;
}
.ParsGrid-detail {
  display: flex;
  margin-top: 30px;
  width: 100%;
}
.box-product {
  flex-grow: 1;
  margin-right: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-product .ParsGrid-p-subtitle + .ParsGrid-p-subtitle {
  margin-top: 5px;
}
.box-product svg {
  width: 120px;
  height: 120px;
  color: var(--button-bg);
}
.box-product span {
  font-size: 16px;
}
::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(21, 20, 26, 0.63);
  border-radius: 10px;
}

.Work {
  position: relative;
  width: auto;
  flex-direction: row-reverse;
  box-sizing: border-box;
}
p {
  margin: 0;
  color: var(--body-color);
  font-size: 13px;
  text-align: justify;
  line-height: 180%;
}
.box {
  margin-top: 30px;
  margin: 46px 0 0 0;
  height: 100%;
}
#BR {
  width: 40%;
  padding: 0px 40px 0 0px;
}
#BL {
  width: 60%;
}
.lv {
  width: 100%;
  padding: 40px 0 0 0;
}
.level {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
  transition: 0.3s;
  margin: 0 0 20px 0;
  cursor: pointer;
  justify-content: space-between;
}
.level .lc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 0 0 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.level .lc p {
  text-align: center;
  font-weight: bold;
  font-size: 19px;
}
.level .lc img {
  height: 40px;
}
.SListApp {
  direction: ltr;
  width: 100%;
  max-width: 50vw;
  white-space: nowrap;
  overflow-x: scroll;
  margin: 30px 0;
}
.ListApp {
  width: 1609px;
}
.ImgApp {
  width: 168.75px;
  height: 300px;
  border-radius: 7px;
  float: left;
  margin: 0 0 0 10px;
}
.Download {
  border-top: 1px solid var(--button-bg);
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 70px 0;
  margin: 20px 0 0 0;
}
.Download img {
  height: 45px;
  margin: 0px 0 10px 0;
}
.Download #mimg {
  height: 51px;
  margin: -3px 0 0 0;
}
.menu {
  z-index: 5;
  position: absolute;
  width: 54px;
  height: 59px;
  color: #ffffff;
  right: 0;
  background: var(--theme-bg);
  align-items: flex-end;
  flex-direction: row-reverse;
  padding: 0 30px 0 0;
  transition-duration: 0.2s;
  display: none;
}
.menu svg {
  width: 24px;
  height: 24px;
}
.box-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list .button {
  background-color: var(--button-bg);
}
.list .button svg {
  margin-right: 0;
}
.category {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.box-category {
  display: flex;
  border-radius: 20px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--ParsGrid-bg);
}
.box-category p {
  font-size: 15px;
  font-weight: 500;
}

.notification-box {
  position: absolute;
  background-color: var(--button-bg);
  color: #fff;
  width: 277px;
  height: 220px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: rgba(0, 0, 0, 0.65) 0px 0px 115px;
  display: flex;
  flex-direction: column;
  direction: rtl;
}
.notification-box .ParsGrid-p-subtitle {
  font-size: 12px;
}
.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.rating {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.rating p {
  line-height: 0;
}
.star-rating {
  direction: rtl;
  display: inline-flex;
}
.star-rating input[type="radio"] {
  display: none;
}
.star-rating label {
  font-size: 2rem;
  color: gray;
  cursor: pointer;
}
.star-rating input[type="radio"]:checked ~ label {
  color: #ffae00;
}
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ffae00;
}
.comments {
  width: 100%;
  border-top: 1px solid var();
}
.boxcomments {
  width: 100%;
  border: 1px solid var(--ParsGrid-bg);
  margin: 20px 0 0 0;
  padding: 20px;
  border-radius: 20px;
}
.boxcomments .rating {
  padding: 10px 0 20px 0;
}
.score {
  width: 80%;
  height: 50px;
  background: var(--theme-bg);
  margin: 20px 0 0 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score p {
  /* color: var(--theme-bg); */
}

@media screen and (max-width: 950px) {
  .menu {
    display: flex;
  }
  .category {
    grid-template-columns: repeat(2, 1fr);
  }
  .ParsGrids {
    grid-template-columns: repeat(2, 1fr);
  }
  .Work {
    flex-direction: column;
  }
  #BR,
  #BL {
    width: 100%;
    padding: 0;
  }
  .SListApp {
    max-width: 90vw;
  }
  .box-product {
    display: none;
  }
  .showProduct .Product {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  .Product .box-product {
    display: flex;
    margin-right: 0;
    flex-grow: 0;
    padding: 20px 0;
    margin: 0 0 40px 0;
  }
  .ParsGrid-box {
    width: 100%;
  }
  .sidebar {
    z-index: 1;
    position: fixed;
    background: var(--theme-bg);
    transform: translateX(100%);
  }
  .side-menu svg {
    margin-left: 25px;
  }
  .logo-expand {
    display: none;
  }
  .search-bar {
    margin: 0 50px 0 0;
  }
}
@media screen and (max-width: 730px) {
  .category {
    grid-template-columns: repeat(1, 1fr);
  }
  .ParsGrids {
    grid-template-columns: repeat(1, 1fr);
  }
  .header {
    justify-content: flex-end;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .search-bar {
    margin: 17px 0 0 0;
    max-width: 100%;
  }
  .search-bar input {
    padding: 0 16px 0 50px;
  }
}

@media screen and (max-width: 600px) {
  .SListApp {
    max-width: 77vw;
  }
}
