
    div.panel {
        transform:translate(9999px);
        opacity: 0; 

    }

    div.panel.show {
        transition: opacity .2s linear; 
        transform:translate(0);
        opacity: 1;
        max-height: fit-content;
    }

    
    
    .accordion {
        background-color: #0083b6;
        color: #fff;
        font-family: 'Brandon Grotesque';
        font-weight: 900;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        border-radius: 4px;
        text-align: left;
        outline: none;
        transition: all .3s;
        margin: 5px;
        font-size: 24px;
    }
    .active, .accordion:hover {
        background-color: #104376;
    }
    
    .accordion:after {
        content: '\f078';
        color: #fff;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-family: "Font Awesome 5 Pro";
        transition: all .3s;
    }
    
    .active:after {
        transform: rotateX(180deg);
    }
        
    .panel {
        padding: 0 18px;
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }

    .location-pay {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 15px 40px;
    }

    .states-clinics hr {
        margin-left: 35px;
        margin-right: 40px;
        margin-bottom: 28px;
    }

    .locaiton-pay-name {
        display: flex;
        align-self: center;
    }

    .greyed-out-btn {
        background: #00000040 !important;
        border: 4px solid #00000000 !important;
        color: #fff !important;
    }

    .pay-greyed-out-btn:after {
        content: 'Pay Now';
    }

    .pay-greyed-out-btn:hover:after {
        content: 'Not Available At This Time';
    }

    .pay-btn {
        min-width: 316px !important;
    }

    .details-group.appt-btn-wrapper .bt {
        min-width: 364px !important;
    }

    @media (max-width: 743px) {
        .location-pay {
            flex-direction: column;
            align-items: flex-start;
        }

        .location-pay, .states-clinics hr {
            margin-left: 0px;
            margin-right: 0px;
        }

        .locaiton-pay-name {
            align-self: flex-start;
            font-size: 20px;
            margin-bottom: 15px;
        }

    }


    /* Singe State Location BTN Group */
    .state-btns-group {
        display: flex !important;
        align-items: baseline;
        justify-content: flex-start;
        column-gap: 0.3em;
        flex-wrap: wrap;
    }
    /* End Singe State Location BTN Group */