  


        
    .tab {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .tablinks {
        flex: 1 0 0;
        text-align: center;
        padding: 10px 15px;
        background: #f0f0f0;
        cursor: pointer;
        border-radius: 4px;
        font-size: large;
        font-weight: bold;
        white-space: nowrap;
        box-sizing: border-box;
        margin: 5px;
    }


    .tablinks.active, .tablinks:hover {
      background: var(--primary-color);
      color: white;


    }
    .tabcontent {
        display: none;
        padding: 10px;
        border-top: none;
    }
    .tabcontent p{
        margin:0;
        margin-top: 15px;
        margin-bottom:20px;
        font-size: larger;
    }
    .submit-btn {
        margin-top: 50px;
        padding: 10px;
        background-color: #41a641;
        color: white;
        text-align: center;
        cursor: pointer;
        border-radius: 40px;
        font-weight: bolder;
        user-select: none;
        font-family: 'Avenir';
        font-size: larger;
    }
    .submit-btn:hover {
        opacity: .8;
    }
    .submit-btn.disabled {
        opacity: .5;
        cursor: not-allowed;
        pointer-events: none;
        display: none;
    }

    .message {
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: larger;
        padding: 5px;
        border-radius: 4px;
        text-align: center;

    }
    .error {
        background: #f8dfdf;
        color:#ba2626;

    }
    .success {
        background: #e1f8df;
        color: #209c1d;
    }

    .processing {
        background: lightgray;
        color: var(--text-color);
        animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

    #new-subscription-option {
        padding: 5px;
        padding-left: 15px;
        border-radius: 4px;
        height: 30px;
        width: calc(100% - 2px - 10px - 10px);

        color: #a09999;
        font-family: 'Avenir';


        border: 1px solid #e6e6e6;
        margin: 0 auto;
        margin-top: 15px;
        font-size: large;

        font-weight: lighter;
    }
    #new-subscription-option{
      height:42px;
      width: 100%;
        -moz-appearance:none; 
        -webkit-appearance:none; 
        appearance:none;
    }


    #new-subscription-option:focus  {
      outline: 3px solid rgb(230 225 248);
      border: 1px solid var(--primary-color);


    }


    #current-subscription-info{
        display: none;
        background: #f0fff0;
        margin-bottom: 20px;
        margin-top: 40px;
        padding: 25px;
        border-radius: 35px;
        border: 5px solid #56c858;
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);

    }

    .pending-payment#current-subscription-info{
        background: #f8dfdf;
        border: 5px solid #ba2626;;
    }

    .pending-payment #current-plan-status{
        color: #ba2626;;
    }
    
    #current-subscription-info p {
        margin: 0;
        margin-bottom: 5px;
        font-size: large;
    }
    #current-subscription-info h2{
        margin: 0 auto;
        text-align: center;
        color: var(--text-color);
    }


    #cancellation-notice {
        color: orange;
        font-weight: bold;
        display: none; 
    }

    #no-subscription-info {
        margin-bottom: 20px;
        display: none;
    }


    #current-subscription-info strong {
        margin-right: 5px;
    }

    #resume-section {
        display: none; 
    }

    #manage-sub-loader {
        display: none;
    }

    #manage-sub-content {
        display: none;
    }

    #manage-sub-payment-element {
        margin-bottom: 20px;
    }

    .disable-payment-form{
        opacity: .5;
        pointer-events: none;
    }

    #payment-result-info{
        text-align: center;
        font-size: large;
    }
