@charset "UTF-8";
@import "bootstrap.min.css";
@import 'normalize.css';
@import "swiper.min_1.css";
@import "lightbox.min.css";
.breaking-news-ticker {
  display: block;
  width: 100%;
  background: #fff;
  height: 40px;
  box-sizing: border-box;
  position: relative;
  line-height: 40px;
  overflow: hidden;
  border-radius: 2px;
  text-align: auto;
  font-size: 14px;
}

.breaking-news-ticker * {
  box-sizing: border-box;
}

.breaking-news-ticker.bn-fixed-top {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.breaking-news-ticker.bn-fixed-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.bn-label {
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  background-color: #ce2525;
  text-align: center;
  color: #fff;
  font-weight: 700;
  z-index: 3;
  padding: 0 15px;
  white-space: nowrap;
}

.bn-news {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  overflow: hidden;
}

.bn-news ul {
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
}

.bn-news ul li {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  text-decoration: none;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  position: absolute;
  width: 100%;
  display: none;
  color: #333;
}

.bn-news ul li a {
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  padding: 0 10px;
  color: #333;
  position: relative;
  display: block;
  overflow: hidden;
}

.bn-loader-text {
  padding: 0 10px;
}

.bn-seperator {
  display: inline-block;
  float: left;
  margin-right: 15px;
  width: 30px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.bn-seperator.bn-news-dot {
  margin-right: 0;
}

.bn-seperator.bn-news-dot:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -4px;
}

.bn-prefix {
  color: #d65d7a;
  margin-right: 15px;
  padding-left: 10px;
}

.bn-positive {
  color: #0b8457;
  font-weight: 700;
}

.bn-negative {
  color: #dc2f2f;
  font-weight: 700;
}

.bn-controls {
  width: auto;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  position: absolute;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bn-controls button {
  width: 30px;
  float: left;
  height: 100%;
  cursor: pointer;
  border: none;
  border-left: 1px solid #eee;
  text-align: center;
  background-color: #f6f6f6;
  outline: 0;
}

.bn-controls button:hover {
  background-color: #eee;
}

.bn-arrow {
  margin: 0;
  display: inline-block;
  height: 8px;
  position: relative;
  width: 8px;
  top: -2px;
}

.bn-arrow::after {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: "";
  display: inline-block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
  border-color: #999;
}

.bn-arrow.bn-next {
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  left: -3px;
}

.bn-arrow.bn-prev {
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 3px;
}

.bn-arrow::before {
  background-color: #999;
}

.bn-play {
  position: relative;
  background: #999;
  width: 0;
  height: 12px;
  display: inline-block;
  margin-left: -5px;
}

.bn-play::after {
  left: 100%;
  top: 50%;
  border: 8px solid rgba(136, 183, 213, 0);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-left-color: #999;
  margin-top: -8px;
}

.bn-pause {
  position: relative;
  width: 0;
  height: 14px;
  display: inline-block;
  top: 1px;
  left: -1px;
}

.bn-pause::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 3px;
  background-color: #999;
}

.bn-pause::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: -3px;
  background-color: #999;
}

.bn-direction-rtl {
  direction: rtl;
}

.bn-direction-rtl .bn-label {
  left: auto;
  right: 0;
}

.bn-direction-rtl .bn-controls {
  right: auto;
  left: 0;
}

.bn-direction-rtl .bn-seperator {
  margin-left: 15px;
  margin-right: 0;
  float: right;
}

.bn-direction-rtl .bn-prefix {
  margin-left: 15px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 10px;
}

.bn-direction-rtl .bn-controls button {
  border-left: none;
  border-right: 1px solid #eee;
}

.bn-effect-scroll .bn-news ul {
  display: block;
  width: 100%;
  position: relative;
}

.bn-effect-scroll .bn-news ul li {
  display: list-item;
  float: left;
  position: relative;
  width: auto;
}

.bn-effect-scroll.bn-direction-rtl .bn-news ul li {
  float: right;
}

@font-face {
  font-family: royal-icons;
  src: url(../fonts/royal-icons.eot);
  src: url(../fonts/royal-icons.eot#iefix) format("embedded-opentype"), url(../fonts/royal-icons.ttf) format("truetype"), url(../fonts/royal-icons.woff) format("woff"), url(/image/catalog/67ca78e882b1311/royal-icons.svg#royal-icons) format("svg");
  font-weight: 400;
  font-style: normal;
}
[class*=" icon-"],
[class^=icon-] {
  font-family: royal-icons !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
  content: "\e90f";
}

.icon-bar:before {
  content: "\e900";
}

.icon-search:before {
  content: "\e909";
}

.icon-cart:before {
  content: "\e901";
}

.icon-dots-v:before {
  content: "\e902";
}

.icon-statistics:before {
  content: "\e90a";
}

.icon-down-short:before {
  content: "\e903";
}

.icon-up:before {
  content: "\e90e";
}

.icon-down:before {
  content: "\e904";
}

.icon-facebook:before {
  content: "\e905";
}

.icon-google:before {
  content: "\e906";
}

.icon-instagram:before {
  content: "\e907";
}

.icon-telegram:before {
  content: "\e90b";
}

.icon-twitter:before {
  content: "\e90d";
}

.icon-plus:before {
  content: "\e908";
  color: white;
}

.icon-tick:before {
  content: "\e90c";
}

@font-face {
  font-family: Iran Sans;
  font-weight: 300;
  src: url(../fonts/YekanBakhFaNum-Light.woff) format("woff");
}
@font-face {
  font-family: Iran Sans;
  font-weight: 400;
  src: url(../fonts/YekanBakhFaNum-Regular.woff) format("woff");
}
@font-face {
  font-family: Iran Sans;
  font-weight: 500;
  src: url(../fonts/YekanBakhFaNum-SemiBold.woff) format("woff");
}
@font-face {
  font-family: Iran Sans;
  font-weight: 700;
  src: url(../fonts/YekanBakhFaNum-Bold.woff) format("woff");
}
@font-face {
  font-family: Iran Sans Numeric;
  font-weight: 300;
  src: url("../fonts/YekanBakhFaNum-Light.woff") format("woff");
}
@font-face {
  font-family: Iran Sans Numeric;
  font-weight: 400;
  src: url("../fonts/YekanBakhFaNum-Regular.woff") format("woff");
}
@font-face {
  font-family: Iran Sans Numeric;
  font-weight: 500;
  src: url("../fonts/YekanBakhFaNum-SemiBold.woff") format("woff");
}
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto;
  text-align: center;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 10px 10px;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 3px;
  text-align: center;
}

.wp-caption.alignleft,
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 3px 4px 0;
}

blockquote {
  font-size: inherit;
  border-right: 5px solid #eee;
  border-left: none;
}

[class*=" wp-image-"],
[class^=wp-image-] {
  margin: 30px 0 !important;
}

[class*=" wp-image-"].alignright,
[class^=wp-image-].alignright {
  margin: 5px 0 20px 50px !important;
}

[class*=" wp-image-"].alignleft,
[class^=wp-image-].alignleft {
  margin: 5px 50px 20px 0 !important;
}

[class*=" wp-image-"].aligncenter,
[class^=wp-image-].aligncenter {
  display: block;
  margin: 5px auto !important;
}

@media (max-width: 991px) {
  .alignright {
    display: block;
    float: none;
  }
}
.font-1 {
  font-family: FuturaBT, sans-serif;
}

a:hover {
  color: #092939;
  text-decoration: none;
}

* {
  outline: 0 !important;
}

button,
input,
select,
textarea {
  outline: 0;
}

body {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Iran Sans", Lato;
  overflow: hidden;
  text-align: right;
  direction: rtl;
  color: #092939;
}

.num-fa {
  font-family: Iran Sans Numeric, sans-serif;
}

.center {
  text-align: center;
}

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

.right {
  text-align: right;
}

.light-mode,
.light-mode:hover {
  color: #fff;
}

.light-mode a {
  color: #fff;
  outline: 0;
}

.light-mode a:hover {
  color: #fff;
}

.container {
  min-width: 1170px;
  padding: 0;
  margin: auto;
}

.main-page {
  min-height: 400px;
}

.page-header {
  background: #fff;
  box-shadow: 0 0 80px -40px #092939;
  padding-top: 20px;
  margin: 0 -100px;
  position: relative;
  z-index: 3;
}
.page-header > .container {
  position: relative;
  z-index: 2;
}
.page-header .main-navigation {
  padding-top: 8px;
}
.page-header .main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-header .main-navigation ul li.item {
  display: inline-block;
  vertical-align: middle;
  margin-left: 41px;
  cursor: pointer;
}
.page-header .main-navigation ul li.item.active-btn .icon.icon-bar {
  display: none;
}
.page-header .main-navigation ul li.item.active-btn .icon.close {
  display: block;
}
.page-header .main-navigation ul li.item:last-child {
  margin-left: 0;
}
.page-header .main-navigation ul li.item .icon {
  display: block;
  font-size: 19px;
  color: #bb9120;
  margin-bottom: 17px;
  width: 100%;
  height: 19px;
}
.page-header .main-navigation ul li.item .icon.close {
  display: none;
}
.page-header .main-navigation ul li.item .text {
  display: block;
  color: #091e28;
  font-size: 12px;
  transition: 0.3s;
  font-weight: 400;
}
.page-header .main-navigation ul li.item:hover .text {
  color: #bb9120;
}
.page-header .branding {
  position: relative;
  margin-bottom: -80px;
  padding-bottom: 50px;
}
.page-header .branding img {
  position: relative;
  z-index: 2;
  max-width: 40%;
  padding: 20px 0;
  margin: -20px;
}
.page-header .branding:before {
  content: "";
  background: url(/image/catalog/67ca78e882b1311/header-shape.svg) top center no-repeat;
  height: 100px;
  position: absolute;
  bottom: -20px;
  right: -50px;
  left: -50px;
  pointer-events: none;
}
.page-header .header-left-section {
  padding-top: 7px;
}
.page-header .header-left-section .info-site {
  margin-bottom: 13px;
}
.page-header .header-left-section .info-site .phone {
  display: inline-block;
  vertical-align: middle;
  -moz-osx-font-smoothing: auto;
  margin-right: 25px;
  margin-top: 3px;
}
.page-header .header-left-section .info-site .phone .code {
  font-weight: 400;
  margin-right: 1px;
  font-size: 17px;
  color: #242b2f;
}
.page-header .header-left-section .info-site .phone .number {
  font-size: 17px;
  font-weight: 500;
}
.page-header .header-left-section .info-site .top-nav {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.page-header .header-left-section .info-site .top-nav:last-child {
  margin-right: 0;
}
.page-header .header-left-section .info-site .top-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}
.page-header .header-left-section .info-site .top-nav ul li {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.page-header .header-left-section .info-site .top-nav ul li:last-child {
  margin-right: 0;
}
.page-header .header-left-section .info-site .top-nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 8px 10px -9px rgb(187, 145, 32);
  transition: all 0.2s ease-in-out;
  background: #bb9120;
}
.page-header .header-left-section .info-site .top-nav ul a:hover {
  box-shadow: 0 8px 6px -9px rgb(187, 145, 32);
  transition: all 0.2s ease-in-out;
  background: #ad8314;
}
.page-header .header-left-section .left-nav {
  direction: rtl;
}
.page-header .header-left-section .left-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.page-header .header-left-section .left-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.page-header .header-left-section .left-nav ul li:first-child {
  margin-right: 0;
}
.page-header .header-left-section .left-nav ul li a {
  color: #657177;
  font-size: 12px;
  font-weight: 400;
  transition: 0.3s;
}
.page-header .header-left-section .left-nav ul li a:hover {
  color: #bb9120;
}
.page-header .off-canvas {
  position: absolute;
  background: #fff;
  z-index: 1;
  min-width: 300px;
  height: calc(100vh - 113px);
  transition: 0.3s;
  right: -200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-header .off-canvas.active {
  right: 100px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page-header .off-canvas:before {
  content: "";
  position: fixed;
  min-width: 300px;
  height: 100vh;
  right: 0;
  top: 0;
  background: #11315d;
  z-index: -1;
  pointer-events: none;
}
.page-header .off-canvas .heading {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 48px 0 44px;
  text-align: center;
  background-color: #11315d;
}
.page-header .off-canvas .menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 51px;
  background-color: #fff;
}
.page-header .off-canvas .menu-list ul li {
  float: right;
  clear: both;
  width: 100%;
}
.page-header .off-canvas .menu-list ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
  padding: 0 55px;
  width: 100%;
  position: relative;
}
.page-header .off-canvas .menu-list ul li a:after {
  content: "";
  height: 1px;
  background-color: #f3f6f7;
  position: absolute;
  bottom: -1px;
  right: 55px;
  left: 55px;
  transition: 0.3s;
}
.page-header .off-canvas .menu-list ul li:hover a {
  background-color: #173c6f;
}
.page-header .off-canvas .menu-list ul li:hover a:after {
  opacity: 0;
}
.page-header .off-canvas .menu-list ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.page-header .off-canvas .menu-list ul li:last-child a:after {
  display: none;
}
.page-header .off-canvas .menu-list ul li ul {
  position: absolute;
  top: 0;
  min-height: calc(100vh - 113px);
  background-color: #f3f6f7;
  right: 100%;
  min-width: 240px;
  padding-top: 110px;
  transition: 0.1s;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
}
.page-header .off-canvas .menu-list ul li ul li a {
  padding: 0 37px;
  transition: 0.1s;
}
.page-header .off-canvas .menu-list ul li ul li a:hover {
  color: #193e70;
}
.page-header .off-canvas .menu-list ul > ul {
  opacity: 1;
  visibility: visible;
}

.news-ticker {
  position: relative;
  padding-top: 1px;
  margin-bottom: 18px;
  z-index: 1;
}

.news-ticker:after,
.news-ticker:before {
  content: "";
  position: absolute;
  width: 100px;
  pointer-events: none;
  z-index: 2;
  height: 100%;
  top: 0;
}

.news-ticker:before {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.76) 67%, #fff 92%, #fff 100%);
}

.news-ticker:after {
  left: 0;
  background: linear-gradient(to right, #fff 0, #fff 8%, rgba(255, 255, 255, 0.76) 33%, rgba(255, 255, 255, 0) 100%);
}

.news-ticker .news-ticker-block {
  margin: 0 -55px;
  position: relative;
}

.news-ticker .news-ticker-block a {
  transition: 0.3s;
  color: #616b70;
  font-weight: 400;
  padding: 0 25px;
  font-size: 12px;
}

.news-ticker .news-ticker-block a:hover {
  color: #bb9120;
}

.index-product-carousel-section {
  margin-bottom: 40px;
  margin-top: -20px;
}

.index-product-carousel-section .carousel-index-product {
  /*margin: 0 -180px -30px;*/
}

.index-product-carousel-section .carousel-index-product .swiper-slide {
  padding-bottom: 70px;
  overflow: visible;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner {
  display: inline-block;
  width: 100%;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 30px 40px -15px #ced4d7 !important;
  padding-top: 40px;
  transition: 0.3s;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .thumbnail {
  position: relative;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .thumbnail:after {
  content: "";
  width: 44px;
  height: 6px;
  background-color: #f1f5f7;
  border-radius: 100%;
  display: inline-block;
  margin: 25px 0 30px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .thumbnail img {
  max-width: 100%;
  display: block;
  margin: auto;
  width: 64px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .content {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .content .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: 0.3s;
  display: block;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .content .view-price {
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
  display: inline-block;
  border-radius: 8px;
  padding: 0 5px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner .dots {
  position: absolute;
  right: 7px;
  bottom: 9px;
  font-size: 16px;
  color: #d6a522;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner:hover {
  padding-top: 30px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner:hover .content .title {
  margin: -10px 0 23px;
}

.index-product-carousel-section .carousel-index-product .swiper-slide .item-inner:hover .content .view-price {
  background-color: #d6a522;
  padding: 7px 15px 5px;
  box-shadow: 0 2px #a77f15;
  color: #fff;
}

.index-product-carousel-section .carousel-index-product .nav-carousel {
  position: absolute;
  width: 230px;
  top: 0;
  height: 100%;
  display: none;
}

.index-product-carousel-section .carousel-index-product .nav-carousel.swiper-button-next {
  left: -15px;
  background: -moz-linear-gradient(left, #fff 0, #fff 4%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, #fff 0, #fff 4%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #fff 0, #fff 4%, rgba(255, 255, 255, 0) 100%);
}

.index-product-carousel-section .carousel-index-product .nav-carousel.swiper-button-prev {
  right: -15px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 96%, #fff 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 96%, #fff 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 96%, #fff 100%);
}

.pricing-table {
  position: relative;
  z-index: 2;
  font-size: 0;
  margin: 0 -15px 80px;
}

.pricing-table .title-col {
  display: inline-block;
  font-size: 13px;
  width: 230px;
  padding: 0 15px;
  vertical-align: top;
}

.pricing-table .title-col .title-label {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 25px;
}

.pricing-table .title-col .nav a {
  height: 45px;
  line-height: 45px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 10px;
}

.pricing-table .title-col .nav a.active,
.pricing-table .title-col .nav a:hover {
  background-color: #bb9120;
  box-shadow: 0 0;
  color: #fff;
}

.pricing-table .content-col {
  display: inline-block;
  font-size: 13px;
  width: calc(100% - 230px);
  padding: 0 15px;
}

.table-block {
  position: relative;
}

.table-block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  border: 1px solid #d5dcdf;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  right: 0;
  top: 48px;
  pointer-events: none;
}

.table-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%);
  pointer-events: none;
}

.table-block .pricing-table-tab {
  width: 100%;
  direction: rtl;
  margin-bottom: 60px;
}

.table-block .pricing-table-tab span {
  display: inline-block;
  vertical-align: middle;
}

.table-block .pricing-table-tab .heading-table tr th {
  color: #5c6b72;
  font-weight: 400;
  padding: 20px 0;
}

.table-block .pricing-table-tab .heading-table tr th:first-child {
  padding-right: 30px;
}

.table-block .pricing-table-tab .heading-table tr th:last-child {
  padding-left: 30px;
  text-align: center;
}

.table-block .pricing-table-tab .body-table tr {
  border-bottom: 1px solid #d5dcdf;
}

.table-block .pricing-table-tab .body-table tr:last-child {
  border-bottom: none;
}

.table-block .pricing-table-tab .body-table tr td {
  height: 73px;
  color: #092939;
  font-weight: 700;
}

.table-block .pricing-table-tab .body-table tr td.name a {
  transition: 0.3s;
}

.table-block .pricing-table-tab .body-table tr td.name a:hover {
  color: #bb9120;
}

.table-block .pricing-table-tab .body-table tr td:first-child {
  padding-right: 30px;
}

.table-block .pricing-table-tab .body-table tr td:last-child {
  padding-left: 30px;
}

.table-block .pricing-table-tab .body-table tr td.name {
  width: 160px;
  padding-left: 15px;
}

.archive-product-title .table-block .pricing-table-tab .body-table tr td.name {
  width: auto;
  min-width: 140px;
}

.page-product .table-block .pricing-table-tab .body-table tr td.name {
  width: auto;
  min-width: 140px;
}

.table-block .pricing-table-tab .heading-table tr th {
  padding-left: 15px;
}

.table-block .pricing-table-tab .body-table tr td.price .icon-down,
.table-block .pricing-table-tab .body-table tr td.price .icon-up {
  margin-left: 4px;
  font-weight: 500;
  position: relative;
  top: -1px;
}

.table-block .pricing-table-tab .body-table tr td.price .price {
  margin-left: 4px;
}

.table-block .pricing-table-tab .body-table tr td.price .currency {
  font-size: 12px;
  font-weight: 500;
}

.table-block .pricing-table-tab .body-table tr td.function {
  text-align: left;
  font-size: 20px;
}

.table-block .pricing-table-tab .body-table tr td.function span {
  margin-right: 20px;
}

.table-block .pricing-table-tab .body-table tr td.function span:first-child {
  margin-right: 0;
}

.table-block .pricing-table-tab .body-table tr td.function .icon-cart {
  position: relative;
}

.table-block .pricing-table-tab .body-table tr td.function .icon-cart span {
  position: absolute;
  font-size: 8px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #d6a522;
  border-radius: 100%;
  right: -9px;
  top: 4px;
}

.show-more-link {
  margin: -40px 120px 0;
  position: relative;
  z-index: 2;
}

.show-more-link a {
  box-shadow: 0 1px 13px rgba(85, 67, 18, 0.21);
  background-color: #bb9120;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  margin: auto;
  padding: 18px 26px 16px;
  transition: 0.3s;
}

.show-more-link a:hover {
  background: #a6811c;
}

.banner-index {
  background: url(/image/catalog/67ca78e882b1311/bazarahan-bg.png) center no-repeat #d6a522;
  margin: 20px 0 50px;
  display: inline-block;
  width: 100%;
}

.banner-index .social-icons .item,
.banner-index .social-icons .item .icon {
  display: inline-block;
  vertical-align: middle;
}

.banner-index .social-icons .item .text {
  display: inline-block;
  vertical-align: middle;
  text-shadow: 0 2px 3px rgba(132, 100, 16, 0.75);
  font-weight: 500;
  margin-right: 20px;
  transition: 0.4s;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
}

.banner-index .social-icons .item .text .title {
  display: block;
  width: 110px;
}

.banner-index .social-icons .item .text .name {
  display: block;
  text-shadow: 0 2px 3px rgba(132, 100, 16, 0.75);
  font-size: 18px;
  font-weight: 700;
  width: 110px;
}

.banner-index .social-icons .item:hover .text {
  opacity: 1;
  max-width: 110px;
}

.banner-index .banner-content .flag {
  display: inline-block;
  vertical-align: middle;
  margin: -56px 0 -18px;
}

.banner-index .banner-content .flag img {
  max-width: 100%;
}

.banner-index .banner-content .phone {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
}

.banner-index .banner-content .phone .code {
  text-shadow: 0 2px 3px rgba(132, 100, 16, 0.75);
  font-size: 30px;
  font-weight: 700;
}

.banner-index .banner-content .phone .number {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 3px rgba(132, 100, 16, 0.75);
}

.banner-index .banner-content .phone .call-text {
  margin-top: -8px;
  display: block;
  text-shadow: 0 2px 3px rgba(132, 100, 16, 0.75);
  font-size: 15px;
  font-weight: 500;
}

.company-expert-section {
  margin-bottom: 67px;
}

.company-expert-section .heading .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.company-expert-section .heading .desc {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 33px;
}

.company-expert-section .best-sale .product-list .item {
  font-weight: 700;
  box-shadow: 0 1px 1px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  display: inline-block;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 11px;
  padding: 14px 20px 11px;
  transition: 0.3s;
}

.company-expert-section .best-sale .product-list .item:hover {
  background-color: #eeefef;
}

.company-expert-section .best-sale .product-list .item .price-col {
  text-align: left;
}

.company-expert-section .best-sale .product-list .item .price-col span {
  display: inline-block;
  vertical-align: middle;
}

.company-expert-section .best-sale .product-list .item .price-col .icon-down,
.company-expert-section .best-sale .product-list .item .price-col .icon-up {
  font-size: 12px;
  position: relative;
  top: -1px;
}

.company-expert-section .best-sale .product-list .item .price-col .price {
  margin: 0 5px;
}

.company-expert-section .best-sale .product-list .item .price-col .currency {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  top: -1px;
}

.request-form-index .form-block input[type=text] {
  height: 53px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  width: 100%;
  margin-bottom: 13px;
  border: none;
  padding: 0 23px;
  border-radius: 7px;
  color: #092939;
  font-weight: 500;
  transition: 0.3s;
}

.request-form-index .form-block input[type=text]::placeholder {
  color: #092939;
}

.request-form-index .form-block input[type=text]::-webkit-input-placeholder {
  color: #092939;
}

.request-form-index .form-block input[type=text]:focus {
  background-color: #eeefef;
}

.request-form-index .form-block input[type=submit] {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  height: 53px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #bb9120;
  padding: 0 45px;
  border-radius: 7px;
  border: none;
  transition: 0.3s;
  margin-top: 15px;
}

.request-form-index .form-block input[type=submit]:hover {
  background-color: #d0a124;
}

.expert-list .tab-select select {
  margin-bottom: 13px;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  height: 53px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background: url(/image/catalog/67ca78e882b1311/down.svg) 22px center no-repeat #f9fafa;
  border-radius: 10px;
  width: 100%;
  padding: 0 23px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.expert-list .tab-select select:hover {
  background-color: #eeefef;
}

.expert-list .tab-content-level-1 .nav-block .nav {
  height: 120px;
  flex-wrap: nowrap;
}

.expert-list .tab-content-level-1 .nav-block .nav a {
  margin-left: 2px;
  width: auto !important;
  transition: 0.3s;
  overflow: hidden;
  border-radius: 4px;
  padding-bottom: 5px;
}

.expert-list .tab-content-level-1 .nav-block .nav a img {
  margin-bottom: 5px;
  border-radius: 7px;
  max-width: 100%;
  display: inline-block;
  height:100%;
}

.expert-list .tab-content-level-1 .nav-block .nav a.active,
.expert-list .tab-content-level-1 .nav-block .nav a:hover {
  opacity: 1;
  filter: grayscale(0);
}

.expert-list .tab-content-level-1 .nav-block .nav a.active {
  filter: brightness(1.1);
  transform: scale(1.06);
}

.expert-list .tab-content-level-1 .tab-content .expert-details {
  margin-top: 30px;
}

.expert-list .tab-content-level-1 .tab-content .expert-details .name {
  font-size: 19px;
  font-weight: 500;
}

.expert-list .tab-content-level-1 .tab-content .expert-details .expert-skill {
  font-size: 12px;
  font-weight: 400;
}

.expert-list .tab-content-level-1 .tab-content .expert-details .expert-phone {
  font-size: 27px;
  font-weight: 500;
}

.expert-list .swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
  background: 0 0;
}

.customer-carousel-section {
  background: #fff;
  margin-bottom: 55px;
}

.customer-carousel-section .container {
  position: relative;
}

.customer-carousel-section .container:after {
  content: "";
  z-index: -10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 10%;
}

.customer-carousel-section .customer-carousel {
  position: relative;
  padding: 40px 0;
}

.customer-carousel-section .customer-carousel .swiper-pagination-bullets {
  text-align: left;
  padding-left: 20px;
}

.customer-carousel-section .customer-carousel .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #89989f;
  background-color: #fff;
  opacity: 1;
  transition: 0.3s;
}

.customer-carousel-section .customer-carousel .swiper-pagination-bullets .swiper-pagination-bullet:hover {
  border-color: #d6a522;
  background-color: #d6a522;
}

.customer-carousel-section .customer-carousel .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 19px;
  background-color: #d6a522;
  border-radius: 5px;
  border-color: #d6a522;
}

.customer-carousel-section .customer-carousel .swiper-slide {
  height: 75px;
  line-height: 75px;
}

.customer-carousel-section .customer-carousel .swiper-slide img {
  transition: 0.3s;
  max-height: 100%;
  width: auto;
}

.customer-carousel-section .customer-carousel .swiper-slide img:hover {
  opacity: 1;
}

.last-section {
  margin-bottom: 70px;
}

.last-section .blog-col .heading-col {
  margin-bottom: 20px;
}

.last-section .blog-col .heading-col h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  margin-left: 20px;
}

.last-section .blog-col .heading-col .read-more {
  display: inline-block;
  vertical-align: middle;
  color: #7b909a;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid #d9e3e8;
  padding-bottom: 4px;
  position: relative;
  top: -5px;
  transition: 0.3s;
}

.last-section .blog-col .heading-col .read-more:hover {
  border-bottom: 1px solid #d6a522;
  color: #d6a522;
}

.last-section .newsletter-col .heading-col {
  margin-bottom: 36px;
}

.last-section .newsletter-col .heading-col h4 {
  font-size: 13px;
  font-weight: 700;
}

.last-section .newsletter-col .newsletter-block .desc {
  color: #5d6f78;
  font-size: 12px;
  font-weight: 500;
  line-height: 21px;
}

.last-section .newsletter-col .newsletter-block .newsletter-form {
  position: relative;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=text] {
  width: 100%;
  height: 45px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  border: none;
  padding: 0 20px 0 70px;
  border-radius: 5px;
  transition: 0.3s;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=text]:focus {
  background-color: #fbfcfc;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=text]::-webkit-input-placeholder {
  color: #092939;
  font-weight: 500;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=text]::placeholder {
  color: #092939;
  font-weight: 500;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=submit] {
  font-weight: 500;
  border: none;
  width: 53px;
  height: 45px;
  background-color: #edf1f1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px 0 0 5px;
  transition: 0.3s;
}

.last-section .newsletter-col .newsletter-block .newsletter-form input[type=submit]:hover {
  background-color: #e2e6e6;
}

.last-section .newsletter-col .social-btns {
  margin-top: 15px;
}

.last-section .newsletter-col .social-btns .telegram-btn {
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 5px;
  font-weight: 500;
  height: 45px;
  line-height: 45px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background: url(/image/catalog/67ca78e882b1311/telegram-icon.png) 20px center no-repeat #d6a522;
  padding: 0 20px;
  transition: 0.3s;
}

.last-section .newsletter-col .social-btns .telegram-btn:hover {
  background-color: #c3961f;
}

.last-section .newsletter-col .social-btns .social-list {
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #8ea1aa;
  padding: 17px 10px 7px;
  font-size: 21px;
  border-radius: 5px;
}

.last-section .newsletter-col .social-btns .social-list a {
  transition: 0.3s;
}

.post-item-template {
  border: 1px solid #d6a522;
  display: inline-block;
  position: relative;
  margin-top: 17px;
}

.post-item-template:after {
  content: "";
  background: #fff;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s;
}

.post-item-template:hover:after {
  top: -15px;
  right: -15px;
}

.post-item-template:hover a .title {
  color: #a57f19;
}

.post-item-template a {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 0 20px 30px;
  margin-top: -17px;
  display: block !important;
}

.post-item-template a .title {
  font-size: 17px;
  font-weight: 700;
  line-height: 31px;
  transition: 0.3s;
  min-height: 62px;
}

.post-item-template a .excerpt {
  color: #5d6f78;
  font-size: 12px;
  font-weight: 300;
  line-height: 26px;
  text-align: justify;
}

.post-item-template a .date {
  color: #5d6f78;
  font-size: 12px;
  font-weight: 400;
}

.page-footer .footer-main-block {
  background: #fff;
}

.page-footer .footer-main-block .shadow-container {
  position: relative;
}

.page-footer .footer-main-block .shadow-container:after {
  content: "";
  z-index: -10;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 10%;
}

.page-footer .footer-main-block .footer-main-row {
  padding: 60px 0 55px;
}

.page-footer .footer-main-block .footer-main-row .footer-heading {
  color: #a4801e;
  font-weight: 500;
  margin-bottom: 25px;
}

.page-footer .footer-main-block .footer-main-row .quick-nav-col {
  padding-left: 30px;
}

.page-footer .footer-main-block .footer-main-row .quick-nav-col .quick-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-footer .footer-main-block .footer-main-row .quick-nav-col .quick-nav ul a {
  color: #6a787f;
  font-weight: 400;
  line-height: 31px;
  transition: 0.3s;
}

.page-footer .footer-main-block .footer-main-row .quick-nav-col .quick-nav ul a:hover {
  color: #bb9120;
}

.page-footer .footer-main-block .footer-main-row .about-us .footer-logo {
  margin-bottom: 27px;
  max-width: 100%;
}

.page-footer .footer-main-block .footer-main-row .about-us .text {
  color: #6a787f;
  font-weight: 400;
  line-height: 31px;
  margin: 0;
  text-align: justify;
  text-align-last: center;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer {
  padding-right: 50px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block {
  padding-top: 5px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .address {
  color: #6a787f;
  font-weight: 400;
  margin-bottom: 8px;
  text-align: justify;
  line-height: 24px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .contact-info-item {
  color: #6a787f;
  font-weight: 500;
  line-height: 31px;
  font-size: 0;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .contact-info-item .label {
  display: inline-block;
  vertical-align: middle;
  width: 38%;
  font-size: 13px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .contact-info-item .value {
  display: inline-block;
  vertical-align: middle;
  width: 62%;
  font-size: 13px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn {
  margin-top: 15px;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn a {
  display: inline-block;
  width: 100%;
  background: #c59516;
  padding: 23px 30px;
  border-radius: 7px;
  text-shadow: 0 2px 3px rgba(184, 140, 21, 0.85);
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  opacity: 0.9;
  transition: 0.3s;
  box-shadow: 0 20px 25px -20px #997822;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn a:after {
  content: "";
  position: absolute;
  width: 80px;
  top: -40px;
  bottom: -40px;
  left: 0;
  background-color: #a2790d;
  opacity: 0.5;
  border-radius: 0 80px 80px 0;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn a:before {
  content: "";
  position: absolute;
  left: 25px;
  width: 20px;
  height: 25px;
  background: url(/image/catalog/67ca78e882b1311/left.svg) center no-repeat;
  z-index: 2;
  transition: 0.3s;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn a:hover {
  opacity: 1;
}

.page-footer .footer-main-block .footer-main-row .contact-us-footer .footer-contact-us-block .google-map-btn a:hover:before {
  transform: scale(1.1);
}

.page-footer .copyright {
  color: #8e999e;
  font-size: 11px;
  position: relative;
  overflow: hidden;
}

.page-footer .copyright a {
  font-weight: 500;
}

.page-footer .copyright {
  padding: 40px 0;
}

.page-footer .copyright .ivahid {
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.3s;
  transform: translateY(-10px);
}

.page-footer .copyright .ivahid:hover {
  transform: translateY(0);
}

.page-article {
  margin-bottom: 60px;
}

.page-article .page-title {
  color: #bb9120;
  font-size: 21px;
  font-weight: 700;
  padding-right: 40px;
}

.page-article .page-content-style {
  padding: 40px;
  border-radius: 15px;
  position: relative;
  background: #fff;
}

.page-article .page-content-style:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  background: url(/image/catalog/67ca78e882b1311/shadow-border-page-content.png);
  width: 312px;
  height: 393px;
  z-index: -1;
  pointer-events: none;
}

.page-article .page-content-style:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 2px 6px rgba(46, 76, 91, 0.23);
  border-radius: 15px;
  pointer-events: none;
}

.page-article .page-content-article {
  border: 1px solid #cfd9de;
  position: relative;
}

.page-article .page-content-article .page-content-inner {
  padding: 50px 37px 30px;
}

.page-article .page-content-article .post-title {
  position: absolute;
  top: -32px;
  right: -1px;
  padding: 0 0 20px 40px;
  background: #fff;
  font-size: 23px;
  font-weight: 700;
}

.page-article .page-content-article .post-info {
  margin-bottom: 54px;
}

.page-article .page-content-article .post-info .thumbnail-post {
  position: relative;
  display: inline-block;
}

.page-article .page-content-article .post-info .thumbnail-post img {
  max-width: 100%;
  border-radius: 5px;
}

.page-article .page-content-article .post-info .thumbnail-post .fade-thumbnail {
  position: absolute;
  top: 7px;
  right: 0;
  z-index: -1;
}

.page-article .page-content-article .post-info .thumbnail-post .fade-thumbnail img {
  filter: blur(8px);
  transform: scale(0.98);
}

.page-article .page-content-article .post-info .thumbnail-post .fade-thumbnail:after {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: -20px;
  left: -20px;
  background: -moz-linear-gradient(top, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.page-article .page-content-article .post-info .expert {
  font-size: 14px;
  font-weight: 500;
  line-height: 37px;
  margin-bottom: 25px;
  padding-top: 2px;
  text-align: justify;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main {
  line-height: normal;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main p {
  margin: 0 !important;
  line-height: normal;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #votes {
  display: none;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #rating {
  font-size: 22px;
  font-weight: 500;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main .at-rate {
  color: #5d6a70;
  font-size: 14px;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #descriptive-rating,
.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #prevent-accidental-button,
.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #rmp-main-subtitle,
.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #rmp-main-title {
  display: none;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main #voting-results {
  display: inline-block;
  vertical-align: middle;
  float: right;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main .rating-stars {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  position: relative;
  top: 7px;
  margin-right: 7px;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main ul {
  margin: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main ul li {
  display: inline-block;
  line-height: normal;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main ul li.half-icon-highlight i {
  background: linear-gradient(to left, #ffe699 50%, #ccc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-article .page-content-article .post-info .post-info-items .rating .rmp-main ul li:before {
  display: none;
}

.page-article .page-content-article .post-info .more-info {
  text-align: left;
  color: #5d6a70;
}

.page-article .page-content-article .post-info .more-info .item {
  text-align: right;
  margin-right: 29px;
}

.page-article .page-content-article .post-info .more-info .item:first-child {
  margin-right: 0;
}

.page-article .footer-post .title-section {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.page-article .footer-post .title-section span {
  background: #fff;
  padding: 0 45px 0 35px;
  position: relative;
  z-index: 2;
}

.page-article .footer-post .title-section:after {
  content: "";
  position: absolute;
  width: 100%;
  right: 10px;
  height: 1px;
  background: #cfd9de;
  top: 50%;
  margin-top: -1px;
}

.page-article .footer-post .row {
  padding: 0 45px 30px;
}

.page-article .footer-post .row .social-list {
  padding-left: 0;
}

.page-article .footer-post .row .social-list .item {
  padding: 10px 18px;
  color: #8ea1aa;
  margin-left: 10px;
  transition: 0.3s;
  border-radius: 40px;
  display: inline-block;
  vertical-align: middle;
}

.page-article .footer-post .row .social-list .item .icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 21px;
}

.page-article .footer-post .row .social-list .item .name {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  height: 15px;
  margin-left: 5px;
  transition: 0.3s max-width;
  max-width: 0;
  position: relative;
  top: -1px;
}

.page-article .footer-post .row .social-list .item:hover {
  color: #fff;
  background-color: #bb9120;
}

.page-article .footer-post .row .social-list .item:hover .name {
  max-width: 200px;
}

.page-article .breadcrumb-wp {
  margin-bottom: 40px;
}

.breadcrumb-wp {
  display: inline-block;
  width: 100%;
}

.breadcrumb-wp ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}

.breadcrumb-wp ul li {
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb-wp ul li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(/image/catalog/67ca78e882b1311/left-linear.svg) center no-repeat;
  width: 6px;
  height: 8px;
  position: relative;
  top: -2px;
  margin: 0 10px;
}

.breadcrumb-wp ul li:last-child:after {
  display: none;
}

.breadcrumb-wp ul li a {
  color: #6d7a81;
  font-size: 12px;
  font-weight: 400;
  transition: 0.3s;
}

.breadcrumb-wp ul li a:hover {
  color: #bb9120;
}

.page-content h2 {
  font-size: 19px;
  font-weight: 700;
  display: inline;
  position: relative;
}

.page-content h2:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -1px;
  background: url(/image/catalog/67ca78e882b1311/page-h-shape.png) center right no-repeat;
  width: 330px;
  max-width: 100%;
  height: 2px;
  margin-right: 27px;
}

.page-content h2:after {
  content: "";
  display: block;
  clear: both;
  margin-bottom: 25px;
}

.page-content h3 {
  font-size: 18px;
  margin-bottom: 25px;
}

.page-content h4 {
  font-size: 17px;
  margin-bottom: 25px;
}

.page-content h5 {
  font-size: 16px;
  margin-bottom: 25px;
}

.page-content h6 {
  font-size: 15px;
  margin-bottom: 25px;
}

.page-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 41px;
  text-align: justify;
  margin-bottom: 50px;
}

.page-content p:last-child {
  margin-bottom: 20px;
}

.page-content ul {
  list-style: none;
  padding: 0;
}

.page-content ul li {
  font-size: 14px;
  font-weight: 500;
  line-height: 41px;
}

.page-content ul li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(/image/catalog/67ca78e882b1311/tick.svg) center no-repeat;
  width: 15px;
  height: 12px;
  margin-left: 15px;
}

.page-content .wp-block-image {
  margin: 50px 0;
}

.page-content img {
  max-width: 100%;
}

.full-width-img {
  position: relative;
  display: block;
  margin-left: -1px;
  margin-right: -1px;
}

.full-width-img img {
  max-width: 100%;
}

.full-width-img .caption {
  text-align: left;
  margin-top: 25px;
  color: #9ba2a6;
  font-size: 12px;
  padding: 0 46px;
}

.related-post {
  margin-bottom: 45px;
}

.related-post .related-post-heading {
  position: relative;
  margin-bottom: 40px;
}

.related-post .related-post-heading:before {
  content: "";
  display: inline-block;
  margin: 0 auto 5px;
  background-color: #cfd9de;
  width: 1px;
  height: 40px;
}

.related-post .related-post-heading h4 {
  color: #bb9120;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.comment-section .comment-heading {
  position: relative;
}

.comment-section .comment-heading:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #cfd9de;
  margin: 20px auto 0;
}

.comment-section .comment-heading .comment-title {
  font-size: 15px;
  font-weight: 700;
  color: #bb9120;
  margin-bottom: 10px;
}

.comment-section .comment-heading .comment-desc {
  font-size: 14px;
  font-weight: 500;
}

.sidebar .post-list-side {
  margin-bottom: 50px;
}

.sidebar .post-list-side .heading-side {
  color: #6d7a81;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar .post-list-side .post-list .post-item {
  margin-bottom: 32px;
}

.sidebar .expert-in-side {
  margin-bottom: 50px;
  border-bottom: 1px solid #e0e7eb;
  padding-bottom: 40px;
}

.sidebar .expert-in-side .heading {
  margin-bottom: 15px;
}

.sidebar .expert-in-side .heading .title {
  color: #6d7a81;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sidebar .expert-in-side .heading .desc {
  color: #8b979e;
  font-size: 12px;
  font-weight: 500;
}

.sidebar .expert-in-side .expert-list .tab-select select {
  font-size: 16px;
  font-weight: 700;
}

.sidebar .expert-in-side .expert-list .tab-content-level-1 .tab-content .expert-details .name {
  font-size: 17px;
  margin-bottom: 5px;
}

.sidebar .expert-in-side .expert-list .tab-content-level-1 .tab-content .expert-details .expert-skill {
  color: #66757d;
  font-size: 12px;
}

.sidebar .expert-in-side .expert-list .tab-content-level-1 .tab-content .expert-details .expert-phone {
  font-size: 21px;
  line-height: 21px;
}

.sidebar .top-sale-product {
  border-bottom: 1px solid #e0e7eb;
  padding-bottom: 40px;
  margin-bottom: 33px;
}

.sidebar .top-sale-product .heading {
  color: #6d7a81;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar .top-sale-product .product-list .item {
  display: inline-block;
  width: 100%;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 9px rgba(33, 56, 68, 0.2);
  font-size: 0;
  transition: 0.3s;
  margin-bottom: 20px;
}

.sidebar .top-sale-product .product-list .item:last-child {
  margin-bottom: 0;
}

.sidebar .top-sale-product .product-list .item:hover {
  box-shadow: 0 2px 4px rgba(33, 56, 68, 0.1);
}

.sidebar .top-sale-product .product-list .item .image {
  display: inline-block;
  vertical-align: middle;
  width: 64px;
}

.sidebar .top-sale-product .product-list .item .image img {
  max-width: 100%;
  width: 64px;
}

.sidebar .top-sale-product .product-list .item .content {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 64px);
  padding-right: 30px;
}

.sidebar .top-sale-product .product-list .item .content .name {
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.sidebar .top-sale-product .product-list .item .content .desc {
  color: #4d646f;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.sidebar .request-form-side .heading {
  margin-bottom: 20px;
}

.sidebar .request-form-side .heading .title {
  color: #6d7a81;
  font-size: 14px;
  font-weight: 700;
}

.sidebar .request-form-side .heading .desc {
  color: #8b979e;
  font-size: 12px;
  font-weight: 500;
}

.sidebar .request-form-side .request-form-index .form-block input[type=submit] {
  width: 100%;
  text-align: right;
}

.sidebar .quick-link-side {
  margin-bottom: 47px;
}

.sidebar .quick-link-side .heading {
  color: #6d7a81;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.sidebar .quick-link-side .link-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar .quick-link-side .link-list ul li a {
  display: inline-block;
  width: 100%;
  padding: 11px 20px;
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  transition: 0.3s;
}

.sidebar .quick-link-side .link-list ul li a:hover {
  background-color: #bb9120;
  box-shadow: none;
  color: #fff;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children {
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  border-radius: 10px;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children > a {
  padding: 18px 20px;
  font-weight: 700;
  border-bottom: 1px solid #e4e9e9;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children ul {
  font-size: 0;
  padding: 11px 10px;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children ul li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children ul li a {
  color: #324b57;
  font-size: 12px;
  font-weight: 500;
  line-height: 31px;
  padding: 0 10px;
  transition: 0.3s;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.sidebar .quick-link-side .link-list ul li.menu-item-has-children ul li a:hover {
  color: #bb9120;
}

.page-product {
  margin: -75px 0 70px;
}

.page-product .product-info {
  padding: 100px 50px 50px;
  background: #fff;
  position: relative;
  margin-bottom: 65px;
  border-radius: 15px;
}

.page-product .product-info:after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 5px;
  left: 5px;
  box-shadow: 0 20px 40px -10px #ced4d7;
  right: 0;
  z-index: -1;
  border-radius: 10px;
}

.page-product .product-info .product-info-col .breadcrumb-wp {
  margin-bottom: 13px;
}

.page-product .product-info .product-info-col .product-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 35px;
}

.page-product .product-info .product-info-col .thumbnail {
  text-align: center;
  padding-left: 40px;
}

.page-product .product-info .product-info-col .thumbnail img {
  max-width: 100%;
  display: block;
  margin: auto;
  position: relative;
  transform: translateY(-5px);
  animation: 1.7s ease-out infinite alternate product-thumbnail;
  width: 118px;
}

@keyframes product-thumbnail {
  from {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(10px);
  }
}
.page-product .product-info .product-info-col .thumbnail:after {
  content: "";
  width: 92px;
  height: 7px;
  background-color: #f1f5f7;
  border-radius: 100%;
  display: inline-block;
  margin: 37px 0 30px;
  transform: scale(1, 1);
  animation: 1.7s ease-out infinite alternate product-thumbnail-shadow;
}

@keyframes product-thumbnail-shadow {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.4, 1);
  }
}
.page-product .product-info .product-info-col .product-details {
  padding: 0 20px 0 30px;
}

.page-product .product-info .product-info-col .product-details .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-product .product-info .product-info-col .product-details .details-list li {
  font-weight: 500;
  line-height: 41px;
  position: relative;
}

.page-product .product-info .product-info-col .product-details .details-list li:after {
  content: "";
  position: absolute;
  height: 1px;
  right: 10px;
  left: 10px;
  top: 50%;
  margin-top: -1px;
  background-color: #dce3e7;
}

.page-product .product-info .product-info-col .product-details .details-list li .label {
  background: #fff;
  transition: 0.3s;
  z-index: 1;
  min-width: 32%;
}

.page-product .product-info .product-info-col .product-details .details-list li .value {
  background: #fff;
  transition: 0.3s;
  z-index: 1;
  min-width: 32%;
  text-align: left;
}

.page-product .product-info .product-info-col .product-details .details-list li:hover .label {
  transform: translateX(-5px);
}

.page-product .product-info .product-info-col .product-details .details-list li:hover .value {
  transform: translateX(5px);
}

.page-product .product-info .expert-list .tab-select select {
  margin-bottom: 27px;
}

.expert-list .tab-content-level-1 .tab-content .expert-details .expert-phone-code {
  border-radius: 5px;
  color: #fff;
  padding: 2px 6px 0;
  font-weight: 900;
}
.expert-list .tab-content-level-1 .tab-content .expert-details .expert-phone-code .expert-phone-code-code {
  font-size: 18px;
}

.page-product .price-table-product {
  margin-bottom: 75px;
}

.page-product .price-table-product .table-block:after {
  top: 133px;
  height: calc(100% - 138px);
}

.page-product .price-table-product .table-block .pricing-table-tab .heading-table tr th {
  padding-bottom: 20px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td {
  height: 54px;
  background-color: #bb9120;
  color: #fff;
  font-weight: 700;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td:first-child {
  padding-right: 30px;
  border-radius: 0 15px 15px 0;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td:last-child {
  padding-left: 30px;
  border-radius: 15px 0 0 15px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.name {
  min-width: 140px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.count {
  width: 70px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.price .icon-down,
.page-product .price-table-product .table-block .pricing-table-tab .current-row td.price .icon-up {
  margin-left: 4px;
  font-weight: 500;
  position: relative;
  top: -1px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.price .price {
  margin-left: 4px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.price .currency {
  font-size: 12px;
  font-weight: 500;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.function {
  text-align: left;
  font-size: 20px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.function span {
  margin-right: 20px;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.function span:first-child {
  cursor: pointer;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.function .icon-cart {
  position: relative;
}

.page-product .price-table-product .table-block .pricing-table-tab .current-row td.function .icon-cart span {
  position: absolute;
  font-size: 8px;
  width: 15px;
  height: 15px;
  line-height: 16px;
  text-align: center;
  background-color: #bb9120;
  border-radius: 100%;
  right: -9px;
  top: 4px;
  color: #bb9120;
}

.page-product .price-table-product .table-block .pricing-table-tab .body-table tr:first-child {
  height: 94px;
}

.page-product .price-table-product .table-block .pricing-table-tab .body-table tr:first-child td {
  height: auto;
  padding-top: 22px;
}

.page-product .content-product {
  overflow: hidden;
}

.page-product .content-product h2:before {
  background: #d8e3e9;
  width: 100vw;
  height: 1px;
  margin-top: 0;
}

.page-product .content-product p {
  margin-bottom: 20px;
}

.page-product .main-resources-bazarahan {
  margin-top: 40px;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources {
  position: relative;
  display: inline-block;
  width: 100%;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources .thumbnail img {
  max-width: 100%;
  border-radius: 15px;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources .caption {
  position: absolute;
  right: 0;
  width: 100%;
  padding: 2px 17px 17px;
  font-weight: 700;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources .caption:after,
.page-product .main-resources-bazarahan .resources-carousel .item-resources .caption:before {
  content: "";
  position: absolute;
  width: 100%;
  background: url(/image/catalog/67ca78e882b1311/shape-resources-item.svg) center top/100% no-repeat;
  height: 100%;
  right: 0;
  top: -22px;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources .caption:before {
  top: -27px;
  opacity: 0.6;
}

.page-product .main-resources-bazarahan .resources-carousel .item-resources .caption .title {
  position: relative;
  z-index: 2;
  color: black;
}

.archive-article {
  margin-bottom: 55px;
}

.archive-article .heading-archive {
  margin: 17px 0 60px;
  display: inline-block;
  width: 100%;
}

.archive-article .heading-archive .archive-title {
  font-size: 19px;
  font-weight: 700;
  margin: 20px 0 30px;
}

.archive-article .heading-archive .search-article {
  position: relative;
}

.archive-article .heading-archive .search-article form {
  display: inline-block;
  position: relative;
}

.archive-article .heading-archive .search-article form input[type=text] {
  height: 56px;
  background-color: #bb9120;
  width: 430px;
  max-width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0 23px 0 60px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 26px 15px -20px #c8b88d;
  transition: 0.3s;
}

.archive-article .heading-archive .search-article form input[type=text]:focus {
  width: 460px;
  box-shadow: 0 22px 10px -20px #c8b88d;
  background: #cc9e23;
}

.archive-article .heading-archive .search-article form input[type=text]::placeholder {
  color: #fff;
  font-weight: 500;
}

.archive-article .heading-archive .search-article form input[type=text]::-webkit-input-placeholder {
  color: #fff;
  font-weight: 500;
}

.archive-article .heading-archive .search-article form input[type=submit] {
  position: absolute;
  background: url(/image/catalog/67ca78e882b1311/search.svg) center no-repeat;
  width: 25px;
  height: 25px;
  left: 20px;
  top: 15px;
  border: none;
  transition: 0.3s;
}

.archive-article .heading-archive .search-article form input[type=submit]:hover {
  transform: scale(1.2) rotate(10deg);
}

.archive-article .post-list .post-item-template {
  margin-bottom: 44px;
}

.archive-article .post-list .important-post .post-item-template .title {
  color: #a57f19;
}

.archive-article .post-list .important-post .post-item-template .title:before {
  content: "مهم";
  display: inline-block;
  vertical-align: middle;
  color: #a67e14;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #bb9120;
  border-radius: 6px;
  height: 22px;
  line-height: 18px;
  padding: 0 7px;
  margin-left: 14px;
}

.archive-article .post-list .important-post .post-item-template .excerpt {
  line-height: 32px;
  margin-bottom: 18px;
}

.archive-product-title {
  margin-bottom: 75px;
}

.archive-product-title .sidebar {
  padding-top: 34px;
}

.archive-product-title .sidebar .post-list-side,
.archive-product-title .sidebar .post-list-side .post-list .post-item:last-child {
  margin-bottom: 0;
}

.archive-product-title .archive-title {
  margin: 9px 0 28px;
  font-size: 19px;
  font-weight: 700;
}

.archive-product-title .cat-description {
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  background-color: #f9fafa;
  border-radius: 15px;
  padding: 45px 33px 40px;
  margin-bottom: 40px;
}

.archive-product-title .cat-description .thumbnail {
  padding-top: 15px;
}

.archive-product-title .cat-description .thumbnail img {
  max-width: 100%;
  width: 108px;
}

.archive-product-title .cat-description .text {
  font-weight: 500;
  line-height: 31px;
  margin: 0;
  text-align: justify;
}

.archive-product-title .product-list .heading-list {
  background-color: #e7edef;
  border-radius: 10px;
  padding: 19px 28px;
  position: relative;
}

.archive-product-title .product-list .heading-list:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 0 solid transparent;
  border-top: 12px solid #bb9120;
  top: 100%;
  right: 0;
}

.archive-product-title .product-list .heading-list .title {
  font-size: 16px;
  font-weight: 700;
  color: #092939;
}

.archive-product-title .product-list .heading-list .date {
  font-size: 12px;
  font-weight: 400;
  color: #092939;
}

.archive-product-title .product-list .table-block:before {
  display: none;
}

.archive-product-title .product-list .table-block:after {
  box-shadow: 0 2px 2px rgba(46, 76, 91, 0.23);
  border: none;
  border-radius: 17px;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr {
  border-bottom: none;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr td {
  background: #fff;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr td.name a {
  transition: 0.3s;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr td.name a:hover {
  color: #bb9120;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:first-child td:first-child {
  border-radius: 0 15px 0 0;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:first-child td:last-child {
  border-radius: 15px 0 0;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:last-child td:first-child {
  border-radius: 0 0 15px;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:last-child td:last-child {
  border-radius: 0 0 0 15px;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:last-child:first-child td:first-child {
  border-radius: 0 15px 15px 0;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:last-child:first-child td:last-child {
  border-radius: 15px 0 0 15px;
}

.archive-product-title .product-list .table-block .pricing-table-tab .body-table tr:nth-child(2n+1) td {
  background: #f8f9f9;
}

.pagination-block .page-numbers {
  display: inline-block;
  vertical-align: middle;
  min-width: 40px;
  padding: 0 8px;
  height: 40px;
  line-height: 43px;
  text-align: center;
  margin-left: 11px;
  color: #94a9b4;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #ced5d9;
}

.pagination-block .page-numbers.current,
.pagination-block .page-numbers:hover {
  border: 1px solid #bb9120;
  color: #bb9120;
}

.pagination-block .page-numbers.dots:hover {
  background-color: #fff;
  color: #8b97a7;
  cursor: default;
  border: 1px solid #ced5d9;
}

.comment-block {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  margin-bottom: 55px;
}

.comment-block ul.children {
  padding: 0;
}

.comment-block .comments .comment-item .comment {
  padding: 40px 45px 35px;
  margin-bottom: 20px;
  border: 1px solid #cfd9de;
}

.comment-block .comments .comment-item .comment .comment-body .comment-metadata a {
  color: #85949b;
}

.comment-block .comments .comment-item .comment .comment-body .comment-metadata a .day {
  color: #092939;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 17px;
  display: block;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .reply {
  float: left;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .reply .comment-reply-link {
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 1px 2px rgba(104, 117, 122, 0.55);
  background-color: #e3eaed;
  padding: 3px 13px;
  border-radius: 6px;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .reply .comment-reply-link:hover {
  background-color: #bb9120;
  color: #fff;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .reply span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 16px;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .info-comment-item {
  margin-bottom: 16px;
}

.comment-block .comments .comment-item .comment .comment-body .comment-meta .comment-author .author-name {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  font-weight: 500;
  margin-left: 15px;
}

.comment-block .comments .comment-item .comment .comment-body .comment-content .cld-like-dislike-wrap {
  display: none;
}

.comment-block .comments .comment-item .comment .comment-body .comment-content p {
  color: #092939;
  line-height: 32px;
  text-align: justify;
  font-weight: 500;
}

.comment-block .comments .comment-item .comment .comment {
  border: 1px solid #bb9120;
}

.comment-block .user-logged .logged-in-as {
  margin-bottom: 10px;
}

.comment-block .user-logged .logged-in-as a {
  transition: 0.3s;
}

.comment-block .user-logged .logged-in-as a:hover {
  color: #bb9120;
}

.comment-block .user-logged .comment-form-textarea {
  display: inline-block;
  font-size: 13px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #cfd9de;
}

.comment-block .user-logged .comment-form-textarea textarea {
  color: #767e88;
  font-size: 13px;
  font-weight: 500;
  border: none;
  resize: none;
  padding: 30px 40px 60px;
  height: 212px;
  width: 100%;
  line-height: 25px;
}

.comment-block .user-logged .comment-form-textarea textarea:-moz-placeholder {
  color: #a5b1b7;
  font-size: 18px;
  font-weight: 300;
}

.comment-block .user-logged .comment-form-textarea textarea::placeholder {
  color: #a5b1b7;
  font-size: 18px;
  font-weight: 300;
}

.comment-block .comment-form {
  position: relative;
}

.comment-block .comment-form .container-comment-form {
  border: 1px solid #cfd9de;
  overflow: hidden;
}

.comment-block .comment-form .container-comment-form .comment-form-inputs {
  font-size: 0;
  margin: 0 -9px;
  width: calc(100% - 200px);
  padding: 0 27px 27px 0;
}

.comment-block .comment-form .container-comment-form .comment-form-inputs .comment-input-field {
  vertical-align: middle;
  display: inline-block;
  width: 50%;
  padding: 0 9px;
}

.comment-block .comment-form .container-comment-form .comment-form-inputs .comment-input-field input {
  height: 43px;
  border: 1px solid #cfd9de;
  color: #434c58;
  font-size: 12px;
  font-weight: 500;
  padding: 0 20px;
  width: 100%;
}

.comment-block .comment-form .container-comment-form .comment-form-inputs .comment-input-field input:-moz-placeholder {
  color: #434c58;
  font-size: 12px;
  font-weight: 500;
}

.comment-block .comment-form .container-comment-form .comment-form-inputs .comment-input-field input::placeholder {
  color: #434c58;
  font-size: 12px;
  font-weight: 500;
}

.comment-block .comment-form .container-comment-form .comment-form-cookies-consent {
  display: none !important;
}

.comment-block .comment-form .container-comment-form .comment-form-textarea {
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 25px;
}

.comment-block .comment-form .container-comment-form .comment-form-textarea textarea {
  color: #767e88;
  font-size: 13px;
  font-weight: 500;
  border: none;
  resize: none;
  padding: 30px 40px;
  height: 150px;
  width: 100%;
  line-height: 25px;
}

.comment-block .comment-form .container-comment-form .comment-form-textarea textarea:-moz-placeholder {
  color: #a5b1b7;
  font-size: 18px;
  font-weight: 300;
}

.comment-block .comment-form .container-comment-form .comment-form-textarea textarea::placeholder {
  color: #a5b1b7;
  font-size: 18px;
  font-weight: 300;
}

.comment-block .form-submit {
  position: absolute;
  bottom: 38px;
  left: 38px;
}

.comment-block .form-submit input {
  border: none;
  transition: 0.3s;
  padding: 0 0 0 35px;
  font-size: 16px;
  font-weight: 500;
  background: url(/image/catalog/67ca78e882b1311/sub-comment.svg) center left no-repeat;
  display: inline-block;
}

.comment-block .form-submit input:hover {
  color: #bb9120;
}

.login-page {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background: #bb9120;
  padding-top: 12vh;
  padding-bottom: 100px;
  overflow: hidden;
}

.login-page:after {
  content: "";
  background: url(/image/catalog/67ca78e882b1311/login-bg.png) no-repeat;
  width: 1012px;
  height: 591px;
  position: absolute;
  left: -300px;
  bottom: -100px;
  pointer-events: none;
}

.login-page .user-block {
  margin-bottom: 130px;
}

.login-page .user-block .heading {
  margin-bottom: 45px;
}

.login-page .user-block .heading a img {
  max-width: 100%;
}

.login-page .user-block .heading .switch-page {
  margin-top: 10px;
}

.login-page .user-block .heading .switch-page a {
  padding: 0 35px;
  height: 30px;
  line-height: 30px;
  box-shadow: 0 6px 6px rgba(111, 86, 19, 0.24);
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
  color: #8e7122;
  font-weight: 700;
  transition: 0.3s;
}

.login-page .user-block .heading .switch-page a:hover {
  box-shadow: 0 1px 1px rgba(111, 86, 19, 0.2);
}

.login-page .user-block .register-block {
  max-width: 100%;
  width: 420px;
  margin: auto;
  padding: 0 20px;
}

.login-page .user-block .register-block .login-form input[type=email],
.login-page .user-block .register-block .login-form input[type=password],
.login-page .user-block .register-block .login-form input[type=text] {
  width: 100%;
  height: 56px;
  background-color: #ab8319;
  border-radius: 10px;
  margin-bottom: 15px;
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.login-page .user-block .register-block .login-form input[type=email]::placeholder,
.login-page .user-block .register-block .login-form input[type=password]::placeholder,
.login-page .user-block .register-block .login-form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-page .user-block .register-block .login-form input[type=email]::-webkit-input-placeholder,
.login-page .user-block .register-block .login-form input[type=password]::-webkit-input-placeholder,
.login-page .user-block .register-block .login-form input[type=text]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-page .user-block .register-block .login-form input[type=email]:-webkit-autofill,
.login-page .user-block .register-block .login-form input[type=password]:-webkit-autofill,
.login-page .user-block .register-block .login-form input[type=text]:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 50px #ab8319 inset;
}

.login-page .user-block .register-block .login-form .checkbox-input {
  margin: 20px 0 25px;
  cursor: pointer;
}

.login-page .user-block .register-block .login-form .checkbox-input input {
  display: none;
}

.login-page .user-block .register-block .login-form .checkbox-input input:checked + label:before {
  transition: 0.3s;
  background-size: auto;
}

.login-page .user-block .register-block .login-form .checkbox-input label {
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.login-page .user-block .register-block .login-form .checkbox-input label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-left: 15px;
  border-radius: 5px;
  transition: 0.3s;
  background: url(/image/catalog/67ca78e882b1311/tick_1.svg) center 4px/0 no-repeat;
}

.login-page .user-block .register-block .login-form .submit-input-for-login {
  margin-top: 25px;
}

.login-page .user-block .register-block .login-form .submit-input input[type=submit] {
  height: 56px;
  box-shadow: 0 6px 6px rgba(111, 86, 19, 0.24);
  background-color: #fff;
  padding: 0 30px;
  border-radius: 10px;
  border: none;
  color: #987927;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.login-page .user-block .register-block .login-form .submit-input input[type=submit]:hover {
  box-shadow: 0 1px 1px rgba(111, 86, 19, 0.2);
}

.login-page .user-block .register-block .login-form .submit-input .login-text a {
  font-weight: 700;
}

.login-page .footer-login .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
}

.login-page .footer-login .desc {
  font-weight: 500;
  line-height: 28.73px;
}

.search-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.search-modal .modal-content .modal-header {
  padding: 0;
  border-bottom: none;
  text-align: left;
}

.search-modal .modal-content .modal-header .close span {
  color: #fff;
}

.search-modal .modal-content .search-modal-body {
  padding: 0;
}

.search-modal .modal-content .search-modal-body input[type=text] {
  display: inline-block;
  width: 100%;
  background: #fff;
  height: 55px;
  border: none;
  border-radius: 6px;
  padding: 0 25px 0 60px;
}

.search-modal .modal-content .search-modal-body input[type=submit] {
  background: url(/image/catalog/67ca78e882b1311/sub-comment.svg) center no-repeat;
  position: absolute;
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
  border: none;
}

.icon-statistics {
  cursor: pointer;
}

.table-block tr td .color-down {
  color: #16b62f;
}

.table-block tr td .color-up {
  color: #FF4342;
}

.box-navasan {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

.table-block tr td .unit {
  font-size: 9px;
  margin-right: 3px;
}

.slidepc img,
.slidemobile img {
  width: 100%;
  height: auto;
}

.slidemobile {
  margin: 10px;
}

.slidemobile img {
  border-radius: 12px;
}

.info-site-phone-text {
  display: none;
}

/*# sourceMappingURL=style.css.map */


.container-static-pages img{
    width:600px;
}

.container-static-pages h2{
  margin: 25px;
}

#error-not-found {
    margin: 70px 0;
}

.banner-content .flag img{
    width:150px;
}

.product-info-col .product-details .details-list li span {
    color: rgb(0 0 0);
}

.cart-theme input{
    cursor: default;
    background: #fff !important;
    color: #454545 !important;
    border: 1px solid #eee;
    text-shadow: none;
    box-shadow: none;
}

.cart-theme .p-cart__removeItem{
    
    font-family: 'Font Awesome 5 Pro' !important;
    font-size: 18px !important;
    color: black !important;
    border: 1px solid red !important;
    border-radius: 50% !important;
    padding: 1px 5px !important;
    
}    

.p-cart__removeItem.c-btn__icon.icon-cancel:before {
    content: "\f00d" !important;
}

#deletepr {
    width: 40% !important;
    top: 150px !important;
}
.mainboxbasketcontainer {
    opacity: .4;
    visibility: visible;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000002;
    display: none;
}
.desktopboxbasket .text {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}
.cnbtndel {
    display: flex;
    width: 100%;
    justify-content: center;
}
.btndeleba {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid #707070;
    background: none;
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease;
    width: 110px;
    margin: 0 10px;
    border-color: #0d6efd;
    color: #0d6efd;
    height: 45px;
    border-radius: 22.5px;
}
.btndeleba {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid #707070;
    background: none;
    cursor: pointer;
    transition: background-color .3s ease, color .3s ease;
    width: 125px;
    margin: 0 10px;
    border-color: #0d6efd;
    color: #0d6efd;
    height: 45px;
    border-radius: 22.5px;
}
.desktopboxbasket {
    opacity: 1;
    text-align: center;
    z-index: 10000003;
    position: absolute !important;
    right: 0;
    top: 110px !important;
    width: 40%;
    border-radius: 20px;
    background-color: #fff;
    height: max-content;
    left: 0;
    display: none;
    margin: auto;
}
.paddelp {
    padding: 20px 90px;
}

.form-standard-actions .form-actions .form-submit {
    background-color:var(--config_color_1);
}   
.form-standard-actions .form-actions .form-submit:hover {
    background-color: var(--config_color_1);
}
.form-standard, .page-user-reset #change-pwd-page-user-pass-reset {
    margin: 22px 0 0 0;
}

.address-list {
     margin: 22px 0 0 0;  
     
}
.address-item .address-item-cta .btn.btn-outline-secondary {
        border: 1px solid var(--config_color_1);
    }
    
.address-item .address-item-cta .btn.btn-outline-secondary {
    color: var(--config_color_1);
}    


.custombasket-theme span {
    color: #657177;
    font-size: 12px;
    font-weight: 400;
    transition: 0.3s;
}
.custombasket-theme .badge-1 {
   margin-bottom: 10px;
    background: #212529;
    color: white !important;
    border-radius: 10px;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
}

/**/
.page-header .header-menu-right {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 1rem;
}

.page-header .container-fluid {
    /*padding-right: 14rem;*/
    /*padding-left: 14rem;*/
}


/*button number footer*/
 /* دکمه نمایش منو - فیکس */
    #toggleButton {
      position: fixed;
    top: 75%;
    right: 0;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    background-color: #ffb000;
    border: 1px solid #ffb000;
    border-radius: 10px;
    font-weight: 900;
    }

    /* منو کشویی */
    #menu {
      position: fixed;
      top: 48%;
      right: -312px;
      width: 300px;
      height: 35vh;
      background-color: #ffffff;
      box-shadow: -2px 0 5px rgba(0,0,0,0.2);
      padding: 10px 20px;
      box-sizing: border-box;
      transition: right 0.3s ease;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      align-items: center;
    justify-content: space-around;
    }

    #menu.open {
      right: 0;
      top:48%;
    }

    /* آیکن بستن */
    #closeButton {
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      margin-bottom: 20px;
      color: #444;
      margin: 0;
    }

    

    /* رسپانسیو */
    @media (max-width: 480px) {
      #menu {
        width: 150px;
        right: -170px;
        padding: 15px;
      }

      #toggleButton {
        padding: 8px 15px;
        font-size: 14px;
        top: 15px;
        right: 15px;
      }

      #closeButton {
        font-size: 20px;
      }

    }
    
    .text-savemobile p {
    margin: 0 0 6%;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}

#ctaphone {
    border: 1px solid #ffb000 !important;
    text-align: end;
    height: 34px;
    width: 100%;
}

.disfl {
    border-radius: 10px;
    border: 1px solid #ffb000;
    color: white;
    background: #ffb000;
    padding: 5px;
    margin: 1rem 0;
    font-size: 17px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
  