body {
  background: #000000;
  color: #ffffff;
}

* {
  scroll-behavior: smooth;
}

select {
  border-left: 1rem solid transparent;
}

@media (min-width: 1024px) {
  * {
    --sb-track-color: #303030;
    --sb-thumb-color: #474747;
    --sb-size: 8px;
  }
  *::-webkit-scrollbar {
    width: var(--sb-size);
  }
  *::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 5px;
  }
  *::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 5px;
  }
  @supports not selector(::-webkit-scrollbar) {
    * {
      scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
  }
}
#main-header .menu-item {
  padding: 0 1rem;
  position: relative;
}
#main-header .menu-item::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1rem;
  height: 1rem;
  transition: width 0.3s ease-in-out;
}
#main-header .menu-item.menu-item-has-children > .sub-menu {
  min-width: 200px;
  display: none;
  position: absolute;
  top: 2.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
  background-color: #f9fafb;
}
#main-header .menu-item.menu-item-has-children:hover > .sub-menu {
  display: block;
}
#main-header .menu-item .sub-menu li {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
}
#main-header .menu-item .sub-menu li:first-child {
  padding-top: 1.5rem;
}

#menu-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 160px;
  row-gap: 16px;
  margin-top: 16px;
}
@media (max-width: 984px) {
  #menu-footer {
    height: 300px;
  }
}
#menu-footer .menu-item {
  font-size: 14px;
}
#menu-footer .menu-item::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  width: 1rem;
  height: 2px;
  background-color: #f5c181;
}

.footer-mask {
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: radial-gradient(47.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
}
@media (max-width: 1024px) {
  .footer-mask {
    border-image-source: radial-gradient(97.55% 77.69% at 50% 110.19%, rgba(0, 49, 156, 0.24) 0%, rgba(0, 49, 156, 0) 100%);
  }
}

.post-content p a,
.post-content h2 a,
.post-content h3 a,
.post-content h4 a,
.post-content h5 a,
.post-content h6 > a,
.product-post-content p a,
.product-post-content h2 a,
.product-post-content h3 a,
.product-post-content h4 a,
.product-post-content h5 a,
.product-post-content h6 > a {
  color: rgb(212, 81, 81);
  position: relative;
  width: fit-content;
  display: inline-block;
}
.post-content p a::before,
.post-content h2 a::before,
.post-content h3 a::before,
.post-content h4 a::before,
.post-content h5 a::before,
.post-content h6 > a::before,
.product-post-content p a::before,
.product-post-content h2 a::before,
.product-post-content h3 a::before,
.product-post-content h4 a::before,
.product-post-content h5 a::before,
.product-post-content h6 > a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: rgb(241, 73, 73);
  transition: width 0.3s ease-in-out;
}
.post-content p a:hover,
.post-content h2 a:hover,
.post-content h3 a:hover,
.post-content h4 a:hover,
.post-content h5 a:hover,
.post-content h6 > a:hover,
.product-post-content p a:hover,
.product-post-content h2 a:hover,
.product-post-content h3 a:hover,
.product-post-content h4 a:hover,
.product-post-content h5 a:hover,
.product-post-content h6 > a:hover {
  color: rgb(241, 73, 73);
}
.post-content p a:hover::before,
.post-content h2 a:hover::before,
.post-content h3 a:hover::before,
.post-content h4 a:hover::before,
.post-content h5 a:hover::before,
.post-content h6 > a:hover::before,
.product-post-content p a:hover::before,
.product-post-content h2 a:hover::before,
.product-post-content h3 a:hover::before,
.product-post-content h4 a:hover::before,
.product-post-content h5 a:hover::before,
.product-post-content h6 > a:hover::before {
  width: 100%;
  background-color: rgb(241, 73, 73);
}
.post-content .social-container.show-social,
.product-post-content .social-container.show-social {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  right: calc(100% + 10px);
  min-width: 200px;
  z-index: 1;
}
.post-content .blog-img-container,
.product-post-content .blog-img-container {
  border-radius: 10px;
}
.post-content .blog-img-container img,
.product-post-content .blog-img-container img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: auto;
  display: block;
  border-radius: 10px;
}
.post-content img,
.product-post-content img {
  margin: 20px auto 20px auto;
}
.post-content,
.product-post-content {
  border-radius: 10px;
  margin: 10px 0 20px 0;
}
.post-content p:empty,
.product-post-content p:empty {
  display: none;
}
.post-content h1,
.product-post-content h1 {
  text-align: right;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.125rem); /* Mobile: 24px, Tablet: 34px, Desktop: 34px */
  font-weight: 700; /* Bold */
  margin-bottom: 10px;
}
.post-content h2,
.product-post-content h2 {
  text-align: right;
  font-size: clamp(1.125rem, 1.5vw, 1.875rem); /* Mobile: 18px, Tablet: 24px, Desktop: 30px */
  font-weight: 700; /* Bold */
}
.post-content h2:not(:first-of-type),
.product-post-content h2:not(:first-of-type) {
  margin-bottom: 10px;
  margin-top: 40px;
}
.post-content h2:first-of-type,
.product-post-content h2:first-of-type {
  margin-bottom: 10px;
}
.post-content h3,
.product-post-content h3 {
  text-align: right;
  font-size: clamp(1.125rem, 1.2vw, 1.5rem); /* Mobile: 18px, Tablet: 20px, Desktop: 24px */
  font-weight: 700; /* Bold */
  margin-bottom: 10px;
}
.post-content h4,
.product-post-content h4 {
  text-align: right;
  font-size: clamp(1rem, 1.1vw, 1.25rem); /* Mobile: 16px, Tablet: 18px, Desktop: 20px */
  font-weight: 700; /* Bold */
  margin-bottom: 10px;
}
.post-content h5,
.product-post-content h5 {
  text-align: right;
  font-size: clamp(1rem, 1vw, 1.125rem); /* Mobile: 16px, Tablet: 16px, Desktop: 18px */
  font-weight: 700; /* Bold */
  margin-bottom: 10px;
}
.post-content h6,
.product-post-content h6 {
  text-align: right;
  font-size: clamp(1rem, 0.9vw, 1rem); /* Mobile: 16px, Tablet: 16px, Desktop: 16px */
  font-weight: 700; /* Bold */
  margin-bottom: 10px;
}
.post-content p,
.product-post-content p {
  font-size: clamp(14px, 1vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
  margin-bottom: 25px;
}
.post-content img,
.product-post-content img {
  margin: 20px auto;
}
.post-content li,
.product-post-content li {
  position: relative;
  margin: 5px 0;
  color: rgb(var(--color-darkest));
  font-size: clamp(14px, 1vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  text-align: justify;
}
.post-content ol,
.product-post-content ol {
  position: relative;
  list-style-type: -moz-ethiopic-numeric;
  padding-right: 1.25rem;
}
.post-content ul,
.product-post-content ul {
  position: relative;
  list-style-type: unset;
  padding-right: 2.5rem;
  margin: 1rem 0;
}
.post-content .wp-block-column,
.product-post-content .wp-block-column {
  padding: 10px;
}
.post-content .blog-img-container,
.product-post-content .blog-img-container {
  border-radius: 10px;
}
.post-content .squares-left,
.post-content .squares-right,
.post-content .squares-bottom,
.product-post-content .squares-left,
.product-post-content .squares-right,
.product-post-content .squares-bottom {
  width: 100vw;
}

.swiper-prev,
.swiper-next {
  cursor: pointer;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.swiper-button-lock {
  display: none;
}

.swiper-custom-pagination .swiper-pagination-bullet {
  transition: all 0.5s;
}

.swiper-custom-pagination .swiper-pagination-bullet-active {
  border-radius: 5rem;
  width: 2rem;
  background: #000;
}

.swiper-custom-next,
.swiper-custom-prev {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  transition: all 0.5s;
  cursor: pointer;
}
.swiper-custom-next:hover,
.swiper-custom-prev:hover {
  background-color: #C50606;
}

.search-results-box .search-item > a,
.mobile-search-results-box .search-item > a {
  background-color: #f3f8fd;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  font-size: 14px;
}
.search-results-box .search-item > a img,
.mobile-search-results-box .search-item > a img {
  width: 50px;
  height: 50px;
}

.qty[type=number]::-webkit-inner-spin-button,
.qty[type=number]::-webkit-outer-spin-button,
.single-qty[type=number]::-webkit-inner-spin-button,
.single-qty[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dot-loader {
  width: 6px;
  height: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
  0% {
    box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
    background: #a7c6ff;
  }
  33% {
    box-shadow: 9px 0 #a7c6ff, -9px 0 #3276f8;
    background: #3276f8;
  }
  66% {
    box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
    background: #3276f8;
  }
  100% {
    box-shadow: 9px 0 #3276f8, -9px 0 #a7c6ff;
    background: #a7c6ff;
  }
}
.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #00319c;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pulse-loader {
  width: 40px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #ffffff 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 100%;
  animation: l7 1s infinite linear;
}
.pulse-loader.blue {
  --_g: no-repeat radial-gradient(circle closest-side, #319aae 90%, #0000);
}

@keyframes l7 {
  33% {
    background-size: 33.3333333333% 0%, 33.3333333333% 100%, 33.3333333333% 100%;
  }
  50% {
    background-size: 33.3333333333% 100%, 33.3333333333% 0%, 33.3333333333% 100%;
  }
  66% {
    background-size: 33.3333333333% 100%, 33.3333333333% 100%, 33.3333333333% 0%;
  }
}
.woocommerce-NoticeGroup {
  display: none;
}

.woocommerce-pagination ul {
  display: flex;
  gap: 1rem;
  width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
}
.woocommerce-pagination ul li span.current {
  background-color: #00319c;
  color: #fff;
}
.woocommerce-pagination ul li a:hover {
  background-color: #00319c;
  color: #fff;
}
.woocommerce-pagination ul li span,
.woocommerce-pagination ul li a {
  width: 3rem;
  height: 3rem;
  border: 1px solid #e4e9f4;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #575757;
  transition: all 0.1s;
}

.woocommerce-breadcrumb {
  font-size: 14px;
  color: #575757;
}
@media (max-width: 1024px) {
  .woocommerce-breadcrumb {
    font-size: 10px;
  }
}

.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.toast {
  min-width: 250px;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}

.toast-warning {
  background-color: #ffc107;
  color: #333;
}

.toast-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0 5px;
  font-size: 18px;
  opacity: 0.7;
}

.toast-close:hover {
  opacity: 1;
}

div.fp-watermark {
  display: none;
}

.page-numbers {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  color: #ffffff;
  background: #333333;
}
.page-numbers:hover {
  background-color: #C50606;
}
.page-numbers.current {
  background-color: #C50606;
  color: #ffffff;
}
@media (max-width: 1248px) {
  .page-numbers {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 1024px) {
  .masked-img {
    mask-image: linear-gradient(to left, transparent 10%, black 40%);
  }
}

/* *************** AzarMehr *************** */
@font-face {
  font-family: "AzarMehr";
  src: url("../fonts/AzarMehr/AzarMehr-FD[DSTY,KSHD,wght].woff2");
}
/* *************** Pinar *************** */
@font-face {
  font-family: Pinar;
  src: url("../fonts/Pinar/Pinar-VF-FD[DSTY,KSHD,wght].woff2");
  font-display: swap;
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Serif";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/RobotoSerif/roboto-serif-latin-800-normal.woff") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Assigning Fonts */
:root {
  font-family: "AzarMehr", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

#fp-nav ul li a span {
  background: #fff;
}

/* Tab styles */
.tab-link {
  display: inline-block;
  padding: 0.5rem 2rem;
  color: #4B5563;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-link:hover {
  background-color: #F3F4F6;
  /* bg-gray-100 */
}

.tab-link.active-tab {
  background-color: #C50606;
  /* saffron-400 */
  color: #ffffff;
}

/* Add responsive styles for smaller screens */
@media (max-width: 640px) {
  .tab-filters ul {
    flex-wrap: wrap;
  }
}
.stadium-mask {
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%), linear-gradient(to top, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 100%);
}

.status-W {
  background-color: var(--color-green-700);
}

.status-D {
  background-color: var(--color-black-300);
}

.status-L {
  background-color: var(--color-red-600);
}

.standings-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  border: 2px solid var(--color-woodsmoke);
  color: var(--color-black-200);
  white-space: nowrap;
}

.standings-table td,
th {
  padding: 15px;
  text-align: center;
}

.standings-table tr:nth-child(even) {
  background-color: var(--color-woodsmoke);
}

@media (max-width: 1024px) {
  .standings-table {
    font-size: 10px;
  }
  .standings-table td,
  th {
    padding: 10px 0;
    text-align: center;
  }
}
.team-stats-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  color: var(--color-black-200);
  white-space: nowrap;
}

.team-stats-table thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #1B1B1B;
}

.team-stats-table td,
.team-stats-table th {
  padding: 15px;
  text-align: center;
}

.team-stats-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.countdown-section {
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}

.countdown-amount {
  font-size: 30px;
  font-weight: 900;
}

.countdown-period {
  font-size: 14px;
  color: var(--color-black-200);
}

/*# sourceMappingURL=main.css.map */
