.why-chooseus-two  .outer-box{
    margin-bottom: 20px;
}
.single-post h3{
    font-weight: bold;
}
.sidebar{
    position: sticky;
    top: 0;
    height: auto; /* adjust the height as needed */
    overflow-y: auto; /* add scrollbar if content exceeds height */
  }
.checkbox-container {
  display: flex;
  align-items: flex-start;
}

.FirstCheck {
  margin-top: 0.4rem !important;
  margin-right: 0.5rem !important;
}

.SecondCheck {
  margin-top: 0.4rem !important;
  margin-right: 0.5rem !important;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
    z-index: 1050;
}

.spinner-border, .spinner-grow {
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
    animation: spin 1s linear infinite;
    border: 1px solid red;
}
.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
    position: absolute !important;
}

/* Keyframe animation for smooth spinning */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.border-danger {
  border-bottom: 2px solid #dc3545 !important;
}

.thank-you-container {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 40%;
  margin: 50px auto;
}

.thank-you-container h1 {
  color: #3498db;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 20px;
}

.thank-you-container a {
  text-decoration: none;
  color: #fff;
  background-color: #3498db;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.thank-you-container p {
  color: #555;
  font-size: 18px;
}
@media (max-width: 600px) {
    .thank-you-container {
        width: 100%;
      }
  }