:root {
  --gradient-primary: linear-gradient(90deg, #67b4dc 0%, #264d82 100%);
  --gradient-secondary: linear-gradient(0deg, #F15833 0%, #67b4dc 100%);
  --gradient-fuschia: linear-gradient(0deg, #ba33f1 0%, #264d82 68%);
  --gradient-blue-radial: radial-gradient(circle, #67b4dc 0%, rgba(103, 180, 220, 0) 100%);
}

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-secondary {
  background: var(--gradient-secondary);
}

.gradient-fuschia {
  background: var(--gradient-fuschia);
}

.gradient-blue-radial {
  background: var(--gradient-blue-radial);
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-fuschia {
  background: var(--gradient-fuschia);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.block--problem-dropdown .problem-dropdown-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.block--problem-dropdown .problem-dropdown__top-border {
  height: 13px;
  border-radius: 16px 16px 0 0;
  width: 100%;
}
.block--problem-dropdown .problem-dropdown__content {
  padding: 52px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .block--problem-dropdown .problem-dropdown__content {
    padding: 32px 24px;
    gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .block--problem-dropdown .problem-dropdown__content {
    padding: 24px 16px;
    gap: 24px;
  }
}
.block--problem-dropdown .problem-dropdown__selector {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .block--problem-dropdown .problem-dropdown__selector {
    flex-direction: column;
    gap: 20px;
  }
}
.block--problem-dropdown .problem-dropdown__intro-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #0b183d;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .block--problem-dropdown .problem-dropdown__intro-text {
    font-size: 20px;
  }
}
.block--problem-dropdown .problem-dropdown__dropdown-wrapper {
  position: relative;
  width: 361px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .block--problem-dropdown .problem-dropdown__dropdown-wrapper {
    width: 100%;
  }
}
.block--problem-dropdown .problem-dropdown__dropdown {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #0b183d;
  border-radius: 48px;
  background: white;
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #0b183d;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.block--problem-dropdown .problem-dropdown__dropdown:focus {
  outline: none;
  border-color: #f15833;
}
.block--problem-dropdown .problem-dropdown__dropdown option {
  color: #0b183d;
  background: white;
  padding: 8px 12px;
}
.block--problem-dropdown .problem-dropdown__dropdown:invalid {
  color: #0b183d;
}
.block--problem-dropdown .problem-dropdown__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  color: #0b183d;
  transition: transform 0.3s ease;
}
.problem-dropdown__dropdown:focus + .block--problem-dropdown .problem-dropdown__arrow {
  transform: translateY(-50%) rotate(180deg);
}
.block--problem-dropdown .problem-dropdown__arrow svg {
  width: 10px;
  height: 5px;
}
.block--problem-dropdown .problem-dropdown__cta {
  flex-shrink: 0;
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: "Aptos", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-radius: 48px;
  transition: all 0.3s ease;
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-primary {
  background-color: var(--wp--preset--color--yellow, #ffc000);
  border-color: var(--wp--preset--color--yellow, #ffc000);
  color: var(--wp--preset--color--navy, #0b183d);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-primary:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-primary:focus {
  background-color: var(--wp--preset--color--medium-blue, #264d82);
  border-color: var(--wp--preset--color--medium-blue, #264d82);
  color: var(--wp--preset--color--white, #ffffff);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-secondary {
  background-color: var(--wp--preset--color--medium-blue, #264d82);
  border-color: var(--wp--preset--color--medium-blue, #264d82);
  color: var(--wp--preset--color--white, #ffffff);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-secondary:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-secondary:focus {
  background-color: var(--wp--preset--color--navy, #0b183d);
  border-color: var(--wp--preset--color--navy, #0b183d);
  color: var(--wp--preset--color--white, #ffffff);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white {
  background-color: var(--wp--preset--color--white, #ffffff);
  border-color: var(--wp--preset--color--white, #ffffff);
  color: var(--wp--preset--color--navy, #0b183d);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white:focus {
  background-color: var(--wp--preset--color--gray-200, #d9d9d9);
  border-color: var(--wp--preset--color--gray-200, #d9d9d9);
  color: var(--wp--preset--color--navy, #0b183d);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-tertiary {
  background-color: var(--wp--preset--color--light-orange, #f38263);
  border-color: var(--wp--preset--color--light-orange, #f38263);
  color: var(--wp--preset--color--navy, #0b183d);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-tertiary:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-tertiary:focus {
  background-color: var(--wp--preset--color--medium-blue, #264d82);
  border-color: var(--wp--preset--color--medium-blue, #264d82);
  color: var(--wp--preset--color--white, #ffffff);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-ghost {
  background-color: transparent;
  border-color: var(--wp--preset--color--navy, #0b183d);
  color: var(--wp--preset--color--navy, #0b183d);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-ghost:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-ghost:focus {
  background-color: var(--wp--preset--color--navy, #0b183d);
  border-color: var(--wp--preset--color--navy, #0b183d);
  color: var(--wp--preset--color--white, #ffffff);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white-ghost {
  background-color: transparent;
  border-color: var(--wp--preset--color--white, #ffffff);
  color: var(--wp--preset--color--white, #ffffff);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white-ghost:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-white-ghost:focus {
  background-color: var(--wp--preset--color--white, #ffffff);
  border-color: var(--wp--preset--color--white, #ffffff);
  color: var(--wp--preset--color--navy, #0b183d);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-link {
  background-color: transparent;
  border-color: transparent;
  color: currentColor;
  text-decoration: underline;
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-link:hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button.btn-link:focus {
  background-color: transparent;
  border-color: transparent;
  color: currentColor;
  text-decoration: none;
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button:not([class*=btn-]) {
  background-color: var(--wp--preset--color--yellow, #ffc000);
  border-color: var(--wp--preset--color--yellow, #ffc000);
  color: var(--wp--preset--color--navy, #0b183d);
}
.block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button:not([class*=btn-]):hover, .block--problem-dropdown .problem-dropdown__cta .problem-dropdown__button:not([class*=btn-]):focus {
  background-color: var(--wp--preset--color--medium-blue, #264d82);
  border-color: var(--wp--preset--color--medium-blue, #264d82);
  color: var(--wp--preset--color--white, #ffffff);
  transform: translateY(-2px);
}
.block--problem-dropdown .problem-dropdown__content-section {
  width: 100%;
  text-align: center;
}
.block--problem-dropdown .problem-dropdown__content-section p {
  margin: 0;
  font-family: "Aptos", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767.98px) {
  .block--problem-dropdown .problem-dropdown__content-section p {
    font-size: 16px;
  }
}
.block--problem-dropdown .problem-dropdown__content-section p a {
  color: var(--wp--preset--color--navy, #0b183d);
  text-decoration: underline;
}
.block--problem-dropdown .problem-dropdown__content-section p a:hover, .block--problem-dropdown .problem-dropdown__content-section p a:focus {
  color: var(--wp--preset--color--medium-blue, #264d82);
  text-decoration: underline;
}
.block--problem-dropdown.--preview .problem-dropdown__dropdown {
  pointer-events: none;
}
.block--problem-dropdown .dropdown-loading {
  opacity: 0.6;
  pointer-events: none;
}
.block--problem-dropdown .dropdown-success {
  border-color: #28a745;
}
.block--problem-dropdown .dropdown-error {
  border-color: #dc3545;
}
