/* Add this to your <style> block or main CSS file */
.spinner {
    border: 4px solid #f3f3f3; /* Light grey background */
    border-top: 4px solid #3498db; /* Blue spin color (change to match your theme) */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto; /* Center the spinner */
}
/* LOADER DESIGN */
/* .geny-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fff;
} */
.geny-loader {
  position: fixed;
  inset: 0;               /* top:0; right:0; bottom:0; left:0 */
  display: flex;          /* keep layout */
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.geny-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loader-logo img {
  width: 150px;
  animation: blink 1.5s infinite ease-in-out;
}

/* .loader-logo img {
  width: 150px;
  animation: blink 1.5s infinite ease-in-out;
} */

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
/* END OF LOADER DESIGN */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Optional: Overlay to prevent double-clicks during submission */
.loading-overlay {
    position: absolute; /* or fixed, depending on scope */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Light overlay */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}





 
 
/* Design Fixes - 03-11-2025 */
header .navbar-brand:focus-visible {
    border: none;
    outline: none;
}
.all-cards .fiber-card .fiber-title img {
    max-width: 35px;
    max-height: 35px;
    border-radius: 100%;
} 
.global-tablink .nav-link:focus-visible {
    box-shadow: none;
}
.autocomplete-suggestions {
    border: transparent !important;
}
.form-grid-3 .each-col .each-grid {
    height: 50px;
}
footer .social-media li img:hover,
.top-header .global-link:hover img,
footer .detail:hover img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(37%) saturate(4335%) hue-rotate(349deg) brightness(102%) contrast(102%) ;
}
#coverageResult {
    text-align: center;
}
#coverageResult p {
    margin-bottom: 0;
}
footer .footer-top {
    position: relative;
    z-index: 3;
}
footer .detail a {
    color: #fff;
}
.top-header .global-link,
.top-header .global-link img {
    transition: .5s ease-in-out;
}
.top-header .global-link:hover,
footer .detail a:hover {
    color: #ff7f15;
}

.fiber-card  .btn.secondary-btn {
    margin-top: auto;
}
.fiber-card >div {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.fiber-card .fiber-tag,
.fiber-card .fiber-title {
    width: 100%;
    height: fit-content;
}
.fiber-card ul {
    width: 100%;
}
.form-wrapper-main .form-wrapper .cust-checkout .form-control {
    margin-bottom: 0;
}
.mb-24 {
    margin-bottom: 24px;
}

.form-wrapper-main .form-wrapper .cust-checkout .sub-form {
    margin-top: 0;
    background-color: #F5F5F5;
}

.personal-detail-steps .card-right {
    position: sticky;
    top: 125px;
}
.form-wrapper-main .top-title {
    border: none;
    border-bottom: 1px solid #eee;
}
.progress-bar-steps::before,
.progress-active-line {
    top: 39px;
}
.form-step #loaderwrapper p {
    text-align: center;
}
.accordion-item.transparent-accordion .nav-tabs .nav-link {
    background-color: #fff4eb;
}
.transparent-accordion .nav-tabs {
    background-color: transparent;
}
.accordion-item.transparent-accordion .nav-tabs {
    margin: 0 0 40px;
}
.other-services .fiber-card {
    flex-direction: row !important;
}
.other-services  .fiber-card >div {
    height: fit-content;
    width: 100%;
}