/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.2s;
    box-shadow: none; }
.pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
.pswp__button:active {
    outline: none;
    opacity: 0.9; }
.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
    opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url("/vendor/photoswipe/default-skin.png") 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px; }

@media (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
    /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
    .pswp--svg .pswp__button,
    .pswp--svg .pswp__button--arrow--left:before,
    .pswp--svg .pswp__button--arrow--right:before {
        background-image: url("/vendor/photoswipe/default-skin.svg"); }
    .pswp--svg .pswp__button--arrow--left,
    .pswp--svg .pswp__button--arrow--right {
        background: none; } }

.pswp__button--close {
    background-position: 0 -44px; }

.pswp__button--share {
    background-position: -44px -44px; }

.pswp__button--fs {
    display: none; }

.pswp--supports-fs .pswp__button--fs {
    display: block; }

.pswp--fs .pswp__button--fs {
    background-position: -44px 0; }

.pswp__button--zoom {
    display: none;
    background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
    display: block; }

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute; }

.pswp__button--arrow--left {
    left: 0; }

.pswp__button--arrow--right {
    right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: '';
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute; }

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px; }

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity; }

.pswp__share-modal--hidden {
    display: none; }

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform 0.25s;
    -webkit-backface-visibility: hidden;
    will-change: transform; }
.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000; }
.pswp__share-tooltip a:first-child {
    /* round corners on the first/last list item */
    border-radius: 2px 2px 0 0; }
.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
    opacity: 1; }
.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px; }

a.pswp__share--facebook:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none; }

a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF; }
a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF; }

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D; }

a.pswp__share--download:hover {
    background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: 0.75;
    padding: 0 10px; }

/*

	4. Caption

 */
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px; }
.pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC; }

.pswp__caption--empty {
    display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
    visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr; }

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px; }

.pswp__preloader--active {
    opacity: 1; }
.pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url("/vendor/photoswipe/preloader.gif") 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
    opacity: 1; }
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    animation: clockwise 500ms linear infinite; }
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
    /*
              The idea of animating inner circle is based on Polymer ("material") loading indicator
               by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
          */
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0; }

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right; } }

@keyframes clockwise {
    0% {
        transform: rotate(0deg); }
    100% {
        transform: rotate(360deg); } }

@keyframes donut-rotate {
    0% {
        transform: rotate(0); }
    50% {
        transform: rotate(-140deg); }
    100% {
        transform: rotate(0); } }

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible; }

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
    opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none; }

.pswp__element--disabled {
    display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
    background: none; }

/* Text Fonts */
.theme-main-title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.theme-main-title-wrapper .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.theme-main-title-wrapper .title .icon {
  font-size: 1.7rem;
  margin-left: 20px;
  opacity: 0.5;
  display: block;
  color: #00AAB2;
}
.theme-main-title-wrapper .title h1 {
  font-size: 1.5rem;
}
.theme-main-title-wrapper .title .search-title {
  flex-basis: 100%;
  margin-top: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  font-family: MikhakVF, Tahome, serif;
  font-weight: 550;
  color: #b1b1b1;
}
.theme-main-title-wrapper .title .search-title:hover .search-icon {
  background: #B58181;
}
.theme-main-title-wrapper .title .search-title:hover .term {
  transition: all ease 0.25s;
  color: #B58181;
}
.theme-main-title-wrapper .title .search-title .search-icon {
  margin-left: 10px;
  background: #cdcdcd;
  color: white;
  width: 30px;
  font-size: 0.95rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 100%;
  transition: all ease 0.25s;
}
.theme-main-title-wrapper .extra {
  margin-right: auto;
  color: #00AAB2;
  font-weight: 500;
}
.theme-main-title-wrapper .extra.count-page {
  display: flex;
  align-items: center;
  align-self: flex-end;
  font-size: 0.9rem;
  color: #b1b1b1;
}
.theme-main-title-wrapper .extra.count-page .count {
  margin-right: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #00AAB2;
  min-width: 88px;
  text-align: left;
}

.theme-products-wrapper {
  background-color: #F5F5F5;
  overflow: hidden;
}
.theme-products-wrapper #filter_sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  font-size: 0.9rem;
  margin-bottom: 2px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: none;
  background-color: #FFF;
}
.theme-products-wrapper #filter_sort .label {
  margin-left: 20px;
  display: inline-block;
  font-family: MikhakVF, Tahoma, serif;
  color: #95b9bb;
  font-size: 0.8rem;
}
.theme-products-wrapper #filter_sort .label .icon {
  color: #b4d7d9;
  vertical-align: middle;
  margin-left: 5px;
}
.theme-products-wrapper #filter_sort .options-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.theme-products-wrapper #filter_sort .options-wrapper .option {
  cursor: pointer;
  font-size: 0.8rem;
}
.theme-products-wrapper #filter_sort .options-wrapper .option:hover {
  color: #509295;
}
.theme-products-wrapper #filter_sort .options-wrapper .option.selected {
  background-color: #00AAB2;
  color: white;
  padding: 0 6px;
  border-radius: 3px;
}
.theme-products-wrapper #filter_sort .options-wrapper .option .switch {
  width: 30px;
  height: 15px;
  margin-left: 5px;
}
.theme-products-wrapper #filter_sort .options-wrapper .option .switch small {
  width: 15px;
  height: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.theme-products-wrapper #filter_sort .options-wrapper .option label {
  cursor: pointer;
}
.theme-products-wrapper #filter_sort .filter .option {
  margin-left: 25px !important;
}
.theme-products-wrapper .products-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #F5F5F5;
  grid-gap: 2px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  transition: filter ease 0.25s;
}
.theme-products-wrapper .products-list.loading {
  pointer-events: none;
}
.theme-products-wrapper .products-list .product-group {
  background-color: #FFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.theme-products-wrapper .products-list .product-group .discount {
  background: #fb3052;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 14px 5px 7px;
  position: absolute;
  border-radius: 0 0 30px 0;
  z-index: 1;
  top: 0;
  direction: ltr;
  left: 0;
  letter-spacing: 1px;
  box-shadow: 0 7px 7px rgba(251, 48, 82, 0.3);
}
.theme-products-wrapper .products-list .product-group .img-wrapper {
  padding: 20px;
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.theme-products-wrapper .products-list .product-group .img-wrapper:hover img {
  transform: scale(1.05);
  filter: opacity(0.85);
}
.theme-products-wrapper .products-list .product-group .img-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.3s ease;
}
.theme-products-wrapper .products-list .product-group .img-wrapper img[loading=lazy] {
  opacity: 0;
}
.theme-products-wrapper .products-list .product-group .img-wrapper img.lzed {
  opacity: 1;
}
.theme-products-wrapper .products-list .product-group .text-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .title {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  max-height: 45px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 15px;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper {
  padding: 10px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group {
  margin: 0 5px;
  font-family: MikhakVF, Tahoma, serif;
  color: #b7b7b7;
  font-size: 0.85rem;
  white-space: nowrap;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group b {
  color: #7a7a7a;
  font-weight: bold;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group.brand {
  transition: all ease 0.25s;
  border-bottom: 1px solid transparent;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group.brand:hover {
  font-weight: 500;
  border-bottom: 1px dashed #00AAB2;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group.brand:hover b {
  color: #00AAB2;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group.count-per-package {
  padding-right: 10px;
  position: relative;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group.count-per-package::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  border-radius: 100px;
  right: 0;
  background: #63c2c7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.theme-products-wrapper .products-list .product-group .text-wrapper .flex-wrapper {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  padding: 0 20px 15px;
  margin-top: auto;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper {
  color: #00AAB2;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  gap: 5px;
  align-items: center;
  flex: 1 1;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .toman-label {
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .toman-label .toman-glyph {
  font-size: 1.4rem;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .previous-price {
  position: relative;
  color: #c95757;
  font-size: 0.95rem;
  margin-right: 7px;
  font-weight: 500;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .previous-price::after {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  background: url(/img/price-line-through.svg) no-repeat center/contain;
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .show-price-btn {
  font-size: 0.7rem;
  padding: 3px 8px;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .show-price-btn .icon {
  opacity: 1;
  margin-left: 3px;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .add-to-cart-btn {
  padding: 4px 8px;
  display: flex;
  align-items: center;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .status {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  font-size: 0.8rem;
  margin-top: auto;
  font-weight: 500;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .status .icon {
  margin-left: 12px;
  font-size: 1rem;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .status.coming-soon {
  background-color: #d4e9f3;
  border-top: 1px solid #c7dbe4;
  border-bottom: 1px solid #c7dbe4;
  color: #004c90;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .status.out-of-stock {
  background-color: #fbe9ec;
  border-top: 1px solid #f1dfe2;
  border-bottom: 1px solid #f1dfe2;
  color: #b90000;
}
.theme-products-wrapper .products-list .product-group .text-wrapper .status.production-stopped {
  background-color: #e5e5e5;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  color: #747474;
}
.theme-products-wrapper .products-list .loading-placeholder {
  overflow: hidden;
  background-color: #FFF;
  padding: 20px;
  position: relative;
}
.theme-products-wrapper .products-list .loading-placeholder::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 180%;
  margin-left: -90%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;
  animation: moving_reflection 0.9s linear infinite;
  pointer-events: none;
}
.theme-products-wrapper .products-list .loading-placeholder .img-wrapper {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border-radius: 7px;
  padding: 30px;
  margin: 0 auto 35px;
}
.theme-products-wrapper .products-list .loading-placeholder .img-wrapper::after {
  content: "";
  display: block;
  background: url(/img/logo.svg?v=2) no-repeat;
  filter: grayscale(1) opacity(0.2);
  width: 100%;
  height: 100%;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .title {
  width: 80%;
  height: 18px;
  margin: 0 auto 16px;
  background-color: #efefef;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .meta-wrapper {
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 14px;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .meta-wrapper .meta-group {
  width: 27%;
  height: 13px;
  background-color: #efefef;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .price-wrapper .price {
  height: 18px;
  width: 40%;
  background-color: #daeaea;
}
.theme-products-wrapper .products-list .loading-placeholder .text-wrapper .price-wrapper .btn {
  height: 18px;
  width: 14%;
  border-radius: 5px;
  background-color: #daeaea;
}
.theme-products-wrapper .products-list .no-product-wrapper {
  grid-column: -1/1;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 50px;
}
.theme-products-wrapper .products-list .no-product-wrapper img {
  max-width: 180px;
}
.theme-products-wrapper .products-list .no-product-wrapper .text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #c0d1d2;
}
.theme-products-wrapper #pagination_wrapper {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 25px;
  text-align: center;
  box-shadow: none;
  background-color: #FFF;
}
.theme-products-wrapper #pagination_wrapper #pagination_list {
  display: flex;
  width: 100%;
  gap: 14px;
  justify-content: center;
}
.theme-products-wrapper #pagination_wrapper #pagination_list li {
  padding: 5px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all ease 0.25s;
}
.theme-products-wrapper #pagination_wrapper #pagination_list li:hover {
  background-color: #F5F5F5;
}
.theme-products-wrapper #pagination_wrapper #pagination_list li.active {
  background-color: #00AAB2;
  color: white;
}
.theme-products-wrapper #pagination_wrapper #pagination_list li.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.theme-category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f0f0f1;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.03);
  padding: 16px 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.theme-category-item:hover .img-wrapper {
  transform: scale(1.1);
}
.theme-category-item.show-more .count {
  font-weight: bold;
  font-size: 1.4rem;
}
.theme-category-item.show-more .subtitle {
  font-size: 0.9rem;
  color: #9c9c9c;
  font-weight: normal;
}
.theme-category-item .img-wrapper {
  max-width: 96px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 7px;
  transition: all ease 0.3s;
}
.theme-category-item .img-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 22, 0.06);
}
.theme-category-item .img-wrapper img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.3s ease;
}
.theme-category-item .img-wrapper img[loading=lazy] {
  opacity: 0;
}
.theme-category-item .img-wrapper img.lzed {
  opacity: 1;
}
.theme-category-item .title-count {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.theme-category-item .title-count .count {
  font-weight: bold;
  color: #00aab2;
  font-size: 0.8rem;
  margin-right: 3px;
}

.theme-list-with-search #search_wrapper {
  position: relative;
  max-width: 600px;
  margin: 10px auto 30px;
}
.theme-list-with-search #search_wrapper input {
  padding: 10px 45px 10px 10px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  color: #00AAb2;
}
.theme-list-with-search #search_wrapper input::-moz-placeholder {
  font-family: MikhakVF, Tahoma, serif;
  font-weight: normal;
  text-align: right;
}
.theme-list-with-search #search_wrapper input::placeholder {
  font-family: MikhakVF, Tahoma, serif;
  font-weight: normal;
  text-align: right;
}
.theme-list-with-search #search_wrapper input:focus + .search-icon {
  color: #00AAB2;
  transform: translateY(-50%) rotateY(180deg) scale(1.2);
}
.theme-list-with-search #search_wrapper .search-icon {
  position: absolute;
  right: 20px;
  color: silver;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.theme-list-with-search #search_wrapper .clear-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  color: #cfc4c4;
}
.theme-list-with-search #search_wrapper .clear-btn:hover {
  color: #cd4b4b;
}
.theme-list-with-search #no_result_wrapper {
  display: none;
  grid-column: -1/1;
}
.theme-list-with-search #no_result_wrapper .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px 0;
}
.theme-list-with-search #no_result_wrapper img {
  max-width: 200px;
}
.theme-list-with-search #no_result_wrapper .text {
  margin-top: 25px;
  font-weight: 500;
  font-size: 1.2rem;
  color: #c0d1d2;
}

.theme-post-group {
  background-color: #FFF;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 15px 50px;
}
.theme-post-group .img-wrapper {
  flex: 0 0 35%;
  overflow: hidden;
  border-radius: 5px;
}
.theme-post-group .img-wrapper img {
  width: 100%;
  display: block;
  transition: all ease 0.4s;
}
.theme-post-group .img-wrapper:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}
.theme-post-group .text-wrapper {
  flex: 0 0 60%;
  overflow: hidden;
}
.theme-post-group .text-wrapper .title {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  transition: all ease 0.25s;
}
.theme-post-group .text-wrapper .meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}
.theme-post-group .text-wrapper .meta .meta-group {
  font-size: 0.8em;
  color: #ababab;
}
.theme-post-group .text-wrapper .meta .meta-group .icon {
  color: #D9D9D9;
}
.theme-post-group .text-wrapper .body {
  color: #999;
  font-family: MikhakVF, Tahoma, serif;
  font-size: 0.85rem;
}

.theme-pagination-wrapper {
  margin: 40px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme-pagination-wrapper ul {
  max-width: 100%;
  overflow-x: auto;
}
.theme-pagination-wrapper ul li {
  margin: 0 5px 10px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: #E8EAEA;
  border-radius: 10px;
  font-weight: 500;
  transition: all ease 0.3s;
}
.theme-pagination-wrapper ul li:hover {
  background: #D5E3E3;
}
.theme-pagination-wrapper ul li.active {
  background: #3aaab2;
  color: white;
  pointer-events: none;
}
.theme-pagination-wrapper ul li a.page-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-hyperlink {
  color: #00AAB2;
  border-bottom: 1px dashed #66c1c6;
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
.theme-hyperlink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
.theme-hyperlink:hover, .theme-hyperlink:focus {
  border: none;
  color: #49A1A6;
}
.theme-hyperlink:hover::after, .theme-hyperlink:focus::after {
  transform: scaleX(1);
}

.theme-breadcrumbs {
  display: flex;
  align-items: center;
  margin: 30px 0 22px;
  gap: 15px;
}
.theme-breadcrumbs li {
  align-items: center;
  display: flex;
}
.theme-breadcrumbs li:not(:last-child)::after {
  color: #b7dee0;
  font-size: 0.6rem;
  margin-right: 15px;
  display: inline-block;
  content: "\e913";
  font-family: "avayemehr-font-icons", serif !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.theme-breadcrumbs li a {
  color: #949494;
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  font-family: MikhakVF, Tahoma, serif;
  transition: all ease 0.25s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.theme-breadcrumbs li a:hover {
  color: #5A5A5A;
}
.theme-breadcrumbs li a:hover .icon {
  color: #00AAB2;
  transform: scale(1.2);
}
.theme-breadcrumbs li a .icon {
  margin-left: 7px;
  color: #c7c7c7;
  font-size: 1rem;
  transition: all ease 0.25s;
}

.theme-under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 60px;
}
.theme-under-construction img {
  width: 80%;
  max-width: 430px;
}
.theme-under-construction p {
  font-weight: bold;
  font-size: 1.5rem;
  color: #00aab2;
  margin-bottom: 30px;
}

.theme-short-link {
  align-items: center;
  border: 1px solid #e7e7e7;
  border-radius: 100px;
  display: flex;
  gap: 6px;
  max-width: 250px;
  overflow: hidden;
  padding: 1px 12px;
  font-weight: 450;
  font-style: italic;
  color: #b1b1b1;
  white-space: nowrap;
  transition: all ease 0.25s;
  cursor: pointer;
}
.theme-short-link:hover {
  color: #0d8d93;
}
.theme-short-link .copy-btn {
  margin: 0;
  padding-inline: 10px 5px;
}
.theme-short-link .copy-btn:hover {
  color: #317ca7;
}

.theme-edit-btn-floated {
  position: fixed;
  left: 0;
  bottom: 70px;
  z-index: 3;
  font-size: 1.2rem;
  gap: 10px;
  transform: translateX(-65px);
  transition: all ease 0.25s;
  color: #317CA7 !important;
  background-color: rgba(92, 172, 231, 0.168627451) !important;
}
.theme-edit-btn-floated:hover {
  transform: translateX(0);
  border-radius: 0 5px 5px 0;
  background-color: #1b77be !important;
  color: white !important;
}

#bottom_sticky_bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  align-self: center;
  justify-content: space-evenly;
  color: #ABABAB;
  background: white;
  box-shadow: 0 -2px 16px 0px rgba(73, 73, 80, 0.27);
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 300;
  z-index: 5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#bottom_sticky_bar .item {
  padding: 7px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ABABAB;
  gap: 1px;
  position: relative;
}
#bottom_sticky_bar .item.cart .count {
  background: #00AAB2;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  position: absolute;
  left: 20%;
  top: 6%;
  font-size: 0.6rem;
  font-weight: bold;
}
#bottom_sticky_bar .item .icon {
  color: #C5C5C5;
  font-size: 1rem;
}

@media all and (max-width: 1400px) {
  .theme-products-wrapper .products-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media all and (max-width: 1200px) {
  .theme-products-wrapper .products-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .theme-post-group {
    padding: 15px;
  }
  .theme-post-group .text-wrapper .title {
    white-space: unset;
  }
  .theme-post-group .text-wrapper .meta-group.reading-time {
    display: none;
  }
}
@media all and (max-width: 992px) {
  .theme-main-title-wrapper .title h1 {
    font-size: 1.25rem;
  }
  .theme-main-title-wrapper .title .icon {
    font-size: 1.5rem;
  }
  .theme-main-title-wrapper .extra.count-page {
    font-size: 0.8rem;
  }
  .theme-main-title-wrapper .extra.count-page .count {
    font-size: 0.9rem;
    min-width: 78px;
  }
  .theme-products-wrapper #filter_sort {
    padding: 10px 15px;
  }
  .theme-products-wrapper #filter_sort .label {
    display: block;
    font-size: 0.7rem;
  }
  .theme-products-wrapper #filter_sort .options-wrapper .option {
    font-size: 0.7rem;
  }
  .theme-products-wrapper .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .theme-products-wrapper .products-list .no-product-wrapper {
    padding-block: 30px;
  }
  .theme-products-wrapper .products-list .no-product-wrapper img {
    max-width: 120px;
  }
  .theme-products-wrapper .products-list .no-product-wrapper .text {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  .theme-products-wrapper #pagination_wrapper #pagination_list {
    gap: 10px;
  }
  .theme-products-wrapper #pagination_wrapper #pagination_list li {
    font-size: 1rem;
    padding: 5px 10px;
  }
  .theme-category-item .title-count {
    font-size: 0.85rem;
  }
  .theme-category-item .title-count .count {
    font-size: 0.7rem;
  }
  .theme-list-with-search #search_wrapper {
    max-width: unset;
    margin: 20px 0 25px;
  }
  .theme-list-with-search #no_result_wrapper .flex-wrapper {
    padding: 30px 0;
  }
  .theme-list-with-search #no_result_wrapper img {
    max-width: 140px;
  }
  .theme-list-with-search #no_result_wrapper .text {
    margin-top: 20px;
    font-size: 1rem;
  }
  .theme-post-group {
    padding: 12px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .theme-post-group .img-wrapper {
    flex-basis: auto;
    margin-bottom: 20px;
  }
  .theme-post-group .text-wrapper {
    flex-basis: auto;
  }
  .theme-post-group .text-wrapper .title {
    font-size: 1rem;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .theme-post-group .text-wrapper .meta-group {
    font-size: 0.75rem;
  }
  .theme-post-group .text-wrapper .meta-group.reading-time {
    display: block;
  }
  .theme-post-group .text-wrapper .body {
    margin-block: 15px;
  }
  .theme-breadcrumbs {
    gap: 10px;
  }
  .theme-breadcrumbs li a {
    font-size: 0.7rem;
  }
  .theme-breadcrumbs li a::after {
    margin-right: 10px;
  }
  .theme-breadcrumbs li a .icon {
    font-size: 0.85rem;
  }
  .theme-short-link {
    margin-inline: auto;
    min-width: 70%;
    justify-content: center;
    padding: 7px 12px;
    font-size: 0.9rem;
  }
  .theme-short-link .copy-btn {
    padding: 0;
  }
}
@media all and (max-width: 768px) {
  .theme-main-title-wrapper {
    margin: 10px 0 15px;
  }
  .theme-main-title-wrapper .title h1 {
    font-size: 1.1rem;
  }
  .theme-main-title-wrapper .title .icon {
    margin-left: 10px;
  }
  .theme-main-title-wrapper .title .search-title {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .theme-main-title-wrapper .title .search-title .search-icon {
    width: 25px;
    font-size: 0.8rem;
  }
  .theme-main-title-wrapper .extra.count-page {
    font-size: 0.75rem;
  }
  .theme-main-title-wrapper .extra.count-page .page {
    white-space: nowrap;
  }
  .theme-main-title-wrapper .extra.count-page .count {
    white-space: nowrap;
    font-size: 0.85rem;
    min-width: 65px;
    margin-right: 5px;
  }
  .public-page {
    padding-top: 60px;
  }
  .theme-products-wrapper #filter_sort {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .theme-products-wrapper #filter_sort #filter,
  .theme-products-wrapper #filter_sort #sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .theme-products-wrapper #filter_sort .options-wrapper .option {
    font-size: 0.65rem;
  }
  .theme-products-wrapper .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .theme-products-wrapper .products-list .product-group .img-wrapper {
    padding: 12px;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .title {
    font-size: 0.85rem;
    padding: 0 12px;
    line-height: 1.7;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper {
    padding: 7px 15px 5px;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .meta-wrapper .meta-group {
    font-size: 0.75rem;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper {
    font-size: 1.05rem;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .toman-label {
    margin: 0;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .price-wrapper .previous-price {
    font-size: 0.9rem;
    margin-right: 5px;
  }
  .theme-products-wrapper .products-list .product-group .text-wrapper .flex-wrapper {
    padding: 12px;
  }
  .theme-products-wrapper #pagination_wrapper {
    overflow-x: auto;
  }
  .theme-products-wrapper #pagination_wrapper #pagination_list {
    gap: 10px;
    margin-inline: 40px;
  }
  .theme-products-wrapper #pagination_wrapper #pagination_list li {
    padding: 5px 15px;
  }
  .theme-category-item.show-more .subtitle {
    font-size: 0.7rem;
  }
  .theme-category-item .title-count {
    font-size: 0.7rem;
  }
  .theme-category-item .title-count .count {
    font-size: 0.7rem;
  }
  .theme-list-with-search #search_wrapper {
    margin: 20px auto 30px;
  }
  .theme-list-with-search #search_wrapper input {
    padding: 10px 45px 10px 10px;
    font-size: 1rem;
  }
  .theme-list-with-search #search_wrapper .clear-btn {
    left: 10px;
  }
  .theme-list-with-search #search_wrapper input::-moz-placeholder {
    font-size: 0.9rem;
    text-align: center;
  }
  .theme-list-with-search #search_wrapper input::placeholder {
    font-size: 0.9rem;
    text-align: center;
  }
  .theme-list-with-search #no_result_wrapper img {
    max-width: 140px;
  }
  .theme-list-with-search #no_result_wrapper .text {
    margin-top: 20px;
    font-size: 1rem;
  }
  .theme-post-group .text-wrapper .title {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  .theme-post-group .text-wrapper .meta {
    margin-bottom: 5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
  .theme-post-group .text-wrapper .meta .meta-group {
    font-size: 0.7em;
  }
  .theme-post-group .text-wrapper .body {
    margin-block: 5px;
    font-size: 0.7rem;
    max-height: 47px;
  }
  .theme-breadcrumbs {
    margin: 12px 0 14px;
    overflow-x: auto;
    padding: 0 0 20px 20px;
  }
  .theme-short-link {
    min-width: 85%;
    padding: 8px 12px;
    font-size: 0.95rem;
  }
  #bottom_sticky_bar {
    display: flex;
  }
}
header {
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 10px -8px rgba(0, 0, 0, 0.7411764706);
  margin-bottom: 25px;
}
header .nav-section {
  background-color: #00AAB2;
}
header .nav-section nav {
  display: flex;
  align-items: center;
}
header .nav-section nav a {
  padding: 9px 8px;
  margin: 0 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ddefef;
}
header .nav-section nav a:hover {
  color: #FFF;
}
header .middle-section {
  background-color: #FFF;
  padding: 10px 0;
}
header .middle-section .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .middle-section .logo-search {
  display: flex;
  flex: 1 1;
  align-items: center;
  max-width: 520px;
}
header .middle-section .logo-search .logo-wrapper {
  width: 100px;
  display: flex;
  margin-left: 35px;
  transition: all ease 0.3s;
}
header .middle-section .logo-search .logo-wrapper:hover {
  transform: scale(1.1);
}
header .middle-section .logo-search .search-wrapper {
  position: relative;
  flex: 1 1 340px;
}
header .middle-section .logo-search .search-wrapper input {
  padding: 0.35rem 40px 0.35rem 0.8rem;
  font-size: 0.95rem;
  color: #139ea5;
  font-weight: bold;
}
header .middle-section .logo-search .search-wrapper input::-moz-placeholder {
  font-weight: 300;
  font-size: 0.9rem;
}
header .middle-section .logo-search .search-wrapper input::placeholder {
  font-weight: 300;
  font-size: 0.9rem;
}
header .middle-section .logo-search .search-wrapper input:focus ~ .search-icon {
  color: #00AAB2;
  transform: translateY(-50%) rotateY(180deg);
}
header .middle-section .logo-search .search-wrapper input:focus ~ .submit-btn {
  display: flex;
  opacity: 0.6;
}
header .middle-section .logo-search .search-wrapper .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #CDCDCD;
  transition: all ease 0.3s;
}
header .middle-section .logo-search .search-wrapper .submit-btn {
  width: 20px;
  height: 20px;
  font-size: 0.65rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  opacity: 0;
  display: none;
}
header .middle-section .logo-search .search-wrapper .submit-btn:hover {
  opacity: 1;
}
header .middle-section .auth-cart {
  display: flex;
  align-items: center;
}
header .middle-section .auth-cart .authentication-wrapper {
  margin-left: 30px;
  position: relative;
  padding: 8px;
}
header .middle-section .auth-cart .authentication-wrapper:hover .dropdown-menu-wrapper {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header .middle-section .auth-cart .authentication-wrapper .auth-btn {
  display: flex;
  font-size: 0.9rem;
  align-items: center;
  white-space: nowrap;
}
header .middle-section .auth-cart .authentication-wrapper .auth-btn .avatar-icon {
  width: 18px;
  color: silver;
  font-size: 1.1rem;
}
header .middle-section .auth-cart .authentication-wrapper .auth-btn .title {
  margin: 0 10px;
  color: #5b7e7f;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper {
  opacity: 0;
  position: absolute;
  padding-top: 13px;
  top: 40px;
  left: -20px;
  z-index: 300;
  text-align: right;
  width: 210px;
  transition: all ease 0.25s;
  transform: translateY(-25px);
  pointer-events: none;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu {
  display: block;
  flex-direction: column;
  z-index: 100;
  top: 50px;
  right: -10px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu::before {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 0;
  border-bottom: 0;
  content: " ";
  display: block;
  height: 11px;
  pointer-events: none;
  position: absolute;
  transform: rotate(-45deg);
  width: 11px;
  background-color: #f5f4f4;
  top: 7px;
  left: 35px;
  z-index: -50;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f4f4;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all ease-in-out 0.1s;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item:hover {
  background-color: #E6E5E5;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item .icon {
  color: #9c9e9e;
  margin-left: 8px;
  vertical-align: middle;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item .btn {
  padding: 15px 25px;
  font-size: 0.9em;
  width: 100%;
  text-align: right;
  background: transparent;
}
header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item .btn:focus {
  box-shadow: none;
}
header .middle-section .auth-cart .cart-btn {
  padding: 0;
  display: flex;
  align-items: center;
}
header .middle-section .auth-cart .cart-btn .icon-count {
  padding: 9px 22px 9px 13px;
  display: inline-flex;
  border-left: 1px solid rgba(0, 0, 0, 0.1098039216);
  position: relative;
}
header .middle-section .auth-cart .cart-btn .icon-count .cart-icon {
  font-size: 1.5rem;
  color: #189058;
}
header .middle-section .auth-cart .cart-btn .icon-count .count {
  background-color: rgba(255, 255, 255, 0.8588235294);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  color: #20A767;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 7px;
  top: 7px;
}
header .middle-section .auth-cart .cart-btn .total {
  padding: 9px 13px;
  font-size: 0.8rem;
  font-weight: 300;
}
header .middle-section .auth-cart .cart-btn .total .amount {
  font-weight: 500;
  font-size: 1rem;
  margin-left: 5px;
  min-width: 70px;
  display: inline-block;
  letter-spacing: 1px;
}
header .middle-section .auth-cart .cart-btn .empty-title {
  padding: 9px 13px;
  font-weight: 500;
  font-size: 0.85rem;
}
header .middle-section .auth-cart .cart-btn .empty-title i {
  font-weight: 300;
  margin-right: 3px;
  font-size: 0.7rem;
  font-style: normal;
}
header .categories-section {
  background-color: #F5F5F5;
}
header .categories-section .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .categories-section .categories-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .categories-section .categories-list .header-category-group {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 6px;
  white-space: nowrap;
}
header .categories-section .categories-list .header-category-group:hover:nth-of-type(even) .icon {
  transform: scale(1.1) rotate(10deg);
}
header .categories-section .categories-list .header-category-group:hover:nth-of-type(odd) .icon {
  transform: scale(1.1) rotate(-10deg);
}
header .categories-section .categories-list .header-category-group:hover .icon {
  color: #00AAB2;
}
header .categories-section .categories-list .header-category-group:first-of-type {
  position: relative;
  padding: 14px 6px 14px 20px;
}
header .categories-section .categories-list .header-category-group:first-of-type::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #DDD;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .categories-section .categories-list .header-category-group:first-of-type:hover .icon {
  transform: scale(1.1) !important;
}
header .categories-section .categories-list .header-category-group:first-of-type .icon {
  color: #00AAB2 !important;
}
header .categories-section .categories-list .header-category-group .icon {
  font-size: 1.4rem;
  color: silver;
  margin-left: 4px;
  vertical-align: middle;
  transition: all ease 0.3s;
}
header .categories-section .discounts-btn {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 5px 10px;
  white-space: nowrap;
}
header .categories-section .discounts-btn .icon {
  opacity: 1;
  font-size: 1.3rem;
}
header #top_sticky_bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 48px;
  background-color: #00AAB2;
  color: white;
  align-items: center;
  justify-content: space-between;
  z-index: 110;
  padding: 0 10px;
  box-shadow: 0 2px 16px 0px rgba(73, 80, 79, 0.27);
  display: none;
}
header #top_sticky_bar .toggle-btn {
  font-size: 1.5rem;
  padding: 10px;
}
header #top_sticky_bar .toggle-btn .icon {
  display: block;
}
header #top_sticky_bar .search-btn {
  margin-inline: 4px auto;
  transform: scaleX(-1);
  width: 40px;
  font-size: 1.1rem;
  display: grid;
  height: 80%;
  place-items: center end;
}
header #top_sticky_bar .logo-wrapper {
  width: 78px;
  padding: 0 10px;
}
header #top_sticky_bar .logo-wrapper img {
  display: block;
}
header #top_sticky_bar .search-wrapper-sticky {
  background: rgb(0, 170, 178);
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: 48px;
  right: 0;
  left: 0;
}
header #top_sticky_bar .search-wrapper-sticky .inner {
  padding: 10px 25px 20px;
  position: relative;
}
header #top_sticky_bar .search-wrapper-sticky .inner input {
  padding: 0.35rem 40px 0.35rem 0.8rem;
  font-size: 0.95rem;
  color: #139ea5;
  font-weight: bold;
}
header #top_sticky_bar .search-wrapper-sticky .inner input::-moz-placeholder {
  font-weight: 300;
  font-size: 0.9rem;
}
header #top_sticky_bar .search-wrapper-sticky .inner input::placeholder {
  font-weight: 300;
  font-size: 0.9rem;
}
header #top_sticky_bar .search-wrapper-sticky .inner input:focus ~ .search-icon {
  color: #00AAB2;
  transform: translateY(-50%) rotateY(180deg);
}
header #top_sticky_bar .search-wrapper-sticky .inner .search-icon {
  position: absolute;
  right: 38px;
  top: 42%;
  transform: translateY(-50%);
  color: #CDCDCD;
  transition: all ease 0.3s;
}
header #top_sticky_bar .search-wrapper-sticky .inner .submit-btn {
  width: 30px;
  height: 43%;
  font-size: 0.65rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 29px;
  top: 42%;
  transform: translateY(-50%);
  display: flex;
  background: #a5956a;
  color: white;
}
header #side_menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
}
header #side_menu .backdrop {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6588235294);
  opacity: 0;
}
header #side_menu.open {
  pointer-events: auto;
}
header #side_menu.open .backdrop {
  opacity: 1;
  pointer-events: auto;
}
header #side_menu.open .menu-wrapper {
  right: 0;
}
header #side_menu .menu-wrapper {
  padding-bottom: 18px;
  background: white;
  width: 300px;
  position: absolute;
  top: 48px;
  right: -300px;
  bottom: 0;
  overflow-y: auto;
  transition: right cubic-bezier(0, 0, 0, 1.19) 0.3s;
}
header #side_menu .menu-wrapper .logo-wrapper {
  display: block;
  padding-block: 18px;
  margin-bottom: -18px;
  width: 90%;
  margin-inline: auto;
}
header #side_menu .menu-wrapper .logo-wrapper img {
  width: 90px;
  display: block;
}
header #side_menu .menu-wrapper .nav-group .nav-title {
  font-weight: bold;
  padding: 5px 20px 20px;
  color: #2f2f2f;
}
header #side_menu .menu-wrapper .nav-group .nav-item {
  display: block;
  padding: 15px 20px;
  color: #424750;
  font-weight: 500;
  font-size: 0.9rem;
}
header #side_menu .menu-wrapper .nav-group .nav-item .icon {
  color: #a1a3a8;
  vertical-align: middle;
  margin-left: 17px;
  font-size: 1.4rem;
  width: 20px;
}
header #side_menu .menu-wrapper hr {
  width: 90%;
  margin: 20px auto;
  height: 1px;
  background-color: #f0f0f1;
  border: none;
}

@media all and (max-width: 1200px) {
  header .nav-section nav a {
    margin: 0 5px;
    font-size: 0.8rem;
  }
  header .middle-section .logo-search .logo-wrapper {
    width: 90px;
    margin-left: 28px;
  }
  header .middle-section .auth-cart .authentication-wrapper {
    margin-left: 30px;
    padding: 8px;
  }
  header .middle-section .auth-cart .authentication-wrapper .auth-btn {
    font-size: 0.8rem;
  }
  header .middle-section .auth-cart .authentication-wrapper .auth-btn .avatar-icon {
    font-size: 0.9rem;
  }
  header .middle-section .auth-cart .authentication-wrapper .dropdown-menu-wrapper .submenu .submenu-item .btn {
    padding: 14px 20px;
    font-size: 0.85em;
  }
  header .middle-section .auth-cart .cart-btn .icon-count {
    padding: 4px 13px 4px 13px;
  }
  header .middle-section .auth-cart .cart-btn .icon-count .cart-icon {
    font-size: 1.3rem;
  }
  header .middle-section .auth-cart .cart-btn .icon-count .count {
    width: 15px;
    height: 15px;
    font-size: 0.6rem;
    right: 2px;
    top: -4px;
  }
  header .categories-section .categories-list .header-category-group {
    font-size: 0.7rem;
  }
  header .categories-section .categories-list .header-category-group .icon {
    font-size: 1.2rem;
  }
  header .categories-section .discounts-btn {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  header .categories-section .discounts-btn .icon {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 992px) {
  header .middle-section .logo-search .logo-wrapper {
    width: 110px;
    margin-left: 15px;
  }
  header .middle-section .logo-search .search-wrapper input::-moz-placeholder {
    font-size: 0.75rem;
  }
  header .middle-section .logo-search .search-wrapper input::placeholder {
    font-size: 0.75rem;
  }
  header .middle-section .auth-cart .authentication-wrapper {
    margin-left: 0;
    padding: 8px;
  }
  header .middle-section .auth-cart .authentication-wrapper .auth-btn {
    font-size: 0.8rem;
  }
  header .middle-section .auth-cart .authentication-wrapper .auth-btn .avatar-icon {
    font-size: 1rem;
  }
  header .middle-section .auth-cart .cart-btn .icon-count {
    padding: 6px 15px 6px 9px;
  }
  header .middle-section .auth-cart .cart-btn .icon-count .cart-icon {
    font-size: 1.2rem;
  }
  header .middle-section .auth-cart .cart-btn .icon-count .count {
    right: 4px;
    top: 0;
  }
  header .middle-section .auth-cart .cart-btn .empty-title {
    padding: 0;
    font-size: 0.75rem;
  }
  header .middle-section .auth-cart .cart-btn .empty-title i {
    margin-right: 2px;
    font-size: 0.6rem;
  }
  header .categories-section .categories-list {
    gap: 5px;
  }
  header .categories-section .categories-list .header-category-group {
    font-size: 0.65rem;
  }
  header .categories-section .categories-list .header-category-group:nth-of-type(n+6) {
    display: none;
  }
  header .categories-section .categories-list .header-category-group .icon {
    font-size: 1rem;
  }
}
@media all and (max-width: 768px) {
  header {
    margin-bottom: 0;
    box-shadow: none;
  }
  header .nav-section,
  header .middle-section,
  header .categories-section {
    display: none;
  }
  header #top_sticky_bar {
    display: flex;
  }
}
footer {
  background-color: #4B4B53;
  color: #dedede;
  margin-top: 130px;
  position: relative;
}
footer .top-wave {
  position: absolute;
  top: -4.4vw;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
footer .main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  grid-gap: 100px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #666666;
}
footer .main-wrapper .nav {
  display: flex;
  justify-content: space-between;
}
footer .main-wrapper .nav .nav-group .title {
  color: #8fcc1a;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #666666;
  margin-bottom: 13px;
}
footer .main-wrapper .nav .nav-group .nav-list a {
  color: #CCC;
  display: block;
  font-size: 0.85rem;
  padding: 5px 0;
  transition: all ease 0.2s;
}
footer .main-wrapper .nav .nav-group .nav-list a:hover {
  color: #FFF;
}
footer .main-wrapper .contact {
  text-align: center;
}
footer .main-wrapper .contact .label {
  font-family: MikhakVF, Tahoma, serif;
  color: #91919b;
  margin-bottom: 10px;
}
footer .main-wrapper .contact .call a {
  padding: 10px 30px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
footer .main-wrapper .contact .call a:hover .icon {
  transform: scale(1.2) rotate(-8deg);
}
footer .main-wrapper .contact .call a .icon {
  margin-right: 20px;
  transition: all ease 0.25s;
}
footer .main-wrapper .contact .call::after {
  content: "";
  display: block;
  width: 70%;
  margin: 30px auto;
  height: 1px;
  border-top: 1px solid #666666;
  background-color: #3f424a;
}
footer .main-wrapper .contact .social-networks .list {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .main-wrapper .contact .social-networks .list .option {
  font-size: 2rem;
  padding: 5px;
  margin: 0 10px;
  color: #AAA;
}
footer .main-wrapper .contact .social-networks .list .option:hover {
  color: #FFF;
}
footer .main-wrapper .certificate-slogan {
  text-align: left;
}
footer .main-wrapper .certificate-slogan .certificates {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .main-wrapper .certificate-slogan .certificates a {
  transition: all ease 0.3s;
}
footer .main-wrapper .certificate-slogan .certificates a:hover {
  filter: brightness(1.1);
}
footer .main-wrapper .certificate-slogan .slogan {
  text-align: center;
  margin-top: 30px;
}
footer .main-wrapper .certificate-slogan .slogan span {
  color: #a2a2a5;
  font-family: MikhakVF, Tahoma, serif;
  font-size: 1.1rem;
  padding: 7px 5px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
footer .info-wrapper {
  display: grid;
  grid-template-columns: 2fr 0.8fr;
  grid-gap: 100px;
  padding: 40px 0;
  align-items: center;
}
footer .info-wrapper .introduction img {
  filter: opacity(0.7);
  width: 120px;
  transition: all ease 0.3s;
}
footer .info-wrapper .introduction img:hover {
  filter: none;
}
footer .info-wrapper .introduction .description {
  font-size: 0.9rem;
  color: #ADADAD;
}
footer .info-wrapper .newsletter {
  align-self: end;
}
footer .info-wrapper .newsletter label {
  font-family: MikhakVF, Tahoma, serif;
  color: #9191a0;
  margin-bottom: 14px;
  font-size: 0.85rem;
  display: block;
}
footer .info-wrapper .newsletter .input-wrapper {
  display: flex;
  gap: 10px;
}
footer .info-wrapper .newsletter .input-wrapper input {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  letter-spacing: 1px;
  padding: 10px 20px;
}
footer .info-wrapper .newsletter .input-wrapper input::-moz-placeholder {
  color: #ADADAD;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: unset;
}
footer .info-wrapper .newsletter .input-wrapper input::placeholder {
  color: #ADADAD;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: unset;
}
footer .info-wrapper .newsletter .input-wrapper input:focus {
  box-shadow: 0 0 0 2px #808080;
}
footer .copyright-signature {
  width: 100%;
  background-color: #2B2B33;
  text-align: center;
  color: #c3c3c3;
  padding: 10px 0;
  font-weight: 500;
  font-size: 0.75rem;
}
footer .copyright-signature .signature {
  margin-top: 5px;
  font-family: MikhakVF, Tahoma, serif;
  font-size: 0.7rem;
}
footer .copyright-signature .signature:hover .heart {
  fill: #cc38a5;
  filter: drop-shadow(0 0 3px red);
}
footer .copyright-signature .signature:hover .mhy svg {
  fill: #a4eb1e;
  filter: drop-shadow(0 0 6px #648527);
}
footer .copyright-signature .signature a {
  color: #9292a4;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .copyright-signature .signature a .heart {
  font-size: 0.65rem;
  vertical-align: middle;
  display: inline-block;
  color: #a95e79;
  margin: 0 8px;
  animation: beatHeart 2s infinite;
}
footer .copyright-signature .signature a .mhy {
  margin-right: 10px;
}
footer .copyright-signature .signature a .mhy svg {
  width: 60px;
  vertical-align: middle;
  fill: #648527;
  transition: all ease 0.25s;
}

@media all and (max-width: 1200px) {
  footer {
    margin-top: 70px;
  }
  footer .main-wrapper {
    grid-gap: 25px;
  }
}
@media all and (max-width: 992px) {
  footer .main-wrapper {
    grid-gap: 50px 150px;
    grid-template-columns: 1fr 1fr;
    padding: 40px 0 25px;
  }
  footer .main-wrapper .contact {
    grid-column: -1/1;
    order: 3;
  }
  footer .main-wrapper .contact .call::after {
    width: 100%;
  }
  footer .info-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 45px;
  }
  footer .info-wrapper .introduction {
    order: 2;
  }
  footer .info-wrapper .newsletter {
    order: 1;
    margin: 0 auto;
  }
}
@media all and (max-width: 768px) {
  footer {
    z-index: 6;
  }
  footer .top-wave {
    top: -10vw;
  }
  footer .top-wave svg {
    height: 40px;
  }
  footer .main-wrapper {
    grid-gap: 35px;
    grid-template-columns: 1fr;
    padding: 40px 0 25px;
  }
  footer .main-wrapper .nav {
    padding: 0 25px;
  }
  footer .main-wrapper .nav .nav-group .nav-list a {
    padding: 10px 0;
    font-weight: 500;
  }
  footer .info-wrapper .introduction {
    line-height: 1.9;
  }
  footer .info-wrapper .newsletter label {
    text-align: center;
  }
  footer .copyright-signature .signature {
    font-size: 0.6rem;
  }
}
#homepage #banners {
  margin: 15px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  max-width: 1030px;
}
#homepage #banners #main_slider {
  grid-column: -1/1;
  position: relative;
  overflow: hidden;
}
#homepage #banners #main_slider .swiper {
  border-radius: 5px;
  overflow: hidden;
}
#homepage #banners #main_slider .swiper-nav-btn {
  color: #FFF;
  background-color: rgba(20, 123, 128, 0.18);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.3rem;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  transition: all ease-in-out 0.25s;
}
#homepage #banners #main_slider .swiper-nav-btn.prev {
  right: 18px;
}
#homepage #banners #main_slider .swiper-nav-btn.next {
  left: 18px;
}
#homepage #banners #main_slider .swiper-nav-btn:hover {
  background-color: rgba(20, 123, 128, 0.4392156863);
}
#homepage #banners #main_slider .swiper-pagination-bullet {
  border: 2px solid rgba(218, 218, 218, 0.7019607843);
  border-radius: 50%;
  height: 12px;
  margin: 0 7px;
  width: 12px;
  background: transparent;
  opacity: 1;
}
#homepage #banners #main_slider .swiper-pagination-bullet-active {
  background: #76C1C4;
  border: none;
}
#homepage #banners .banner-group {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
#homepage #banners .banner-group.link:hover img {
  opacity: 0.8;
  transform: scale(1.02);
}
#homepage #banners .banner-group:first-of-type {
  grid-row: span 2;
}
#homepage #banners .banner-group img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.4s;
}
#homepage #points {
  margin: 40px auto;
  display: grid;
  max-width: 740px;
  grid-template-columns: repeat(4, 1fr);
}
#homepage #points .point-group {
  text-align: center;
}
#homepage #points .point-group:not(:last-child) {
  border-left: 1px solid #dfe6e7;
}
#homepage #points .point-group .icon {
  height: 40px;
}
#homepage #points .point-group .title {
  font-weight: 500;
  font-size: 0.8rem;
}
#homepage #introduction {
  max-width: 1030px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 10px;
  border: 2px solid #DEDEDE;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.05);
}
#homepage #introduction .text-wrapper h1 {
  font-size: 1.6rem;
}
#homepage #introduction .text-wrapper p {
  font-family: MikhakVF, Tahoma, serif;
  color: #b4b4b4;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 15px 0 20px;
}
#homepage #introduction .text-wrapper a {
  display: inline-flex;
  align-items: center;
}
#homepage #introduction .text-wrapper a:hover .icon {
  transform: translateX(-5px);
}
#homepage #introduction .text-wrapper a .icon {
  margin-right: 11px;
  transition: all ease 0.5s;
}
#homepage #introduction .logo-wrapper {
  width: 230px;
}
#homepage #offers {
  margin-top: 50px;
  background-image: radial-gradient(circle, #d71248, #b9051a);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
#homepage #offers::after {
  content: "";
  display: block;
  position: absolute;
  top: -20%;
  left: -12%;
  z-index: 0;
  width: 45%;
  height: 120%;
  filter: saturate(0.08) opacity(0.2);
  mix-blend-mode: hard-light;
  background: url(/img/discount-flat-icon.png?v=3) no-repeat top left/contain;
}
#homepage #offers .header-wrapper {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
#homepage #offers .header-wrapper .title {
  font-size: 2rem;
  font-weight: bold;
  color: #f5f5f5;
  margin-bottom: 5px;
}
#homepage #offers .header-wrapper .subtitle {
  font-family: MikhakVF, Tahoma, serif;
  color: #ecd0d0;
  font-size: 1.5rem;
}
#homepage #offers .header-wrapper .nav {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-end;
}
#homepage #offers .header-wrapper .nav button {
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.14);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all ease-in-out 0.25s;
}
#homepage #offers .header-wrapper .nav button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#homepage #offers .header-wrapper .nav button[disabled] {
  cursor: not-allowed;
  filter: saturate(0) opacity(0.5);
}
#homepage #offers .body-wrapper {
  position: relative;
  z-index: 1;
}
#homepage #offers .body-wrapper .products-wrapper {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(6, 1fr);
}
#homepage #offers .body-wrapper .products-wrapper .product-group {
  background-color: #FFF;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .offer-percentage-icon {
  color: #F44336;
  font-size: 1.8rem;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .img-wrapper {
  padding: 25px;
  width: 100%;
  display: block;
  aspect-ratio: 1;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .img-wrapper:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .img-wrapper img {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease-in-out;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper {
  padding: 0 20px 30px;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .title {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-bottom: 10px;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .discount {
  text-align: center;
  margin: 10px 0;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .discount span {
  background: #f44336;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 2px 12px;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #00AAB2;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price .previous-price {
  position: relative;
  color: #ca8080;
  font-size: 1.15rem;
  margin-left: auto;
  font-weight: 500;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price .previous-price::after {
  content: "";
  display: block;
  width: 120%;
  height: 100%;
  background: url(/img/price-line-through.svg) no-repeat center/contain;
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price .discounted-price {
  font-weight: bold;
  font-size: 1.2rem;
}
#homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .show-price-btn {
  font-size: 0.8rem;
  margin: 15px auto 0;
  display: block;
  width: 80%;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder {
  border-radius: 5px;
  background-color: #FFF;
  aspect-ratio: 2/3.05;
  padding: 20px 30px 30px;
  position: relative;
  overflow: hidden;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 180%;
  margin-left: -90%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;
  animation: moving_reflection 0.9s linear infinite;
  pointer-events: none;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .img-wrapper {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border-radius: 7px;
  padding: 20px;
  margin: 0 auto 20px;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .img-wrapper::after {
  content: "";
  display: block;
  background: url(/img/logo.svg?v=2) no-repeat;
  filter: grayscale(1) opacity(0.2);
  width: 100%;
  height: 100%;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .title {
  width: 80%;
  height: 20px;
  margin: 0 auto;
  background-color: #efefef;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .discount {
  width: 27%;
  height: 20px;
  margin: 10px auto 30px;
  background-color: #E5CFCF;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price .previous {
  width: 25%;
  height: 16px;
  background-color: #E5CFCF;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price .discounted {
  width: 30%;
  height: 16px;
  background-color: #CFE2E5;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price-group {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price-group .label {
  flex: 0 0 33%;
  background-color: #efefef;
  height: 12px;
}
#homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price-group .value {
  flex: 0 0 47%;
  background-color: #daeaea;
  height: 12px;
}
#homepage #brands {
  margin: 45px 0;
}
#homepage #brands .main-title-wrapper .title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #757575;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
#homepage #brands .main-title-wrapper .title::before, #homepage #brands .main-title-wrapper .title::after {
  content: "";
  width: 70px;
  height: 40px;
  display: inline-block;
  background: url(/img/iran-flag.png) no-repeat center/contain;
}
#homepage #brands .main-title-wrapper .title::before {
  transform: scaleX(-1);
}
#homepage #brands .brands-wrapper .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  grid-gap: 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #F5F5F5;
}
#homepage #brands .brands-wrapper .brand-group {
  text-align: center;
  background-color: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
#homepage #brands .brands-wrapper .brand-group:hover .logo-wrapper img {
  opacity: 0.85;
  transform: scale(1.1);
}
#homepage #brands .brands-wrapper .brand-group:hover .text-wrapper .icon {
  transform: translateX(-4px);
}
#homepage #brands .brands-wrapper .brand-group .logo-wrapper {
  border: 3px solid #00AAB2;
  border-radius: 50%;
  padding: 15px;
  width: 80%;
  max-width: 130px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 0 0 5px white, 0 0 5px 12px #dcefef;
}
#homepage #brands .brands-wrapper .brand-group .logo-wrapper img {
  opacity: 0.65;
  transition: all ease 0.4s;
}
#homepage #brands .brands-wrapper .brand-group .text-wrapper {
  color: #00AAB2;
  font-weight: 500;
  font-family: MikhakVF, Tahoma, serif;
}
#homepage #brands .brands-wrapper .brand-group .text-wrapper .icon {
  vertical-align: middle;
  margin-right: 5px;
  transition: all ease 0.3s;
}
#homepage #brands .btn-wrapper {
  text-align: center;
  margin: 30px 0 15px;
}
#homepage #featured_products {
  background-image: radial-gradient(circle, #2e81ac, #145f86);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
#homepage #featured_products::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 45%;
  height: 30%;
  filter: saturate(0) opacity(0.2) invert(1);
  mix-blend-mode: hard-light;
  transform: scaleX(-1);
  background: url(/img/logo.png?v=2) no-repeat center/100%;
}
#homepage #featured_products .main-title-wrapper {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
#homepage #featured_products .main-title-wrapper .title {
  font-size: 2rem;
  font-weight: bold;
  color: #f5f5f5;
  margin-bottom: 12px;
}
#homepage #featured_products .main-title-wrapper .subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#homepage #featured_products .main-title-wrapper .subtitle .options-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
#homepage #featured_products .main-title-wrapper .subtitle .options-list .option {
  font-family: MikhakVF, Tahoma, serif;
  background: transparent;
  border: 1px solid #a4c8ca;
  color: #d9e4e4;
}
#homepage #featured_products .main-title-wrapper .subtitle .options-list .option:hover {
  background-color: rgba(202, 229, 231, 0.3);
}
#homepage #featured_products .main-title-wrapper .subtitle .options-list .option.active {
  background-color: #CAE5E7;
  color: #486c6e;
  font-weight: 500;
}
#homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper {
  float: left;
  background-color: rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 20px;
  border-radius: 100px;
  padding: 0 20px;
  font-size: 2rem;
  color: #6396B0;
}
#homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper .btn {
  padding: 0 12px;
  transition: all ease 0.3s;
}
#homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper .btn:hover {
  color: #DFE9EE;
}
#homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper .btn[disabled] {
  cursor: not-allowed;
  filter: saturate(0) opacity(0.5);
}
#homepage #featured_products .body-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
#homepage #featured_products .body-wrapper .show-all-btn {
  grid-column: -1/1;
  align-self: center;
  text-align: center;
  width: 100%;
  color: #00AAB2;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: MikhakVF, Tahoma, serif;
  background-color: #FFF;
  padding: 20px;
}
#homepage #featured_products .body-wrapper .show-all-btn:hover {
  color: #028B92;
}
#homepage #featured_products .body-wrapper .show-all-btn:hover .icon {
  transform: translateX(-8px);
}
#homepage #featured_products .body-wrapper .show-all-btn .icon {
  transition: all ease 0.3s;
  vertical-align: middle;
  margin-right: 10px;
}
#homepage #ad_banner .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 35px;
  margin: 50px auto;
}
#homepage #ad_banner .banner-group {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
}
#homepage #ad_banner .banner-group:hover {
  opacity: 0.8;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.14);
}
#homepage #ad_banner .banner-group:hover img {
  transform: scale(1.02);
}
#homepage #ad_banner .banner-group.full-width {
  grid-column: span 2;
}
#homepage #ad_banner .banner-group img {
  width: 100%;
  display: block;
  transition: all ease 0.4s;
}
#homepage #blog {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
}
#homepage #blog .bg {
  width: 100%;
  height: 410px;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  background-image: radial-gradient(circle, #e2cca2, #b19a6f);
}
#homepage #blog .bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 45%;
  height: 100%;
  filter: saturate(0) opacity(0.2) invert(1);
  mix-blend-mode: hard-light;
  transform: scaleX(-1);
  background: url(/img/logo.png?v=2) no-repeat center/100%;
}
#homepage #blog .main-title-wrapper {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
#homepage #blog .main-title-wrapper .title {
  font-size: 2rem;
  font-weight: bold;
  color: #f5f5f5;
  margin-bottom: 12px;
}
#homepage #blog .body-wrapper {
  position: relative;
  z-index: 2;
}
#homepage #blog .body-wrapper .posts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f3f3f3;
  grid-gap: 8px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
#homepage #blog .body-wrapper .posts-wrapper .show-all-btn {
  grid-column: -1/1;
  align-self: center;
  text-align: center;
  width: 100%;
  color: #98835a;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: MikhakVF, Tahoma, serif;
  background-color: #FFF;
  padding: 20px;
}
#homepage #blog .body-wrapper .posts-wrapper .show-all-btn:hover {
  color: #78633B;
}
#homepage #blog .body-wrapper .posts-wrapper .show-all-btn:hover .icon {
  transform: translateX(-8px);
}
#homepage #blog .body-wrapper .posts-wrapper .show-all-btn .icon {
  transition: all ease 0.3s;
  vertical-align: middle;
  margin-right: 10px;
}
#homepage #note .wrapper {
  padding: 40px 50px 80px;
  font-weight: 400;
  text-align: justify;
  line-height: 2.2;
  font-size: 1.02rem;
  position: relative;
}
#homepage #note .toggle-btn {
  align-items: flex-end;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.4), #fff 60%);
  bottom: 0;
  cursor: pointer;
  display: flex;
  height: 130px;
  justify-content: center;
  padding-bottom: 30px;
  position: absolute;
  right: 0;
  transition: all 0.3s ease;
  width: 100%;
  color: #79bcbf;
  font-weight: 520;
  font-family: MikhakVF, Tahoma, serif;
}
#homepage #note .toggle-btn:hover {
  color: #1b9197;
}
#homepage #note .toggle-btn.opened {
  background: transparent;
}
#homepage #note .toggle-btn .icon {
  vertical-align: middle;
  margin-inline: 10px;
  opacity: 0.8;
}
#homepage #note :is(h2, h3) .icon {
  vertical-align: middle;
  margin-left: 10px;
  font-size: 1.6rem;
  color: #a9b3b9;
}
#homepage #note h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
#homepage #note h3 {
  font-size: 1.15rem;
  margin-block: 15px 8px;
  background: #f5f5f5;
  display: inline-block;
  border-radius: 5px;
  padding: 3px 13px;
}
#homepage #note p {
  padding-right: 25px;
}
#homepage #note :is(ul, ol) {
  padding-right: 50px;
  line-height: 2.6;
  margin-bottom: 15px;
}
#homepage #note :is(ul, ol) a {
  font-weight: 600;
}
#homepage #note ul {
  list-style: disc inside;
}
#homepage #note ol {
  list-style: persian inside;
}
#homepage #note table {
  display: block;
  margin-inline: auto;
  max-width: 600px;
  margin-block: 25px;
}
#homepage #note table tr:not(:last-child) {
  border-bottom: 1px solid #d1dadf;
}
#homepage #note table td {
  white-space: nowrap;
  width: 100%;
  padding-block: 9px;
}
#homepage #note table td:first-child {
  font-weight: 470;
  font-family: MikhakVF, Tahoma, serif;
}
#homepage #note table td:first-child .icon {
  vertical-align: middle;
  margin-left: 10px;
  color: #899eab;
  font-size: 1.2rem;
}
#homepage #note table td:last-child {
  text-align: left;
  font-weight: 550;
  direction: ltr;
  color: #298181;
}
#homepage #note table td:last-child a {
  color: #298181;
}
#homepage #note table td:last-child a:hover .link-icon {
  color: #298181;
}
#homepage #note table td:last-child a .link-icon {
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #94c7c7;
  transition: all ease 0.25s;
}

@media all and (max-width: 1400px) {
  #homepage #offers .body-wrapper .products-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media all and (max-width: 1200px) {
  #homepage #introduction {
    padding: 30px 60px;
  }
  #homepage #introduction .text-wrapper h1 {
    font-size: 1.3rem;
  }
  #homepage #introduction .text-wrapper p {
    font-size: 1.1rem;
  }
  #homepage #introduction .logo-wrapper {
    width: 190px;
  }
  #homepage #offers .body-wrapper .products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  #homepage #brands .brands-wrapper .grid-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  #homepage #brands .brands-wrapper .grid-wrapper .brand-group:nth-of-type(n+9) {
    display: none;
  }
  #homepage #featured_products {
    padding: 50px 0;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .options-list .option {
    font-size: 0.85rem;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper {
    grid-gap: 0 12px;
    padding: 0 12px;
    font-size: 1.7rem;
  }
  #homepage #ad_banner .wrapper {
    grid-gap: 15px;
  }
  #homepage #note .wrapper {
    font-size: 0.92rem;
  }
  #homepage #note h2 {
    font-size: 1.1rem;
  }
  #homepage #note h3 {
    font-size: 1rem;
  }
}
@media all and (max-width: 992px) {
  #homepage #points {
    margin: 40px auto;
  }
  #homepage #points .point-group .icon {
    height: 30px;
  }
  #homepage #points .point-group .title {
    font-size: 0.7rem;
  }
  #homepage #introduction {
    padding: 30px 40px;
  }
  #homepage #introduction .text-wrapper h1 {
    font-size: 1.2rem;
  }
  #homepage #introduction .text-wrapper p {
    font-size: 1rem;
  }
  #homepage #introduction .logo-wrapper {
    width: 170px;
  }
  #homepage #offers::after {
    top: -6%;
    left: -19%;
    width: 75%;
    height: 100%;
  }
  #homepage #offers .body-wrapper .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder {
    aspect-ratio: 2/3.25;
    padding: 15px 15px 20px;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder::before {
    top: -10%;
    width: 180%;
    height: 150%;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .img-wrapper {
    padding: 30px;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .title {
    height: 17px;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .discount {
    width: 30%;
    height: 17px;
    margin: 13px auto 30px;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price .previous {
    width: 38%;
    height: 14px;
    background-color: #E5CFCF;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .price .discounted {
    width: 33%;
    height: 14px;
    background-color: #CFE2E5;
  }
  #homepage #brands .brands-wrapper .grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
  #homepage #brands .brands-wrapper .grid-wrapper .brand-group:nth-of-type(n+7) {
    display: none;
  }
  #homepage #featured_products .main-title-wrapper {
    margin-bottom: 15px;
  }
  #homepage #featured_products .main-title-wrapper .subtitle {
    flex-direction: column;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .options-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .nav-buttons-wrapper {
    align-self: flex-end;
  }
}
@media all and (max-width: 768px) {
  #homepage #banners {
    margin: 5px auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7px;
  }
  #homepage #banners #main_slider .swiper-nav-btn {
    display: none;
  }
  #homepage #banners #main_slider .swiper-pagination {
    bottom: 0;
  }
  #homepage #banners #main_slider .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    margin: 0 5px;
  }
  #homepage #points {
    margin: 30px auto;
  }
  #homepage #points .point-group .icon {
    height: 25px;
  }
  #homepage #points .point-group .title {
    font-size: 0.6rem;
  }
  #homepage #introduction {
    padding: 30px 13px;
    flex-direction: column;
    gap: 15px;
  }
  #homepage #introduction .text-wrapper {
    order: 2;
    text-align: center;
  }
  #homepage #introduction .text-wrapper h1 {
    font-size: 1.1rem;
  }
  #homepage #introduction .text-wrapper p {
    font-size: 0.9rem;
    margin: 5px 0 15px;
  }
  #homepage #introduction .text-wrapper a {
    font-size: 1rem;
  }
  #homepage #offers {
    margin-top: 30px;
    padding: 30px 0;
    min-height: auto;
  }
  #homepage #offers::after {
    top: 2%;
    left: -25%;
    width: 100%;
  }
  #homepage #offers .header-wrapper {
    flex-direction: column;
    margin-bottom: 15px;
  }
  #homepage #offers .header-wrapper .title {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
  #homepage #offers .header-wrapper .subtitle {
    font-size: 1.1rem;
  }
  #homepage #offers .header-wrapper .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
  }
  #homepage #offers .header-wrapper .nav {
    margin: 0;
  }
  #homepage #offers .body-wrapper .products-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .offer-percentage-icon {
    font-size: 1.5rem;
    top: 13px;
    left: 12px;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .img-wrapper {
    padding: 12px;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper {
    padding: 0 10px 15px;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .title {
    font-size: 0.85rem;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .discount span {
    font-size: 0.7rem;
    padding: 1px 9px;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price .previous-price {
    font-size: 0.95rem;
  }
  #homepage #offers .body-wrapper .products-wrapper .product-group .text-wrapper .price .discounted-price {
    font-size: 0.95rem;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .img-wrapper {
    padding: 20px;
  }
  #homepage #offers .body-wrapper .products-wrapper .loading-placeholder .text-wrapper .discount {
    margin: 13px auto 22px;
  }
  #homepage #brands {
    margin: 30px 0;
  }
  #homepage #brands .main-title-wrapper .title {
    gap: 20px;
    font-size: 1.4rem;
  }
  #homepage #brands .brands-wrapper .grid-wrapper {
    grid-gap: 7px;
  }
  #homepage #brands .brands-wrapper .brand-group {
    padding: 12px 0;
  }
  #homepage #brands .brands-wrapper .brand-group .logo-wrapper {
    margin-bottom: 12px;
    box-shadow: 0 0 0 3px white, 0 0 8px 6px #dcefef;
  }
  #homepage #brands .brands-wrapper .brand-group .text-wrapper {
    font-size: 0.8rem;
    font-weight: 600;
  }
  #homepage #featured_products {
    padding: 30px 0;
  }
  #homepage #featured_products::after {
    width: 80%;
    top: -5%;
    right: -9%;
  }
  #homepage #featured_products .main-title-wrapper {
    margin-bottom: 10px;
  }
  #homepage #featured_products .main-title-wrapper .title {
    font-size: 1.4rem;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .options-list {
    gap: 8px;
    margin-bottom: 12px;
  }
  #homepage #featured_products .main-title-wrapper .subtitle .options-list .option {
    font-size: 0.75rem;
    padding: 5px 9px;
  }
  #homepage #featured_products .body-wrapper .show-all-btn {
    font-size: 1rem;
    font-weight: 600;
  }
  #homepage #ad_banner .wrapper {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin: 30px auto;
  }
  #homepage #ad_banner .banner-group.full-width {
    grid-column: span 1;
  }
  #homepage #blog {
    padding: 30px 0;
  }
  #homepage #blog .main-title-wrapper .title {
    font-size: 1.4rem;
  }
  #homepage #blog .bg::after {
    width: 70%;
    top: -26%;
    right: -8%;
  }
  #homepage #blog .body-wrapper .posts-wrapper .show-all-btn {
    font-size: 1rem;
    font-weight: 600;
  }
  #homepage #note .wrapper {
    padding: 30px 20px 50px;
    text-align: right;
  }
  #homepage #note p {
    padding-right: 10px;
  }
  #homepage #note h2 {
    font-size: 1.04rem;
  }
  #homepage #note :is(ul, ol) {
    padding-right: 20px;
  }
  #homepage #note .toggle-btn {
    padding-bottom: 17px;
  }
}
#about_us #content_wrapper {
  margin: 50px 0;
  padding: 60px;
}
#about_us #content_wrapper .banner-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto 50px;
  transition: all ease-in-out 1s;
}
#about_us #content_wrapper .banner-wrapper:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
#about_us #content_wrapper .banner-wrapper img {
  max-width: 100%;
}
#about_us #content_wrapper .text-wrapper h1 {
  font-weight: bold;
  font-size: 1.5rem;
  color: #CCAA6A;
}
#about_us #content_wrapper .text-wrapper h2 {
  font-weight: bold;
  font-size: 1.3rem;
  color: #00AAB2;
  margin-top: 25px;
}
#about_us #content_wrapper .text-wrapper p {
  line-height: 2;
  font-size: 1.1rem;
  text-align: justify;
}

@media all and (max-width: 768px) {
  #about_us #content_wrapper {
    margin: 0;
    padding: 30px;
  }
  #about_us #content_wrapper .banner-wrapper {
    margin: 0 auto 20px;
  }
  #about_us #content_wrapper .text-wrapper h1 {
    font-size: 1.1rem;
  }
  #about_us #content_wrapper .text-wrapper h2 {
    font-size: 1rem;
  }
  #about_us #content_wrapper .text-wrapper p {
    font-size: 0.9rem;
  }
}
#contact_us #content_wrapper {
  margin: 50px 0 25px;
  padding: 80px 60px 60px;
  overflow: hidden;
  position: relative;
}
#contact_us #content_wrapper::before {
  content: "";
  width: 100%;
  height: 150px;
  background: url(/img/ghadedak-bar.jpg) repeat-x;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
#contact_us #content_wrapper h1 {
  color: #CCAA6A;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 30px;
  display: inline-block;
  background: white;
  position: relative;
  padding: 25px 35px;
  left: 35px;
  border-radius: 900px;
}
#contact_us #content_wrapper .cols-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
}
#contact_us #content_wrapper .form .buttons-wrapper {
  text-align: left;
  margin-top: 20px;
}
#contact_us #content_wrapper .info .info-group {
  display: flex;
  align-items: center;
}
#contact_us #content_wrapper .info .info-group:not(:last-child) {
  margin-bottom: 18px;
}
#contact_us #content_wrapper .info .info-group.address, #contact_us #content_wrapper .info .info-group.social-networks {
  flex-direction: column;
  align-items: flex-start;
}
#contact_us #content_wrapper .info .info-group.address .label, #contact_us #content_wrapper .info .info-group.social-networks .label {
  margin-bottom: 10px;
}
#contact_us #content_wrapper .info .info-group.address .value {
  font-size: 1rem;
}
#contact_us #content_wrapper .info .info-group.social-networks .buttons-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
#contact_us #content_wrapper .info .info-group.social-networks .btn {
  font-size: 0.85rem;
  font-weight: 500;
}
#contact_us #content_wrapper .info .info-group.social-networks .btn:hover .icon {
  fill: white;
}
#contact_us #content_wrapper .info .info-group.social-networks .btn .icon {
  fill: #00AAB2;
  width: 18px;
  margin-left: 10px;
  opacity: 1;
}
#contact_us #content_wrapper .info .info-group .label {
  color: #00AAB2;
  font-family: MikhakVF, Tahoma, serif;
  font-weight: bold;
  font-size: 0.9rem;
  margin-left: 10px;
}
#contact_us #content_wrapper .info .info-group .label .icon {
  vertical-align: middle;
  font-size: 1rem;
  margin-left: 7px;
  opacity: 0.7;
}
#contact_us #content_wrapper .info .info-group .value {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2;
}
#contact_us #map_wrapper {
  overflow: hidden;
  height: 500px;
  z-index: 1;
  position: relative;
}
#contact_us #map_wrapper .red-marker {
  filter: hue-rotate(500deg);
}
#contact_us #map_wrapper a[href^="https://neshan.org"],
#contact_us #map_wrapper a[href^="https://openstreetmap.org"] {
  display: none !important;
}

@media all and (max-width: 1200px) {
  #contact_us #content_wrapper .cols-wrapper {
    grid-gap: 55px;
  }
}
@media all and (max-width: 992px) {
  #contact_us #content_wrapper::before {
    background-size: 90vw;
  }
  #contact_us #content_wrapper h1 {
    font-size: 1.25rem;
  }
  #contact_us #content_wrapper .cols-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 70px;
  }
  #contact_us #content_wrapper .info {
    order: 1;
  }
  #contact_us #content_wrapper .form {
    order: 2;
  }
}
@media all and (max-width: 768px) {
  #contact_us #content_wrapper {
    margin: 0;
    padding: 30px;
  }
  #contact_us #content_wrapper::before {
    background-size: 800px;
  }
  #contact_us #content_wrapper h1 {
    font-size: 1.3rem;
    left: 25px;
    padding: 16px 12px;
    top: 45px;
    margin-bottom: 70px;
  }
  #contact_us #content_wrapper .cols-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 70px;
  }
  #contact_us #content_wrapper .info .info-group.social-networks .buttons-wrapper {
    gap: 14px;
    width: 100%;
    flex-direction: column;
    margin-top: 12px;
  }
  #contact_us #content_wrapper .info .info-group.social-networks .buttons-wrapper .btn {
    width: 100%;
    padding-block: 10px;
  }
  #contact_us #content_wrapper .info .info-group .value {
    margin-right: auto;
  }
  #contact_us #content_wrapper .form .buttons-wrapper {
    margin-top: 10px;
    width: 100%;
  }
  #contact_us #content_wrapper .form .buttons-wrapper #submit_btn {
    width: 100%;
    padding-block: 10px;
  }
}
#faq .faq-group {
  margin-bottom: 6px;
  padding: 30px 40px;
}
#faq .faq-group .question {
  font-weight: 750;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#faq .faq-group .question::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  background: grey;
  margin-left: 14px;
  border-radius: 50%;
}
#faq .faq-group .answer {
  font-family: MikhakVF, Tahoma, serif;
  color: #7da7a9;
  font-weight: 500;
}

#help .body-wrapper {
  padding: 50px 80px;
  font-size: 1.05rem;
  line-height: 2.3;
  color: #686868;
  font-weight: 450;
}
#help .body-wrapper .steps-image {
  display: flex;
  justify-content: space-between;
  padding-inline: 50px;
  margin-block: 30px;
}
#help .body-wrapper .steps-image .steps a {
  color: #00a9ad;
  display: block;
  margin-bottom: 15px;
}
#help .body-wrapper .steps-image .steps a:visited {
  color: #00a9ad;
}
#help .body-wrapper .steps-image .steps a .index {
  width: 35px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  background-color: #00a9ad;
  border-radius: 50%;
  margin-left: 10px;
  color: #FFF;
  font-weight: bold;
  border: 2px solid #006c6f;
}
#help .body-wrapper .steps-image .image-wrapper img {
  width: 380px;
}
#help .body-wrapper ul.shipment-methods {
  padding-right: 40px;
  margin-block: 20px;
}
#help .body-wrapper ul.shipment-methods li {
  margin-bottom: 20px;
}
#help .body-wrapper ul.shipment-methods li h3 {
  color: darkcyan;
}
#help .body-wrapper ul.shipment-methods li h3 strong {
  background-color: #eee6ca;
  color: #6f5704;
  font-weight: bold;
  border-radius: 3px;
  padding: 2px 10px;
}
#help .body-wrapper h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: darkcyan;
  margin-block: 20px 10px;
}
#help .body-wrapper .notes {
  margin-top: 30px;
  background-color: #f2f2f2;
  border-radius: 5px;
  padding: 25px;
}
#help .body-wrapper .notes h3 {
  font-size: 1.4rem;
  padding-right: 10px;
}
#help .body-wrapper .notes li {
  margin-block: 15px;
  list-style-type: disc;
  list-style-position: inside;
}

@media all and (max-width: 992px) {
  #help .body-wrapper {
    padding: 30px 50px;
  }
  #help .body-wrapper .steps-image {
    flex-direction: column;
    gap: 50px;
    padding-inline: 20px;
  }
  #help .body-wrapper .steps-image .image-wrapper {
    text-align: center;
  }
}
@media all and (max-width: 992px) {
  #help .body-wrapper {
    padding: 20px 20px;
    font-size: 1.05rem;
    line-height: 2.4;
  }
  #help .body-wrapper .steps-image .steps a {
    font-size: 1rem;
  }
  #help .body-wrapper ul.shipment-methods {
    padding-right: 20px;
  }
  #help .body-wrapper .notes {
    padding: 20px;
    font-size: 1rem;
  }
}
.auth-theme#card_wrapper {
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  padding: 50px;
}
.auth-theme#card_wrapper .logo-wrapper {
  text-align: center;
}
.auth-theme#card_wrapper .logo-wrapper img {
  width: 150px;
}
.auth-theme#card_wrapper .title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.auth-theme#card_wrapper .theme-form-group {
  margin-bottom: 15px;
}
.auth-theme#card_wrapper .buttons-wrapper {
  text-align: center;
  margin-top: 25px;
}
.auth-theme#card_wrapper .buttons-wrapper button {
  width: 70%;
  margin: 0 auto;
  padding: 10px 15px;
  font-size: 1rem;
}
.auth-theme#card_wrapper .options {
  margin-top: 30px;
  font-size: 0.9rem;
  font-family: MikhakVF, Tahoma, serif;
}
.auth-theme#card_wrapper .options a {
  color: #00AAB2;
  font-family: VazirmatnVF, Tahoma, serif;
  font-weight: 500;
}
.auth-theme#card_wrapper .options a:hover {
  color: #027C82;
}

@media all and (max-width: 768px) {
  .auth-theme#card_wrapper {
    width: 100%;
    padding: 25px;
    border-radius: 10px;
  }
  .auth-theme#card_wrapper .logo-wrapper img {
    width: 50%;
  }
}
#login .remember {
  display: flex;
  align-items: center;
}
#login .remember .switch {
  transform: scale(0.8);
}
#login .remember label {
  margin-right: 7px;
  font-size: 0.85rem;
  cursor: pointer;
}

#category_list #categories_wrapper {
  margin-block: 10px 70px;
}
#category_list #categories_wrapper .parent-category-group {
  margin-bottom: 30px;
}
#category_list #categories_wrapper .parent-category-group .head {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
#category_list #categories_wrapper .parent-category-group .head .info {
  display: flex;
  gap: 20px;
  align-items: center;
}
#category_list #categories_wrapper .parent-category-group .head .info:hover .icon {
  transform: scale(1.2) rotate(8deg);
}
#category_list #categories_wrapper .parent-category-group .head .info:hover .count .arrow-icon {
  transform: none;
  opacity: 1;
}
#category_list #categories_wrapper .parent-category-group .head .info .icon {
  transition: all ease 0.25s;
  font-size: 2.3rem;
  color: silver;
}
#category_list #categories_wrapper .parent-category-group .head .info .count {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ab9e88;
}
#category_list #categories_wrapper .parent-category-group .head .info .count .arrow-icon {
  margin-right: 10px;
  vertical-align: middle;
  transition: all ease 0.2s;
  transform: translateX(10px);
  opacity: 0;
}
#category_list #categories_wrapper .parent-category-group .head .buttons .toggle-btn {
  font-size: 0.85rem;
  padding: 5px 10px;
  background: #e5d8d8;
  color: #ab8888;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transition: all ease 0.3s;
}
#category_list #categories_wrapper .parent-category-group .head .buttons .toggle-btn:hover {
  background: #cd7777;
  color: white;
}
#category_list #categories_wrapper .parent-category-group .head .buttons .toggle-btn.rotated {
  transform: rotate(180deg);
}
#category_list #categories_wrapper .parent-category-group .body {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 18px;
  max-height: 560px;
  overflow-y: auto;
  /* width */
}
#category_list #categories_wrapper .parent-category-group .body::-webkit-scrollbar {
  width: 6px;
  cursor: pointer;
}
#category_list #categories_wrapper .parent-category-group .body {
  /* Track */
}
#category_list #categories_wrapper .parent-category-group .body::-webkit-scrollbar-track {
  background: #ececec;
  cursor: pointer;
}
#category_list #categories_wrapper .parent-category-group .body {
  /* Handle */
}
#category_list #categories_wrapper .parent-category-group .body::-webkit-scrollbar-thumb {
  background: #cad1d3;
  border-radius: 100px;
  cursor: pointer;
}
#category_list #categories_wrapper #no_category_wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  padding-top: 40px;
}
#category_list #categories_wrapper #no_category_wrapper .text {
  font-weight: 500;
  color: #8fb6bf;
  font-size: 1.2rem;
  font-family: MikhakVF, Tahoma, serif;
}
#category_list #categories_wrapper #no_category_wrapper img {
  width: 200px;
}

@media all and (max-width: 1200px) {
  #category_list #categories_wrapper .parent-category-group .head .info h2 {
    font-size: 1.25rem;
    margin-bottom: 3px;
  }
  #category_list #categories_wrapper .parent-category-group .head .info .coutn {
    font-size: 1rem;
  }
  #category_list #categories_wrapper .parent-category-group .body {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media all and (max-width: 992px) {
  #category_list #categories_wrapper .parent-category-group .body {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (max-width: 768px) {
  #category_list #categories_wrapper .parent-category-group .head {
    padding-right: 10px;
  }
  #category_list #categories_wrapper .parent-category-group .head .info .icon {
    font-size: 1.8rem;
  }
  #category_list #categories_wrapper .parent-category-group .head .info h2 {
    font-size: 1.2rem;
  }
  #category_list #categories_wrapper .parent-category-group .head .info .count {
    font-size: 1rem;
  }
  #category_list #categories_wrapper .parent-category-group .head .buttons .toggle-btn {
    width: 33px;
    height: 33px;
  }
  #category_list #categories_wrapper .parent-category-group .body {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
    padding: 12px;
    max-height: unset;
  }
}
#category_single #subcategories {
  padding: 20px 30px;
  margin-bottom: 20px;
}
#category_single #subcategories .title-wrapper {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
#category_single #subcategories .title-wrapper .text {
  font-weight: 500;
}
#category_single #subcategories .title-wrapper .toggle-icon {
  background: #eaeaea;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all ease 0.25s;
}
#category_single #subcategories .title-wrapper .toggle-icon:hover {
  background: #BFBFBF;
}
#category_single #subcategories .body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(135px, auto);
  grid-gap: 18px;
}
#category_single #subcategories .body .subcategory-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f0f0f1;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.03);
  padding: 16px 8px;
  cursor: pointer;
}
#category_single #subcategories .body .subcategory-item:hover .img-wrapper {
  transform: scale(1.1);
}
#category_single #subcategories .body .subcategory-item.show-more .count {
  font-weight: bold;
  font-size: 1.4rem;
}
#category_single #subcategories .body .subcategory-item.show-more .subtitle {
  font-size: 0.9rem;
  color: #9c9c9c;
  font-weight: normal;
}
#category_single #subcategories .body .subcategory-item .img-wrapper {
  max-width: 75px;
  aspect-ratio: 1;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 5px;
  transition: all ease 0.3s;
}
#category_single #subcategories .body .subcategory-item .img-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 22, 0.06);
}
#category_single #subcategories .body .subcategory-item .img-wrapper img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#category_single #subcategories .body .subcategory-item .title {
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}
#category_single #subcategories .body .subcategory-item .title .count {
  font-weight: bold;
  color: #3DA5AA;
  font-size: 0.75rem;
  margin-right: 3px;
}
#category_single #description_box {
  margin-top: 30px;
  padding: 30px 50px;
  line-height: 2;
  text-align: right;
  font-size: 1rem;
}
#category_single #description_box a:not(.btn) {
  color: #00AAB2;
  border-bottom: 1px dashed #66c1c6;
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
#category_single #description_box a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
#category_single #description_box a:not(.btn):hover, #category_single #description_box a:not(.btn):focus {
  border: none;
  color: #49A1A6;
}
#category_single #description_box a:not(.btn):hover::after, #category_single #description_box a:not(.btn):focus::after {
  transform: scaleX(1);
}
#category_single #description_box img {
  max-width: 100%;
  margin: 50px auto;
  display: block;
}
#category_single #description_box h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-block: 1rem 0.4rem;
}
#category_single #description_box :is(h3, h4) {
  font-size: 1.2rem;
  font-weight: bold;
  margin-block: 1rem 0.4rem;
}
#category_single #description_box ul {
  list-style: disc;
  padding-right: 20px;
}
#category_single #description_box ol {
  list-style-type: persian;
  padding-right: 20px;
}
#category_single #description_box p {
  margin-bottom: 7px;
}

@media all and (max-width: 1200px) {
  #category_single #subcategories .body {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
  }
}
@media all and (max-width: 992px) {
  #category_single #subcategories {
    padding: 20px 12px;
  }
  #category_single #subcategories .body {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (max-width: 768px) {
  #category_single #subcategories {
    padding: 20px 12px;
  }
  #category_single #subcategories .body {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
  #category_single #subcategories .body .subcategory-item .img-wrapper {
    max-width: 60px;
  }
  #category_single #subcategories .body .subcategory-item .title {
    font-size: 0.8rem;
  }
  #category_single #description_box {
    padding: 10px 20px;
    line-height: 2.1;
    font-size: 0.9rem;
  }
  #category_single #description_box :is(h2, h3, h4) {
    font-size: 1.15rem;
  }
}
#brand_list #brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(130px, auto);
  grid-gap: 25px;
  padding: 25px;
  overflow: hidden;
  min-height: 180px;
}
#brand_list #brands .brand-group {
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
  padding: 25px;
  display: flex;
  align-items: center;
  background-color: #F0F0F1;
}
#brand_list #brands .brand-group:hover .img-wrapper img {
  transform: scale(1.1);
}
#brand_list #brands .brand-group .img-wrapper {
  background: white;
  border: 2px solid #00AAB2;
  box-shadow: 0 0 0 5px white, 0 0 4px 12px #eaeaea;
  overflow: hidden;
  padding: 10px;
  border-radius: 50%;
  flex: 0 0 80px;
  aspect-ratio: 1;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#brand_list #brands .brand-group .img-wrapper img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all ease 0.3s;
  opacity: 0.85;
}
#brand_list #brands .brand-group .text-wrapper {
  text-align: right;
  overflow: hidden;
}
#brand_list #brands .brand-group .text-wrapper .title {
  font-weight: 700;
  font-size: 1.1rem;
}
#brand_list #brands .brand-group .text-wrapper .count {
  color: #00AAB2;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 8px;
  letter-spacing: 1px;
}
#brand_list #brands .brand-group .text-wrapper .categories {
  font-family: MikhakVF, Tahoma, serif;
  color: #b9b9b9;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (max-width: 1400px) {
  #brand_list #brands {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (max-width: 1200px) {
  #brand_list #brands {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 992px) {
  #brand_list #brands {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 768px) {
  #brand_list #brands {
    padding: 12px;
    grid-gap: 12px;
  }
  #brand_list #brands .brand-group {
    padding: 20px;
    flex-direction: column;
  }
  #brand_list #brands .brand-group .img-wrapper {
    margin: 0 auto 20px;
    flex-basis: 55%;
  }
  #brand_list #brands .brand-group .img-wrapper img {
    width: 90%;
  }
  #brand_list #brands .brand-group .text-wrapper {
    text-align: center;
    width: 100%;
  }
  #brand_list #brands .brand-group .text-wrapper .title {
    font-size: 1rem;
  }
  #brand_list #brands .brand-group .text-wrapper .count {
    margin-right: 3px;
  }
}
#brand_single #introduction {
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  margin-block: 20px;
}
#brand_single #introduction .text-wrapper {
  line-height: 2.5;
  font-family: MikhakVF, Tahoma, serif;
  font-weight: 500;
}
#brand_single #introduction .text-wrapper a:not(.btn) {
  color: #00AAB2;
  border-bottom: 1px dashed #66c1c6;
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
#brand_single #introduction .text-wrapper a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
#brand_single #introduction .text-wrapper a:not(.btn):hover, #brand_single #introduction .text-wrapper a:not(.btn):focus {
  border: none;
  color: #49A1A6;
}
#brand_single #introduction .text-wrapper a:not(.btn):hover::after, #brand_single #introduction .text-wrapper a:not(.btn):focus::after {
  transform: scaleX(1);
}
#brand_single #introduction .logo-wrapper {
  flex: 0 0 180px;
  aspect-ratio: 1;
  border: 5px solid #00AAB2;
  border-radius: 50%;
  padding: 25px;
  box-shadow: 0 0 0 5px white, 0 0 50px -20px #3db0b6;
}
#brand_single #introduction .logo-wrapper img {
  opacity: 0.85;
  display: block;
}
#brand_single #main_title_wrapper .logo {
  opacity: 0.9;
  width: 50px;
  margin-left: 20px;
}

@media all and (max-width: 1200px) {
  #brand_single #introduction {
    padding: 30px 25px;
  }
  #brand_single #introduction .text-wrapper {
    font-size: 0.9rem;
  }
  #brand_single #introduction .logo-wrapper {
    flex: 0 0 160px;
  }
}
@media all and (max-width: 992px) {
  #brand_single #introduction .logo-wrapper {
    flex: 0 0 140px;
  }
}
@media all and (max-width: 768px) {
  #brand_single #introduction {
    gap: 30px;
    flex-direction: column;
    padding: 25px 15px;
  }
  #brand_single #introduction .text-wrapper {
    order: 2;
    font-size: 0.9rem;
  }
  #brand_single #introduction .logo-wrapper {
    order: 1;
    width: 50%;
    flex-basis: unset;
    margin-top: 15px;
  }
  #brand_single #main_title_wrapper .logo {
    width: 40px;
    margin-left: 10px;
  }
  #brand_single #main_title_wrapper .title h1 {
    font-size: 1rem;
  }
}
#product_tags_list #tags {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
  padding: 30px;
  overflow: hidden;
  min-height: 140px;
}
#product_tags_list #tags .tag-group {
  background: #f9f8f0;
  border: 1px solid #a59965;
  border-radius: 9px;
  color: #a59965;
  transition: all ease-in-out 0.2s;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
#product_tags_list #tags .tag-group:hover:nth-of-type(even) .icon-wrapper {
  transform: rotate(8deg) scale(1.2);
}
#product_tags_list #tags .tag-group:hover:nth-of-type(odd) .icon-wrapper {
  transform: rotate(-15deg) scale(1.2);
}
#product_tags_list #tags .tag-group:hover .count .icon {
  transform: translateX(-5px);
}
#product_tags_list #tags .tag-group .icon-wrapper {
  font-size: 2rem;
  color: #a59965;
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
#product_tags_list #tags .tag-group .text-wrapper {
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1 1;
  padding: 15px 0;
}
#product_tags_list #tags .tag-group .text-wrapper .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  display: block;
}
#product_tags_list #tags .tag-group .text-wrapper .count {
  font-size: 0.9rem;
  margin-top: 5px;
}
#product_tags_list #tags .tag-group .text-wrapper .count .icon {
  vertical-align: middle;
  font-size: 0.65rem;
  margin-right: 5px;
  transition: all ease 0.25s;
}

@media all and (max-width: 1400px) {
  #product_tags_list #tags {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media all and (max-width: 1200px) {
  #product_tags_list #tags {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}
@media all and (max-width: 992px) {
  #product_tags_list #tags {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }
  #product_tags_list #tags .tag-group .icon-wrapper {
    font-size: 1.7rem;
  }
  #product_tags_list #tags .tag-group .text-wrapper .title {
    font-size: 0.8rem;
    max-width: 90%;
  }
  #product_tags_list #tags .tag-group .text-wrapper .count {
    font-size: 0.8rem;
  }
}
@media all and (max-width: 768px) {
  #product_tags_list #tags {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    padding: 12px;
  }
  #product_tags_list #tags .tag-group .icon-wrapper {
    font-size: 1.4rem;
    flex-basis: 30%;
  }
  #product_tags_list #tags .tag-group .text-wrapper {
    padding: 11px 0;
  }
  #product_tags_list #tags .tag-group .text-wrapper .title {
    font-size: 0.75rem;
  }
  #product_tags_list #tags .tag-group .text-wrapper .count {
    font-size: 0.7rem;
  }
}
#product_tag_single #main_title_wrapper .title .label {
  margin-left: 10px;
}

@media all and (max-width: 768px) {
  #product_tag_single #main_title_wrapper .title {
    font-size: 1.2rem;
    margin-left: 7px;
  }
  #product_tag_single #main_title_wrapper .title .icon {
    margin-left: 5px;
    font-size: 1.1rem;
  }
  #product_tag_single #main_title_wrapper .title .label {
    font-size: 0.75rem;
  }
  #product_tag_single #main_title_wrapper .title h1 {
    font-size: 0.95rem;
  }
}
#product_single .breadcrumbs-wrapper {
  padding: 15px 25px;
  margin-bottom: 10px;
}
#product_single .breadcrumbs-wrapper #breadcrumbs {
  gap: 0;
  margin: 0;
}
#product_single .breadcrumbs-wrapper #breadcrumbs li:not(:last-child)::after {
  color: #00aab2;
  font-size: 0.7rem;
  margin: 0 25px;
}
#product_single .breadcrumbs-wrapper #breadcrumbs li a {
  font-family: VazirmatnVF, Tahoma, serif;
  font-size: 0.9rem;
}
#product_single .breadcrumbs-wrapper #breadcrumbs li a:hover {
  color: #00AAB2;
}
#product_single #main {
  display: grid;
  grid-template-columns: 2fr 4fr;
  grid-gap: 10px;
}
#product_single #main #image {
  padding: 35px;
}
#product_single #main #image .main-image-wrapper {
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}
#product_single #main #image .main-image-wrapper.loading img {
  filter: saturate(0.7) opacity(0.3);
}
#product_single #main #image .main-image-wrapper.loading .loading-spinner {
  display: block;
}
#product_single #main #image .main-image-wrapper .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #00AAB2;
  filter: drop-shadow(0 0 7px #00AAB2);
  display: none;
}
#product_single #main #image .thumbnails-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
#product_single #main #image .thumbnails-wrapper .image-wrapper {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  cursor: pointer;
  overflow: hidden;
  padding: 5px;
  position: relative;
  aspect-ratio: 1;
}
#product_single #main #image .thumbnails-wrapper .image-wrapper.collapsed {
  display: none;
}
#product_single #main #image .thumbnails-wrapper .image-wrapper img {
  transition: all ease 0.2s;
  display: block;
  opacity: 0.85;
}
#product_single #main #image .thumbnails-wrapper .image-wrapper img:hover {
  opacity: 1;
  transform: scale(1.07);
}
#product_single #main #image .thumbnails-wrapper .image-wrapper:nth-of-type(5).collapsed {
  display: block;
}
#product_single #main #image .thumbnails-wrapper .image-wrapper:nth-of-type(5).collapsed img {
  opacity: 0.85;
  filter: blur(3px) saturate(0.8);
}
#product_single #main #image .thumbnails-wrapper .image-wrapper:nth-of-type(5).collapsed::after {
  content: "\f141";
  font-family: "Font Awesome 7 Pro", serif;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.2588235294);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product_single #main #info {
  padding: 45px 60px 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
#product_single #main #info #title {
  border-radius: 3px;
  padding-right: 20px;
  border-right: 5px solid #00AAB2;
}
#product_single #main #info #title h1 {
  font-size: 1.5rem;
}
#product_single #main #info #title .subtitle {
  font-family: MikhakVF, Tahoma, serif;
  color: silver;
  font-size: 1.1rem;
}
#product_single #main #info #meta {
  margin: 13px 0 25px;
  position: relative;
}
#product_single #main #info #meta .labels-wrapper {
  position: absolute;
  left: 10px;
  width: 60px;
  top: -15px;
}
#product_single #main #info #meta .labels-wrapper img {
  margin: 0 auto 15px;
  display: block;
  filter: drop-shadow(-3px 6px 5px #DDD);
  transition: all ease 0.3s;
}
#product_single #main #info #meta .labels-wrapper img:hover {
  transform: scale(1.1) rotate(10deg);
}
#product_single #main #info #meta .labels-wrapper .made-in-iran-logo {
  transform: rotate(-10deg);
}
#product_single #main #info #meta #metas_table {
  width: auto;
}
#product_single #main #info #meta #metas_table tr.code td:nth-of-type(2) {
  letter-spacing: 1px;
  direction: ltr;
  text-align: right;
}
#product_single #main #info #meta #metas_table tr.code td:nth-of-type(2) .copy-btn {
  margin-right: 10px;
  font-size: 0.9rem;
}
#product_single #main #info #meta #metas_table tr.brand a {
  display: flex;
  align-items: center;
}
#product_single #main #info #meta #metas_table tr.brand a:hover .brand-title {
  border: none;
  color: #2E9196;
}
#product_single #main #info #meta #metas_table tr.brand a:hover .brand-title::after {
  transform: scaleX(1);
}
#product_single #main #info #meta #metas_table tr.brand a:hover .logo {
  transform: scale(1.1);
}
#product_single #main #info #meta #metas_table tr.brand a .brand-title {
  color: #3aa0a5;
  border-bottom: 1px dashed #3aa0a5;
  font-size: 1.1rem;
  display: inline-block;
  position: relative;
  padding: 0.2em 0;
}
#product_single #main #info #meta #metas_table tr.brand a .brand-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
#product_single #main #info #meta #metas_table tr.brand a .logo {
  margin-right: 20px;
  vertical-align: middle;
  display: block;
  height: 45px;
  transition: all ease 0.3s;
  filter: invert(53%) sepia(55%) saturate(475%) hue-rotate(134deg) brightness(93%) contrast(85%);
}
#product_single #main #info #meta #metas_table tr td:first-of-type {
  color: #8d8d8d;
  font-family: MikhakVF, Tahoma, serif;
  font-size: 0.9rem;
  padding: 10px 0 10px 30px;
  font-weight: 500;
}
#product_single #main #info #meta #metas_table tr td:first-of-type .icon {
  vertical-align: middle;
  margin-left: 10px;
}
#product_single #main #info #meta #metas_table tr td:nth-of-type(2) {
  color: #39a0a5;
  font-weight: bold;
  font-size: 1.1rem;
}
#product_single #main #info #action {
  margin-bottom: 35px;
}
#product_single #main #info #status {
  padding: 20px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 5px;
}
#product_single #main #info #status.coming-soon {
  background-color: #D4E9F3;
  color: #004C90;
  border: solid 1px #C7DBE4;
}
#product_single #main #info #status.coming-soon .icon {
  fill: #004C90;
}
#product_single #main #info #status.out-of-stock {
  background-color: #FBE9EC;
  color: #B90000;
  border: solid 1px #F1DFE2;
}
#product_single #main #info #status.out-of-stock .icon {
  fill: #B90000;
}
#product_single #main #info #status.production-stopped {
  background-color: #eaeaea;
  color: #676767;
  border: solid 1px #dbdbdb;
}
#product_single #main #info #status .icon {
  margin-left: 20px;
  opacity: 0.5;
  font-size: 1.5rem;
}
#product_single #main #info #price .label {
  color: #8d8d8d;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: MikhakVF, Tahoma, serif;
  margin-bottom: 10px;
}
#product_single #main #info #price .label .icon {
  vertical-align: middle;
  margin-left: 10px;
}
#product_single #main #info #price .value {
  gap: 30px;
  display: flex;
  align-items: center;
}
#product_single #main #info #price .value .final-price {
  color: #00AAB2;
  font-size: 1.2rem;
  white-space: nowrap;
}
#product_single #main #info #price .value .final-price .price {
  font-size: 1.65rem;
  margin-left: 10px;
  font-weight: bold;
}
#product_single #main #info #price .value .final-price .toman-glyph {
  font-size: 1.5rem;
}
#product_single #main #info #price .value .previous-price {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
#product_single #main #info #price .value .previous-price .discount-tag-wrapper {
  position: relative;
  width: 75px;
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation: swing ease-in-out 1s infinite alternate;
}
#product_single #main #info #price .value .previous-price .discount-tag-wrapper .img {
  width: 100%;
}
#product_single #main #info #price .value .previous-price .discount-tag-wrapper .value {
  color: white;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 1px;
}
#product_single #main #info #price .value .previous-price .price {
  font-size: 1.2rem;
  color: #c95757;
}
#product_single #main #info #price .value .previous-price .price .value {
  font-size: 1.5rem;
  margin-left: 10px;
  font-weight: 500;
  display: inline-block;
}
#product_single #main #info #price .value .previous-price .price .toman-glyph {
  font-size: 1.3rem;
}
#product_single #main #info #price .price-single-wrapper {
  background: #e4edf3;
  padding: 13px 30px;
  border: 1px solid #cde5f5;
  border-radius: 5px;
  margin-top: 25px;
  color: #4b89b5;
  display: inline-block;
  font-weight: 400;
}
#product_single #main #info #price .price-single-wrapper .icon {
  vertical-align: middle;
  display: inline-block;
  margin-left: 30px;
  font-size: 1.3rem;
  opacity: 0.5;
}
#product_single #main #info #price .price-single-wrapper .amount {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 5px;
}
#product_single #main #info #cart {
  margin-top: 22px;
}
#product_single #main #info #cart #add_to_cart_btn {
  padding: 10px 25px 10px 40px;
  font-size: 1.1rem;
}
#product_single #main #info #cart #add_to_cart_btn .icon {
  color: #10834e;
  font-size: 1.5rem;
}
#product_single #main #info #cart #add_to_cart_btn .text {
  padding-right: 13px;
  border-right: 1px solid #1a925b;
  margin-right: 9px;
}
#product_single #main #info #cart #already_in_cart_wrapper .info-label {
  border-radius: 5px;
  margin-bottom: 20px;
  background: #c7fddb;
  color: #0f9f5c;
  font-size: 1rem;
  font-weight: 550;
  max-width: 460px;
  padding: 13px 30px;
  display: inline-block;
  border: 1px solid #b3edc9;
}
#product_single #main #info #cart #already_in_cart_wrapper .info-label .icon {
  vertical-align: middle;
  display: inline-block;
  margin-left: 30px;
  font-size: 1.3rem;
  opacity: 0.7;
}
#product_single #main #info #cart #quantity_count {
  display: inline-flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 5px;
  width: 150px;
  height: 40px;
}
#product_single #main #info #cart #quantity_count .btn {
  background: none;
  color: silver;
  font-size: 0.9rem;
  height: 100%;
  flex: 0 0 45px;
}
#product_single #main #info #cart #quantity_count .btn:hover {
  color: #00AAB2;
}
#product_single #main #info #cart #quantity_count #quantity_input {
  border: none;
  background: none;
  text-align: center;
  color: #00AAB2;
  font-weight: bold;
  font-size: 1.3rem;
  flex: 1 1 100px;
  padding: 0;
}
#product_single #main #info #cart #remove_from_cart_btn {
  background: none;
  border: none;
  color: silver;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}
#product_single #main #info #cart #remove_from_cart_btn:hover {
  color: indianred;
}
#product_single #main #info #cart #remove_from_cart_btn:hover .icon {
  color: indianred;
}
#product_single #main #info #cart #remove_from_cart_btn .icon {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: all ease 0.2s;
  color: silver;
}
#product_single #main #info #cart #toggle_favorite_btn {
  font-size: 0.75rem;
  margin-right: 20px;
  font-weight: 500;
  color: #db6c7b;
}
#product_single #main #info #cart #toggle_favorite_btn:hover .icon {
  transform: scale(1.1);
}
#product_single #main #info #cart #toggle_favorite_btn .icon {
  vertical-align: middle;
  margin-left: 7px;
  transition: all ease 0.3s;
  color: #db6c7b;
  font-size: 1rem;
}
#product_single #main #info #options {
  margin: 20px 0;
}
#product_single #main #info #options .label {
  font-family: MikhakVF, Tahoma, serif;
  color: silver;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
#product_single #main #info #options .options-wrapper {
  border: 1px solid #e8e8e8;
}
#product_single #main #info #options .options-wrapper .option-group {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  cursor: pointer;
  transition: all ease 0.2s;
}
#product_single #main #info #options .options-wrapper .option-group.selected {
  background-color: #e1f2f3;
}
#product_single #main #info #options .options-wrapper .option-group.selected .radio-btn::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#product_single #main #info #options .options-wrapper .option-group:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
#product_single #main #info #options .options-wrapper .option-group:hover {
  background-color: #F3F3F3;
}
#product_single #main #info #options .options-wrapper .option-group:hover img {
  transform: scale(1.1);
}
#product_single #main #info #options .options-wrapper .option-group .radio-btn {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  height: 30px;
  width: 30px;
  margin-left: 20px;
}
#product_single #main #info #options .options-wrapper .option-group .radio-btn::before {
  border: 1px solid #cfc3cc;
  border-radius: 50%;
  content: "";
  height: 18px;
  width: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#product_single #main #info #options .options-wrapper .option-group .radio-btn::after {
  background: #00AAB2;
  border-radius: 50%;
  content: "";
  width: 13px;
  height: 13px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.25s ease;
}
#product_single #main #info #options .options-wrapper .option-group img {
  width: 35px;
  transition: all ease 0.2s;
  margin-left: 20px;
}
#product_single #main #info #options .options-wrapper .option-group .title {
  font-weight: 500;
  font-size: 0.9rem;
}
#product_single #main #info #options .options-wrapper .option-group .option-status {
  margin-right: auto;
  border-radius: 100px;
  font-size: 0.7rem;
  color: white;
  padding: 1px 8px;
}
#product_single #main #info #options .options-wrapper .option-group .option-status.available {
  background-color: #23ba74;
}
#product_single #main #info #options .options-wrapper .option-group .option-status.unavailable {
  background-color: #9c9c9c;
}
#product_single #main #info #tag {
  margin-top: 30px;
}
#product_single #main #info #tag .label {
  font-family: MikhakVF, Tahoma, serif;
  color: silver;
  font-size: 0.9rem;
  margin-bottom: 7px;
}
#product_single #main #info #tag .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#product_single #main #info #tag .tag-group {
  font-size: 0.7rem;
  border-radius: 9px;
  display: inline-block;
  background: #f9f8f0;
  border: 1px solid #a59965;
  color: #a59965;
  position: relative;
  padding: 3px 9px;
  white-space: nowrap;
  transition: all ease-in-out 0.2s;
}
#product_single #main #info #tag .tag-group:hover {
  background-color: #a59965;
  color: #FAFAFA;
}
#product_single #main #info #tag .tag-group .icon {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-left: 5px;
  vertical-align: middle;
}
#product_single #main #info .footer {
  align-items: center;
  border-top: 1px dashed #e3e3e3;
  color: #ababab;
  display: flex;
  gap: 15px;
  margin-top: auto;
  padding-block: 28px;
}
#product_single #main #info .footer .updated-at {
  font-family: MikhakVF, Tahoma, serif;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b7ae89;
  font-weight: 450;
  font-size: 0.95rem;
}
#product_single #main #info .footer .updated-at .icon {
  margin-left: 5px;
}
#product_single #main #info .footer .operation-btn {
  color: #ababab;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all ease 0.25s;
}
#product_single #main #info .footer .operation-btn:hover {
  color: #0E0F10;
}
#product_single #main #info .footer .operation-btn:hover svg.icon {
  fill: #58586f;
}
#product_single #main #info .footer .operation-btn .icon {
  font-size: 1.3rem;
  transition: all ease 0.25s;
}
#product_single #main #info .footer .operation-btn svg.icon {
  width: 20px;
  fill: #ababbe;
}
#product_single #main #info {
  /*
  .no-order-warning{
      border-radius: 5px;
      margin-bottom: 20px;
      background: #fbe2e4;
      color: #ba2323;
      font-size: 0.95rem;
      line-height: 2;
      max-width: 460px;
      padding: 13px 30px;
      display: inline-block;
      border: 1px solid #f1c0cc;
  }
  */
}
#product_single #tabs {
  margin-top: 30px;
}
#product_single #tabs #description {
  max-width: 1200px;
}
#product_single #tabs #description p {
  line-height: 2.3;
  margin-bottom: 8px;
}
#product_single #tabs #description h2 {
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 7px;
}
#product_single #tabs #description h3 {
  font-size: 1.1rem;
}
#product_single #tabs #description a:not(.btn) {
  color: #00AAB2;
  border-bottom: 1px dashed #66c1c6;
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
#product_single #tabs #description a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
#product_single #tabs #description a:not(.btn):hover, #product_single #tabs #description a:not(.btn):focus {
  border: none;
  color: #49A1A6;
}
#product_single #tabs #description a:not(.btn):hover::after, #product_single #tabs #description a:not(.btn):focus::after {
  transform: scaleX(1);
}
#product_single #tabs #properties table {
  max-width: 800px;
}
#product_single #tabs #properties table tr:nth-child(odd) td {
  background-color: #f0f0f0;
}
#product_single #tabs #properties table td {
  border: 1px solid #D9D9D9;
  padding: 11px 25px;
}
#product_single #tabs #properties table td:first-child {
  font-family: MikhakVF, Tahoma, serif;
  width: 30%;
  color: #545454;
}
#product_single #tabs #properties table td:first-child::before {
  content: "\f111";
  font-size: 0.3rem;
  vertical-align: middle;
  margin-left: 10px;
  color: silver;
  font-family: Font Awesome\ 5 Free, serif;
}
#product_single #tabs #properties table td:nth-child(2) {
  font-weight: 500;
  color: #00AAB2;
}
#product_single #tabs #comments {
  max-width: 850px;
}
#product_single #tabs #comments .form-wrapper {
  margin-bottom: 50px;
}
#product_single #tabs #comments .form-wrapper .title {
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  background: #00aab2;
  color: white;
  padding: 6px 28px;
  border-radius: 15px 15px 15px 0;
}
#product_single #tabs #comments .form-wrapper .form-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
#product_single #tabs #comments .form-wrapper .form-body .form-group.comment-body {
  grid-column: 1/-1;
}
#product_single #tabs #comments .form-wrapper .form-body .form-group input, #product_single #tabs #comments .form-wrapper .form-body .form-group textarea {
  background: #fafafa;
  border-radius: 15px;
  font-weight: 500;
  color: #456c8e;
  padding: 10px 25px;
  width: 100%;
  transition: all 0.2s ease;
  text-align: right;
  line-height: 2;
}
#product_single #tabs #comments .form-wrapper .form-body .form-group input::-moz-placeholder, #product_single #tabs #comments .form-wrapper .form-body .form-group textarea::-moz-placeholder {
  color: #A3A3A3;
}
#product_single #tabs #comments .form-wrapper .form-body .form-group input::placeholder, #product_single #tabs #comments .form-wrapper .form-body .form-group textarea::placeholder {
  color: #A3A3A3;
}
#product_single #tabs #comments .form-wrapper .form-body .buttons-wrapper {
  grid-column: 1/-1;
  text-align: left;
}
#product_single #tabs #comments .comment-group {
  background-color: #f1f1f1;
  padding: 25px 35px;
  border-radius: 10px;
}
#product_single #tabs #comments .comment-group:not(:last-child) {
  margin-bottom: 15px;
}
#product_single #tabs #comments .comment-group .comment-head {
  margin-bottom: 7px;
}
#product_single #tabs #comments .comment-group .comment-head .name {
  font-weight: 500;
  color: #00AAB2;
}
#product_single #tabs #comments .comment-group .comment-head .date {
  font-family: MikhakVF, Tahoma, serif;
  color: #ababab;
  font-size: 0.9rem;
}
#product_single #tabs #comments .comment-group .comment-body {
  color: #7d7d7d;
  line-height: 1.7;
}
#product_single #tabs #comments .comment-group .avayemehr-reply {
  line-height: 2.2;
  color: #00AAB2;
  padding: 20px 35px 0 25px;
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
}
#product_single #tabs #comments .comment-group .avayemehr-reply .title {
  font-size: 0.9rem;
  color: #bcbcbc;
  display: flex;
  align-items: center;
}
#product_single #tabs #comments .comment-group .avayemehr-reply .title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(/img/logo.png?v=2) no-repeat 50%/contain;
  margin-left: 12px;
}
#product_single #tabs #comments .comment-group .avayemehr-reply .reply-text {
  font-weight: 500;
}

@media all and (max-width: 1200px) {
  #product_single #main #image {
    padding: 20px;
  }
  #product_single #main #image .main-image-wrapper {
    margin-bottom: 20px;
  }
  #product_single #main #image .thumbnails-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 6px;
  }
  #product_single #main #info .footer {
    flex-wrap: wrap;
  }
  #product_single #main #info .footer .updated-at {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }
}
@media all and (max-width: 992px) {
  #product_single .breadcrumbs-wrapper {
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  #product_single .breadcrumbs-wrapper #breadcrumbs li:not(:last-child)::after {
    font-size: 0.55rem;
    margin: 0 12px;
  }
  #product_single .breadcrumbs-wrapper #breadcrumbs li a {
    font-size: 0.7rem;
  }
  #product_single #main #image {
    padding: 12px;
  }
  #product_single #main #info {
    padding: 30px 30px 0;
  }
  #product_single #main #info #title {
    padding-right: 15px;
  }
  #product_single #main #info #title h1 {
    font-size: 1.1rem;
  }
  #product_single #main #info #title .subtitle {
    font-size: 0.9rem;
  }
  #product_single #main #info #meta {
    margin: 15px 0;
  }
  #product_single #main #info #meta #metas_table tr.brand a .brand-title {
    font-size: 0.9rem;
  }
  #product_single #main #info #meta #metas_table tr td:first-of-type {
    font-size: 0.75rem;
    padding: 7px 0 7px 23px;
  }
  #product_single #main #info #meta #metas_table tr td:nth-of-type(2) {
    font-size: 0.9rem;
  }
  #product_single #main #info #price .label {
    font-size: 0.8rem;
  }
  #product_single #main #info #price .value .final-price .price {
    font-size: 1.3rem;
    font-weight: 650;
    margin-left: 5px;
  }
  #product_single #main #info #price .value .final-price .toman-glyph {
    font-size: 1rem;
  }
  #product_single #main #info #price .value .previous-price .discount-tag-wrapper {
    width: 45px;
  }
  #product_single #main #info #price .value .previous-price .discount-tag-wrapper .value {
    font-size: 0.8rem;
  }
  #product_single #main #info #price .value .previous-price .price .value {
    font-size: 1.3rem;
  }
  #product_single #main #info #price .value .previous-price .price .toman-glyph {
    font-size: 1rem;
    margin-right: 0;
  }
  #product_single #main #info #price .price-single-wrapper {
    padding: 15px 20px;
    font-size: 0.8rem;
  }
  #product_single #main #info #price .price-single-wrapper .icon {
    margin-left: 10px;
    font-size: 1.1rem;
  }
  #product_single #main #info #price .price-single-wrapper .amount {
    font-size: 0.9rem;
    margin: 0 2px;
  }
  #product_single #main #info #cart {
    margin: 15px 0;
  }
  #product_single #main #info #cart #add_to_cart_btn {
    padding: 9px 16px 9px 34px;
    font-size: 0.9rem;
  }
  #product_single #main #info #cart #add_to_cart_btn .btn {
    font-size: 1.3rem;
  }
  #product_single #main #info #cart #already_in_cart_wrapper .info-label {
    padding: 15px 20px;
    font-size: 0.8rem;
  }
  #product_single #main #info #cart #already_in_cart_wrapper .info-label .icon {
    margin-left: 10px;
    font-size: 1.1rem;
  }
  #product_single #main #info #cart #quantity_count {
    width: 130px;
    height: 40px;
  }
  #product_single #main #info #cart #quantity_count .btn {
    font-size: 0.8rem;
    flex: 0 0 35px;
  }
  #product_single #main #info #cart #quantity_count #quantity_input {
    font-size: 1.2rem;
  }
  #product_single #main #info #cart #remove_from_cart_btn {
    font-size: 0.9rem;
  }
  #product_single #main #info #cart #remove_from_cart_btn .icon {
    font-size: 1rem;
  }
  #product_single #main #info #tag {
    margin-top: 20px;
  }
  #product_single #main #info #tag .label {
    font-size: 0.8rem;
  }
  #product_single #main #info #tag .tag-group {
    font-size: 0.6rem;
    border-radius: 5px;
  }
  #product_single #main #info .footer {
    padding-block: 20px 28px;
    gap: 7px 0;
  }
  #product_single #main #info .footer .updated-at {
    font-size: 0.9rem;
    margin-bottom: 0;
    flex: 1 1;
  }
  #product_single #main #info .no-order-warning {
    padding: 15px 20px;
    font-size: 0.8rem;
  }
  #product_single #tabs {
    margin-top: 20px;
  }
  #product_single #tabs #description h2 {
    font-size: 1rem;
  }
  #product_single #tabs #description h3 {
    font-size: 0.9rem;
  }
  #product_single #tabs #description p {
    font-size: 0.85rem;
  }
  #product_single #tabs #comments .form-wrapper {
    margin-bottom: 30px;
  }
  #product_single #tabs #comments .form-wrapper .title {
    padding: 5px 24px;
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  #product_single #tabs #comments .form-wrapper .form-body {
    grid-gap: 10px;
  }
  #product_single #tabs #comments .form-wrapper .form-body .form-group input, #product_single #tabs #comments .form-wrapper .form-body .form-group textarea {
    font-size: 0.85rem;
    padding: 7px 15px;
    border-radius: 10px;
  }
  #product_single #tabs #comments .comment-group {
    padding: 20px 25px;
    border-radius: 5px;
  }
  #product_single #tabs #comments .comment-group .comment-head .name {
    font-size: 0.9rem;
  }
  #product_single #tabs #comments .comment-group .comment-head .date {
    font-size: 0.8rem;
  }
  #product_single #tabs #comments .comment-group .comment-body {
    font-size: 0.9rem;
  }
  #product_single #tabs #comments .comment-group .avayemehr-reply {
    padding: 12px 20px 0 25px;
    margin-top: 12px;
  }
  #product_single #tabs #comments .comment-group .avayemehr-reply .title {
    font-size: 0.8rem;
  }
  #product_single #tabs #comments .comment-group .avayemehr-reply .title::before {
    width: 25px;
    height: 25px;
    margin-left: 7px;
  }
  #product_single #tabs #comments .comment-group .avayemehr-reply .reply-text {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 768px) {
  #product_single .breadcrumbs-wrapper {
    overflow-x: auto;
    padding: 0;
  }
  #product_single .breadcrumbs-wrapper #breadcrumbs {
    padding: 17px 20px 22px 20px;
  }
  #product_single .breadcrumbs-wrapper li:last-of-type {
    padding-left: 20px;
  }
  #product_single #main {
    grid-template-columns: 1fr;
  }
  #product_single #main #info {
    padding: 25px 20px 0;
  }
  #product_single #main #info #title h1 {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  #product_single #main #info #title .subtitle {
    font-size: 1.2rem;
    margin-top: 3px;
  }
  #product_single #main #info #meta #metas_table tr.brand a .brand-title {
    font-size: 1.1rem;
  }
  #product_single #main #info #meta #metas_table tr td:first-of-type {
    font-size: 1rem;
    padding: 9px 0 9px 23px;
  }
  #product_single #main #info #meta #metas_table tr td:nth-of-type(2) {
    font-size: 1.1rem;
  }
  #product_single #main #info #meta .labels-wrapper {
    width: 45px;
  }
  #product_single #main #info #action {
    margin-bottom: 25px;
  }
  #product_single #main #info #price {
    margin: 23px 0 15px;
  }
  #product_single #main #info #price .value {
    justify-content: space-between;
    gap: 0;
  }
  #product_single #main #info #price .value .final-price {
    flex-grow: 1;
  }
  #product_single #main #info #price .value .final-price .price {
    font-size: 1.5rem;
  }
  #product_single #main #info #price .value .final-price .toman-glyph {
    font-size: 1.1rem;
  }
  #product_single #main #info #price .value .previous-price {
    flex-grow: 1;
    gap: 0;
  }
  #product_single #main #info #price .value .previous-price .price .value {
    font-size: 1.15rem;
  }
  #product_single #main #info #price .value .previous-price .price .toman-glyph {
    display: none;
  }
  #product_single #main #info #price .value .previous-price .discount-tag-wrapper {
    width: 65px;
  }
  #product_single #main #info #price .value .previous-price .discount-tag-wrapper .value {
    font-size: 1rem;
  }
  #product_single #main #info #price .value #show_price_btn {
    width: 67%;
    padding: 9px 0;
    font-size: 0.9rem;
  }
  #product_single #main #info #price .price-single-wrapper {
    width: 100%;
    font-size: 0.8rem;
    padding: 15px 10px;
    text-align: center;
  }
  #product_single #main #info #price .price-single-wrapper .icon {
    font-size: 1.1rem;
    margin-left: 5px;
  }
  #product_single #main #info #status {
    padding: 15px 20px;
    font-size: 0.8rem;
    width: 100%;
    font-weight: 450;
  }
  #product_single #main #info #status .icon {
    font-size: 1.3rem;
    margin-left: 10px;
  }
  #product_single #main #info #cart #add_to_cart_btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 13px 0 13px 0;
    font-weight: 450;
  }
  #product_single #main #info #cart #add_to_cart_btn .icon {
    font-size: 1.9rem;
  }
  #product_single #main #info #cart #already_in_cart_wrapper .info-label {
    width: 100%;
    font-size: 0.8rem;
    padding: 15px 10px;
    text-align: center;
  }
  #product_single #main #info #cart #already_in_cart_wrapper .info-label .icon {
    font-size: 1.1rem;
    margin-left: 5px;
  }
  #product_single #main #info #cart #quantity_count {
    width: 60%;
    height: 50px;
  }
  #product_single #main #info #cart #quantity_count .btn {
    font-size: 1rem;
    flex: 0 0 50px;
  }
  #product_single #main #info #cart #remove_from_cart_btn {
    font-size: 1.1rem;
  }
  #product_single #main #info #cart #remove_from_cart_btn .icon {
    font-size: 1.2rem;
    margin-left: 20px;
  }
  #product_single #main #info #tag {
    margin: 30px 0 10px;
  }
  #product_single #main #info #tag .label {
    font-size: 0.9rem;
  }
  #product_single #main #info #tag .tag-group {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 5px;
  }
  #product_single #main #info .footer {
    gap: 9px 0;
    padding-inline: 15px;
  }
  #product_single #tabs #comments .form-wrapper .form-body {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  #product_single #tabs #comments .form-wrapper .form-body .form-group input, #product_single #tabs #comments .form-wrapper .form-body .form-group textarea {
    border-radius: 5px;
    padding: 10px 15px;
  }
  #product_single #tabs #comments .form-wrapper .form-body .buttons-wrapper {
    grid-column: 1/-1;
    text-align: left;
  }
  #product_single #tabs #comments .form-wrapper .form-body .buttons-wrapper #submit_comment_btn {
    width: 100%;
    padding: 10px 0;
  }
  #product_single #tabs #comments .comment-group:not(:last-child) {
    margin-bottom: 8px;
  }
  #product_single #tabs #comments .comment-group .comment-body {
    line-height: 2;
  }
  #product_single #tabs #comments .comment-group .avayemehr-reply .reply-text {
    font-size: 0.8rem;
    line-height: 2;
  }
  #product_single #tabs #description h2 {
    font-size: 1.15rem;
  }
  #product_single #tabs #description p {
    font-size: 0.95rem;
  }
}
#packages_list #packages_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin-top: 20px;
}
#packages_list #packages_wrapper .package-group {
  background: #f9f8f0;
  border-radius: 9px;
  overflow: hidden;
  text-align: center;
}
#packages_list #packages_wrapper .package-group .banner img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 0.3s;
  overflow: hidden;
}
#packages_list #packages_wrapper .package-group .banner:hover img {
  opacity: 0.8;
  transform: scale(1.02);
}
#packages_list #packages_wrapper .package-group .title {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 15px 0 7px;
  display: block;
}
#packages_list #packages_wrapper .package-group .count {
  font-family: MikhakVF, Tahoma, serif;
  font-weight: 600;
  margin: 7px 0 15px;
  color: #00AAB2;
}

@media all and (max-width: 1400px) {
  #packages_list #packages_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 1200px) {
  #packages_list #packages_wrapper {
    grid-gap: 15px;
  }
  #packages_list #packages_wrapper .package-group .title {
    font-size: 0.85rem;
    margin: 12px 0 0px;
  }
  #packages_list #packages_wrapper .package-group .count {
    margin: 3px 0 11px;
    font-size: 0.8rem;
  }
}
@media all and (max-width: 768px) {
  #packages_list #packages_wrapper {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  #packages_list #packages_wrapper .package-group .title {
    font-size: 1rem;
    margin: 12px 0 5px;
  }
  #packages_list #packages_wrapper .package-group .count {
    margin: 5px 0 15px;
    font-size: 0.9rem;
  }
}
#package_single #banner_wrapper {
  text-align: center;
  margin-bottom: 15px;
  overflow: hidden;
}
#package_single #banner_wrapper img {
  width: 100%;
  display: block;
}
#package_single #main_title_wrapper .title .label {
  margin-left: 10px;
}

@media all and (max-width: 768px) {
  #package_single #banner_wrapper {
    margin-bottom: 35px;
  }
  #package_single #main_title_wrapper .title {
    font-size: 1.2rem;
    margin-left: 7px;
  }
  #package_single #main_title_wrapper .title .icon {
    margin-left: 5px;
    font-size: 1.1rem;
  }
  #package_single #main_title_wrapper .title .label {
    font-size: 0.75rem;
  }
  #package_single #main_title_wrapper .title h1 {
    font-size: 0.95rem;
  }
}
#cart {
  /*
  .no-order-warning{
      border-radius: 5px;
      margin-block: 20px;
      background: #fbe2e4;
      color: #ba2323;
      font-size: 0.95rem;
      line-height: 2;
      padding: 20px 30px;
      border: 1px solid #f1c0cc;
  }
  */
}
#cart #steps_head_wrapper {
  display: flex;
  margin-bottom: 30px;
}
#cart #steps_head_wrapper .step-group {
  background-color: #e1e3e3;
  display: flex;
  align-items: center;
  padding: 22px 40px;
  cursor: pointer;
  transition: all ease 0.25s;
  position: relative;
  flex: 1 1;
}
#cart #steps_head_wrapper .step-group:hover {
  background-color: #D2D3D3;
}
#cart #steps_head_wrapper .step-group:hover .icon-wrapper .icon {
  transform: scale(1.2) rotate(7deg);
}
#cart #steps_head_wrapper .step-group:first-child {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}
#cart #steps_head_wrapper .step-group:last-child {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
#cart #steps_head_wrapper .step-group:not(:last-child)::after {
  content: "\f104";
  font-family: "Font Awesome 7 Pro", serif;
  font-weight: 900;
  opacity: 0.15;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  left: 30px;
  font-size: 3rem;
}
#cart #steps_head_wrapper .step-group.active .title {
  color: #07949b;
  text-decoration: underline;
}
#cart #steps_head_wrapper .step-group.active .icon-wrapper {
  background-color: #f7f7f7;
  border: 3px solid #00AAB2;
  color: #00AAB2;
  box-shadow: 0 0 0 0 rgb(0, 170, 178);
  transform: scale(1);
  animation: step-pulse 3s infinite;
}
@keyframes step-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 170, 178, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 170, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 170, 178, 0);
  }
}
#cart #steps_head_wrapper .step-group.validated {
  border: none;
  background-color: #23ba74;
  color: white;
}
#cart #steps_head_wrapper .step-group.validated .step-num {
  color: rgba(255, 255, 255, 0.8);
}
#cart #steps_head_wrapper .step-group.validated .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
}
#cart #steps_head_wrapper .step-group .icon-wrapper {
  margin-left: 18px;
  background: #bfbfbf;
  color: #f9f9f9;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cart #steps_head_wrapper .step-group .icon-wrapper .icon {
  transition: all ease 0.25s;
}
#cart #steps_head_wrapper .step-group .step-num {
  font-family: MikhakVF, Tahoma, serif;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  color: #b5b5b5;
  text-align: right;
}
#cart #steps_head_wrapper .step-group .title {
  font-weight: bold;
  font-size: 1.1rem;
}
#cart .step-body .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 40px;
}
#cart .step-body .two-col .full-width {
  grid-column: -1/1;
}
#cart .step-body .form-group {
  margin-bottom: 0;
}
#cart .step-body .form-invoice {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
#cart .step-body .invoice-summary-wrapper {
  margin-top: 20px;
  position: sticky;
  top: 60px;
  flex: 0 0 30%;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 0 7px 0 #e7e7e7;
}
#cart .step-body .invoice-summary-wrapper::before {
  background-image: url(/img/zigzag-pattern.svg);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 7%;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  top: -13px;
  left: 0;
  width: 100%;
  z-index: 2;
}
#cart .step-body .invoice-summary-wrapper .main-title {
  font-weight: 500;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#cart .step-body .invoice-summary-wrapper table tr.discount-total td:nth-of-type(2) {
  color: #df3f3f;
}
#cart .step-body .invoice-summary-wrapper table tr.payable-price {
  border-top: 4px double #bfbfbf;
}
#cart .step-body .invoice-summary-wrapper table tr.payable-price td {
  padding-top: 25px;
}
#cart .step-body .invoice-summary-wrapper table tr.payable-price td:nth-of-type(2) {
  color: #00AAB2;
  font-weight: 800;
  font-size: 1.2rem;
}
#cart .step-body .invoice-summary-wrapper table tr td {
  padding: 10px 0;
  white-space: nowrap;
}
#cart .step-body .invoice-summary-wrapper table tr td:first-of-type {
  font-family: MikhakVF, Tahoma, serif;
}
#cart .step-body .invoice-summary-wrapper table tr td:first-of-type .icon {
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
}
#cart .step-body .invoice-summary-wrapper table tr td:nth-of-type(2) {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
}
#cart .step-body .theme-options-list .option-group {
  padding: 20px 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.3s;
  margin-bottom: 15px;
  border: 1px solid #E7E7E7;
  border-radius: 7px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#cart .step-body .theme-options-list .option-group:hover {
  background-color: #ededed;
}
#cart .step-body .theme-options-list .option-group:not(:last-child) {
  border-bottom: 1px solid #E7E7E7;
}
#cart .step-body .theme-options-list .option-group::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #D0D0D0;
  margin-left: 20px;
  transition: all ease 0.3s;
}
#cart .step-body .theme-options-list .option-group.selected {
  border-color: #00AAB2;
  background-color: #fefefe;
}
#cart .step-body .theme-options-list .option-group.selected::before {
  width: 16px;
  height: 16px;
  background-color: #00AAB2;
  border: none;
  box-shadow: 0 0 0 3px white, 0 0 0 4px #D0D0D0;
  margin-left: 30px;
}
#cart .step-body .theme-options-list .option-group.selected .title {
  font-size: 1.2rem;
  color: #00AAB2;
  font-weight: 800;
}
#cart .step-body .theme-options-list .option-group .soon {
  display: inline-block;
  background: #d24f61;
  color: white;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.7rem;
  margin-right: 10px;
}
#cart .step-body .theme-options-list .option-group .subtitle {
  font-family: MikhakVF, Tahoma, serif;
  font-weight: 500;
  color: #a9a9a9;
}
#cart .step-body .theme-options-list .option-group .title {
  font-weight: bold;
  font-size: 1.1rem;
}
#cart .step-body .theme-options-list2 {
  display: flex;
  flex-wrap: wrap;
}
#cart .step-body .theme-options-list2 .option-group {
  display: flex;
  align-items: center;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#cart .step-body .theme-options-list2 .option-group.selected {
  background-color: #daeded;
  border: none;
  box-shadow: 0 0 0 2px #00aab2;
}
#cart .step-body .theme-options-list2 .option-group img {
  height: 25px;
  margin-left: 15px;
}
#cart .step-body .theme-options-list2 .option-group:not(:last-child) {
  margin-left: 10px;
}
#cart .step-body section {
  margin-bottom: 45px;
}
#cart .step-body .section-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #888f93;
}
#cart .step-body .section-title .icon {
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.7;
}
#cart .step-body .form-hint {
  margin-block: 50px;
  font-weight: 500;
  line-height: 3;
}
#cart .step-body .form-hint .bank-info {
  margin-right: 20px;
  margin-bottom: 5px;
}
#cart .step-body .form-hint .bank-info .label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
#cart .step-body .form-hint .bank-info .label .icon {
  color: silver;
}
#cart .step-body .form-hint .bank-info .tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  direction: ltr;
  letter-spacing: 1px;
  background: #edebce;
  color: #655400;
  padding: 1px 10px;
  border-radius: 5px;
  line-height: 1;
  font-size: 1.05rem;
  margin-right: 10px;
  white-space: nowrap;
}
#cart .step-body#items .swipe-hint-wrapper {
  margin: 20px 0 10px;
  font-size: 0.65rem;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: Mikhak, Tahoma, serif;
  color: #babfc3;
  display: none;
}
#cart .step-body#items .swipe-hint-wrapper img {
  width: 22px;
  opacity: 0.4;
}
#cart .step-body#items .table-wrapper {
  overflow: hidden;
}
#cart .step-body#items #items_table td.quantity {
  border-left: none;
  padding-left: 0;
  width: 150px;
}
#cart .step-body#items #items_table td.quantity .quantity-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #EEE;
  border-radius: 5px;
  width: 115px;
  height: 34px;
  background-color: #FFF;
}
#cart .step-body#items #items_table td.quantity .quantity-box .btn {
  background: none;
  color: #c6c6c6;
  font-size: 0.8rem;
  flex: 0 0 35px;
}
#cart .step-body#items #items_table td.quantity .quantity-box .btn:hover {
  color: #00AAB2;
}
#cart .step-body#items #items_table td.quantity .quantity-box input {
  border: none;
  background: none;
  text-align: center;
  font-weight: 500;
  flex: 1 1 50px;
  color: #00AAB2;
  padding: 0;
}
#cart .step-body#items #items_table td.operations .remove-btn {
  color: silver;
  padding: 4px 7px;
}
#cart .step-body#items #items_table td.operations .remove-btn:hover {
  transform: scale(1.1);
  color: indianred;
}
#cart .step-body#items .invoice-wrapper {
  margin-top: 30px;
  margin-right: auto;
  max-width: 580px;
}
#cart .step-body#items #items_summary_table tr:not(:last-of-type) {
  border-bottom: 6px solid #f5f5f5;
}
#cart .step-body#items #items_summary_table tr.discount-total {
  border-bottom-style: double;
  border-bottom-width: 12px;
}
#cart .step-body#items #items_summary_table tr.discount-total td:nth-of-type(2) {
  color: #df3f3f;
}
#cart .step-body#items #items_summary_table tr.price-discounted-total td:nth-of-type(2) {
  color: #00AAB2;
  font-weight: bold;
  font-size: 1.2rem;
}
#cart .step-body#items #items_summary_table td {
  padding: 1.1rem 1.6rem;
  background-color: #FFF;
}
#cart .step-body#items #items_summary_table td:first-of-type {
  text-align: right;
  color: #5c5c5c;
  font-weight: 500;
}
#cart .step-body#items #items_summary_table td:nth-of-type(2) {
  text-align: left;
}
#cart .step-body#items #items_summary_table td:nth-of-type(2) span:first-of-type {
  font-weight: bold;
  margin-left: 5px;
  font-size: 1.1rem;
}
#cart .step-body#info .form-wrapper {
  flex: 1 1;
}
#cart .step-body#info .form-wrapper #shipment .hint-wrapper {
  font-size: 0.95rem;
  color: #C06464;
  margin-top: 30px;
  padding-right: 20px;
  max-width: 70%;
}
#cart .step-body#info .form-wrapper #shipment .hint-wrapper .point {
  line-height: 2;
  display: flex;
  align-items: flex-start;
}
#cart .step-body#info .form-wrapper #shipment .hint-wrapper .point:not(:last-child) {
  margin-bottom: 15px;
}
#cart .step-body#info .form-wrapper #shipment .hint-wrapper .point::before {
  font-family: "Font Awesome 7 Pro", serif;
  font-weight: 900;
  content: "\f137";
  margin-left: 10px;
}
#cart .step-body#payment .form-wrapper {
  flex: 1 1;
}
#cart .step-body#payment .options-wrapper {
  margin-bottom: 40px;
}
#cart .step-body#payment .gateway-options .form-hint {
  margin-block: 30px 15px;
}
#cart .step-body#payment .gateway-options .option-group.selected {
  font-weight: bold;
}
#cart .step-body#payment .gateway-options .option-group.disabled {
  background: #dfdfdf;
  filter: saturate(0.3) opacity(0.7);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid #d1d1d1;
}
#cart .step-body#payment .remittance-form .remittance-image .image-group {
  max-width: 500px;
}
#cart .step-body#payment .remittance-form .remittance-image .image-group img {
  max-height: 500px;
}
#cart .step-body#payment .remittance-form .remittance-image .image-group .buttons-wrapper {
  margin-top: 15px;
}
#cart .step-body#payment .cheque-form .cheque-image .image-group {
  max-width: 500px;
}
#cart .step-body#payment .cheque-form .cheque-image .image-group img {
  max-height: 500px;
}
#cart .step-body#payment .cheque-form .cheque-image .image-group .buttons-wrapper {
  margin-top: 15px;
}
#cart .step-body#payment #discount {
  background: #ebebeb;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
#cart .step-body#payment #discount label {
  flex: 0 0 50%;
  font-family: MikhakVF, Tahoma, serif;
  font-weight: 500;
  font-size: 1.05rem;
}
#cart .step-body#payment #discount input {
  margin-right: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex: 0 0 220px;
  height: 45px;
  border: none;
}
#cart .step-body#payment #discount button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 0 0 70px;
  height: 45px;
}
#cart .step-body#payment #belongs_to_customer .value {
  color: #3e93c5;
  display: inline-block;
  font-weight: 500;
  margin-right: 10px;
  vertical-align: middle;
}
#cart .operation-buttons-wrapper {
  text-align: left;
  margin-top: 30px;
}
#cart .operation-buttons-wrapper .btn {
  padding: 15px 20px;
  font-size: 1.05rem;
}
#cart #no_items_wrapper {
  text-align: center;
  padding: 50px;
}
#cart #no_items_wrapper .text {
  font-weight: 500;
  font-size: 1.1rem;
  color: #cccccc;
}
#cart #no_items_wrapper .text:first-of-type {
  margin-top: 10px;
}
#cart #no_items_wrapper .text:nth-of-type(2) {
  margin-bottom: 30px;
}
#cart #no_items_wrapper .buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media all and (max-width: 1200px) {
  #cart #steps_head_wrapper .step-group .icon-wrapper {
    width: 45px;
    height: 45px;
  }
  #cart #steps_head_wrapper .step-group .title {
    font-size: 0.95rem;
  }
  #cart .step-body .form-invoice {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  #cart .step-body .two-col {
    grid-gap: 15px 30px;
  }
  #cart .step-body .invoice-summary-wrapper {
    padding: 20px 15px;
    font-size: 0.8rem;
  }
  #cart .step-body .invoice-summary-wrapper .main-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  #cart .step-body .invoice-summary-wrapper table tr td:nth-of-type(2) {
    font-size: 0.9rem;
  }
  #cart .step-body#items #items_summary_table td {
    padding: 1rem 1.3rem;
  }
  #cart .step-body#items #items_summary_table td:first-of-type {
    font-size: 0.85rem;
  }
  #cart .step-body#items #items_summary_table td:nth-of-type(2) {
    font-size: 0.9rem;
  }
  #cart .step-body#items #items_summary_table td:nth-of-type(2) span:first-of-type {
    font-size: 1rem;
  }
  #cart .step-body#info .form-wrapper #shipment .hint-wrapper {
    font-size: 0.85rem;
  }
  #cart .operation-buttons-wrapper .btn {
    padding: 10px 14px;
    font-size: 1rem;
  }
  #cart #no_items_wrapper {
    padding: 40px 20px;
  }
  #cart #no_items_wrapper img {
    width: 260px;
  }
  #cart #no_items_wrapper .text {
    font-size: 1rem;
  }
  #cart #no_items_wrapper .text:nth-of-type(2) {
    margin: 6px 0 30px;
  }
  #cart #no_items_wrapper .buttons-wrapper {
    font-size: 0.8rem;
  }
}
@media all and (max-width: 992px) {
  #cart #steps_head_wrapper {
    margin-bottom: 20px;
  }
  #cart #steps_head_wrapper .step-group {
    padding: 17px 12px;
  }
  #cart #steps_head_wrapper .step-group:not(:last-child)::after {
    font-size: 1.7rem;
  }
  #cart #steps_head_wrapper .step-group .step-num {
    font-size: 0.8rem;
  }
  #cart #steps_head_wrapper .step-group .title {
    font-size: 0.75rem;
  }
  #cart #steps_head_wrapper .step-group .icon-wrapper {
    width: 30px;
    height: 30px;
  }
  #cart #steps_head_wrapper .step-group .icon-wrapper .icon {
    font-size: 0.9rem;
  }
  #cart #steps_head_wrapper .step-group .title {
    font-size: 0.85rem;
  }
  #cart .step-body .form-invoice {
    flex-direction: column;
    align-items: unset;
  }
  #cart .step-body .invoice-summary-wrapper::before {
    background-size: 3.5%;
  }
  #cart .step-body .theme-options-list .option-group .subtitle {
    font-size: 0.9rem;
  }
  #cart .step-body .two-col {
    grid-gap: 15px 20px;
  }
  #cart .step-body .form-hint {
    margin-block: 40px;
  }
  #cart .step-body#items #items_table td.quantity {
    padding-inline: 20px;
  }
  #cart .step-body#items #items_summary_table tr.price-discounted-total td:nth-of-type(2) {
    font-size: 0.9rem;
  }
  #cart .step-body#items #items_summary_table td {
    padding: 0.8rem 1.3rem;
  }
  #cart .step-body#items #items_summary_table td:nth-of-type(2) {
    font-size: 0.8rem;
  }
  #cart .step-body#items #items_summary_table td:nth-of-type(2) span:first-of-type {
    font-size: 0.9rem;
  }
  #cart .step-body#items .invoice-wrapper {
    margin-top: 20px;
    max-width: 100%;
  }
  #cart .step-body#items .swipe-hint-wrapper {
    display: flex;
  }
  #cart .step-body#info .form-wrapper #shipment .hint-wrapper {
    max-width: 100%;
  }
  #cart .step-body#payment .options-wrapper .option-group.selected .title {
    font-size: 1rem;
  }
  #cart .step-body#payment .options-wrapper .option-group .title {
    line-height: 1.9;
    font-size: 1rem;
  }
  #cart #no_items_wrapper img {
    width: 220px;
  }
  #cart #no_items_wrapper .text {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 768px) {
  #cart #steps_head_wrapper {
    overflow-x: auto;
  }
  #cart #steps_head_wrapper .step-group {
    padding: 20px 30px;
  }
  #cart #steps_head_wrapper .step-group:not(:last-child)::after {
    left: 0;
  }
  #cart #steps_head_wrapper .step-group .title {
    white-space: nowrap;
  }
  #cart .operation-buttons-wrapper .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 0;
  }
  #cart .step-body section {
    margin-bottom: 30px;
  }
  #cart .step-body .section-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  #cart .step-body .two-col {
    grid-template-columns: 1fr;
  }
  #cart .step-body .invoice-summary-wrapper {
    font-size: 0.9rem;
  }
  #cart .step-body .invoice-summary-wrapper .main-title {
    font-size: 1.1rem;
  }
  #cart .step-body .invoice-summary-wrapper table tr.payable-price td:nth-of-type(2) {
    font-size: 1.2rem;
  }
  #cart .step-body .invoice-summary-wrapper table tr td:nth-of-type(2) {
    font-size: 1rem;
  }
  #cart .step-body .theme-options-list .option-group {
    padding: 20px 15px;
  }
  #cart .step-body .theme-options-list .option-group::before {
    margin-left: 15px;
  }
  #cart .step-body .theme-options-list .option-group.selected::before {
    margin-left: 25px;
  }
  #cart .step-body .theme-options-list .option-group.selected .title {
    font-size: 1.1rem;
  }
  #cart .step-body .theme-options-list .option-group .subtitle {
    font-size: 0.85rem;
  }
  #cart .step-body .form-hint {
    line-height: 2.5;
  }
  #cart .step-body .form-hint .bank-info {
    text-align: left;
    margin-block: 10px;
    margin-left: 10px;
  }
  #cart .step-body .form-hint .bank-info .label {
    display: flex;
  }
  #cart .step-body#payment .options-wrapper .option-group.selected .title {
    font-size: 0.9rem;
  }
  #cart .step-body#payment .options-wrapper .option-group .title {
    font-size: 0.9rem;
  }
  #cart .step-body#payment .options-wrapper .option-group .soon {
    font-size: 0.55rem;
  }
  #cart #no_items_wrapper img {
    width: 90%;
  }
  #cart #no_items_wrapper .text {
    font-size: 1.1rem;
  }
  #cart #no_items_wrapper .text:nth-of-type(2) {
    margin: 17px 0 30px;
  }
  #cart #no_items_wrapper .buttons-wrapper {
    flex-direction: column;
    margin-top: 55px;
  }
  #cart #no_items_wrapper .buttons-wrapper .btn {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
  }
}
#posts_list #posts_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #f3f3f3;
  grid-gap: 8px;
}

#post_single article {
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 30px 50px;
}
#post_single article #main_image_wrapper {
  margin-bottom: 30px;
}
#post_single article #main_image_wrapper img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#post_single article h1 {
  display: flex;
  line-height: 2;
  margin-bottom: 7px;
}
#post_single article h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
#post_single article h3 {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
#post_single article h4, #post_single article h5, #post_single article h6 {
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}
#post_single article .meta {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 30px;
  font-family: MikhakVF, Tahoma, serif;
}
#post_single article .meta .meta-group {
  color: #ababab;
  font-size: 0.9em;
}
#post_single article .meta .meta-group .icon {
  color: #D9D9D9;
  margin-left: 5px;
}
#post_single article .body {
  line-height: 2.3;
  text-align: right;
}
#post_single article .body a:not(.btn) {
  color: #00AAB2;
  border-bottom: 1px dashed #66c1c6;
  display: inline-block;
  position: relative;
  line-height: 1.8;
}
#post_single article .body a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  background-color: #00AAB2;
  transition: opacity 200ms, transform 300ms;
  transform-origin: 100% 50%;
}
#post_single article .body a:not(.btn):hover, #post_single article .body a:not(.btn):focus {
  border: none;
  color: #49A1A6;
}
#post_single article .body a:not(.btn):hover::after, #post_single article .body a:not(.btn):focus::after {
  transform: scaleX(1);
}
#post_single article .body img {
  max-width: 100%;
  margin: 50px auto;
  display: block;
}
#post_single article .body ul {
  list-style: disc;
  padding-right: 20px;
}
#post_single article .body ol {
  list-style-type: persian;
  padding-right: 20px;
}
#post_single article .body p {
  margin-bottom: 7px;
}
#post_single article .body .point-wrapper {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  padding: 35px 25px;
  border-radius: 5px;
  font-family: MikhakVF, Tahoma, serif;
  font-weight: 500;
  line-height: 2.3;
  box-shadow: 0 5px 14px -8px #d0d0d0;
}
#post_single article .body .point-wrapper.theme-avayemehr {
  background: #f7f7f7;
  border-right: 4px solid #00aab2;
  color: #00aab2;
  padding: 40px 25px;
}
#post_single article .body .point-wrapper.theme-avayemehr::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 50px;
  top: 15px;
  right: 20px;
  background: url(/img/ghasedak_single_inner.svg) no-repeat;
  transform: rotate(-28deg);
  filter: blur(0.04rem) opacity(0.15);
}
#post_single article .body .point-wrapper.theme-avayemehr::after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 55px;
  bottom: 3px;
  left: 35px;
  background: url(/img/ghasedak_single_inner.svg) no-repeat;
  transform: rotate(21deg);
  filter: blur(0.03rem) opacity(0.2);
}
#post_single article .body .point-wrapper.theme-blue {
  background: #d2e5e6;
  border: #9cc1c3 1px solid;
  color: #2b8d92;
}
#post_single article .body .point-wrapper.theme-red {
  background: #e6d2d2;
  border: #d0b3b3 1px solid;
  color: #ab5e5e;
}
#post_single .cols-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 35px;
}

@media all and (max-width: 1200px) {
  #post_single article {
    padding: 25px 25px 30px;
  }
  #post_single article h1 {
    font-size: 1.25rem;
  }
  #post_single article h2 {
    font-size: 1.1rem;
    margin: 1.8rem 0 0.4rem;
  }
  #post_single article h4, #post_single article h5, #post_single article h6 {
    font-size: 0.95rem;
  }
  #post_single article .meta {
    gap: 25px;
    margin-bottom: 20px;
  }
  #post_single article .body {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 992px) {
  #post_single .cols-wrapper {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 768px) {
  #post_single article {
    padding: 12px 12px 25px;
  }
  #post_single article #main_image_wrapper {
    margin-bottom: 15px;
  }
  #post_single article h1 {
    font-size: 1.1rem;
  }
  #post_single article h2 {
    font-size: 1.05rem;
  }
  #post_single article h4, #post_single article h5, #post_single article h6 {
    font-size: 1.05rem;
  }
  #post_single article .meta {
    gap: 15px;
    margin-bottom: 15px;
  }
  #post_single article .meta .meta-group {
    font-size: 0.75rem;
  }
}
