﻿:root {
  --header-bg-clr: #0a1628eb;
}

body {
  background-color: #f5f5f5;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.sticky-menu {
  position: sticky;
  top: 0;
  transform: translateY(-100%);
  transition: transform 500ms ease;
  z-index: 20;
}

.sticky-menu.show {
  transform: translateY(0);
}

#UVLDBQZYMS {
  --preload-block-size-desktop: 80px;
  --preload-block-size-tablet: 80px;
  --preload-block-size-mobile: 80px;
  --header-height: 80px;
  background: var(--header-bg-clr);
  backdrop-filter: blur(3px);
  height: auto;
  min-height: 80px;
}

#UVLDBQZYMS .nav-link.active,
#sidebar_UVLDBQZYMS_el .nav-link.active {
  --bs-navbar-active-color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

/* ============================================
   Header Cart
   ============================================ */

#UVLDBQZYMS .header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

#UVLDBQZYMS .header-cart:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

#UVLDBQZYMS .header-cart__icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

#UVLDBQZYMS .header-cart__badge {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--header-bg-clr);
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(249, 68, 6, 0.35);
}

#UVLDBQZYMS .header-cart__text {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

#UVLDBQZYMS .header-cart__badge:empty {
  display: none;
}

/* ============================================
   Logged-in User
   ============================================ */

#UVLDBQZYMS .header-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 10px 5px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

#UVLDBQZYMS .header-user:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

#UVLDBQZYMS .header-user__avatar {
  width: 35px;
  height: 35px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.1rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(249, 68, 6, 0.25);
}

#UVLDBQZYMS .header-user__avatar img {
  border-radius: 50%;
}

#UVLDBQZYMS .header-user__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

#UVLDBQZYMS .header-user__info strong {
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

#UVLDBQZYMS .header-user__info small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 500;
}

#UVLDBQZYMS>skeleton-loading>.skeleton-loading-item {
  border-radius: 0;
}

#UVLDBQZYMS>skeleton-loading {
  background-color: #f5f5f5;
  min-height: 80px;
}

#UVLDBQZYMS .header-actions {
  justify-content: center;
}

#sidebar_UVLDBQZYMS_el {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  width: 300px;
  max-height: 100%;
  max-width: 100%;
  padding: 1rem;
  border: 0;
  margin: 0;
  background: #0a1628;
  transform: translateX(100%);
  top: 0;
  transition: 300ms ease;
  z-index: 5000;
}

#sidebar_UVLDBQZYMS_el:modal {
  transform: translateX(0);
}

#sidebar_UVLDBQZYMS_el::backdrop {
  backdrop-filter: blur(10px);
}

#sidebar_UVLDBQZYMS_el .close-btn {
  padding: 0.25rem;
  display: grid;
  aspect-ratio: 1;
  align-content: center;
  margin-right: auto;
}

#nav_UVLDBQZYMS_el a {
  text-decoration: none;
}

@media (max-width: 991px) {
  #UVLDBQZYMS .header-cart {
    aspect-ratio: 1;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }

  #UVLDBQZYMS .header-cart__text {
    display: none;
  }

  #UVLDBQZYMS .header-user {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }

  #UVLDBQZYMS .header-user__info {
    display: none;
  }

  #UVLDBQZYMS .header-user__avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

}

@media (max-width: 576px) {
  #UVLDBQZYMS .brand-text {
    display: none !important;
  }
}#CCIEJYIKYH {
  --primary-soft: #fff1ec;
  --pricing-text: #17191d;
  --pricing-muted: #737983;
  --pricing-border: #e9ebef;
  --pricing-bg: #f8f9fb;
  --mask-size: 35px;
  --mask: linear-gradient(to right, #000 0, #000 calc(100% - var(--mask-size)), transparent 100%);
}

#CCIEJYIKYH .pricing-module {
  padding: 80px 20px 0px;
  background: radial-gradient(circle at 50% 0%, rgba(249, 68, 6, 0.07), transparent 38%), #fff;
  color: var(--pricing-text);
}

#CCIEJYIKYH .pricing-header {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

#CCIEJYIKYH .pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

#CCIEJYIKYH .pricing-header h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#CCIEJYIKYH .pricing-header>p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--pricing-muted);
  font-size: 15px;
  line-height: 1.9;
}

#CCIEJYIKYH .pricing-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 5px;
  gap: 4px;
  border: 1px solid var(--pricing-border);
  border-radius: 100px;
  background: #f5f6f8;
  box-shadow: 0 8px 30px rgba(20, 25, 35, 0.06);
}

#CCIEJYIKYH .pricing-switch__item {
  position: relative;
  z-index: 2;
  min-width: 110px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 100vw;
  background: transparent;
  color: var(--pricing-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

#CCIEJYIKYH .pricing-switch__item.is-active {
  color: #fff;
  background: var(--primary);
}

#CCIEJYIKYH .pricing-switch__item.is-active {
  color: #fff;
}

#CCIEJYIKYH .pricing-switch__item span {
  display: inline-block;
  margin-right: 5px;
  color: var(--primary);
  font-size: 10px;
}

#CCIEJYIKYH .pricing-switch__item.is-active span {
  color: rgba(255, 255, 255, .9);
}

#CCIEJYIKYH .pricing-grid {
  max-width: 1200px;
  overflow: visible;
  margin-inline: auto;
  padding-block: 3rem;
  transition: 250ms ease;
}

#CCIEJYIKYH .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--pricing-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 40px rgba(20, 25, 35, .055);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s ease;
}

#CCIEJYIKYH .pricing-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 68, 6, .18);
  box-shadow: 0 25px 70px rgba(20, 25, 35, .1);
}

#CCIEJYIKYH .pricing-card--featured {
  border: 1.5px solid var(--primary);
  box-shadow: 0 20px 70px rgba(249, 68, 6, .12), 0 0 0 5px rgba(249, 68, 6, .035);
}

#CCIEJYIKYH .pricing-card--featured:hover {
  box-shadow: 0 30px 80px rgba(249, 68, 6, .17), 0 0 0 5px rgba(249, 68, 6, .045);
}

#CCIEJYIKYH .pricing-card--featured::after {
  content: "محبوب ترین انتخاب";
  position: absolute;
  top: 0;
  left: 1rem;
  padding: 7px 15px 8px;
  border-radius: 0 0 12px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

#CCIEJYIKYH .pricing-card__top {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--pricing-border);
}

#CCIEJYIKYH .pricing-card__icon {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 18px;
}

#CCIEJYIKYH .pricing-card h3 {
  margin: 0 0 7px;
  font-size: 22px;
  font-weight: 900;
}

#CCIEJYIKYH .pricing-card__top p {
  margin: 0;
  color: var(--pricing-muted);
  font-size: 13px;
  line-height: 1.8;
}

#CCIEJYIKYH .pricing-card__price {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
}

#CCIEJYIKYH .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  width: 100%;
}

#CCIEJYIKYH .price strong {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

#CCIEJYIKYH .price span {
  color: var(--pricing-muted);
  font-size: 12px;
  font-weight: 600;
}

#CCIEJYIKYH .price-yearly del {
  width: 100%;
  margin-bottom: 7px;
  color: #a0a5ad;
  font-size: 12px;
}

#CCIEJYIKYH .pricing-card__button {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  margin-bottom: 30px;
  border: 1px solid var(--pricing-border);
  border-radius: 14px;
  background: #fff;
  color: var(--pricing-text);
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
}

#CCIEJYIKYH .pricing-card__button .loading-icon {
  display: none;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  justify-content: center;
  place-content: center;
  background: #fff;
  color: var(--primary);
}

#CCIEJYIKYH .pricing-card__button[disabled] {
  cursor: wait;
}

#CCIEJYIKYH .pricing-card__button[disabled] .loading-icon {
  display: grid;
}

#CCIEJYIKYH .pricing-card__button:not(:disabled):hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

#CCIEJYIKYH .pricing-card--featured .pricing-card__button {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(249, 68, 6, .2);
}

#CCIEJYIKYH .pricing-card--featured .pricing-card__button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

#CCIEJYIKYH .features-title {
  display: block;
  margin-bottom: 16px;
  color: var(--pricing-text);
  font-size: 12px;
  font-weight: 800;
}

#CCIEJYIKYH .pricing-card__features ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#CCIEJYIKYH .pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d535c;
  font-size: 13px;
  line-height: 1.7;
}

#CCIEJYIKYH .pricing-card__features li i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #25a46b;
  font-size: 13px;
}

#CCIEJYIKYH .pricing-card__features li.is-disabled {
  color: #b4b8bf;
}

#CCIEJYIKYH .pricing-card__features li.is-disabled i {
  color: #c9cdd2;
}

@media (max-width: 991px) {
  #CCIEJYIKYH .pricing-module {
    padding: 80px 18px 0px;
  }

  #CCIEJYIKYH .pricing-card--featured {
    grid-column: 1 / -1;
    order: -1;
    transform: none;
  }

  #CCIEJYIKYH .pricing-card--featured:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 640px) {
  #CCIEJYIKYH .pricing-module {
    padding: 64px 14px 0px;
  }

  #CCIEJYIKYH .pricing-header {
    margin-bottom: 15px;
  }

  #CCIEJYIKYH .pricing-header h2 {
    font-size: 27px;
  }

  #CCIEJYIKYH .pricing-header>p {
    font-size: 13px;
    margin-bottom: 24px;
  }

  #CCIEJYIKYH .pricing-card,
  #CCIEJYIKYH .pricing-card--featured {
    padding: 26px 22px;
    transform: none;
  }

  #CCIEJYIKYH .pricing-card:hover,
  #CCIEJYIKYH .pricing-card--featured:hover {
    transform: none;
  }

  #CCIEJYIKYH .pricing-card__badge {
    left: 20px;
  }

  #CCIEJYIKYH .pricing-card__price {
    min-height: 110px;
  }

  #CCIEJYIKYH .price strong {
    font-size: 32px;
  }
}


#CCIEJYIKYH .features-comparison {
  padding-block: 2rem;
  background: var(--pricing-bg);
  color: var(--pricing-text);
}

#CCIEJYIKYH .features-comparison__header {
  max-width: 650px;
  margin: 0 auto 55px;
  text-align: center;
}

#CCIEJYIKYH .features-comparison__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

#CCIEJYIKYH .features-comparison__header h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#CCIEJYIKYH .features-comparison__header p {
  max-width: 520px;
  margin: auto;
  color: var(--pricing-muted);
  font-size: 14px;
  line-height: 1.9;
}

#CCIEJYIKYH .features-table-scroll {
  position: relative;
  width: min(1100px, 100%);
  margin-inline: auto;
}

#CCIEJYIKYH .features-table-wrapper {
  width: 100%;
  overflow-y: visible;
  border: 1px solid var(--pricing-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(20, 25, 35, .07);
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

#CCIEJYIKYH .features-table {
  width: 100%;
  /* min-width: 760px; */
}

#CCIEJYIKYH .features-scroll-hint {
  display: none;
}

#CCIEJYIKYH .features-table__head,
#CCIEJYIKYH .features-table__body {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) repeat(3, minmax(120px, .7fr));
}

#CCIEJYIKYH .features-table__head {
  position: sticky;
  top: var(--header-height, 0px);
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) repeat(3, minmax(120px, .7fr));
}

#CCIEJYIKYH .features-table__head>div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid var(--pricing-border);
  background: #fafbfc;
  font-size: 13px;
  font-weight: 800;
}

#CCIEJYIKYH .features-table__head>div:first-child {
  justify-content: flex-start;
  padding-right: 28px;
}

#CCIEJYIKYH .features-table__head .is-featured {
  color: var(--primary);
  background: var(--primary-soft);
}

#CCIEJYIKYH .features-table__category {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-bottom: 1px solid var(--pricing-border);
  background: #f6f7f9;
  color: #3d434c;
  font-size: 12px;
  font-weight: 900;
}

#CCIEJYIKYH .features-table__category i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
}

#CCIEJYIKYH .feature-row {
  display: contents;
}

#CCIEJYIKYH .feature-row>div {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid var(--pricing-border);
  font-size: 13px;
  font-weight: 700;
}

#CCIEJYIKYH .feature-row>div:first-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-right: 28px;
}

#CCIEJYIKYH .feature-row>div:nth-child(3) {
  background: rgba(249, 68, 6, .025);
}

#CCIEJYIKYH .feature-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
}

#CCIEJYIKYH .feature-row span {
  color: var(--pricing-muted);
  font-size: 11px;
  font-weight: 500;
}

#CCIEJYIKYH .feature-row i {
  color: #22a06b;
  font-size: 15px;
}

#CCIEJYIKYH .feature-row .feature-disabled i {
  color: #c9cdd2;
}

#CCIEJYIKYH .features-table>.feature-row:last-child>div {
  border-bottom: 0;
}

#CCIEJYIKYH .swiper-button-prev,
#CCIEJYIKYH .swiper-button-next {
  --swiper-navigation-size: 16px;

  width: 46px;
  height: 46px;

  margin-top: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e9ebef;
  border-radius: 14px;

  background: #fff;
  color: var(--primary);

  box-shadow: 0 8px 24px rgba(20, 25, 35, 0.08);

  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

#CCIEJYIKYH .swiper-button-prev {
  right: 0;
  left: auto;
}

#CCIEJYIKYH .swiper-button-next {
  left: 0;
  right: auto;
}

#CCIEJYIKYH .swiper-button-prev::after,
#CCIEJYIKYH .swiper-button-next::after {
  font-size: 15px;
  font-weight: 900;
}

#CCIEJYIKYH .swiper-button-prev:hover,
#CCIEJYIKYH .swiper-button-next:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;

  box-shadow: 0 0 1rem var(--primary-dark);

  transform: translateY(-2px);
}

#CCIEJYIKYH .swiper-button-disabled {
  opacity: .45;
  cursor: default;
  pointer-events: none;
}

#CCIEJYIKYH .swiper-initialized skeleton-loading {
  visibility: visible !important;
}

@media (max-width: 800px) {
  #CCIEJYIKYH .features-table-scroll {
    width: 100%;
    position: relative;
  }

  #CCIEJYIKYH .features-table-scroll::before,
  #CCIEJYIKYH .features-table-scroll::after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    z-index: 15;
    width: 45px;
    pointer-events: none;
    opacity: 0;
    border-radius: 0 20px 20px 0;
    transition: opacity .3s ease;
  }

  #CCIEJYIKYH .features-table-scroll::before {
    right: 0;
  }

  #CCIEJYIKYH .features-table-scroll::after {
    left: 0;
  }

  #CCIEJYIKYH .features-table-scroll.is-start::before {
    opacity: 1;
  }

  #CCIEJYIKYH .features-table-scroll.is-middle::before,
  #CCIEJYIKYH .features-table-scroll.is-middle::after {
    opacity: 1;
  }

  #CCIEJYIKYH .features-table-scroll.is-end::after {
    opacity: 1;
  }

  #CCIEJYIKYH .features-comparison {
    padding: 30px 14px;
  }

  #CCIEJYIKYH .features-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
  }

  #CCIEJYIKYH .features-table {
    /* min-width: 760px; */
  }

  #CCIEJYIKYH .features-table__head {
    position: sticky;
    top: 0px;
    z-index: 5;
  }
}

@media (max-width: 500px) {
  #CCIEJYIKYH .features-comparison__header {
    margin-bottom: 35px;
  }

  #CCIEJYIKYH .features-comparison__header h2 {
    font-size: 26px;
  }

  #CCIEJYIKYH .features-comparison__header p {
    font-size: 13px;
  }

  #CCIEJYIKYH .features-table-wrapper {
    padding-bottom: 2px;
    border-radius: 20px;
    background:
      linear-gradient(to right,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0) 92%,
        rgba(249, 68, 6, .10) 100%),
      #fff;
  }

  #CCIEJYIKYH.loaded .features-scroll-hint {
    position: sticky;
    width: auto;
    bottom: 1rem;
    margin-inline: auto;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    transform: translateX(-50%);
    border: 1px solid rgba(249, 68, 6, .12);
    border-radius: 100vw;
    background: rgba(255, 255, 255, .94);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(20, 25, 35, .12);
    pointer-events: none;
    animation: featuresHint 2s ease-in-out infinite;
  }

  #CCIEJYIKYH .features-table-scroll.is-scrolled .features-scroll-hint {
    opacity: 0;
    visibility: hidden;
    animation: none;

    transition:
      opacity .3s ease,
      visibility .3s ease;
  }
}

@keyframes featuresHint {

  0%,
  100% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(calc(-50% - 5px));
  }
}#TEICYEPYJF {
  --preload-block-size-desktop: 437px;
  --preload-block-size-tablet: 900px;
  --preload-block-size-mobile: 950px;
  background: linear-gradient(#0a1628), url(https://cdn.sqp.ir/Templates/emaher/images/footer.webp);
  background-size: contain;
}

#TEICYEPYJF skeleton-loading > .skeleton-loading-item {
  mix-blend-mode: normal;
}

#TEICYEPYJF .footer-social img {
  padding: 0.5rem;
}

#TEICYEPYJF .nemad-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}