.banner_bg {
    background: #7bb99f;
    padding: 37px 0;
    height: auto
}

.banner_bg span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    display: inline-block
}

.banner_bg span a {
    color: #fff
}

.banner_bg h1 {
    color: #fff;
    font-size: 32px;
    text-shadow: inherit;
    font-weight: 700
}

.payment-page h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 18px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 0;
    background: #419170;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 10px
}

.payment-page .payment-left,
.payment-page .payment-right {
    background: #fff;
    border-radius: 0;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-right: 1px solid #e5e3de;
    border-bottom: 1px solid #e5e3de;
    border-left: 1px solid #e5e3de
}

.payment-page .pay-form {
    padding: 20px 15px;
    border-top: 1px solid #e5e3de
}

.payment-page .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    padding: 5px 5px;
    min-height: 50px;
    box-shadow: none;
    margin: 10px 0
}

.pay-type {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0
}

.pay-type li {
    display: inline-block;
    list-style: none
}

.pay-form .select-wrapper {
  position: relative;
}

.pay-form .select-wrapper::after {
  content: '\f078'; /* Font Awesome fa-chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 60%;
  transform: translateY(-40%);
  pointer-events: none;
  transition: transform 0.3s ease;
}


.pay-form .select-wrapper select:focus + .icon,
.pay-form .select-wrapper select:active + .icon {
  transform: translateY(-50%) rotate(180deg);
}


@media only screen and (max-width:767px) {
    .banner_bg h1 {
        font-size: 18px
    }

    .banner_bg span {
        font-size: 11px;
        margin-top: 3px
    }
}