.dry-radio-button {
  display: flex;
  align-items: center;
  cursor: pointer;

  &--disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }

  &--card {
    display: flex;
    padding: 16px;
    align-items: center;
    align-self: stretch;
    border-radius: 12px;
    border: 2px solid var(--primary-600, #002b7a);
    background: var(--primary-50, #f0f5ff);
    width: fit-content;
    justify-content: space-between;
  }

  &--card--active {
    background: var(--primary-600, #002b7a);
    color: var(--primary-50, #f0f5ff) !important;
  }

  &__input {
    margin-right: 8px;
  }

  &__text {
    color: var(--primary-800, #00205c);

    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  &__text--active {
    color: var(--primary-50, #f0f5ff);
  }

  &__sub-text {
    align-self: stretch;
    color: var(--primary-700, #00256b);

    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  &__text-wrapper-wrapper {
    display: flex;
  }

  &__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  &__extra-text {
    color: var(--primary-700, #00256b);

    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

    &--left {
      margin-right: 8px;
      margin-left: 0;
    }
  }

  &__full-width {
    width: 100%;
  }
}
