/* Payment method selection */
.wc_payment_method.payment_method_westernbid #payment_method_westernbid, .wc_payment_method.payment_method_westernbid label, .payment_box.payment_method_westernbid p {
    display:none;
}

.westernbid-gateway-select {
    margin: 1em 0;
    border: 1px solid;
    padding: 30px 15px 0 15px;
    border-radius: 15px;
}

.westernbid-gateway-select h4 {
    margin: 0 0 1em 0;
    font-size: 1.1em;
}

.westernbid-gateway-option {
    display: flex;
    align-items: center;
    margin: 0.5em 0;
    padding: 1em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.westernbid-gateway-option:hover {
    background: #f8f9fa;
}

.westernbid-gateway-option.selected {
    border-color: #007cba;
    background: #f0f6fc;
}

.westernbid-gateway-logo {
    width: 120px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin-right: 1em;
}

.westernbid-gateway-logo.paypal {
    background-image: url('../images/paypal-logo.png');
}

.westernbid-gateway-logo.stripe {
    background-image: url('../images/stripe-logo.png');
}
.westernbid-logo:after {
  content: "";
  width: 220px;
  height: 25px;
  background: url('../images/westernbid-logo.png');
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
.payment_box.payment_method_westernbid {
    display: block !important;
    padding-left: 0;
}

/* Hide default radio buttons */
.westernbid-gateway-select input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}