@font-face {
  font-family: "sans";
  src: url("../font/IRANSansX-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "sans";
  src: url("../font/IRANSansX-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bgClr: #f2f4f8;
  --clrF: #ffffff;
  --clr21: #21272a;
  --clrE2: #e2e2e2;
  --clrC1: #e7eaee;
  --clrBlue1: #0f62fe;
  --clrBlue2: #004bd7;
  --blackOp20: #00000020;
  --clr5C: #5c6874;
  --clr69: #697077;
  --clrF0: #f0f2f5;
  --clr86: #868686;
  --clr00: #000000;
  --greenClr: #00ac67;
  --clrFa: #fafafa;
  --clrAd: #adcad9;
  --orangeClr: #ffbb00;
  --clrD6: #dde1e6;
  --clrOp60: #00000060;
  --clrCd: #c1c7cd;
}

body,
html {
  background-color: var(--bgClr);
  max-width: 100vw;
  overflow-x: clip;
  direction: ltr;
  scroll-behavior: smooth;
  font-family: "sans", Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
}


.rtl {
  direction: rtl;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #e9e9e9;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: #bec0c0;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: #adafaf;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "sans", Arial, Helvetica, sans-serif;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.container {
  width: 94%;
  margin: 0 auto;
  max-width: 1350px;
}

.flex {
  display: -webkit-flex;
  display: flex;
}

.grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}

.flexCenter {
  justify-content: center;
  align-items: center;
}

.flexCol {
  flex-direction: column;
}

.justifyBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.hideText {
  color: transparent !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.rel {
  position: relative;
}

.rtl .arrowSvg {
  transform: rotateY(180deg);
}

/* headerRow1 */
.headerRow1 {
  background-color: var(--clrF);
  height: 45px;
  z-index: 902;
}

.row1SubDiv {
  height: 100%;
  max-width: 1150px;
}

.hoverListHolder {
  position: relative;
}

.toggleLangBtn {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--clr21);
  gap: 5px;
  height: 35px;
  padding: 0 4px 0 7px;
  border-radius: 5px;
}

.hoverMenuCloser {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 912;
  width: 100%;
  height: 100dvh;
  display: none;
}

.hoverMenuParentDiv {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 920;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateY(5px);
}

.hoverMenuParentDiv.rightStick {
  left: unset;
  right: 0;
}

.rtl .hoverMenuParentDiv {
  left: unset;
  right: 0;
}

.rtl .hoverMenuParentDiv.rightStick {
  left: 0;
  right: unset;
}

.hoverMenuList {
  background-color: var(--clrF);
  border-radius: 5px;
  box-shadow: 0 0 15px var(--blackOp20);
  margin-top: 10px;
  z-index: 922;
}

.hoverMenuItem {
  gap: 10px;
  min-width: 180px;
  padding: 15px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--clr21);
}

.hoverMenuItem:first-child {
  border-bottom: 1px dashed var(--clrE2);
}

.hoverListHolder.toggle .hoverMenuParentDiv {
  opacity: 1;
  pointer-events: unset;
  transform: none;
}

.hoverListHolder.toggle .hoverMenuCloser {
  display: block;
}

.row1RightDiv {
  gap: 7px;
}

.requestBtn {
  height: 35px;
  width: 35px;
  color: var(--clr21);
  border-radius: 5px;
  font-size: 20px;
}

.loginBtn {
  height: 35px;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 20px;
}

.flagIcon {
  width: 26px;
  height: auto;
  aspect-ratio: 3.2/2.4;
}

/* header */
header {
  background-color: var(--clrF);
  position: sticky;
  top: 0;
  z-index: 890;
}

.headerSubDiv {
  height: 100%;
  padding: 10px 0;
  justify-content: space-between;
  max-width: 1150px;
  flex-wrap: wrap;
}

.toggleMenuBtn {
  height: 35px;
  width: 35px;
  border-radius: 5px;
  font-size: 20px;
  color: var(--clr21);
}

.searchHeaderDiv {
  width: 100%;
  margin-top: 15px;
  border: 1px solid var(--clrC1);
}

.desktopSearchLink,
.deskSupportBtn,
.deskSingleLink {
  display: none;
}


.headerSearchInput {
  height: 45px;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bgClr);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
  padding: 0 7px;
}

.headerCat {
  height: 45px;
  width: 50%;
  outline: none;
  border: none;
  background-color: var(--bgClr);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
  padding: 0 7px;
}



.headerSearchInput {
  width: 100%;
  padding: 0 15px 0 40px;
  background-image: url("../icon/search.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  border-right: 2px solid var(--clrC1);
  background-size: 18px;
}

.rtl .headerSearchInput {
  padding: 0 40px 0 15px;
  background-position: right 10px center;
  border-right: none;
  border-left: 2px solid var(--clrC1);
}

/* Search Container and Dropdown Styles */
.search-container {
  position: relative;
  width: 60%;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--clrC1);
  border-top: none;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-dropdown-section {
  border-bottom: 1px solid var(--clrE2);
}

.search-dropdown-section:last-child {
  border-bottom: none;
}

.search-dropdown-header {
  background: var(--clrF0);
  padding: 8px 15px;
  font-weight: 600;
  font-size: 12px;
  color: var(--clr5C);
  text-transform: uppercase;
}

.search-dropdown-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid var(--clrE2);
  transition: background-color 0.2s;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background: var(--clrF0);
}

.search-dropdown-item-name {
  font-size: 14px;
  color: var(--clr21);
  font-weight: 500;
}

.search-dropdown-item-type {
  font-size: 12px;
  color: var(--clr69);
  margin-top: 2px;
}

.navCloser {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 950;
  background-color: #00000060;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.navCloser.showNavCloser {
  opacity: 1;
  pointer-events: unset;
}

.closerNavBtn {
  height: 40px;
  width: 40px;
  background-color: var(--clrOp60);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}

.rtl .closerNavBtn,
.navCloser.left .closerNavBtn {
  right: unset;
  left: 50px;
}

.rtl .navCloser.left .closerNavBtn {
  left: unset;
  right: 50px;
}

.headerRow3 {
  background-color: var(--clrF);
  padding: 0 0 10px;
}

.showMobileTreasury {
  width: fit-content;
  height: 40px;
  gap: 7px;
  border: 1px solid var(--clrC1);
  padding: 0 15px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.treasuryMegaMainDiv {
  position: fixed;
  left: 0;
  top: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  z-index: 960;
  background-color: var(--clrF);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0s 0.3s;
  transform: translateX(-100%);
}

.treasuryMegaMainDiv.activeMenu {
  opacity: 1;
  transform: translateX(0);
  pointer-events: unset;
  transition: transform 0.3s;
}

.rtl .treasuryMegaMainDiv {
  left: unset;
  right: 0;
  transform: translateX(100%);
}

.rtl .treasuryMegaMainDiv.activeMenu {
  transform: translateX(0);
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  background-color: var(--clrF);
  max-height: 100dvh;
  overflow-y: auto;
  width: 80%;
  max-width: 320px;
  z-index: 960;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0s 0.3s;
  transform: translateX(100%);
}

.rtl nav {
  right: unset;
  left: 0;
  transform: translateX(-100%);
}

nav.showNav {
  opacity: 1;
  transform: translateX(0);
  pointer-events: unset;
  transition: transform 0.3s;
}

.treasuryDiv {
  padding: 15px;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
}

.treasuryNeedLink {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: var(--clrF);
  border: 2px solid var(--clrBlue2);
  background-color: #5c95ff;
  padding: 15px 20px;
}

.treasuryItemMegaMainDiv {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}

.treasuryMegaToggleBtn {
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  align-items: center;
  color: var(--clr21);
  padding: 0 5px;
}

.treasuryMegaToggleBtn .arrow {
  margin: 0 5px 0 auto;
  transition: transform 0.3s;
}

.rtl .treasuryMegaToggleBtn .arrow {
  margin: 0 auto 0 5px;
}

.treasuryMegaItemListParent {
  max-height: 0;
  transition: max-height 0.3s;
  overflow: hidden;
}

.treasuryMegaToggleBtn.toggle+.treasuryMegaItemListParent {
  max-height: 450px;
}

.treasuryMegaToggleBtn.toggle+.treasuryMegaItemListParent {
  max-height: 450px;
}

.treasuryMegaList {
  padding: 0 10px;
}

.treasuryMegaLink {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--clr21);
  padding: 5px 0;
}

.treasuryMegaToggleBtn svg {
  height: 28px;
  width: 28px;
}

.treasuryMegaToggleBtn .arrow {
  height: 12px;
  width: 12px;
}

.simpleMegaMainDiv,
.deskNeedLink {
  display: none;
}

@media screen and (min-width: 768px) {
  .searchHeaderDiv {
    width: 58%;
    margin: 0 15px 0 auto;
  }

  .rtl .searchHeaderDiv {
    margin: 0 auto 0 15px;
  }

  .toggleMenuBtn {
    order: 3;
  }
}

@media screen and (min-width: 968px) {
  .hoverListHolder.toggle .hoverMenuParentDiv {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .hoverListHolder:hover .hoverMenuParentDiv {
    opacity: 1;
    pointer-events: unset;
    transform: none;
  }

  .hoverListHolder.toggle .hoverMenuCloser {
    display: none;
  }

  .loginBtn,
  .loginHolder .hoverMenuCloser,
  .row1RightDiv .requestBtn {
    display: none;
  }

  .loginHolder .hoverMenuParentDiv {
    position: unset;
    opacity: 1;
    transform: none;
  }

  .loginHolder .hoverMenuList {
    flex-direction: row;
    margin-top: 5px;
    align-items: center;
    gap: 25px;
    box-shadow: none;
    margin-left: 5px;
  }

  .loginHolder .hoverMenuItem {
    width: fit-content;
    min-width: unset;
    height: fit-content;
    padding: 0;
    border: none;
    gap: 7px;
    align-items: center;
  }

  .hoverMenuItem svg {
    height: 19px;
    width: 19px;
  }

  .navCloser,
  nav {
    display: none !important;
  }

  .treasuryHolderDiv {
    position: relative;
  }

  .treasuryMegaMainDiv,
  .treasuryMegaMainDiv.activeMenu {
    position: absolute;
    height: fit-content;
    width: 100%;
    max-width: unset;
    transition: transform 0.3s, opacity 0.3s;
    transform: translateY(20px);
    top: 20px;
    background-color: transparent;
    opacity: 0;
    pointer-events: none;
  }

  .rtl .treasuryMegaMainDiv {
    transform: none;
    transform: translateY(20px);
  }

  .treasuryHolderDiv:hover .treasuryMegaMainDiv {
    transform: translateY(0);
    opacity: 1;
    pointer-events: unset;
  }

  .treasuryDiv {
    margin-top: 20px;
    background-color: var(--clrF);
    padding: 0;
    max-height: unset;
    overflow: unset;
    gap: 0;
  }

  .treasuryNeedLink,
  .toggleMenuBtn {
    display: none;
  }

  .treasuryItemMegaMainDiv {
    position: relative;
    margin-top: 0;
  }

  .treasuryMegaItemListParent {
    position: absolute;
    max-height: unset;
    height: fit-content;
    overflow: unset;
    right: 0;
    transform: translateX(100%);
    background-color: var(--clrF);
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(calc(100% + 5px));
    transition: transform 0.3s, opacity 0.3s;
  }

  .rtl .treasuryMegaItemListParent {
    transform: translateX(calc(-100% - 5px));
    right: unset;
    left: 0;
  }

  .treasuryItemMegaMainDiv:hover .treasuryMegaItemListParent {
    opacity: 1;
    transform: translateX(100%);
    pointer-events: unset;
    padding: 0;
  }

  .rtl .treasuryItemMegaMainDiv:hover .treasuryMegaItemListParent {
    transform: translateX(calc(-100%));
  }

  .treasuryItemMegaMainDiv:hover .treasuryMegaToggleBtn .arrow {
    transform: rotate(-90deg);
  }

  .rtl .treasuryItemMegaMainDiv:hover .treasuryMegaToggleBtn .arrow {
    transform: rotate(90deg);
  }

  .treasuryMegaToggleBtn {
    padding: 10px 15px;
  }

  .treasuryMegaList {
    padding: 0;
    z-index: 600;
  }

  .treasuryMegaLink {
    padding: 5px 15px;
    transition: background-color 0.3s;
    min-width: 220px;
  }

  .treasuryMegaLink:hover {
    background-color: #00000008;
  }

  .simpleMegaMainDiv,
  .deskSingleLink {
    display: -webkit-flex;
    display: flex;
  }

  .headerRow3SubDiv {
    align-items: center;
    gap: 5px;
    max-width: 1150px;
    margin: 0 auto;
    width: 100%;
  }

  .simpleMegaMainDiv {
    position: relative;
    z-index: 500;
  }

  .simpleMegaMenuLink {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--clr21);
    gap: 10px;
    padding: 0 10px;
    height: 40px;
  }

  .simpleMegaMenuLink svg {
    transition: transform 0.3s;
  }

  .simpleMegaDiv {
    position: absolute;
    left: 0;
    top: 35px;
    min-width: 270px;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .rtl .simpleMegaDiv {
    left: unset;
    right: 0;
  }

  .simpleMegaMainDiv:hover .simpleMegaDiv {
    opacity: 1;
    transform: translateY(0);
    pointer-events: unset;
  }

  .simpleMegaList {
    margin-top: 5px;
    background-color: var(--clrF);
    overflow: hidden;
    box-shadow: 0 0 15px #00000020;
    gap: 3px;
  }

  .simpleMegaItem {
    padding: 10px 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--clr21);
    transition: background-color 0.3s;
  }

  .simpleMegaItem:hover {
    background-color: #00000008;
  }

  .searchHeaderDiv {
    width: 47%;
    margin: 0 0 0 auto;
    height: 45px;
  }

  .rtl .searchHeaderDiv {
    margin-left: unset;
    margin-right: auto;
  }

  .desktopSearchLink {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .desktopSearchLink {
    width: calc(10% - 10px);
    background-color: var(--clrBlue1);
    height: 45px;
    color: var(--clrF);
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
    margin-left: 5px;
  }

  .deskNeedLink {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    width: calc(20% - 10px);
    background-color: #5c95ff;
    border: 2px solid var(--clrBlue1);
    height: 45px;
    color: var(--clrF);
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.5px;
  }

  .rtl .desktopSearchLink,
  .rtl .deskNeedLink {
    margin-left: unset;
    margin-right: 5px;
  }

  .headerRow3Container {
    background-color: var(--bgClr);
    border: 1px solid var(--clrE2);
    padding: 5px 10px;
  }

  .headerRow3 {
    padding-bottom: 0;
  }

  .showMobileTreasury {
    background-color: var(--clrF);
  }

  .headerSearchInput {
    width: 100%;
  }

  .headerCat {
    width: 50%;
  }

  .deskSupportBtn {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--clr21);
  }

  .deskSupportBtn svg {
    transform: translateY(-2px);
  }

  .rtl .deskSupportBtn {
    margin: 0 auto 0 0;
  }
}

@media screen and (min-width: 1150px) {
  .searchHeaderDiv {
    width: 57%;
  }

  .deskNeedLink {
    width: calc(15% - 10px);
  }

  .headerRow3SubDiv {
    gap: 10px;
  }
}

@media screen and (min-width: 1250px) {
  .headerRow3Container {
    padding: 5px 0;
  }
}

/* footer */
footer {
  background-color: var(--clr69);
  margin-top: 20px;
  padding: 40px 20px 20px;
}

.footerContainer {
  flex-wrap: wrap;
  flex-direction: column;
}

.footerColList {
  width: 100%;
}

.mobileFooterLinkList {
  gap: 30px 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e2e2e280;
  padding-bottom: 30px;
}

.mobileFooterLinkItem {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--clrF);
  padding: 0 5px;
}

.footerColList:not(.lastCol),
.footerTitle,
.footerLinkItem {
  display: none;
}

.socialList {
  width: 100%;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.socialItem {
  width: 35px;
  height: 35px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.copyWriteText {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--clrF);
}

.footerCopyWrite {
  gap: 5px;
}

@media screen and (min-width: 968px) {
  footer {
    padding: 40px 20px 20px;
  }

  .mobileFooterLinkList {
    display: none;
  }

  .footerDeskDiv {
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    margin: 0 auto;
  }

  .footerContainer .footerColList {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(100% / 4 - 15px * 3 / 4);
  }

  .footerTitle {
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--clrF);
    margin-bottom: 10px;
    display: block;
  }

  .footerLinkItem {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--clrF);
    display: block;
  }

  .socialList {
    justify-content: flex-start;
    gap: 5px;
    margin-top: 5px;
  }

  .footerCopyWrite {
    margin-top: 30px;
    border-top: 1px solid #e2e2e280;
    padding-top: 20px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }

  .copyWriteText {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
  }
}

/* modal */
.modalSection {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--clrOp60);
  z-index: 920;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadein 0.3s linear;
  display: none;
}

.modalSection.activeModal {
  display: -webkit-flex;
  display: flex;
}

.modalContent {
  width: 90%;
  background-color: var(--clrF);
  margin: 0 auto;
  padding: 25px 15px;
  animation: toTop 0.3s linear;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes toTop {
  from {
    transform: translateY(10px);
  }

  to {
    transform: translateY(0);
  }
}

.mb-auto {
  margin-bottom: auto;
}

.box_color {
  width: 37px;
  height: 37px;
  border: 1px solid #F0F2F5;
}

.error-fild {
  border: 2px solid red !important;
}

.d-none {
  display: none !important;
}

.mb-20px {
  margin-bottom: 20px;
}

.text-000 {
  color: #000 !important;
}

.text-bold {
  font-weight: bold !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.justify-content-space-between {
  justify-content: space-between;
}

.w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

.ml-auto {
  margin-left: auto !important;
}

.rtl .ml-auto {
  margin-right: auto !important;
}

.rtl .textWithSpan span {
  font-size: 13px;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-18 {
  font-size: 18px !important;
}



.order-5 {
  order: 5;
}



.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mt-10px {
  margin-top: 10px !important;
}

.mt-15px {
  margin-top: 15px !important;
}

.main-box {
  background-color: var(--clrFa);
  border: 1px solid var(--clrD6);
  padding: 15px;
  position: relative;
}

.mainnfoList {
  width: 100%;
  padding: 20px 00px;
}

.companyInfoMainDiv img {
  border: 1px solid #eee;
}



/* requestModal */
.requestModalHeader {
  background-color: var(--clrBlue1);
  padding: 12px;
}

.requestModal .modalContent {
  padding: 0;
}

.requestHeaderTitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--clrF);
}

.requestCloserBtn {
  font-size: 16px;
  height: 30px;
  width: 30px;
  color: var(--clrF);
}

.requestForm {
  padding: 20px;
  max-height: 80dvh;
  overflow-y: auto;
}

.requestFormText1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--clr21);
  padding-inline-start: 10px;
  border-left: 2px solid var(--clrBlue1);
  margin-bottom: 20px;
}

.rtl .requestFormText1 {
  border: none;
  border-right: 2px solid var(--clrBlue1);
}

.customFieldset {
  outline: none;
  border: none;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 7px;
}

.contentLabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
}

.contentTextarea {
  background-color: var(--bgClr);
  border: 1px solid var(--clrC1);
  padding: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  height: 90px !important;
  resize: vertical;
  width: 100%;
  outline: none;
}

.translateBtn {
  gap: 10px;
  background-color: #c0d5fd;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: #1f14bd;
  padding: 7px 0;
  width: 100%;
}

.translateBtn img {
  width: 30px;
  height: 30px;
}

.translateHint {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #e55f0b;
  width: 100%;
}


.row2 {
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.formLabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
}

.photoInputList {
  gap: 8px;
  flex-wrap: wrap;
}


.attachFilesBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: var(--clrBlue2);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.attachFilesBtn:hover {
  background-color: #0056b3;
}

.fileUploadHint {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
}

.filePreviewItem {
  position: relative;
  width: calc(100% / 6 - 8px * 5 / 6);
  min-width: 80px;
  aspect-ratio: 1/1;
  border: 2px solid var(--clrC1);
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filePreviewItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filePreviewItem .fileIcon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}

.filePreviewItem .fileIcon svg {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  color: #666;
}

.filePreviewItem .fileIcon .fileName {
  font-size: 10px;
  color: #666;
  word-break: break-all;
  line-height: 1.2;
  max-height: 24px;
  overflow: hidden;
}

.removeFileBtn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #dc3545;
  font-weight: bold;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.removeFileBtn:hover {
  background-color: #dc3545;
  color: white;
}

.photoInputDiv {
  position: relative;
  width: calc(100% / 6 - 8px * 5 / 6);
  border-bottom: 1px solid var(--clrC1);
}

.photoInput {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
}

.photoInputImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.customInput,
.customSelect {
  height: 48px;
  border: none;
  border-bottom: 2px solid var(--clrC1);
  background-color: var(--bgClr);
  padding: 0 15px;
  width: 100%;
  outline: none;
}

.submitFormBtn {
  background-color: var(--clrBlue2);
  min-height: 48px;
  padding: 0 25px;
  color: var(--clrF);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .row2 .customFieldset {
    width: calc(100% / 2 - 20px / 2);
  }

  /* .photoInputList {
    justify-content: space-between;
  } */

  .photoInputDiv {
    width: 48px;
  }

  .translateBtn,
  .translateHint {
    width: calc(100% / 2 - 20px / 2);
  }

  .submitFormBtn {
    width: fit-content;
    padding: 0 40px;
  }
}

input.error,
textarea.error,
select.error {
  border: 2px solid red;
}

.p-20 {
  padding: 20px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.bg-F0F2F5 {
  background-color: #F0F2F5 !important;
}

.padding-16px {
  padding: 16px !important;
}

.border-0 {
  border: 0 !important;
}

.gap-40 {
  gap: 40px;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.mt-40 {
  margin-top: 40px !important;
}

.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 500px) {

  .m-fs-14 {
    font-size: 14px !important;
  }

  .m-d-none {
    display: none;
  }
}

@media screen and (min-width: 501px) {

  .md-d-none {
    display: none;
  }
}


.dropdown {
  position: relative;
  z-index: 9999;
}

/* Style the dropdown button */
.dropbtn {
  color: #000;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* Links inside dropdown content */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.rtl .dropdown-content {
  left: -15px !important;
}

.border-r-100 {
  border-radius: 100%;
}

.inner_sponsor {
  border: 1px solid #eee;
  padding: 8px 12px;
  width: 25%;
}

.inner_sponsor img {
  border: none !important;
}

.post-need-mobile {
  display: none;
}

@media screen and (max-width: 500px) {
  .mainProductItemInfoDiv a {
    font-size: 14px !important;
  }

  .inner_sponsor .flex.flexCenter {
    flex-direction: column;
  }

  .post-need-mobile {

    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    width: calc(45% - 10px);
    background-color: #5c95ff;
    border: 2px solid var(--clrBlue1);
    color: var(--clrF);
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.5px;
  }

  .showMobileTreasury {
    font-size: 14px;
    padding: 0px 7px;
  }

  .mainProductItemInfoDiv .mainProductLink,
  .mainProductItemInfoDiv .mainProductSize {
    min-height: 50px;
  }


}


.product_category_name {
  font-size: 13px;
}


.products_box_name,
.products_box_company,
.product_category_name {
  min-height: 40px;
}

.products_box_more {
  margin-top: 0px !important;
}


.fullSlider {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 99999980;
  background-color: #00000090;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
  animation: fadein 0.3s;
}

.fullSlider.activeFullSlider {
  display: -webkit-flex;
  display: flex;
}

.fullSliderCloser {
  height: 35px;
  width: 35px;
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #ffffffbb;
  border-radius: 8px;
  font-size: 15px;
  color: var(--clr21);
}

.fullSliderContent {
  width: 80%;
  max-height: 100dvh;
  max-width: 100dvh;
  position: relative;
}

.fullSliderSwiper {
  width: 100%;
}

.fullSliderImg {
  max-width: 100%;
}

.fullSliderPagDiv {
  margin-top: 35px;
}

.pagDiv {
  width: calc(100% - 70px);
}

.rightSlideBtn,
.leftSlideBtn {
  background-color: #ffffff2c;
  height: 35px;
  width: 35px;
  min-width: 35px;
  border-radius: 50%;
}

.gateway-btns-container{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: start;
    justify-content: start;
    margin-top: 30px;

    @media(max-width: 425px){
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }


    >.gateway-btn-whatsapp, .gateway-btn-advisor{
      color: white;
      font-size: 20px;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 15px 24px;
    }

    >.gateway-btn-whatsapp{
      background-color: #00AC67;
      border: 1px solid rgba(0, 172, 103, 1);
      border-radius: 2px;
      box-shadow: 0px 4px 10px 0px rgba(0, 172, 103, 0.25);
      &:hover{
        opacity: 0.8;
      }
    }

    >.gateway-btn-advisor{
      background-color: #0F62FE;
      border: 1px solid #0F62FE;
      border-radius: 2px;
      box-shadow: 0px 4px 10px 0px rgba(15, 98, 254, 0.25);
      &:hover{
        opacity: 0.8;
      }
    }
  }

  .swiper-zoom-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .thumbsSwiper {
    margin-top: 10px;
  }
  
  .thumbsSwiper .swiper-slide {
    width: 80px;
    height: 80px;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .thumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #fff;
  }
  
  .thumbsSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .thumbsSwiper {
    height: 90px;
    margin-top: 10px;
  }

  body.modal-open {
    /* position: fixed; */
    width: 100%;
    overflow: hidden;
  }

  .sh-dropdown {
    position: relative; /* or absolute / fixed */
    z-index: 9999;        /* default */
  }
  body.modal-open .sh-dropdown {
    z-index: 0;
  }

  .login-section {
    position: absolute;
    top: calc(100% + 8px); /* below button */
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;

    >.login-form {
      background: #fff;
      padding: 2rem;
      width: 100%;
      max-width: 360px;
      border-radius: 8px;
       position: relative;
        z-index: 100000;
        pointer-events: auto;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);

      h2 {
        margin-bottom: 1.5rem;
        text-align: center;
      }
      
      .field {
        margin-bottom: 1rem;
      }
      
      .field label {
        display: block;
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
      }
      
      .field input {
        width: 100%;
        padding: 0.6rem;
        border: 1px solid #ccc;
        border-radius: 4px;
      }
      
      button {
        width: 100%;
        padding: 0.7rem;
        background: #2563eb;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }
      
      button:hover {
        background: #1e4ed8;
      }
      
      .error {
        margin-top: 1rem;
        color: #dc2626;
        font-size: 0.9rem;
        text-align: center;
      }
    }
    
   
    
  }

  /* Anchor container */
.login-wrapper {
  position: relative;
  display: inline-block;
}


/* Show popover */
.login-section.show {
  display: block;
  width: 300px;
  z-index: 99999;
  pointer-events: auto;
}

body.ltr .login-section.show{
  right: 0;
  left: auto;
}

body.rtl .login-section.show{
  right: auto;
  left: 0;
}

.pageTitleH{
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--clr21);
  padding-left: 15px;
  border-left: 2px solid var(--clrBlue1);
  height: fit-content;
  padding: 5px 0 5px 10px;
}

/* Default: desktop */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Mobile view */
@media (max-width: 580px) {
  .desktop-only {
      display: none;
  }

  .mobile-only {
      display: flex;
  }
}


.contentTranslateTextarea {
  border: 1px solid #1F14BD;
  background: #F2F4F8;
  padding: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #1F14BD;
  height: auto;
  resize: vertical;
  width: 100%;
  outline: none;
}
  

.chat-btn{
  display: flex;
  padding: 10px 5px;
  border: 1px solid #eee;
  gap: 10px;
  align-items: center;

  >span{
    color: black;
  }
  &:hover{
    background-color: #eee;
  }
}