.color-white {
  color: #ffffff !important;
}

.color-success {
  color: var(--primary-success-color);
}

.bg-white {
  background-color: #ffffff;
}

.bg-transparent::placeholder {
  color: #ffffff;
  opacity: 1;
}

.dropdown button {
  background-color: #d9d9d9;
}

.dropdown-toggle::after {
	display: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: var(--secondary-text-color) !important;
	background-color: transparent !important;
}

.no-underline {
  text-decoration: none;
}

.no-border-radius {
  border-radius: 0 !important;
}

.no-list-style {
  list-style: none;
}

.common-size-12 {
  font-size: 12px;
}

.common-size-14 {
  font-size: 14px !important;
}

.common-size-16 {
  font-size: 16px;
}

.common-size-18 {
  font-size: 18px;
}

.common-size-20 {
  font-size: 20px;
}

@media (max-width: 991px) {
  .common-size-20 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .common-size-30 {
    font-size: 30px;
  }
  .common-size-25 {
    font-size: 25px;
  }
}

.common-size-42 {
  font-size: 42px;
}

@media (max-width: 991px) {
  .common-size-42 {
    font-size: 22px;
  }
}

.common-weight-normal {
  font-weight: normal;
}

.common-weight-600 {
  font-weight: 600;
}

.common-weight-800 {
  font-weight: 800;
}

.common-mt-20 {
  margin-top: 20px !important;
}

.common-mt-50 {
  margin-top: 50px !important;
}

.common-mb-50 {
  margin-bottom: 50px !important;
}

.common-pt-50 {
  padding-top: 50px;
}

.custom-bottom-20 {
  bottom: 20px;
}

.common-sized-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--secondary-text-color);
}

.common-sized-icon-big {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--secondary-text-color);
}

/* Full-screen overlay */
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensures it appears above other content */
}

/* Container for the spinner */
.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensures the spinner is centered vertically */
}

@media (min-width: 992px) {
  .common-section-padding {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .common-top-bottom-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .common-p-5 {
    padding: 3rem !important;
  }
  .common-mt-5 {
    margin-top: 3rem !important;
  }
  .common-pt-5 {
    padding-top: 3rem !important;
  }
  .common-gap-5 {
    gap: 3rem !important;
  }
  .justify-content-desktop {
    justify-content: center;
  }
  .full-width-desktop {
    width: 100%;
  }
  .width-90-desktop {
    width: 90%;
  }
  .three-quaters-width-desktop {
    width: 75%;
  }
  .half-width-desktop {
    width: 50%;
  }
  .quater-width-desktop {
    width: 25%;
  }
  .text-center-desktop {
    text-align: center;
  }
  .justify-end-desktop {
    justify-content: end;
  }
  .mb-20-desktop {
    margin-bottom: 20px;
  }
  .only-mobile {
    display: none !important;
  }
  .padding-top50-desktop {
    padding-top: 50px;
  }
  .pos-absolute-desktop {
    position: absolute;
  }
}

@media (max-width: 991px) {
  .common-section-padding {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .common-top-bottom-padding {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .common-p-5 {
    padding: 1rem !important;
  }
  .common-mt-5 {
    margin-top: 1rem !important;
  }
  .common-pt-5 {
    padding-top: 1rem !important;
  }
  .common-gap-5 {
    gap: 1rem !important;
  }
  .half-width-mobile {
    width: 50% !important;
  }
  .width-90-mobile {
    width: 90%;
  }
  .flex-column-mobile {
    flex-direction: column;
  }
  .rounded-4-mobile {
    border-radius: 1rem !important;
  }
  .nav-link {
    font-size: 14px;
  }
  .extra-small-text-mobile {
    font-size: 11px;
  }
  .display-flex-mobile {
    display: flex !important;
  }
  .full-width-mobile {
    width: 100% !important;
    max-width: 100% !important;
  }
  .medium-container-mobile {
    width: 75%;
    margin: 0 auto;
  }
  .only-desktop {
    display: none !important;
  }
  .column-reverse-mobile {
    flex-direction: column-reverse;
  }
  .margin-top-mobile {
    margin-top: 15px;
  }
  .margin-left-mobile {
    margin-left: 15px;
  }
  .padding-10-mobile {
    padding: 0 10px;
  }
  .padding-top-mobile {
    padding-top: 50px;
  }
  .text-center-mobile {
    text-align: center;
  }
  .justify-center-mobile {
    justify-content: center;
  }
  .justify-even-mobile {
    justify-content: space-evenly;
  }
  .justify-between-mobile {
    justify-content: space-between;
  }
}

.default-container {
  margin-top: 100px;
  min-height: 60vh;
}

.cta-btn {
  height: 40px;
  /* width: 105px; */
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--primary-text-color);
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 5px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .cta-btn {
    width: 150px;
  }
}

.fill-btn {
  background-color: var(--secondary-text-color);
  color: var(--text-color-light);
  border: 1px solid var(--secondary-text-color);
}

.float-right {
  float: right;
}

.common-border {
  border: 1px solid #cbdcff;
  border-radius: 25px;
}

.secondary-bg {
  background-color: var(--secondary-background-color);
}

.primary-block {
  background-color: var(--primary-block-background-color);
}

.secondary-text {
  color: var(--secondary-text-color);
}

.grey-text {
  color: var(--text-color-grey);
}

.width-fit-content {
  width: fit-content;
}

.custom-heading-underline,
.custom-heading-underline-start {
  position: relative;
  text-align: center;
}

.custom-heading-underline::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 3px;
  background-color: #2e3192;
  border-radius: 15px;
}

.custom-heading-underline-start::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background-color: #2e3192;
  border-radius: 15px;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
