.eacf7-address {
  &__fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: space-between;
  }

  .address-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;

    label {
      margin-bottom: 5px;
      display: flex;
      align-items: center;

      .required {
        color: #ff0000;
        margin-left: 5px;
        line-height: normal;
      }
    }

    &.field-line1 {
      width: 100%;
    }

    &.field-line2 {
      width: 100%;
    }

    &.field-city {
      width: 49%;
    }

    &.field-state {
      width: 49%;
    }

    &.field-zip {
      width: 49%;
    }

    &.field-country {
      width: 49%;

      .select2-container .select2-selection--single {
        height: 40px;
      }

      .select2-container--classic .select2-selection--single .select2-selection__rendered {
        line-height: 38px;
      }

      .select2-container--classic .select2-selection--single .select2-selection__arrow {
        height: 39px;

        b {
          display: block;
        }
      }
    }

    input,
    select {
      width: auto !important;
      max-width: 100%;
      padding: 10px;
      border: 1px solid #e5e5e5;
      border-radius: 3px;
      font-size: 14px;
      color: #333;
      background-color: #fff;
      box-shadow: none;
      transition: all 0.3s ease;
    }

  }

}

/**
* Theme Compability
**/
.theme-astra,
.theme-twentytwentythree {
  .select2-selection.select2-selection--single {
    padding: 10px !important;
  }

  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    height: 39px;
  }

  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    line-height: 18px !important;
  }
}

.theme-twentytwentythree {
  .select2-selection.select2-selection--single {
    height: 38px;
  }

  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    height: 36px;
  }
}