/* CSS FOR PAYMENT HISTORY PAGE */

h6 {
    margin: 0px;
}

.payment-history-page {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.payment-history-page-date {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.payment-history-page-date-link {
    display: flex;
    flex-direction: column;
    row-gap: 5px;

}

/* CSS FOR BILLING PRICING PAGE */
.billing-pricing-cards {
    display: flex;
    flex-direction: column;
    column-gap: 5px;
}

.billing-pricing-card {

    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.billing-pricing-cards-row {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}

.billing-pricing-card-text {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.billing-pricing-card p {
    font-size: small;
    font-weight: 400;
    opacity: 0.9;
}

.billing-pricing-card-links {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    width: 100%;
    justify-content: space-between;
    font-size: x-small;
}


/* CSS FOR ADD PAYMENT METHOD PAGE */

.payment-history-page-option {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    justify-content: flex-start;
    align-items: flex-start;
}

.payment-history-page-option button {
    border: none;
    background-color: transparent;
    font-weight: 600;
}

.payment-history-page-option button:hover {
    color: rgb(68, 68, 245);
}

.payment-credit-card-content {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}



.payment-credit-card-content-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 500;
    font-size: medium;
}

.payment-credit-card-content-expiry-date {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: medium;
    font-weight: 500;
}

.payment-paypal-content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
@media screen and (max-width: 767.98px) {
    .payment-history-page-option {
        text-align: center;
    }
  }
  


/* ALL PRODUCT USAGE CSS */

.all-product-page-header {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    text-align: left;

}

.all-product-page-header-text p {
    font-size: small;
    font-weight: 500;
    opacity: 0.9;
}

.all-product-page-header-checkbox {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    align-items: center;
    justify-content: flex-start;
}

/* BILLING ADD FUND PAGE CSS */

.payment-credit-card-content-fund {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: space-between;
}

.payment-credit-card-content-left {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.payment-credit-card-content-right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 30px;
    width: 35%;
    border: 1px solid;
    border-radius: 10px;

}

.payment-credit-card-content-right-amount {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: space-between;

}


/* BILLING PREFERENCE PAGE CSS */
.billing-pref-service-address {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.billing-preference-tab {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}


/* BILLING OVERVIEW PAGE CSS */

.billing-overview-usage-summary-card {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

.billing-info-card-body-current-balance {
    width: 50%;
}

.billing-info-card-body-current-balance p {
    font-weight: 600;
    font-size: small;
    opacity: 0.9;
}

.billing-info-card-body-current-balance h4 {
    font-weight: 500;
    color: rgb(37, 186, 37)
}

.billing-info-card-body-auto-recharge {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 50%;

}

.billing-info-card-body-auto-recharge p {
    font-weight: 600;
    font-size: small;
    opacity: 0.9;
}

.billing-info-card-body-auto-recharge select {
    height: fit-content;
    padding: 2px 36px 2px 12px;
    border-radius: 8px;

}

.billing-overview-usage-summary-header {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.billing-overview-usage-summary-header select {
    height: fit-content;
    padding: 2px 36px 2px 12px;
    border-radius: 8px;
}

.billing-overview-usage-summary-table {
    margin: 0px;
}

.billing-overview-usage-summary-table td {
    padding: 0px;
    font-weight: 500;
    opacity: 0.8;
}

.billing-overview-usage-summary-table th {
    padding: 0px;
    font-weight: 600;
}

.billing-overview-usage-summary-table-row {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: space-between;
    margin-bottom: 8px;
}

.billing-authorized-body {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.billing-authorized-body p {
    font-size: small;
    font-weight: 600;
    opacity: 0.8;
}

.billing-info-card-body-current-balance {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}


.hide {
    display: none;
}