html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body * {
  -webkit-tap-highlight-color: transparent;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  pointer-events: none;
}

@keyframes feedback-button-1 {
  0% {transform: scale(0.7);}
  100% {transform: scale(1.2);}
}

#feedback-button > div > img.flash {
  transform-origin: center 70%;
  animation: feedback-button-1 0.7s ease-in-out 0s infinite alternate;
}

#feedback-container {
  pointer-events: none;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}

#feedback-container > form {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,0%) scale(0.1);
  border-radius: 15px;
  width: min(90%,610px);
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.5s ease-in 0s, top 0.5s ease-in 0s;
}

#feedback-container > form > h3 {
  font-family: iransansx;
  font-size: 15px;
  margin: 0 0 15px;
  padding: 0;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

body.latin #feedback-container > form > h3 {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#feedback-container > form > textarea {
  display: block;
  font-family: iransansx;
  font-size: 15px;
  margin: 0 0 15px;
  padding: 6px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  resize: none;
  outline: none; /* important for :focus*/
}

body.latin #feedback-container > form > textarea {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#feedback-container > form > input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  font-family: iransansx;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 45px;
  padding: 0px 24px 0px;
  height: 36px;
  border: none;
  cursor: pointer;
}

body.latin #feedback-container > form > input[type="submit"] {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  padding: 7px 24px 8px;
}

#feedback-container.show {
  transition: opacity 0.5s ease 0s;
  pointer-events: auto;
  opacity: 1;
}

#feedback-container.show > form {
  transition: transform 0.6s ease-out 0s, top 0.6s ease-out 0s;
  transform: translate(-50%,-50%) scale(1);
  top: 50%;
}

#feedback-container.sent > form {
  transform: translate(-50%,-100%) scale(0.1);
  top: 0%;
}

.bgImage {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: fixed;
  top: 50vh;
  left: 50vw;
  height: 100vmax;
  z-index: -8;
  /*filter: brightness(60%);
  -webkit-filter: brightness(60%);*/
}

#loading_01 {
  width: 100%;
  height: 100vh;
  height: 100dvh; /* at WWDC22, Apple presented new units such as svh, lvh, dvh, etc. */
  position: fixed;
  top: 0;
  left: 0;
  touch-action: none;
  z-index: 9;
}

#loading_02 {
  display: block;
  width: clamp(20px, 16vmin, 100px);
  height: clamp(20px, 16vmin, 100px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-version {
  font-family: monospace;
  font-size: 14px;
  position: absolute;
  left: 50%;
  bottom: calc(0vh + 20px);
  bottom: calc(0dvh + 20px);
  transform: translate(-50%, 0);
}

.introGuide {
  visibility: hidden;
  opacity: 0;
  width: min(330px, calc(100vw - 18px));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 1px 24px -9px #000000;
}

body.latin .introGuide {
  direction: ltr;
}

.introGuide_show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.7s ease-in;
}

#introGuideHeader {
  font-family: iransansx;
  line-height: 1.5;
  font-size: 18px;
  margin: 0 auto 18px;
}

body.latin #introGuideHeader {
  font-family: Helvetica, Arial, sans-serif;
}

#introGuideText {
  font-family: iransansx;
  font-size: 16px;
  line-height: 1.6;
  margin: 18px auto;
}

body.latin #introGuideText {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
}

#introGuide > button {
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  padding: 9px 24px 9px;
  touch-action: auto;
  border-radius: 36px;
  border: none;
  margin: auto auto 0;
}

#gyro-sensor-permission-explain {
  box-sizing: border-box;
  direction: rtl;
  z-index: 9;
  position: fixed;
  top: calc(50vh - 125pt);
  left: 50vw;
  padding: 14pt;
  border-radius: 10pt;
  text-align: center;
  font-family: iransansx;
  font-size: 12pt;
  line-height: 1.7;
  width: 190pt;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in, transform 0.3s;
}

body.latin #gyro-sensor-permission-explain {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11pt;
  width: 178pt;
}

#gyro-sensor-permission-explain.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#gyro-sensor-permission-explain.hide {
  transition: opacity 0.3s ease-out;
  opacity: 0;
}

@media screen and (min-aspect-ratio: 1/1) {
  #gyro-sensor-permission-explain {
    top: 0pt;
    transform: translate(-50%, 0%) scale(1.2);
    width: 330pt;
  }
  
  #gyro-sensor-permission-explain.show {
    transform: translate(-50%, 0%) scale(1);
  }
}

@keyframes onLoad_01 {
  from {opacity: 1;}
  to {opacity: 0;/* visibility: hidden;*/}  
}

.webkitNoLongTouch {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

.header_01 {
  position: sticky;
  top: -192px;
  z-index: 1;
}

#header-background-1 {
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  height: calc(100vh + 192px);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -8;
  clip-path: polygon(0% 0%, 100% 0%, 100% 192px, 100px 192px, 100px 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 192px, 100px 192px, 100px 100%, 0% 100%);
}

html[dir="ltr"] #header-background-1 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(100% - 100px) 100%, calc(100% - 100px) 192px, 0% 192px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(100% - 100px) 100%, calc(100% - 100px) 192px, 0% 192px);
}

#topHeader_1 {
  position: relative;
  display: flex;
  height: 192px;
  z-index: 1;
}

#topHeader_bg {
  position: absolute;
  top: 0px;
  right: 0px;
  direction: rtl;
  width: 100%;
  height: 192px;
  z-index: -9;
}

#topHeader_bg > div {
  width: calc(100% - 100px);
  height: 100%;
}

#topHeader_1 > div:nth-child(2) {
  width: 100px;
  display: flex;
  gap: 18px;
  flex-direction: column;
  justify-content: center;
  align-items:center;
}

#topHeader_1 > div:nth-child(1) {
  flex-grow: 1;
}

#logo-1 {
  width: fit-content;
  margin: 0 auto;
  display: block;
  pointer-events: none;
}

#logo-1 > img, #topHeader_1 > div:nth-child(2) > a > img {
  display: block;
}

#header-title {
  width: fit-content;
  direction: rtl;
  font-family: iransansx;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

body.latin #header-title {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#topHeader_1 > div:nth-child(2) > a {
  display: block;
  width: fit-content;
  font-family: iransansx;
  font-size: 13px;
  line-height: 1;
}

#topHeader_1 > div:nth-child(2) > a > img {
  height: 33px;
}

.header_01 .navBackground_1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 192px;
  z-index: 0;
}

.header_01 .navBackground_2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  z-index: 0;
}

.side_menu_button {
  position: fixed;
  top: calc(100% - 66px);
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: top 0.9s ease;
}

html[dir="ltr"] .side_menu_button {
  right: unset;
  left: 18px;
}

.side_menu_button.top {
  position: fixed;
  top: 18px;
}

#side_menu_button img {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
  pointer-events: none;
}

#counter_on_sm_button {
  direction: ltr;
  font-family: iransansx;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: center;
  padding: 5px 5px 2px;
  border-radius: 4px;
  transform: translate(43%, -43%);
  -webkit-transform: translate(43%, -43%);
}

body.latin #counter_on_sm_button {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  padding: 5px;
}

.side_menu {
  height: 100%;
  width: calc(100% - 100px);
  position: fixed;
  top: 0;
  right: calc(-100% + 100px);
  z-index: 3;
  overflow: hidden;
  display: none;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s ease, left 0.5s ease;
}

html[dir="ltr"] .side_menu {
  right: unset;
  left: calc(-100% + 100px);
}

.side_menu_open {
  right: 0;
  transition: right 0.5s ease, left 0.5s ease;
}

html[dir="ltr"] .side_menu_open {
  right: unset;
  left: 0;
}

#sm_header {
  line-height: 1;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#sm_header_2 {
  font-family: iransansx;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.latin #sm_header_2 {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

body.latin #sm_header_2 > *:first-child {
  font-family: Helvetica, Arial, sans-serif;
}

.x_button {
  font-family: Helvetica, Arial, sans-serif;
  width: max-content;
  height: max-content;
  padding: 8px 10px 12px;
  line-height: 1;
  font-size: 27px;
  font-weight: 400;
  cursor: pointer;
}

#sc_list {
  font-family: iransansx;
  font-size: 15px;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

body.latin #sc_list {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

.sc_orderedSC {
  width: 100%;
  margin: 18px 0 36px
}

.sc_subBanner {
  font-family: iransansx;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  padding: 15px 0;
  margin: 0 13px;
}

body.latin .sc_subBanner {
  font-family: Helvetica, Arial, sans-serif;
}
  
.sc_currentSC {
  width: 100%;
  padding: 0;
  margin: 18px 0 36px;
  flex-grow: 1;
}

.sc_item_container {
  line-height: 1;
  margin: 0 13px 0;
  padding: 6px 6px 12px;
}

.sc_item_title_and_image {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.sc_item_title {
  padding: 6px 0px;
  width: fit-content;
}

.sc-item-image-wrapper {
  width: 42px;
  border-radius: 5px;
  overflow: hidden;
  height: fit-content;
  flex-shrink: 0;
}

#currentSC .sc_item_title,
#currentSC .sc-item-image-wrapper {
  cursor: pointer;
}

.sc-item-image {
  width: 100%;
  display: block;
}

.sc_item_title,
body.latin .sc_item_title bdo,
body:not(.latin) .sc_item_title bdo > bdo,
.sc_orderedSC .sc_item_title.persian,
.sc_orderedSC .sc_item_title.arabic,
.sc_orderedSC .sc_item_title.latin bdo,
.sc_orderedSC .sc_item_title.persian bdo > bdo,
.sc_orderedSC .sc_item_title.arabic bdo > bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
  line-height: 1.6;
}

body.latin .sc_item_title,
body:not(.latin) .sc_item_title bdo,
body.latin .sc_item_title bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.sc_orderedSC .sc_item_title.latin,
.sc_orderedSC .sc_item_title.persian bdo,
.sc_orderedSC .sc_item_title.arabic bdo,
.sc_orderedSC .sc_item_title.latin bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.sc_item_price_01 {
  position: relative;
  z-index: 0;
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sent-order-note {
  font-size: 14px;
  line-height: 1.6;
  border-radius: 9px;
  margin: 18px 22px 0;
  padding: 0;
}

.sent-order-note > span:first-child {
  font-family: iransansx;
  font-weight: 700;
}

body.latin .sent-order-note {
  direction: ltr;
  font-size: 15px;
  line-height: 1.5;
}

body.latin .sent-order-note > span:first-child {
  font-family: Helvetica, Arial, sans-serif;
}

#side-menu-order-note,
#side-menu-feedback-note {
  height: auto;
  max-height: 117px;
  display: block;
  font-family: iransansx;
  font-size: 14px;
  line-height: 1.5;
  width: -webkit-fill-available;
  margin: 13px 13px 0;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 9px;
  resize: none;
  outline: none; /* important for :focus*/
}

#side-menu-feedback-note {
  display: none;
  height: 36px;
  margin: 13px;
  cursor: text;
}

body.latin #side-menu-order-note,
body.latin #side-menu-feedback-note {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#sc_footer {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

#sc_footer > div:not(#side-menu-feedback-note) {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 13px 13px;
}

body.persian #sc_footer > div:not(#side-menu-feedback-note),
body.arabic #sc_footer > div:not(#side-menu-feedback-note) {
  font-family: iransansx;
  font-size: 14px;
}

body.latin #sc_footer > div:not(#side-menu-feedback-note) {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

#sc_footer .buttons-enamad {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0px 0px;
}

#sc_footer > div .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 15px;
}

#sc_footer .buttons-enamad:has(#enamad-1) .buttons {
  flex-direction: column;
}

#enamad-1 {
  display: block;
  margin: 0px auto;
  width: fit-content;
  background: white;
  padding: 6px;
  border-radius: 15px;
  cursor: pointer;
}

#enamad-1 > img {
  display: block;
  width: 80px;
}

body.latin #sc_footer > div {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#sc_totalCount, #sc_totalPrice {
  font-size: 16px;
}

#total_quantity_label,
#total_price_label {
  margin: 0 0 0 7px;
  line-height: 1.9;
}

body.latin #total_quantity_label,
body.latin #total_price_label {
  margin: 0 7px 0 0;
}

#notifier-wrapper {
  display: none;
  pointer-events: none;
  background-color: rgba(0,0,0,0.6);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
}

#notifier-wrapper.show {
  pointer-events: auto;
  opacity: 1;
}

#notifier {
  font-family: iransansx;
  font-size: 15px;
  line-height: 1.7;
  padding: 24px 21px 36px;
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 100%);
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  border-radius: 15px 15px 0 0;
  transition: bottom 0.4s ease-out 0s, width 0.4s ease-out 0s, transform 0.4s ease-out 0s, border-radius 0.4s ease-out 0s;
}

body.latin #notifier,
body:not(.latin) #notifier bdo  {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

#notifier-wrapper.show #notifier:not(.hide):not(.center) {
  transform: translate(50%, 0%);
}

#notifier.hide {
  transition: none;
}

#notifier.center {
  border-radius: 15px;
  bottom: 50%;
  width: calc(100% - 40px);
  transform: translate(50%, 50%);
}

#notifier > p {
  margin: 0 0 18px;
}

#notifier > p:nth-child(1) {
  margin: 0 0 12px;
}

#notifier-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

body.latin #notifier #notifier-buttons-wrapper {
  flex-direction: row-reverse;
}

#notifier-buttons-wrapper > button {
  cursor: pointer;
  font-family: iransansx;
  font-size: 16px;
  line-height: 40px;
  padding: 0px 24px;
  touch-action: auto;
  border-radius: 36px;
  border: none;
  margin: 0;
}

body.latin #notifier #notifier-buttons-wrapper > button {
  font-size: 17px;
  font-family: Helvetica, Arial, sans-serif;
}

#sc_totalPrice.blinker {
  text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-thickness: 2px;
  cursor: pointer;
  animation: underline-blinker-1 1s ease-in-out 0s infinite alternate;
}

#sc_submit,
#sc_waiter_call {
  text-align: center;
  font-family: iransansx;
  box-sizing: border-box;
  width: min(100%, 240px);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  padding: 6px 18px 5px;
  border-radius: 24px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

body.latin #sc_footer > div #sc_submit,
body.latin #sc_footer > div #sc_waiter_call {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
}

#sc_footer_currency {
  margin: 0 3px 0 0;
}

html[lang="fa-IR"] #sc_footer_currency.Toman,
html[lang="ar"] #sc_footer_currency.Toman {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
}

body.latin #tax_label {
  font-size: 13px;
}

#payment-info {
  display: none;
  line-height: 1.7;
  padding: 0px 13px 0px !important;
}

body.latin #payment-info {
  line-height: 1.8;
  font-family: Helvetica, Arial, sans-serif;
}

#payment-info > div > .card-number {
  display: inline-block;
  direction: ltr;
  font-size: 16px;
  text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-thickness: 2px;
  cursor: pointer;
  animation: underline-blinker-1 1s ease-in-out 0s infinite alternate;
}

.tooltip-1 {
  direction: rtl;
  font-family: iransansx;
  pointer-events: none;
  width: max-content;
  text-align: center;
  animation: none;
  opacity: 0;
  transition: opacity 0.3s ease-in 0s;
  font-size: 14px;
  padding: 6px 9px;
  line-height: 1.6;
}

body.latin .tooltip-1 {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

#payment-info .tooltip-1, #sc_totalPriceDiv .tooltip-1 {
  position: absolute;
  top: 3px;
  right: 1px;
  border-radius: 15px 15px 15px 0px;
  transform: translate(100%, -100%);
}

body.latin #payment-info .tooltip-1,
body.latin #sc_totalPriceDiv .tooltip-1 {
  right: unset;
  left: 1px;
  border-radius: 15px 15px 0px 15px;
  transform: translate(-100%, -100%);
}

#side-menu-button-tooltip {
  font-size: 14px;
  padding: 9px 12px;
  position: absolute;
  top: 12px;
  left: 10px;
  border-radius: 15px 15px 0px 15px;
  transform: translate(-100%, -100%) scale(0.3);
  transform-origin: 100% 100%;
  transition: opacity 0.3s ease-in 0s, transform 0.5s cubic-bezier(0.42, 1.22, 0.55, 1.74) 0s, top 0.9s ease, border-radius 0.9s ease;
}

html[dir="ltr"] #side-menu-button-tooltip {
  left: 38px;
  transform: translate(0%, -100%) scale(0.3);
  border-radius: 15px 15px 15px 0px;
  transform-origin: 0% 100%;
}

#side-menu-button-tooltip.shown {
  transform: translate(-100%, -100%) scale(1);
}

html[dir="ltr"] #side-menu-button-tooltip.shown {
  transform: translate(0%, -100%) scale(1);
}

#side_menu_button.top #side-menu-button-tooltip {
  top: 98px;
  border-radius: 15px 0px 15px 15px;
  transform-origin: 100% 0%;
}

html[dir="ltr"] #side_menu_button.top #side-menu-button-tooltip {
  border-radius: 0px 15px 15px 15px;
  transform-origin: 0% 0%;
}

body.latin #side_menu_button.top #side-menu-button-tooltip {
  font-size: 15px;
  top: 77px;
}

.scrollMenu_01,
.scrollMenu_bg {
  position: absolute;
  box-sizing: border-box;
  top: 192px;
  left: 0px;
  width: 100px;
  height: 100vh;
  height: 100dvh; /* at WWDC22, Apple presented new units such as svh, lvh, dvh, etc. */
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

html[dir="ltr"] .scrollMenu_01,
html[dir="ltr"] .scrollMenu_bg {
  left: unset;
  right: 0px;
}

.scrollMenu_bg {
  z-index: -9;
  height: 108vh;
}

.scrollMenu_01.fixed {
  position: fixed;
  top: 0;
}

.scrollMenu_02 {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0%;
  text-align: center;
  box-sizing: border-box;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  transition: left 0.5s ease;
  overflow: hidden auto;
  overscroll-behavior: contain;
}

.scrollMenu_02 > ul {
  list-style-type: none;
  box-sizing: border-box;
  padding: 0;
  margin: 10px 0;
  flex-shrink: 0;
}

.scrollMenu_02.no-icon > ul {
  margin: 0;
}

.scrollMenu_02 > ul:first-of-type {margin-top: 0;}

.scrollMenu_02 > ul:last-of-type {margin-bottom: 0;}

.scrollMenu_02.no-icon {
  padding: 1px 0;
}

.scrollMenu_01.sm-open .scrollMenu_02 {
  left: 100%;
}

html[dir="ltr"] .scrollMenu_01.sm-open .scrollMenu_02 {
  left: -100%;
}

.scrollMenu_03 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: -100%;
  text-align:center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: left 0.5s ease;
}

html[dir="ltr"] .scrollMenu_03 {
  left: 100%;
}

.scrollMenu_03 > ul {
  list-style-type: none;
  box-sizing: border-box;
  padding: 18px 0 0;
  margin: 0;
  overflow: hidden auto;
  overscroll-behavior: contain;
}

.scrollMenu_02::-webkit-scrollbar,
.scrollMenu_03 > ul:first-child::-webkit-scrollbar {
    display: none;
}

.scrollMenu_01.sm-open .scrollMenu_03 {
  left: 0%;
}

.menu-tab {
  font-family: iransansx;
  font-weight: 700;
  display: inline-block;
  box-sizing: border-box;
  font-size: 12px;
  text-align: center;
  width: 80px;
  padding: 0 1px;
  border: 1px solid transparent;
  margin: 2px auto;
  text-decoration: none;
  border-radius: 18px;
  cursor: pointer;
  background: none;
  line-height: 1.6;
  transition: background-color 0.4s ease-out, color 0.4s ease-out;
}

.menu-tab:first-of-type {
  margin-top: 0;
}

.menu-tab:last-of-type {
  margin-bottom: 0;
}

.scrollMenu_02.no-icon .menu-tab {
  margin: 0;
  padding: 0 2px;
  width: 100%;
  display: block;
  border-radius: 0;
  border: none;
}

body.latin .menu-tab,
body:not(.latin) .menu-tab bdo,
body.latin .menu-tab bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-size: 13px;
}

body.latin .menu-tab bdo,
body:not(.latin) .menu-tab bdo > bdo {
  direction: rtl;
  font-family: iransansx;
}

.menu-tab > * {
  display: block;
  text-decoration: none;
  padding: 12px 0px 8px;
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
}

.menu-tab label {
  cursor: pointer;
}

.menu-tab select {
  font-family: iransansx;
  font-size: 12px;
  max-width: 100%;
}

.scrollMenu_02.no-icon .menu-tab {
  border-radius: 18px 0 0 18px;
}

.scrollMenu_02.no-icon .menu-tab > * {
  padding: 13px 0px 11px;
}

.scrollMenu_02.no-icon .menu-tab:not(.highlight) > * {
  text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
}

#menutab_contactUs_banner {
  font-family: iransansx;
  font-weight: 700;
  display: inline-block;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 36px auto 0;
  line-height: 1;
}

body.latin #menutab_contactUs_banner {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.menutab_section_banner {
  font-family: iransansx;
  font-weight: 700;
  display: inline-block;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  padding: 0;
  margin: 45px auto 18px;
  line-height: 1;
}

.menutab_04 {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 27px auto;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

.menutab_04 * {
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

#developer-link-from-ham-menu {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  margin: 21px auto 12px;
}

#developer-link-from-ham-menu > a,
#developer-link-from-ham-menu > a:hover,
#developer-link-from-ham-menu > a:visited {
  font-size: 14px;
}

#sc_submit:active {
  box-shadow: none;
}

.menu-tab .icon {
  display: block;
  margin: 0 auto 8px;
  height: 45px;
  border-radius: 50%;
  pointer-events: none;
}

.scrollMenu_02.no-icon .menu-tab .icon {
  display: none;
}

.menulist_01 {
  position: relative;
  width: calc(100% - 100px);
  box-sizing: border-box;
  padding: 210px 12px 0px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 0;
}

html[dir="ltr"] .menulist_01 {
  margin: 0 0 0 auto;
  right: 100px;
}

.menulist_01:first-of-type {
  padding-top: 31px;
}

.menulist_01:last-of-type {
  padding-bottom: 210px;
}

.listBanner_01 {
  /* position: sticky;
  top: -33px;
  z-index: 1; */
  box-sizing: border-box;
  border-radius: 18px;
  font-family: iransansx;
  width: 100%;
  /* height: 78px; */
  padding: 18px 0 0;
  margin: 0;
}

body.latin .listBanner_01 > h2 {
  font-size: 17px;
}

.listBanner_01 > h2 {
  /* position: sticky;
  top: 0px; */
  margin: 0 12px 0;
  padding: 0;
  line-height: 30px;
  font-size: 16px;
  text-align: center;
}

body:not(.latin) .listBanner_01 > h2 > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
}

.listBanner_01 > p {
  font-family: iransansx;
  font-weight: 400;
  font-size: 14px;
  margin: 5px 12px 0;
  padding: 0;
  line-height: 1.7;
  text-align: justify;
  text-align-last: center;
}

body:not(.latin) .listBanner_01 > p bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

.listBanner_01 > *:last-child {
  margin-bottom: 18px;
}

body.latin .listBanner_01 > h2,
body.latin .listBanner_01 > h2 > bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
}

body.latin .listBanner_01 > h2 > bdo,
body:not(.latin) .listBanner_01 > h2 > bdo > bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 16px;
  font-weight: 400;
}

body.latin .listBanner_01 > p {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin: 9px 15px 21px;
  padding: 0 12px;
  line-height: 1.5;
}

body.latin .listBanner_01 > p bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
}

.itemContainer_01 {
  /*position: sticky;
  top: 28px;*/
  position: relative;
  overflow: hidden;
  direction: rtl;
  width: 100%;
  height: max-content;
  box-sizing: border-box;
  text-align: center;
  margin: 0;
  padding: 12px;
  border-collapse: collapse;
  border-radius: 16px;
  z-index: 0;
  transform-origin: center 0%;
}

body:not(:has(.item-counter-quantity:focus)) .itemContainer_01:not(.ad) {
  cursor: pointer;
}

@media screen and (min-width: 736px) and (max-width: 1023px) {
  .itemContainer_01 {
    max-width: calc((100% - 12px)/2);
  }
}

@media screen and (min-width: 1024px) {
  .itemContainer_01 {
    max-width: calc((100% - 24px)/3);
  }
}

@media screen and (min-width: 1320px) {
  .itemContainer_01 {
    max-width: calc((100% - 36px)/4);
  }
}

@media screen and (min-width: 1622px) {
  .itemContainer_01 {
    max-width: calc((100% - 48px)/5);
  }
}

@media screen and (min-width: 1924px) {
  .itemContainer_01 {
    max-width: calc((100% - 60px)/6);
  }
}

@media screen and (min-width: 2226px) {
  .itemContainer_01 {
    max-width: calc((100% - 72px)/7);
  }
}

@media screen and (min-width: 2528px) {
  .itemContainer_01 {
    max-width: calc((100% - 84px)/8);
  }
}

/*
Formula example:
(x-84)/8 = 290  ( 84 is (itemCount(8)-1) times gap(12) )
290*8 = x-84
x=290*8+84 + (paddingSum(24) + sideBar(100))
*/

.item-info {
  position: relative;
  overflow: hidden;
  font-family: iransansx;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  text-align: justify;
  /*text-align-last: center;*/ /*not needed, also doesn't work in Safari*/
  /* text-justify: inter-word; */
  padding: 0;
  margin: -2px 0px 6px;
}

.item-photo-and-data > .item-info {
  min-height: 140px;
  display: flex;
  justify-content: space-between;
  align-self: flex-start;
  gap: 6px;
}

.item-photo-and-data > .item-info:not(.flex) {
  flex-direction: column;
}

.itemContainer_01:has(> .item-photo-and-data) > .item-info {
  margin: -2px 0px 9px;
}

body.latin .item-info,
body.latin .itemContainer_01 > .item-description-wrapper,
body.latin .item-photo-and-data > .item-description-wrapper {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.itemContainer_01 .item-info.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.itemContainer_01.one-line > .item-info.flex {
  margin: -2px 0px;
}

.itemContainer_01 > .item-info:not(.flex) {
  max-height: 44px;
}

.item-photo-and-data {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.latin .item-photo-and-data {
  flex-direction: row-reverse;
}

.item-photo-and-data > .item-variant,
.item-photo-and-data > .item-description-wrapper,
.item-photo-and-data > .item-info {
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.item-photo-and-data > .item-description-wrapper {
  max-height: 140px;
}

.item-photo-and-data > .item-info,
.item-photo-and-data > .item-variant {
  margin: 0 auto;
}

body.latin .item-variant {
  direction: ltr;
}

.itemContainer_01 > .item-variant,
#selected-item-fullscreen-container .item-variant {
  margin: 4px 0 0;
  padding: 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

#selected-item-fullscreen-container .item-variant:last-child {
  padding-bottom: 13px;
}

.item-variant-header {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
  gap: 6px;
  font-family: iransansx;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.item-photo-and-data .item-variant > .item-variant-header {
  margin: 0px;
  /* max-width: 110px; */
}

.itemContainer_01 > .item-info > .item-variant > .item-variant-header,
.itemContainer_01 > .item-variant > .item-variant-header,
.itemContainer_01 > .item-photo-and-data > .item-info.flex > .item-variant > .item-variant-header {
  margin: 0;
  justify-content: flex-start;
}

#selected-item-fullscreen-container .item-variant-header {
  margin: 0;
  justify-content: flex-start;
  font-size: 14px;
}

body.latin #selected-item-fullscreen-container .item-variant-header {
  font-size: 16px;
}

.selected-item-fullscreen-table-title,
body.latin .selected-item-fullscreen-table-title bdo {
  margin: 36px 0px 7px;
  text-align: center;
  font-family: iransansx;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

body.latin .selected-item-fullscreen-table-title,
body:not(.latin) .selected-item-fullscreen-table-title bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.selected-item-fullscreen-table {
  overflow: auto hidden;
  /* overscroll-behavior: none; */
  margin-top: 36px;
}

body.latin .selected-item-fullscreen-table {
  direction: ltr;
}

.item-table {
  width: max-content;
  border: 1px solid;
  border-collapse: collapse;
  font-family: iransansx;
  font-size: 13px;
  margin: 0 auto;
}

body.latin .item-table,
body:not(.latin) .item-table > tr > *.latin {
  direction: ltr;
  text-align: left;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.item-table > tr > * {
  width: max-content;
  border: 1px solid;
  line-height: 1.9;
  height: 30px;
  padding: 0 9px;
  text-align: right;
}

.item-table > tr > th {
  font-weight: 600;
}

body:not(.latin) .item-table > tr > *:not(.latin) bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

.item-table > tr > *.latin bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
}

.item-table > tr > *.c {
  text-align: center !important;
}

body.latin .item-variant-header {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-align: left;
}

body:not(.latin) .item-variant-header bdo,
body.latin .item-variant-header bdo > bdo {
  direction: ltr;
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
}

body.latin .item-variant-header bdo,
body:not(.latin) .item-variant-header bdo > bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
}

.additive-select {
  font-family: iransansx;
  font-size: 14px;
  max-width: 108px;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
}

body.latin .additive-select {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.item-price-and-counter-container {
  direction: ltr;
  margin: 0;
  padding: 0;
}

.item-photo-and-data .item-variant > .item-price-and-counter-container {
  text-align: center;
}

.itemContainer_01 .item-variant > .item-price-and-counter-container,
.itemContainer_01 > .item-info > .item-variant > .item-price-and-counter-container,
.item-photo-and-data .item-variant > .item-price-and-counter-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  flex-grow: 1;
  flex-wrap: wrap;
}

body.latin .itemContainer_01 .item-variant > .item-price-and-counter-container {
  flex-direction: unset;
}

.itemContainer_01 > .item-info > * {
  display: inline;
  unicode-bidi: unset;
}

.item-photo-and-data > .item-info > .item-variant,
.item-photo-and-data > .item-info > .item-description-wrapper {
  margin: auto 0;
}

.item-photo-and-data > .item-info.flex > .item-variant {
  margin: 0px;
  height: fit-content;
}

.item-photo-and-data > .item-info > .item-description-wrapper {
  max-height: 88px;
  position: relative;
  overflow: hidden;
}

.item-photo-and-data > .item-info:has(.item-variant) > .item-description-wrapper {
  max-height: 66px;
}

.item-photo-and-data > .item-description-wrapper {
  position: relative;
  max-height: 110px;
  overflow: hidden;
  font-family: iransansx;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  text-align: justify;
}

.item-photo-and-data > .item-variant .item-description-wrapper {
  width: 100%;
}

.itemContainer_01 > .item-description-wrapper {
  max-height: 44px;
  position: relative;
  overflow: hidden;
  font-family: iransansx;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  text-align: justify;
}

.item-photo-and-data > .item-variant .item-description-wrapper.m:not(:last-child) {
  max-height: 88px;
  margin-bottom: 5px;
}

.item-description {
  margin: 0;
}

body:not(.latin) .item-description-wrapper bdo,
body:not(.latin) .item-info .item-description bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
}

body.latin .item-description-wrapper bdo,
body.latin .item-info .item-description bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 13px;
}

.item-info.flex > .item-variant,
.item-photo-and-data > .item-info > .item-variant {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.item-photo-and-data > .item-info:not(.flex) > .item-variant {
flex-grow: unset;
}

/* body.latin .itemContainer_01 > .item-info.flex {
  flex-direction: row-reverse;
} */

.item-info.flex > .item-variant > .item-price-and-counter-container {
  justify-content: flex-end;
  gap: 6px;
}

body.latin .item-info.flex > .item-variant > .item-price-and-counter-container {
  flex-direction: row;
}

.info-overflow > .item-info:not(.flex),
.info-overflow > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 44px, 52px 44px, 52px 22px, 0% 22px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 44px, 52px 44px, 52px 22px, 0% 22px);
}

body.latin .info-overflow > .item-info:not(.flex),
body.latin .info-overflow > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 22px, calc(100% - 52px) 22px, calc(100% - 52px) 44px, 0% 44px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 22px, calc(100% - 52px) 22px, calc(100% - 52px) 44px, 0% 44px);
}

.info-overflow > .item-photo-and-data > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 110px, 52px 110px, 52px 88px, 0% 88px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 110px, 52px 110px, 52px 88px, 0% 88px);
}

body.latin .info-overflow > .item-photo-and-data > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 88px, calc(100% - 52px) 88px, calc(100% - 52px) 110px, 0% 110px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 88px, calc(100% - 52px) 88px, calc(100% - 52px) 110px, 0% 110px);
}

.info-overflow > .item-photo-and-data > .item-info .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 88px, 52px 88px, 52px 66px, 0% 66px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 88px, 52px 88px, 52px 66px, 0% 66px);
}

body.latin .info-overflow > .item-photo-and-data > .item-info .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 66px, calc(100% - 52px) 66px, calc(100% - 52px) 88px, 0% 88px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 66px, calc(100% - 52px) 66px, calc(100% - 52px) 88px, 0% 88px);
}

.info-overflow > .item-photo-and-data > .item-variant > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 88px, 52px 88px, 52px 66px, 0% 66px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 88px, 52px 88px, 52px 66px, 0% 66px);
}

body.latin .info-overflow > .item-photo-and-data > .item-variant > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 66px, calc(100% - 52px) 66px, calc(100% - 52px) 88px, 0% 88px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 66px, calc(100% - 52px) 66px, calc(100% - 52px) 88px, 0% 88px);
}

.info-overflow > .item-photo-and-data > .item-info:has(.item-variant) > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 66px, 52px 66px, 52px 44px, 0% 44px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 66px, 52px 66px, 52px 44px, 0% 44px);
}

body.latin .info-overflow > .item-photo-and-data > .item-info:has(.item-variant) > .item-description-wrapper > .item-description {
  clip-path: polygon(0% 0%, 100% 0%, 100% 44px, calc(100% - 52px) 44px, calc(100% - 52px) 66px, 0% 66px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 44px, calc(100% - 52px) 44px, calc(100% - 52px) 66px, 0% 66px);
}

.itemTitle_01 {
  font-family: iransansx;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  /*vertical-align: middle;*/ /*works when line-height is set in something other than x times, e.g. will not work with 1.8 */
  margin: 0 1px 0 0;
}

body:not(.latin) .itemContainer_01 > .item-info > .itemTitle_01 {
  position: relative;
  top: 1px;
}

body.latin .itemTitle_01 {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 0 1px;
}

body:not(.latin) .itemTitle_01 bdo,
body.latin .itemTitle_01 bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
}

body.latin .itemTitle_01 bdo,
body:not(.latin) .itemTitle_01 bdo > bdo {
  direction: rtl;
  font-family: iransansx;
  font-size: 14px;
}

.item-info > span:nth-child(2) {
  word-spacing: 15px;
}

.read-more-1 {
  box-sizing: border-box;
  border: unset;
  font-family: iransansx;
  font-size: 13px;
  display: none;
  position: absolute;
  top: 33px;
  left: 12px;
  line-height: 20px;
  text-decoration: underline;
}

body.latin .read-more-1 {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  left: unset;
  top: 33px;
  right: 12px;
}

.item-description-wrapper > .read-more-1 {
  top: unset;
  line-height: 22px;
  bottom: 0px;
  left: 0px;
}

body.latin .item-description-wrapper > .read-more-1 {
  top: unset;
  left: unset;
  right: 0px;
}

.info-overflow .read-more-1 {
  display: unset;
}

.itemTitle_02 {
  height: 60px;
}

.itemTitle_03 {
  height: 80px; /*108px to get the price to the bottom*/
}

.item-image-wrapper {
  position: relative;
  max-width: 140px;
  width: calc(50% - 5px);
  margin: 0;
  border-radius: 15px;
  flex-shrink: 0;
}

.item-image {
  width: 100%;
  display: block;
  border-radius: 15px;
  pointer-events: none;
}

.multi-image-icon {
  display: block;
  width: 19px;
  pointer-events: none;
  position: absolute; top: 9px; right: 9px;
}

.item-counter-container {
  direction: ltr;
  position: relative;
  width: max-content;
  box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

body.latin .item-counter-container {
  flex-direction: row-reverse;
}

.item-photo-and-data .item-variant > .item-price-and-counter-container > .item-counter-container,
.item-photo-and-data .item-variant > .item-price-and-counter-container > .item-counter-container {
  margin: 0/*  auto 0 */;
}

body.latin .item-counter-container {
  margin: 0 5px 0 0;
}

.item-counter-quantity {
  font-family: iransansx;
  font-size: 15px;
  line-height: 1;
  box-sizing: border-box;
  height: 22px;
  width: 24px;
  overflow: hidden;
  margin: 0;
  line-height: 1;
  padding: 3px 0px 0px;
  transition: width 0.5s ease 0s;
}

input.item-counter-quantity {
  background-color: inherit;
  text-align: center;
  border: none;
}

input.item-counter-quantity._3 {
  width: 34px;
}

input.item-counter-quantity._4 {
  width: 44px;
}

input.item-counter-quantity._6 {
  width: 54px;
}

input.item-counter-quantity._7 {
  width: 64px;
}

body.latin .item-counter-quantity {
  font-family: Helvetica, Arial, sans-serif;
  padding: 0px 0px 0px;
}

.item-counter-container.collapse .item-counter-quantity {
  width: 0px;
}

.item-counter-button {
  font-family: iransansx;
  font-size: 22px;
  box-sizing: border-box;
  height: 22px;
  width: 25px;
  overflow: hidden;
  line-height: 22px;
  cursor: pointer;
  transition: width 0.4s ease 0s, border-radius 0.4s ease 0s, border-left-width 0.4s ease 0s, border-right-width 0.4s ease 0s;
}

.item-counter-container .item-counter-button.add {
  width: 33px;
}

.item-counter-container:not(.collapse) .item-counter-button.add {
  width: 27px;
}

.item-counter-container.collapse .item-counter-button.reduce {
  width: 0px;
  border-right-width: 0px;
}

.item-counter-container.collapse .item-counter-button.add {
  border-left-width: 0px;
}

.item-counter-container.collapse .item-counter-button {
  border-radius: 15px 15px 15px 15px;
}

.item-counter-button.reduce {
  padding: 2px 0 0;
  border-radius: 5px 15px 15px 5px;
}

.item-counter-button.add {
  border-radius: 15px 5px 5px 15px;
  padding: 2px 0 0;
}

.item-price-tag,
.item-price-tag-before {
  direction: ltr;
  font-family: iransansx;
  font-size: 16px;
  width: max-content;
  height: max-content;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: flex-start; /* possible values: flex-start | flex-end | center | space-between | space-around | space-evenly */
  /*border: 1px solid red;*/
  align-items: center;
}

.small-float {
  font-size: smaller;
}

.item-photo-and-data .item-variant > .item-price-and-counter-container > .item-price-tag,
.item-photo-and-data .item-variant > .item-price-and-counter-container > .item-price-tag-before {
  margin: 0/*  auto 6px */;
}

#selected-item-fullscreen-container .item-price-and-counter-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  flex-grow: 1;
  gap: 6px;
}

body.latin #selected-item-fullscreen-container .item-price-and-counter-container {
  flex-direction: row;
}

body.latin .item-price-tag,
body.latin .item-price-tag-before {
  font-family: Helvetica, Arial, sans-serif;
}

.currency-sign {
  font-size: 15px;
  line-height: 1;
  margin: 0 3px 0 0;
  padding: 2px 0px 0px;
}

body.latin .currency-sign {
  padding: 0px 0px 0px;
}

.currency-sign.Toman {
  height: 11px;
  margin: 0 3px 0 0;
  padding: unset;
}

.item-price-value,
.item-price-before,
.discount-announce {
  position: relative;
  line-height: 1;
  font-weight: 400;
  margin: 0;
  padding: 3px 0 0;
}

body.latin .item-price-value,
body.latin .item-price-before {
  padding: 1px 0 0;
}

.discount-announce {
  font-size: 13px;
  padding: 4px 6px 1px;
  border-radius: 10px;
  margin: 0 0 0 5px;
}

body.latin .discount-announce {
  padding: 4px 6px;
}

body.latin .item-price-tag-before > .discount-announce {
  font-size: 14px;
}

.item-price-before {
  /* text-decoration-line: line-through;
  -webkit-text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-thickness: 1px; */
}

.item-price-before:before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 36%;
  border-top: 2px solid;
  border-color: inherit;
  transform: rotate(-10deg);
}

.noBoxShadow {
  box-shadow: unset;
}

.footer_01 {
  position: relative;
  width: calc(100% - 100px);
  margin: 18px 0 45px;
  z-index: 1;
  text-align: center;
}

html[dir="ltr"] .footer_01 {
  margin: 18px 0 45px auto;
  right: 100px;
}

.footer_02 {
  display: flex;
  justify-content: space-evenly;
  width: min(calc(100% - 36px), 360px);
  margin: 36px auto;
  padding: 18px 0;
  border-radius: 18px;
}

.footer_03 {
  direction: ltr;
  font-family: arial;
  font-size: 13px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: center;
}

.hr_02 {
  width: min(calc(100% - 36px), 400px);
  margin: 0 auto 36px;
}

.contactButton_1 {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
}

.contactButton_2 {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
}

#selected-item-fullscreen-container {
  box-sizing: border-box;
  padding: 18px 9px;
  overflow: hidden auto;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100%;
  right: 0px;
  z-index: 4;
  display: none;
  transition: top 0.7s ease-in-out 0s;
  pointer-events: none;
}

#selected-item-fullscreen-container.show {
  top: 0%;
  pointer-events: auto;
}

#selected-item-fullscreen-wrapper {
  width: min(100%, 450px);
  margin: 0 auto;
}

#selected-item-fullscreen-container-close-button {
  width: fit-content;
  position: sticky;
  top: 0px;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 50%;
  margin: 0 0 1px;
  padding: 2px 6px 1px;
  font-family: arial;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.4s ease-in-out 0.3s;
}

#selected-item-fullscreen-container.show #selected-item-fullscreen-container-close-button {
  transform: none;
}

#selected-item-fullscreen-image {
  direction: ltr;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: block;
  width: 100%;
  /* aspect-ratio: 1/1; */
  margin: 0px auto 18px;
  border-radius: 15px;
  transform: scale(0.3);
  transform-origin: 50% 0%;
  transition: transform 0.7s ease-in-out 0s;
}

#selected-item-fullscreen-container.show #selected-item-fullscreen-image {
  transform: none;
}

.fullscreen-item-photo {
  transition: filter 0.7s ease-in, -webkit-filter 0.7s ease-in;
}

.fullscreen-item-photo.blur {
  filter: blur(12px);
  -webkit-filter: blur(12px);
}

#selected-item-fullscreen-title {
  font-family: iransansx;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin: 0px auto 180px;
  text-align: center;
  transition: margin 1.2s ease 0s;
}

#selected-item-fullscreen-container.show #selected-item-fullscreen-title {
  margin: 0px auto 9px;
}

body.latin #selected-item-fullscreen-title bdo,
body:not(.latin) #selected-item-fullscreen-title bdo > bdo {
  direction: rtl;
  font-family: iransansx;
}

body.latin #selected-item-fullscreen-title,
body:not(.latin) #selected-item-fullscreen-title bdo,
body.latin #selected-item-fullscreen-title bdo > bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.5;
}

#selected-item-fullscreen-description {
  font-family: iransansx;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7;
  margin: 0px auto 9px;
  text-align: justify;
}

body.latin #selected-item-fullscreen-description bdo {
  direction: rtl;
  font-family: iransansx;
  font-weight: 400;
  font-size: 13px;
}

body.latin #selected-item-fullscreen-description {
  direction: ltr;
  line-height: 1.6;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

body:not(.latin) #selected-item-fullscreen-description bdo {
  direction: ltr;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

body.latin #changeLanguage {
  font-family: iransansx;
}

#orders-follow-up {
  margin-top: -6px;
}

#orders-follow-up > a {
  color: inherit;
  text-decoration-line: underline;
  -webkit-text-decoration-line: underline;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-thickness: 1px;
  cursor: pointer;
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 400;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Regular.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 100;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Thin.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 200;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-UltraLight.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 300;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Light.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 500;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Medium.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 600;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-SemiBold.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 700;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Bold.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 800;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-ExtraBold.woff2)format("woff");
  font-display: swap
}

@font-face {
  font-family: iransansx;
  font-style: normal;
  font-weight: 900;
  src: local(IRANSansX),url(../assets/fonts/IRANSansX/IRANSansXFaNum-Black.woff2)format("woff");
  font-display: swap
}