/* ========================
   Import Modular CSS Files
   ======================== */

@font-face {
  font-family: Iranyekan;

  src: url('inc/fonts/woff2/IRANYekanXVF.woff2') format('woff2');

  font-weight: 100 1000;

  font-feature-settings: 'ss02';

  -webkit-font-feature-settings: 'ss02';

  -moz-font-feature-settings: 'ss02';
}

/* Base Styles and Reset */

html {
  scroll-behavior: smooth;
}

* {
  outline: 0;
  list-style: none;
}

a {
  transition: all 0.3s;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
  -webkit-appearance: textfield;
          appearance: textfield;
}

/* static/inc/css/modules/_base.css */

:root {
  --color-fg: #262626;
  --color-bg: #FFFFFF;
  --color-border: #E2E8F0;
  --color-brand: #0066CC;
  --color-primary: #0066CC;
}

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

@keyframes megamenu-mobile {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes megamenu-mobile-reverse {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.mobile-menu__container {
  transition: all 0.3s ease-in-out;
}

.menu-item {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.menu-item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-item__title,
.menu-item__link {
  flex-grow: 1;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
}

.menu-item__title--expanded {
  font-weight: 600;
  /* Visual indication of expanded state */
  color: #007bff;
  /* Example: change color when expanded */
}

.menu-item__icon {
  padding: 0.5rem;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 500ms ease-out, opacity 500ms ease-out;
}

.submenu--active {
  transform: translateX(0);
  opacity: 1;
  left: 0;
  animation: megamenu-mobile 500ms ease-out forwards;
}

.submenu--hidden {
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  /* Prevent interaction when hidden */
  animation: megamenu-mobile-reverse 500ms ease-out forwards;
}

.submenu__back {
  display: flex;
  padding: 0.5rem;
}

.submenu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.submenu__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.icon {
  width: 24px;
  height: 24px;
}

.mobile-menu__back.hidden {
  visibility: hidden;
}

.mobile-menu__title {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ========================
      Component Styles
      ======================== */

/* header Styles */

.result_box {
  position: absolute;
  top: 88px;
  left: 0;
  width: 472px;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}

.search-result.active {
  transition: all 0.3s;
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

/* Modal and Overlay Styles */

.go_overlay {
  visibility: visible !important;
  opacity: 1 !important;
}

.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  /* background: rgba(114, 151, 255, 0.10); */
  /* backdrop-filter: blur(8px); */
  overflow-x: hidden;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.modal .modal-content {
  height: auto !important;
}

.modal_wrapper-video {
  display: none;
  position: fixed;
  z-index: 999;
  transform: translate(-50%, -50%) !important;
  left: 50%;
  top: 50% !important;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 85%;
  margin: auto;
  overflow-y: auto;
  border-radius: 20px;
}

.modal_close {
  position: absolute;
  right: 23px;
  top: 20px;
  cursor: pointer;
  z-index: 999;
  background: #fff;
  width: 34px;
  height: 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.before_el_warning {
  position: relative;
}

.before_el_warning::before {
  content: '';
  background-color: #ffe4e6;
  height: 30px;
  position: absolute;
  inset: -20px;
  z-index: -2;
}

.otp_wrapper {
  direction: ltr;
}

.otp_wrapper input:focus {
  border-color: #A50036;
}

.input_group.empty_value {
  border-color: #A50036;
}

.input_group input {
  border-radius: 8px;
}

/* Video and Media Styles */

.course-detailes .video-box {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.course-detailes .video-box video {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.course-detailes .video-box video .plyr {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* .plyr__video-wrapper {
    width: 53%;
} */

#play-button {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
}

#play-button img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

.swiper-slide button.play-button {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

/* Swiper and Slider Components */

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0066CC !important;
}

/* slider feature swiper mobile */

/* .swiper-container-free-mode > .swiper-wrapper{
    transition-timing-function : linear;
} */

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: linear !important;
  /* transition-duration: 0ms !important; */
}

/* Tab Components */

.tab_item {
  position: relative;
  cursor: pointer;
}

.tab_even,
.tab_first,
.tab_last {
  border-radius: 12px;
}

.tab_even::before,
.tab_even::after,
.tab_first::before,
.tab_first::after,
.tab_last::after,
.tab_last::before {
  content: "";
  background-color: #066fff;
  z-index: -2;
  display: block;
  position: absolute;
}

.tab_even::before,
.tab_even::after {
  width: 40px;
  height: 20px;
  bottom: 0;
}

.tab_even::before {
  right: -20px;
}

.tab_even::after {
  left: -20px;
}

.tab_first::before {
  width: 20px;
  height: 40px;
  bottom: -20px;
  right: 0;
}

.tab_first::after {
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: -20px;
}

.tab_last::after {
  width: 40px;
  height: 20px;
  bottom: 0;
  left: -20px;
}

.tab_last::before {
  width: 40px;
  height: 20px;
  bottom: 0;
  right: -20px;
}

.table_features .tab_items.header {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.table_features .tab_items.header::after {
  content: "";
  background: #f8f8f8;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -4;
}

.tab-item.active {
  position: relative;
}

.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
  width: 22px;
  height: 22px;
  z-index: -10;
}

.tab-item:first-child.active::after {
  left: -20px;
}

.tab-item:nth-child(2).active::after {
  right: -20px;
}

.tab-content .input_group img {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Footer Section */

.footer_section {
  background-color: #fbfbfb;
  padding: 32px 0;
}

.footer_section .list_items_section .namad_logo {
  padding: 8px;
  height: 84px;
  border-radius: 8px;
  border: 0.5px solid #f1f1f1;
}

.footer_section .list_items_section .namad_logo img {
  width: 62px;
}

.footer_section .copy_write_section .text {
  color: #818181 !important;
  text-align: right;
}

.footer_section .copy_write_section .social {
  justify-content: end;
}

.footer_section .copy_write_section .social .group:hover path {
  fill: var(--primary-brand);
}

footer .namad_logo {
  padding: 8px;
  height: 84px;
  border-radius: 8px;
  border: 0.5px solid #f1f1f1;
}

footer .namad_logo img {
  width: 62px;
}

@media (min-width: 768px) {
  .footer_section .list_items_section ul li {
    padding-left: 24px;
    margin-left: 16px;
    position: relative;
  }

  .footer_section .list_items_section ul li:last-child {
    padding-left: 0;
    margin-left: 0;
  }

  .footer_section .list_items_section ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #e9e9e9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer_section .list_items_section ul li:last-child:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer_section .top_section {
    flex-direction: column;
    align-items: start;
    gap: 16px !important;
  }

  .footer_section .list_items_section ul {
    flex-direction: column;
  }
}

/* Utility Classes and Helpers */

.radial-border {
  /* border: 8px solid transparent;
    border-image: radial-gradient(circle, #0066CC, #FFEEE4) 1; */
  border: 2px solid transparent;
  /* Adjust border width */
  -o-border-image: linear-gradient(to bottom left, #0066CC, #ffeee4) 1;
     border-image: linear-gradient(to bottom left, #0066CC, #ffeee4) 1;
  border-radius: 8px;
  /* Adjust for rounded corners */
}

.box_hover_shadow {
  box-shadow: 6px 6px 2px 0px rgba(0, 0, 0, 0),
		4px 4px 2px 0px rgba(0, 0, 0, 0.02), 2px 2px 2px 0px rgba(0, 0, 0, 0.06),
		1px 1px 1px 0px rgba(0, 0, 0, 0.1), 0px 0px 1px 0px rgba(0, 0, 0, 0.12);
}

/* menu mobile */

.menu_wrapper_desktop {
  display: none;
}

/* Custom class for the gradient divider */

.divide-y-custom-gradient>a {
  position: relative;
  padding: 8px 0;
}

.divide-y-custom-gradient>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(270deg, #f1f1f1, rgba(255, 255, 255, 0));
  /* Custom gradient */
}

table.variations {
  width: 100% !important;
}

.terms_page ul>li {
  list-style: disc;
  list-style-position: inside;
}

.terms_page ul>li::marker {
  color: #0066CC;
}

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

/* .map_box iframe .gm-style div:nth-child(3) > div {
    right: 0 !important;
    background-color: red;
} */

/* Mobile and Responsive Styles */

@media (max-width: 992px) {
  .tab_last::after {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 0;
  }

  .gform_confirmation_message {
    padding: 16px 56px 16px 16px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .root {
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
  }

  .custom-slider.brand_section {
    --height: 32px !important;
  }
}

/* menu Styles */

.show_desktop {
  display: block;
}

.show_desktop_flex {
  display: flex;
}

.show_responsive_flex {
  display: none;
}

.go_overlay {
  visibility: visible !important;
  opacity: 1 !important;
}

.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-x: hidden;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.mobile_category {
  position: fixed !important;
  bottom: 0 !important;
  background: #fff !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1000 !important;
  transition: all 0.3s;
  top: 0;
  right: 0;
  transform: translateX(102%);
  padding: 0 46px;
}

.mobile_category > ul {
  padding: 0 !important;
  max-height: 68vh !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
}

.mobile_category ul li {
  position: relative !important;
  display: block;
  margin-bottom: 37px;
}

.mobile_category > ul > li a {
  display: block;
  padding-right: 8px;
}

.mobile_category > ul > li:hover a {
  border-right: 2px solid #15b37e;
  color: #15b37e !important;
}

.mobile_category ul li a {
  color: #232323 !important;
  transition: 0.03s !important;
  width: 90% !important;
  display: block !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
}

.modal_wrapper-video {
  display: none;
  position: fixed;
  z-index: 999;
  transform: translate(-50%, -50%) !important;
  left: 50%;
  top: 50% !important;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 55%;
  margin: auto;
  overflow-y: auto;
  border-radius: 20px;
}

.plyr__video-wrapper {
  width: 53%;
}

.modal_close {
  position: absolute;
  right: 23px;
  top: 20px;
  cursor: pointer;
  z-index: 999;
  background: #fff;
  width: 34px;
  height: 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

ul.header_menu > li > a {
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #262626;
}

ul.header_menu > li:hover a {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.03s;
}

ul.header_menu > li:hover > ul.sub-menu {
  visibility: visible;
}

ul.header_menu > li ul.sub-menu {
  transition-delay: 300ms;
  visibility: hidden;
  position: absolute;
  background: #f3f8fb;
  border-radius: 20px;
  box-shadow: 1.5px 2px 0 #db434d;
  border: 1.5px solid #db434d;
  height: auto;
  min-height: 60px;
  z-index: 99;
  overflow: hidden;
  padding: 10px 22px;
}

ul.header_menu > li ul.sub-menu li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1019607843);
  width: 100%;
}

ul.header_menu > li ul.sub-menu li:last-child {
  border-bottom: none !important;
}

ul.header_menu > li ul.sub-menu li a {
  color: #454545;
  line-height: 40px;
  font-size: 15px;
}

ul.header_menu > li ul.sub-menu li:hover {
  visibility: visible;
}

@media screen and (max-width: 900px) {
  .show_desktop {
    display: none;
  }

  .show_desktop_flex {
    display: none;
  }

  .show_responsive_flex {
    display: flex;
  }
}

/* desktop */

/* ─── Nav Container ─── */

#site-nav {
  position: relative;
}

#nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ─── Items ─── */

#nav-list > li {
  position: relative;
}

/* ─── Links ─── */

#nav-list a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  height: 60px;
  white-space: nowrap;
  text-decoration: none;
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
  transition-property: color, background-color, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#nav-list a:hover,
#nav-list .is-active > a {
  --tw-text-opacity: 1;
  color: rgb(38 91 196 / var(--tw-text-opacity));
}

/* ─── Caret ─── */

.nav-caret {
  width: 1rem;
  height: 1rem;
  transition-property: color, background-color, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  flex-shrink: 0;
}

.has-dropdown:hover > a .nav-caret,
.has-dropdown:focus-within > a .nav-caret {
  transform: rotate(180deg);
}

/* ─── Dropdown ─── */

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: white;
  border-top: 2px solid #265BC4;
  box-shadow: 0px 1px 2px 0px #00000005, 0px 3px 3px 0px #00000005, 0px 7px 4px 0px #00000003, 0px 13px 5px 0px #00000000, 0px 20px 5px 0px #00000000;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 0s 200ms;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

/* ─── Dropdown Links ─── */

.nav-dropdown a {
  height: auto;
  padding: 10px 20px;
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
  transition-property: color, background-color, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.nav-dropdown a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(38 91 196 / var(--tw-text-opacity));
}

/* ─── Nested Dropdown ─── */

.nav-dropdown .nav-dropdown {
  top: 0;
  right: 100%;
  border-top: none;
  border-right: 2px solid #265BC4;
  border-radius: 0.5rem 0 0 0.5rem;
}

/* ─── Mobile ─── */

@media (max-width: 1024px) {
  nav#site-nav {
    flex-basis: 100%;
    order: 1;
  }

  #nav-list a {
    height: auto;
    padding: 12px 16px;
  }

  .nav-dropdown .nav-dropdown {
    border-right: none;
    padding-right: 24px;
  }
}

/* Interactive Components */

.qa_section .accordion_item .content {
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qa_section .accordion_item.active .content {
  max-height: 600px !important;
  padding: 0 0 16px !important;
  transition: all 0.3s ease;
}

.qa_section .accordion_item.active span {
  color: #0066CC !important;
}

.qa_section .accordion_item>div:hover span {
  color: #0066CC !important;
}

/* Spin Box Component */

.box_wrapper {
  height: 316px;
  overflow: hidden;
  padding-top: 15px;
  position: relative;
}

.boxes {
  height: 600px;
  width: 600px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transition: transform 4s ease-out;
}

#action-btn-spin.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.box_wrapper::before {
  content: "";
  background: url(./img/triangle.svg) center no-repeat;
  position: absolute;
  right: 50%;
  top: 0;
  transform: translateX(50%);
  z-index: 99;
  width: 40px;
  height: 40px;
}

/* .boxes::after {
    content: '';
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: rgb(255 0 0 / 37%);
    border-radius: 50%;
} */

.boxes .box_item {
  position: absolute;
}

.boxes .box_item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: #262626;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.pagination-btn,
.page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #262626;
  font-size: 14px;
  transition: all .3s;
}

.pagination-btn.active,
.page-numbers.current {
  background: #0066CC1A;
  color: #0066CC;
}

.pagination-btn:hover,
.page-numbers:hover {
  background: #0066CC1A;
  color: #0066CC;
}

/* ========================
      Utilities Layer
      ======================== */

/* Typography Utilities */

.text-hero {
  font-size: 61px;
}

.text-h1 {
  font-size: 22px;
  line-height: 1.7;
}

.text-h2 {
  font-size: 20px;
  line-height: 1.7;
}

.text-h3 {
  font-size: 18px;
  line-height: 1.7;
}

.text-title {
  font-size: 25px;
}

.text-subtitle {
  font-size: 20px;
}

.text-bodyemibold {
  font-size: 16px;
  line-height: 180%;
}

.text-body {
  font-size: 16px;
}

.text-caption {
  font-size: 13px;
}

.text-black-primary {
  color: var(--primary-back);
}

/* Scrollbar Styles */

/* Hide scrollbar for Chrome, Safari and Opera */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */

.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Custom Scrollbar Styles */

.custom_scrollbar::-webkit-scrollbar,
figure.wp-block-table::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.custom_scrollbar::-webkit-scrollbar-track,
figure.wp-block-table::-webkit-scrollbar-track {
  border-radius: 10px;
}

.custom_scrollbar::-webkit-scrollbar-thumb,
figure.wp-block-table::-webkit-scrollbar-thumb {
  background: #0066CC;
  border-radius: 10px;
}

.custom_scrollbar::-webkit-scrollbar-thumb:hover,
figure.wp-block-table::-webkit-scrollbar-thumb:hover {
  background: #0066CC;
}

/* ========================
      Tailwind Directives
      ======================== */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 1492px) {
  .container {
    max-width: 1492px;
  }
}

/* Heading margins */

[class*="main-style"] *+:where(h1, h2, h3, h4, h5, h6) {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* Figure and suggestion-wrapper margins */

/* Mini box heading margins */

/* Heading typography */

[class*="main-style"] h1 {
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.7;
}

[class*="main-style"] h2 {
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.7;
}

[class*="main-style"] h3,
      [class*="main-style"] h4,
      [class*="main-style"] h5,
      [class*="main-style"] h6 {
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
}

/* Links */

[class*="main-style"] a {
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  font-size: 16px;
}

/* Paragraphs and links within */

[class*="main-style"] p {
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  font-size: 16px;
  a {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity));
  }
}

/* Product-inline links */

[class*="main-style"] [data-size="product-inline"] a {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
}

/* Lists */

[class*="main-style"] ul {
  list-style-type: disc;
  padding-left: 2.5rem;
}

[class*="main-style"] ol {
  list-style-type: decimal;
  padding-left: 2.5rem;
}

/* Paragraph with background */

/* Gallery block */

/* Image block */

[class*="main-style"] .wp-block-image {
  margin-top: 1rem;
  margin-bottom: 1rem;
  img {
    width: 100%;
  }
  &.aligncenter img {
    align-self: center;
  }
  &.alignleft img {
    align-self: flex-end;
  }
  &.has-figcaption {
    display: flex;
  }
  &.has-figcaption {
    flex-direction: column;
  }
  &.has-figcaption {
    --tw-bg-opacity: 1;
    background-color: rgb(38 91 196 / var(--tw-bg-opacity));
  }
  &.has-figcaption {
    padding: 0.25rem;
  }
  &.has-figcaption {
    figcaption {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem;
    }
    figcaption {
      display: flex;
    }
    figcaption {
      flex-direction: row;
    }
    figcaption {
      align-items: center;
    }
    figcaption {
      -moz-column-gap: 0.25rem;
           column-gap: 0.25rem;
    }
    figcaption {
      align-self: center;
    }
    figcaption {
      font-size: 0.75rem;
    }
    figcaption {
      --tw-text-opacity: 1;
      color: rgb(38 91 196 / var(--tw-text-opacity));
    }
  }
}

/* Video block */

/* Table block */

[class*="main-style"] table {
  margin: 1rem;
  align-self: center;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
  thead {
    --tw-bg-opacity: 1;
    background-color: rgb(38 91 196 / var(--tw-bg-opacity));
  }
  th,
            td {
    white-space: nowrap;
  }
  th,
            td {
    border-width: 1px;
  }
  th,
            td {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity));
  }
  th,
            td {
    padding: 0.1875rem;
  }
  th,
            td {
    text-align: center;
  }
  th,
            td {
    font-family: Iranyekan, system-ui, sans-serif;
  }
  th,
            td {
    font-size: 0.875rem;
  }
  th,
            td {
    font-weight: 400;
  }
  th,
            td {
    line-height: 2;
  }
  th,
            td {
    /* color: var(--color-fg) !important; */
  }
}

body {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  font-family: Iranyekan, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
  font-size: 16px;
}

body[data-scroll="false"] {
  overflow: hidden;
}

input[type="search"]::-webkit-search-decoration,
      input[type="search"]::-webkit-search-cancel-button,
      input[type="search"]::-webkit-search-results-button,
      input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

input,
      textarea {
  outline-color: #265BC4;
}

input:focus-visible,
      textarea:focus-visible {
  outline-style: solid;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
      input[type="number"]::-webkit-inner-spin-button {
  margin: 0px;
  -webkit-appearance: none;
          appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.right-full {
  right: 100%;
}

.start-3 {
  inset-inline-start: 0.75rem;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-\[94px\] {
  top: 94px;
}

.top-full {
  top: 100%;
}

.z-30 {
  z-index: 30;
}

.z-\[100\] {
  z-index: 100;
}

.z-\[115\] {
  z-index: 115;
}

.z-\[9999\] {
  z-index: 9999;
}

.z-\[999\] {
  z-index: 999;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.col-span-full {
  grid-column: 1 / -1;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-\[10px\] {
  margin-top: 10px;
  margin-bottom: 10px;
}

.\!mb-4 {
  margin-bottom: 1rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-auto {
  margin-right: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.\!block {
  display: block !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.size-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.size-12 {
  width: 3rem;
  height: 3rem;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.size-8 {
  width: 2rem;
  height: 2rem;
}

.size-\[52px\] {
  width: 52px;
  height: 52px;
}

.size-full {
  width: 100%;
  height: 100%;
}

.h-12 {
  height: 3rem;
}

.h-3 {
  height: 0.75rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-\[114px\] {
  height: 114px;
}

.h-\[120px\] {
  height: 120px;
}

.h-\[48px\] {
  height: 48px;
}

.h-\[52px\] {
  height: 52px;
}

.h-dvh {
  height: 100dvh;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.max-h-\[95vh\] {
  max-height: 95vh;
}

.max-h-\[calc\(100vh-100px\)\] {
  max-height: calc(100vh - 100px);
}

.w-3\/5 {
  width: 60%;
}

.w-6 {
  width: 1.5rem;
}

.w-\[52px\] {
  width: 52px;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-\[200px\] {
  min-width: 200px;
}

.max-w-\[365px\] {
  max-width: 365px;
}

.max-w-\[368px\] {
  max-width: 368px;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.grow {
  flex-grow: 1;
}

.basis-\[152px\] {
  flex-basis: 152px;
}

.basis-full {
  flex-basis: 100%;
}

.\!translate-x-0 {
  --tw-translate-x: 0px !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.resize-none {
  resize: none;
}

.resize {
  resize: both;
}

.list-none {
  list-style-type: none;
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.place-items-center {
  place-items: center;
}

.items-start {
  align-items: flex-start;
}

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

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

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

.\!gap-2 {
  gap: 0.5rem !important;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-\[10px\] {
  gap: 10px;
}

.self-start {
  align-self: flex-start;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-8 {
  border-radius: 0.5rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-r-4 {
  border-right-width: 4px;
}

.border-solid {
  border-style: solid;
}

.border-\[\#c3cfd8\] {
  --tw-border-opacity: 1;
  border-color: rgb(195 207 216 / var(--tw-border-opacity));
}

.border-\[\#e9f0f6\] {
  --tw-border-opacity: 1;
  border-color: rgb(233 240 246 / var(--tw-border-opacity));
}

.border-border {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}

.border-brand {
  --tw-border-opacity: 1;
  border-color: rgb(38 91 196 / var(--tw-border-opacity));
}

.border-secondary-300 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.bg-\[\#0066CC1A\] {
  background-color: #0066CC1A;
}

.bg-\[\#616161\]\/60 {
  background-color: rgb(97 97 97 / 0.6);
}

.bg-\[\#f3f7fa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(243 247 250 / var(--tw-bg-opacity));
}

.bg-bg {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}

.bg-brand {
  --tw-bg-opacity: 1;
  background-color: rgb(38 91 196 / var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}

.bg-neutral-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}

.bg-secondary-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.\!p-4 {
  padding: 1rem !important;
}

.p-1 {
  padding: 0.25rem;
}

.p-3\.5 {
  padding: 0.875rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pe-3 {
  padding-inline-end: 0.75rem;
}

.pl-0 {
  padding-left: 0px;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.ps-10 {
  padding-inline-start: 2.5rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

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

.font-display {
  font-family: Iranyekan, system-ui, sans-serif;
}

.font-primary {
  font-family: Iranyekan, system-ui, sans-serif;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[26px\] {
  font-size: 26px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-body {
  font-size: 1rem;
}

.text-body-s {
  font-size: 0.875rem;
}

.text-detail {
  font-size: 0.75rem;
}

.text-h2 {
  font-size: 1.5rem;
}

.text-h3 {
  font-size: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.\!leading-\[1\.7\] {
  line-height: 1.7 !important;
}

.leading-\[1\.7\] {
  line-height: 1.7;
}

.leading-loose {
  line-height: 2;
}

.text-\[\#2b3446\] {
  --tw-text-opacity: 1;
  color: rgb(43 52 70 / var(--tw-text-opacity));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
}

.text-brand {
  --tw-text-opacity: 1;
  color: rgb(38 91 196 / var(--tw-text-opacity));
}

.text-fg {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
}

.text-neutral-500 {
  --tw-text-opacity: 1;
  color: rgb(115 115 115 / var(--tw-text-opacity));
}

.text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(38 91 196 / var(--tw-text-opacity));
}

.text-secondary-700 {
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity));
}

.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline {
  outline-style: solid;
}

.outline-primary {
  outline-color: #265BC4;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, transform, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Combine with previous styles */

.\*\:mb-4 > * {
  margin-bottom: 1rem;
}

.\*\:flex > * {
  display: flex;
}

.\*\:size-16 > * {
  width: 4rem;
  height: 4rem;
}

.\*\:h-\[94px\] > * {
  height: 94px;
}

.\*\:max-h-\[94px\] > * {
  max-height: 94px;
}

.\*\:min-w-\[49\%\] > * {
  min-width: 49%;
}

.\*\:max-w-fit > * {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.\*\:flex-1 > * {
  flex: 1 1 0%;
}

.\*\:flex-grow > * {
  flex-grow: 1;
}

.\*\:items-center > * {
  align-items: center;
}

.\*\:justify-center > * {
  justify-content: center;
}

.\*\:gap-4 > * {
  gap: 1rem;
}

.\*\:overflow-hidden > * {
  overflow: hidden;
}

.\*\:rounded-l-2xl > * {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.\*\:rounded-r-md > * {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.\*\:border > * {
  border-width: 1px;
}

.\*\:border-solid > * {
  border-style: solid;
}

.\*\:border-gray-100 > * {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}

.\*\:py-1 > * {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.\*\:\!text-body-s > * {
  font-size: 0.875rem !important;
}

.\*\:text-sm > * {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.\*\:font-normal > * {
  font-weight: 400;
}

.\*\:leading-loose > * {
  line-height: 2;
}

.\*\:transition-all > * {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:bg-\[\#0066CC1A\]:hover {
  background-color: #0066CC1A;
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.group\/input:has(input:-moz-placeholder-shown) .group-has-\[input\:-moz-placeholder-shown\]\/input\:hidden {
  display: none;
}

.group\/input:has(input:placeholder-shown) .group-has-\[input\:placeholder-shown\]\/input\:hidden {
  display: none;
}

@media not all and (min-width: 1024px) {
  .max-lg\:order-none {
    order: 0;
  }

  .max-lg\:hidden {
    display: none;
  }

  .max-lg\:h-10 {
    height: 2.5rem;
  }

  .max-lg\:shrink-0 {
    flex-shrink: 0;
  }

  .max-lg\:basis-2\/6 {
    flex-basis: 33.333333%;
  }

  .max-lg\:basis-\[122px\] {
    flex-basis: 122px;
  }
}

@media not all and (min-width: 768px) {
  .max-md\:fixed {
    position: fixed;
  }

  .max-md\:top-40 {
    top: 10rem;
  }

  .max-md\:col-span-full {
    grid-column: 1 / -1;
  }

  .max-md\:hidden {
    display: none;
  }

  .max-md\:h-\[372px\] {
    height: 372px;
  }

  .max-md\:w-full {
    width: 100%;
  }

  .max-md\:min-w-\[48\%\] {
    min-width: 48%;
  }

  .max-md\:flex-col {
    flex-direction: column;
  }

  .max-md\:gap-x-6 {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .max-md\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .max-md\:pr-0 {
    padding-right: 0px;
  }

  .max-md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .md\:sticky {
    position: sticky;
  }

  .md\:top-20 {
    top: 5rem;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:my-\[50px\] {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:mt-2 {
    margin-top: 0.5rem;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[250px\] {
    height: 250px;
  }

  .md\:w-\[312px\] {
    width: 312px;
  }

  .md\:min-w-\[230px\] {
    min-width: 230px;
  }

  .md\:min-w-\[450px\] {
    min-width: 450px;
  }

  .md\:min-w-\[742px\] {
    min-width: 742px;
  }

  .md\:max-w-\[230px\] {
    max-width: 230px;
  }

  .md\:max-w-\[312px\] {
    max-width: 312px;
  }

  .md\:basis-2\/4 {
    flex-basis: 50%;
  }

  .md\:basis-\[476px\] {
    flex-basis: 476px;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:gap-4 {
    gap: 1rem;
  }

  .md\:pb-8 {
    padding-bottom: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-start-9 {
    grid-column-start: 9;
  }

  .lg\:mt-8 {
    margin-top: 2rem;
  }

  .lg\:h-\[58px\] {
    height: 58px;
  }

  .lg\:shrink-0 {
    flex-shrink: 0;
  }

  .lg\:basis-\[252px\] {
    flex-basis: 252px;
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:text-\[28px\] {
    font-size: 28px;
  }

  @media not all and (min-width: 1024px) {
    .lg\:max-lg\:h-10 {
      height: 2.5rem;
    }
  }
}

.\[\&\.active\]\:bg-\[\#0066CC1A\].active {
  background-color: #0066CC1A;
}