@charset "UTF-8";
/* ==========================================================================
          بخش اول: استایل‌های عمومی (Global Styles)
          شامل: متغیرها، هدر، فوتر، منو، پری‌لودر و ویدجت راهنما
          ========================================================================== */
/* 1. تنظیمات پایه و متغیرها */
:root {
  --theme-color: #D50000;
  --bg-body: #f7f7f7;
  --bg-card: #ffffff;
  --text-main: #212529;
  --text-second: #071339;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
}

.custom-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: "IRANYekan", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
}

/* کلاس‌های کمکی */
body.overflow-hidden {
  overflow: hidden !important;
}

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

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

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

/* 2. پری‌لودر (Preloader) */
#site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transform: scale(1.1);
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-logo {
  width: 80px;
  margin-bottom: 20px;
  filter: none;
  animation: soft-pulse 2s infinite ease-in-out;
}

.loading-line-wrapper {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loading-line {
  width: 40%;
  height: 100%;
  background: var(--theme-color);
  position: absolute;
  left: -50%;
  animation: line-move 1.5s infinite ease-in-out;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--theme-color);
}

@keyframes soft-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes line-move {
  0% {
    left: -50%;
    width: 30%;
  }
  50% {
    left: 20%;
    width: 60%;
  }
  100% {
    left: 100%;
    width: 30%;
  }
}
/* 3. نویگیشن بار (Header) */
.custom-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  padding: 25px 0;
  z-index: 3;
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.custom-nav.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--theme-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--theme-color);
  transition: 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.logo {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.logo img {
  height: 45px;
  filter: none !important;
  transition: 0.3s;
  position: relative;
  z-index: 0;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine-rtl 4s infinite;
  z-index: 1;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-icon-header {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-icon-header:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  transform: translateY(-3px);
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.3);
}

.badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
}

/* جستجو */
.search-box-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 600px;
  max-width: 90%;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: glow-border 3s infinite alternate;
}

.search-box-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes glow-border {
  0% {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
  }
}
.search-form-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-form-header input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 50px 10px 20px;
  font-size: 1.2rem;
  color: #fff;
  outline: none;
  text-align: right;
}

.search-form-header input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

.search-form-header button {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--theme-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(213, 0, 0, 0.4);
}

.search-form-header button:hover {
  transform: translateY(-50%) scale(1.1);
  background: #fff;
  color: var(--theme-color);
}

.btn-header-action {
  background-color: var(--theme-color) !important;
  color: #fff !important;
  border: 1px solid var(--theme-color) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-header-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.4);
}

.btn-header-action::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine-rtl 3s infinite;
  z-index: -1;
}

@keyframes shine-rtl {
  0% {
    right: -100%;
  }
  20% {
    right: 200%;
  }
  100% {
    right: 200%;
  }
}
/* منوی موبایل */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  /* تغییر پس‌زمینه به حالت شیشه‌ای تیره */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px); /* تار کردن پس‌زمینه */
  -webkit-backdrop-filter: blur(15px); /* پشتیبانی سافاری */
  z-index: 10000;
  padding: 60px 30px 30px;
  transition: 0.4s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.1); /* تغییر بوردر به حالت ظریف‌تر */
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-overlay.open {
  right: 0;
}

.mobile-overlay ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.mobile-overlay a {
  color: #fff !important;
  font-size: 1.1rem;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  transition: color 0.3s;
}

.mobile-overlay img {
  width: 120px;
}

.mobile-overlay a:hover, .mobile-overlay a.active {
  color: var(--theme-color);
  border-color: #333;
}

.close-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: var(--theme-color);
  cursor: pointer;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* تیره‌تر کردن و بلور کردن بک‌گراند پشت منو */
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9998;
  display: none;
}

.backdrop.open {
  display: block;
}

.mobile-menu-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

/* نویگیتور عمودی (Side Nav) */
.vertical-nav {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.vertical-nav a {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
  cursor: pointer;
}

.vertical-nav a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vertical-nav a:hover span, .vertical-nav a.active span {
  width: 14px;
  height: 14px;
  background-color: var(--theme-color);
  box-shadow: 0 0 10px var(--theme-color);
}

.vertical-nav a::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--theme-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.vertical-nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) translateX(10px);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* 4. فوتر (Footer) */
.main-footer {
  background-color: #050505;
  color: #a0a0a0;
  font-size: 0.95rem;
  position: relative;
  border-top: 1px solid #222;
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-logo-img {
  height: 45px;
  filter: brightness(0) invert(1);
}

.footer-widget-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--theme-color);
  transform: translateX(-5px);
}

.footer-links a i {
  margin-left: 8px;
  font-size: 0.8rem;
  color: #444;
  transition: 0.3s;
}

.footer-links a:hover i {
  color: var(--theme-color);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--theme-color);
  font-size: 1.3rem;
  margin-left: 10px;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #151515;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #333;
}

.social-links a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  transform: translateY(-3px);
  color: #fff !important;
}

.footer-bottom {
  background-color: #000;
  padding: 25px 0;
  border-top: 1px solid #1a1a1a;
}

.footer-widget-title .toggle-icon {
  display: none;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.trust-symbols {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.trust-item {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.trust-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.newsletter-input {
  text-align: right;
  direction: rtl;
  padding-left: 50px;
  padding-right: 20px;
  border-radius: 50px;
}

.newsletter-btn {
  border-radius: 50px 0 0 50px;
}

.copyright-dev {
  color: #FF8C00;
  font-weight: bold;
}

/* 5. ویدجت راهنما (Guide Widget) */
.site-guide-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  z-index: 9990;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 2px solid #D50000;
  animation: red-glow-shake 2s infinite ease-in-out;
  transition: transform 0.3s;
}

.site-guide-widget:hover {
  transform: scale(1.1);
}

.site-guide-widget video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.play-overlay i {
  color: #fff;
  font-size: 30px;
}

.site-guide-widget:hover .play-overlay {
  opacity: 1;
}

@keyframes red-glow-shake {
  0% {
    box-shadow: 0 0 0 0 rgba(213, 0, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(213, 0, 0, 0.8);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(213, 0, 0, 0.4);
    transform: scale(1);
  }
}
/* 6. ریسپانسیو عمومی (Responsive) */
@media (min-width: 992px) {
  .vertical-nav a:hover::before, .vertical-nav a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
    order: -1;
    margin-left: 15px;
  }
  .logo {
    order: 2;
    margin-right: auto;
    margin-left: 0;
  }
  .nav-links, .btn-header-action {
    display: none;
  }
  .custom-nav {
    padding: 15px 0;
  }
  .vertical-nav {
    right: 10px;
    padding: 15px 5px;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
  }
  .vertical-nav a {
    width: 10px;
    height: 10px;
  }
  .vertical-nav a span {
    width: 6px;
    height: 6px;
  }
  .vertical-nav a.active span {
    width: 10px;
    height: 10px;
  }
  .vertical-nav a::before, .vertical-nav a::after {
    display: none;
  }
  .footer-widget {
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
  }
  .footer-widget:last-child {
    border-bottom: none;
  }
  .footer-widget-title {
    cursor: pointer;
    margin-bottom: 15px;
  }
  .footer-widget-title .toggle-icon {
    display: block;
  }
  .footer-widget-title.active .toggle-icon {
    transform: rotate(180deg);
  }
  .footer-links-container {
    display: none;
    padding-bottom: 15px;
    margin-top: 0 !important;
  }
  .footer-links-container.open {
    display: block;
    animation: fadeIn 0.3s;
  }
  .btn-icon-header {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-left: 8px !important;
  }
  .btn-header-action {
    display: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- استایل نهایی: تصویر + گرادینت تیره + گوشه‌های گرد --- */
.page-header {
  position: relative;
  width: 100%;
  /* ارتفاع مناسب */
  height: 10vh;
  min-height: 90px;
  /* تنظیمات تصویر */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* وسط‌چین کردن محتوا */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* فاصله از بالا برای اینکه زیر منو نرود */
  padding-top: 80px;
  /* بسیار مهم: برای اینکه گرادینت و عکس از گوشه‌های گرد بیرون نزنند */
  overflow: hidden;
}

/* بازگرداندن لایه تاریک (گرادینت) روی عکس */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* گرادینت از سیاه غلیظ در بالا به سیاه ملایم در پایین */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* کانتینر محتوا (باید روی لایه تاریک باشد) */
.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* تیتر صفحه */
.page-header-title {
  font-size: 2rem; /* سایز فونت متناسب */
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* استایل مسیر راهنما (Breadcrumb) */
.breadcrumb-wrapper {
  display: inline-block;
  /* زمینه شیشه‌ای روشن‌تر (چون پس‌زمینه تیره است) */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 6px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.breadcrumb-wrapper ul li {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-wrapper ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-wrapper ul li a:hover {
  color: var(--theme-color);
}

.breadcrumb-wrapper ul li + li::before {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.4);
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .page-header {
    height: 10vh;
    min-height: 90px;
    padding-top: 60px;
  }
  .page-header-title {
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   تغییر رنگ عمومی لینک‌ها
   ========================================================================== */
a {
  /* استفاده از متغیر رنگ قرمز که قبلا تعریف کردیم */
  color: var(--text-second);
  text-decoration: none; /* حذف خط زیر لینک‌ها (اختیاری) */
  transition: all 0.3s ease;
}

.page-item.active .page-link {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

/* رنگ لینک وقتی موس روی آن می‌رود (کمی تیره‌تر) */
a:hover {
  color: #b71c1c; /* یک درجه تیره‌تر از قرمز اصلی */
}

/* --- استثنا برای لینک‌های سفید (مثل منو و فوتر) --- */
/* اگر نخواهید لینک‌های منوی بالای سایت یا فوتر قرمز شوند، این کدها را هم اضافه کنید */
/* 1. حفظ رنگ سفید لینک‌های منوی اصلی */
.nav-links a {
  color: #fff !important;
}

.nav-links a:hover {
  color: var(--theme-color) !important; /* فقط در حالت هاور قرمز شود */
}

/* 2. حفظ رنگ لینک‌های فوتر (خاکستری روشن) */
.footer-links a,
.footer-contact li {
  color: #a0a0a0 !important;
}

.footer-links a:hover {
  color: var(--theme-color) !important;
  transform: translateX(-5px);
}

/* 3. حفظ رنگ سفید مسیر راهنما (Breadcrumb) در هدر */
.breadcrumb-wrapper ul li a {
  color: #fff !important;
}

.breadcrumb-wrapper ul li a:hover {
  color: var(--theme-color) !important;
}

/* رنگ دلخواه */
.bg-white {
  background-color: inherit !important;
  border: dashed #D50000 0.4px;
}

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