.pht-billing .pht-options {
    background-color: #efefef;
}

.pht-billing .pht-pay-today {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    padding: 1vh;
    margin-left: -5px;
    margin-right: -5px;
}

.pht-billing .pht-pay-today .pay-today {
    text-align: right;
}

/*
 * Payment options stylings
 */
.pht-billing .pht-options {
    background-color: #efefef;
    padding: 2vh;
}

.pht-billing .billing-options {
    display: flex;
    gap: 2vh;
}

.pht-billing .billing-options .pht-payment-option {
    flex: 1;
    text-align: center;
    background: #dedede;
    border-radius: 5px;
    padding: 2vh;
    position: relative;
}

.pht-billing .pht-payment-option h2 {
    margin: 0;
    padding: 0;
}

.pht-billing .pht-payment-option .details {
    margin-top: 40px;
}

/**
* Payment option selector (checkbox)
*/

.pht-billing .pht-payment-option .option {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pht-billing .pht-payment-option .option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 10px;
    width: 10px;
}

.pht-billing .pht-payment-option .option .checkmark {
    position: absolute;
    top: -40px;
    left: 50%;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
    border: 3px solid #efefef;
    transform: translate(-50%, 0px);
}

.pht-billing .pht-payment-option:hover .option input~.checkmark {
    background-color: #ccc;
}

.pht-billing .pht-payment-option .option input:checked~.checkmark {
    background-color: green;
}

.pht-billing .pht-payment-option .option .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.pht-billing .pht-payment-option .option input:checked~.checkmark:after {
    display: block;
}

.pht-billing .pht-payment-option .option .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* payment plan */
.pht-billing .pht-payment-plan .payment-plan {
    background: #dedede;
    padding: 2vh;
}
  .pht-billing .pht-payment-plan .payment-plan .initial-payment {
    border-bottom: 1px dashed #000;
    padding-bottom: 1vh;
    margin-bottom: 1vh;
}
.pht-billing .pht-payment-plan .payment-plan-row {
    display: flex;
    justify-content: space-between;
}
.pht-billing .pht-payment-plan .description {
    font-style: italic;
    font-size: 85%;
}

/* special notes */
.pht-billing .special-notes {
    margin: 2vh;
}
.pht-billing .special-notes label{
    display: block;
}
.pht-billing .special-notes textarea{
    display: block;
    height: 7vh;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
.pht-billing .pht-payment-snippet.loading {
    background: #ccc;
    padding: 3vh;
    text-align: center;
}

.pht-billing .pht-payment-snippet.loading:after {
    content: 'Loading the payment interface...';
}

.payment-error-placeholder {
    color: red;
    min-height: 2vh;
    font-size: 80%;
}

.pht-billing .pht-pay.processing {
    background-color: #777;
    color: #aaa;
    border: #999;
}

.billing-error .pht-guests {
    display: none;
}

.pht-paused-payment .bit-modal-body img{
    margin-bottom: 2vh;
}

.pht-paused-payment .bit-modal-body {
    text-align: center;
}

.pht-paused-payment .bit-modal-footer button.pht-unpause-payment {
    background: green;
    color: #fff;
    border: none;
    padding: 1vh 2vh;
    border-radius: 5px;
    font-size: 1.2em;
}

.pht-payment-card-selector-wrapper {
  margin: auto;
  margin-bottom: 2vh;
  padding: 2vh;
  background: #efefef;
}
.pht-payment-card-selector-wrapper label {
  display: block;
}
.pht-payment-card-selector {
  display: block;
  width: 100%;
  padding: 0.5vh;
  font-size: 100%;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 5px;
}