@charset "UTF-8";
/* ── CSS VARIABLES ── */
:root {
  --navy:#07325e;
  --navy2:#0a1628;
  --navy3:#07325e;
  --gold:#D4AF37;
  --gold2:#e8c96a;
  --cream:#f8f4ec;
  --cream_light:rgba(248,244,236,0.8);
  --cream2:rgba(223,225,230,0.3);
  --white:#ffffff;
  --border:#e5e0d5;
  --text-primary:#1a1a2e;
  --text-secondary:#4b5563;
  --text-muted:#6b7280;
  --radius-sm:4px;
  --radius-md:8px;
  --radius-lg:12px;
  --radius-full:9999px;
  --shadow-gold:0 8px 24px rgba(201,168,76,0.15);
  --transition:0.15s ease;
}

/*==========================================================================*/
/*SV CTA — end-of-article call to action block*/
/*==========================================================================*/
.sv-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1rem;
  /*background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);*/
  background: linear-gradient(180deg, var(--cream2) 85%, var(--cream) 100%);
  padding: 5rem 0;
  border-radius: var(--radius-lg);
  color: var(--white);
}
.sv-cta__logo {
  max-width: 120px;
  width: 100%;
}
.sv-cta__title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.sv-cta__subtitle {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.sv-cta__body {
  color: var(--cream_light);
  font-size: 0.7rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.sv-cta__btn {
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.sv-cta .btn-outline-primary.sv-cta__btn {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.sv-cta .btn-outline-primary.sv-cta__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.sv-cta .btn-outline-secondary.sv-cta__btn {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
}
.sv-cta .btn-outline-secondary.sv-cta__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.sv-cta__top {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sv-cta__bottom {
  padding-top: 1.5rem;
  align-items: center;
}
.sv-cta__note {
  color: var(--gold2);
  font-style: italic;
  font-size: 0.9rem;
  margin: 0.5rem auto 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .sv-cta {
    padding: 1.75rem 1.25rem;
  }
  .sv-cta__title {
    font-size: 1.3rem;
  }
}

.sv-faq {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.sv-faq__title {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.sv-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.sv-faq__item[open] {
  border-color: var(--gold2);
}
.sv-faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  user-select: none;
}
.sv-faq__question:focus {
  outline: none;
}
.sv-faq__question::-webkit-details-marker {
  display: none;
}
.sv-faq__question::marker {
  content: "";
}
.sv-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.sv-faq__icon::before, .sv-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.2s ease;
}
.sv-faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.sv-faq__icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
details[open] .sv-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.sv-faq__answer {
  padding: 0 1.25rem 1.1rem;
}
.sv-faq__answer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* ==========================================
   SIKHVERSE - COMPLETE GLOBAL STYLES
   ========================================== */
/* ==========================================
   TABLE OF CONTENTS
   1.  Fact Box
   2.  Pull Quote
   3.  Read More Button
   4.  Accordion / FAQ
   5.  Legal Notice / Disclaimer Cards
   6.  Value Grid / Cards
   7.  Sitemap
   8.  Image Placeholder
   9.  Under Construction Block
   10. Responsive Breakpoints
   ========================================== */
/* ==========================================
   1. FACT BOX
   ========================================== */
.sv-fact-box {
  background: #f7fafc;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e2e8f0;
  margin: 1.5rem 0;
}

.sv-fact-box__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f6ad55;
}

.sv-fact-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-fact-box__list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #edf2f7;
  color: #4a5568;
}

.sv-fact-box__list li:last-child {
  border-bottom: none;
}

.sv-fact-box__list li strong {
  color: #2d3748;
}

/* ==========================================
   2. PULL QUOTE
   ========================================== */
.sv-pull-quote {
  background: #f0f7ff;
  border-left: 4px solid #2d3748;
  padding: 1.2rem 1.8rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-style: italic;
  color: #2d3748;
}

.sv-pull-quote p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.sv-pull-quote .sv-quote-source {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  color: #4a5568;
}

/* ==========================================
   3. READ MORE BUTTON
   ========================================== */
.sv-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #2d3748;
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sv-read-more-btn:hover {
  background: #f6ad55;
  border-color: #f6ad55;
  color: #1a202c;
}

.sv-read-more-btn .sv-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.sv-read-more-btn:hover .sv-arrow {
  transform: translateX(4px);
}

/* ==========================================
   4. ACCORDION / FAQ
   ========================================== */
.sv-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
  background: #f9fafc;
}

.sv-accordion__item {
  border-bottom: 1px solid #e2e8f0;
}

.sv-accordion__item:last-child {
  border-bottom: none;
}

.sv-accordion__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a202c;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-family: inherit;
  gap: 1rem;
}

.sv-accordion__trigger:hover {
  background: #edf2f7;
}

.sv-accordion__trigger .sv-accordion__icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #4a5568;
  flex-shrink: 0;
}

.sv-accordion__item--open .sv-accordion__trigger .sv-accordion__icon {
  transform: rotate(180deg);
}

.sv-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.2rem;
  background: #ffffff;
}

.sv-accordion__item--open .sv-accordion__body {
  max-height: 500px;
  padding: 0 1.2rem 1.2rem 1.2rem;
}

.sv-accordion__body p {
  margin: 0.5rem 0 0 0;
  color: #2d3748;
  line-height: 1.6;
  font-size: 11px;
}

/* ==========================================
   5. LEGAL NOTICE / DISCLAIMER CARDS
   ========================================== */
.sv-legal-notice {
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.sv-disclaimer-card {
  background: #f7fafc;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #e53e3e;
  margin: 1.5rem 0;
}

.sv-disclaimer-card h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-size: 1.05rem;
}

.sv-disclaimer-card p {
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

.sv-policy-card {
  background: #f7fafc;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #2d3748;
  margin: 1.5rem 0;
}

.sv-policy-card h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #2d3748;
  font-size: 1.05rem;
}

.sv-policy-card p {
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================
   6. VALUE GRID / CARDS
   ========================================== */
.sv-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.sv-value-card {
  background: #f7fafc;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border-left: 4px solid #2d3748;
}

.sv-value-card h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  color: #2d3748;
}

.sv-value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

/* ==========================================
   7. SITEMAP
   ========================================== */
.sv-sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.sv-sitemap-section {
  background: #f9fafc;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.sv-sitemap-section:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
}

.sv-sitemap-section h3 {
  margin: 0 0 0.8rem 0;
  color: #2d3748;
  font-size: 1.05rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f6ad55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sv-sitemap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-sitemap-section ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #edf2f7;
}

.sv-sitemap-section ul li:last-child {
  border-bottom: none;
}

.sv-sitemap-section ul li a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sv-sitemap-section ul li a:hover {
  color: #2d3748;
  text-decoration: underline;
}

.sv-sitemap-section ul li a .sv-arrow {
  color: #cbd5e0;
  font-size: 0.7rem;
  transition: color 0.2s;
}

.sv-sitemap-section ul li a:hover .sv-arrow {
  color: #f6ad55;
}

/* ==========================================
   8. IMAGE PLACEHOLDER
   ========================================== */
.sv-image-placeholder {
  margin: 1.5rem 0;
  background: #f0f3f7;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.sv-image-placeholder img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 100%;
  display: block;
}

.sv-image-placeholder p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #4a5568;
}

/* ==========================================
   9. UNDER CONSTRUCTION BLOCK
   ========================================== */
.sv-construction-block {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border: 2px dashed #cbd5e0;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.sv-construction-block .sv-construction-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.sv-construction-block .sv-construction-icon {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.sv-construction-block .sv-construction-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 0.5rem 0;
}

.sv-construction-block .sv-construction-subtitle {
  font-weight: 400;
  font-size: 1.2rem;
  color: #4a5568;
  display: inline-block;
  margin-left: 0.5rem;
}

.sv-construction-block .sv-construction-divider {
  width: 80px;
  height: 3px;
  background: #f6ad55;
  margin: 0.5rem auto 1.2rem auto;
  border-radius: 4px;
}

.sv-construction-block .sv-construction-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.sv-construction-block .sv-construction-progress {
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
  background: #e2e8f0;
  border-radius: 40px;
  height: 8px;
  overflow: hidden;
}

.sv-construction-block .sv-construction-progress-bar {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #f6ad55, #ed8936);
  border-radius: 40px;
  position: relative;
}

.sv-construction-block .sv-construction-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem 0;
}

.sv-construction-block .sv-construction-stats-item {
  text-align: center;
}

.sv-construction-block .sv-construction-stats-item .sv-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
}

.sv-construction-block .sv-construction-stats-item .sv-stat-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sv-construction-block .sv-construction-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sv-construction-block .sv-construction-btn-primary {
  background: #2d3748;
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-block;
}

.sv-construction-block .sv-construction-btn-primary:hover {
  background: #f6ad55;
  color: #1a202c;
}

.sv-construction-block .sv-construction-btn-secondary {
  background: transparent;
  color: #2d3748;
  padding: 0.7rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #e2e8f0;
  transition: all 0.2s;
  display: inline-block;
}

.sv-construction-block .sv-construction-btn-secondary:hover {
  border-color: #2d3748;
}

.sv-construction-block .sv-construction-note {
  font-size: 0.8rem;
  color: #a0aec0;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Compact Version */
.sv-construction-compact {
  background: #f7fafc;
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sv-construction-compact .sv-compact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.sv-construction-compact .sv-compact-content {
  flex: 1;
  min-width: 200px;
}

.sv-construction-compact .sv-compact-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 0.2rem 0;
}

.sv-construction-compact .sv-compact-subtitle {
  font-weight: 400;
  font-size: 0.9rem;
  color: #718096;
  display: inline-block;
  margin-left: 0.5rem;
}

.sv-construction-compact .sv-compact-text {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
}

.sv-construction-compact .sv-compact-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.sv-construction-compact .sv-compact-progress-bar {
  width: 80px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 40px;
  overflow: hidden;
}

.sv-construction-compact .sv-compact-progress-fill {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #f6ad55, #ed8936);
  border-radius: 40px;
}

.sv-construction-compact .sv-compact-progress-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
}

.sv-construction-compact .sv-compact-btn {
  background: #2d3748;
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.sv-construction-compact .sv-compact-btn:hover {
  background: #f6ad55;
  color: #1a202c;
}

/* ==========================================
   10. RESPONSIVE BREAKPOINTS
   ========================================== */
/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .sv-value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .sv-sitemap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
/* Mobile Phones */
@media (max-width: 768px) {
  /* Fact Box */
  .sv-fact-box {
    padding: 1rem 1.2rem;
  }
  .sv-fact-box__title {
    font-size: 0.95rem;
  }
  /* Pull Quote */
  .sv-pull-quote p {
    font-size: 1rem;
  }
  /* Read More Button */
  .sv-read-more-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  /* Accordion */
  .sv-accordion__trigger {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  .sv-accordion__body {
    padding: 0 1rem;
  }
  .sv-accordion__item--open .sv-accordion__body {
    padding: 0 1rem 1rem 1rem;
  }
  /* Cards */
  .sv-value-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .sv-value-card {
    padding: 0.8rem 1rem;
  }
  .sv-value-card h4 {
    font-size: 0.95rem;
  }
  .sv-value-card p {
    font-size: 0.85rem;
  }
  .sv-disclaimer-card {
    padding: 1rem 1.2rem;
  }
  .sv-disclaimer-card h4 {
    font-size: 0.95rem;
  }
  .sv-disclaimer-card p {
    font-size: 0.85rem;
  }
  .sv-policy-card {
    padding: 1rem 1.2rem;
  }
  .sv-policy-card h4 {
    font-size: 0.95rem;
  }
  .sv-policy-card p {
    font-size: 0.85rem;
  }
  /* Image Placeholder */
  .sv-image-placeholder {
    padding: 0.8rem;
  }
  .sv-image-placeholder p {
    font-size: 0.8rem;
  }
  /* Sitemap */
  .sv-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .sv-sitemap-section {
    padding: 1rem 1.2rem;
  }
  .sv-sitemap-section h3 {
    font-size: 0.95rem;
  }
  .sv-sitemap-section ul li a {
    font-size: 0.85rem;
  }
  /* Under Construction */
  .sv-construction-block {
    padding: 2rem 1.5rem;
  }
  .sv-construction-block .sv-construction-title {
    font-size: 1.4rem;
  }
  .sv-construction-block .sv-construction-subtitle {
    font-size: 1rem;
    display: block;
    margin-left: 0;
  }
  .sv-construction-block .sv-construction-text {
    font-size: 1rem;
  }
  .sv-construction-block .sv-construction-stats {
    gap: 1.5rem;
  }
  .sv-construction-compact {
    padding: 1rem 1.2rem;
  }
  .sv-construction-compact .sv-compact-title {
    font-size: 1rem;
  }
  .sv-construction-compact .sv-compact-subtitle {
    font-size: 0.8rem;
    display: block;
    margin-left: 0;
  }
  .sv-construction-compact .sv-compact-text {
    font-size: 0.85rem;
  }
}
/* Small Mobile Phones */
@media (max-width: 480px) {
  .sv-fact-box {
    padding: 0.8rem 1rem;
  }
  .sv-fact-box__list li {
    font-size: 0.85rem;
  }
  .sv-accordion__trigger {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
  .sv-accordion__body {
    padding: 0 0.8rem;
  }
  .sv-accordion__item--open .sv-accordion__body {
    padding: 0 0.8rem 0.8rem 0.8rem;
  }
  .sv-accordion__body p {
    font-size: 0.85rem;
  }
  .sv-disclaimer-card {
    padding: 0.8rem 1rem;
  }
  .sv-policy-card {
    padding: 0.8rem 1rem;
  }
  .sv-sitemap-section {
    padding: 0.8rem 1rem;
  }
  .sv-sitemap-section h3 {
    font-size: 0.9rem;
  }
  .sv-sitemap-section ul li a {
    font-size: 0.8rem;
  }
  .sv-construction-block {
    padding: 1.5rem 1rem;
  }
  .sv-construction-block .sv-construction-icon {
    font-size: 3rem;
  }
  .sv-construction-block .sv-construction-title {
    font-size: 1.2rem;
  }
  .sv-construction-block .sv-construction-text {
    font-size: 0.9rem;
  }
  .sv-construction-block .sv-construction-stats {
    gap: 1rem;
  }
  .sv-construction-block .sv-construction-stats-item .sv-stat-number {
    font-size: 1.2rem;
  }
  .sv-construction-block .sv-construction-actions {
    flex-direction: column;
    align-items: center;
  }
  .sv-construction-block .sv-construction-btn-primary,
  .sv-construction-block .sv-construction-btn-secondary {
    width: 100%;
    text-align: center;
  }
  .sv-construction-compact {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .sv-construction-compact .sv-compact-progress {
    width: 100%;
    justify-content: center;
  }
  .sv-construction-compact .sv-compact-btn {
    width: 100%;
    text-align: center;
  }
}
/* @use "search.scss";*/

/*# sourceMappingURL=master.css.map */
.borderRight{
  border-right:.01em dashed rgba(0, 0, 0, 0.4);
}
.borderLeft{
  border-left:.01em dashed rgba(0, 0, 0, 0.4);
}
.btn-outline {
  padding: 4px 18px;
  border: 0.01em solid #c9a227;
  color: #c9a227;
  background: white;
  border-radius: 8px;
  font-weight: 500!important;
  transition: all 0.3s ease;
  clear: both;
  font-size:13px!important;
}
.btn-outline:hover {
  background: #c9a227;
  color: #fff;
}