.ccplugin_billing_table, table, td, tr, th {
    border: 0px solid black !important;
    color: black !important;
}

.ccplugin_billing_table, thead {
    background: #91eece;
}

.ccplugin_billing_table, tbody {
    background: #f8f7f9;
}

.validEmail {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    border: 0;
    padding: 5px 10px;
    text-align: center;
    font-weight: bold;
    background: #75d69c !important;
    border-style: solid !important;
    border-width: thin !important;
    border-color: #27d06b !important;
}

.invalidEmail {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    border: 0;
    padding: 5px 10px;
    text-align: center;
    font-weight: bold;
    background: #ccb2af !important;
    border-style: solid !important;
    border-width: thin !important;
    border-color: #d65c4d !important;
}

.account_info {
    text-align: center;
    color: white;
}

.logo {
    margin: 0 auto;
    text-align: center;
}

.portalLogo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: white;
    border-radius: 50%;
    border-color: #ffffff;
    border-width: 6px;

    display: inline-block;
}
.status {
    position: relative;
    width: 60%;
    margin-left: 20%;
    border-radius: 20px;
    color: white;
    padding: 10px;
}

.accountStatus  .blocked {
    background: #ff919c;
}

.accountStatus .active {
    background: #00d800;
}

.unsubscribeButton {
    color: #ff919c !important;
}

/* Show the tooltip text when you mouse over the tooltip container */
#unsubscribeButton:hover .tooltiptext {
    visibility: visible;
}


.modal-ccsupport {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 9999 !important;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-ccsupport h3 {
    color: #000000;
}

.modal-content-ccsupport {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #000 !important;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}
.close-button-ccsupport {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}
.close-button-ccsupport:hover {
    background-color: darkgray;
}
.show-modal-ccsupport {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.invalidUnsubscribeEmail {
    background: #ccb2af !important;
    border-style: solid !important;
    border-width: thin !important;
    border-color: '#d65c4d' !important;
}

.cardNumberInput {
    padding: 10px;
    margin: 0 10px;
}

#cardBinInput {
    width: 30%;
}

#cardLastFourInput {
    width: 22%;
}

.forgotEmailButtons {
    flex-direction: row
}

.forgotEmailButtons button {
    width: 45%;
    padding: 10px;
    margin: 5px;
    transition-duration: 0.4s;
}

#forgotEmailCancel:hover {
    background-color: #d65c4d; /* Green */
    color: white;
}

#forgotEmailSubmit:hover {
    background-color: #4CAF50; /* Green */
    color: white;
}


.forgotEmailCardNumber {
    padding: 10px;
    margin: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tr:nth-of-type(odd) {
    background: #eee;
}
th {
    font-weight: bold;
}
td, th {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left;
}

@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr { border: 1px solid #ccc; }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right !important;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        text-align: left;
        padding-right: 10px;
        white-space: nowrap;
    }

    #forgotEmail {
        align-content: center;
    }

    /*
    Label the data
    */
    td:nth-of-type(1):before { content: "Portal"; }
    td:nth-of-type(2):before { content: "Last billing"; }
    td:nth-of-type(3):before { content: "Amount"; }
    td:nth-of-type(4):before { content: "Subscription"; }
}