
/* Pricing Table */

.pricing-table-container {
    background: #F5F5F5;
    padding: 30px 20px;
    border-radius: 25px;

}

.pricing-table-disclaimer {
    max-width: 898px;
    margin: 0 auto;
}

.pricing-table-disclaimer p {
    margin-bottom: 0px;
    color: #606060;
    font-size: 14px;
    font-style: italic;
}

#pricing-table {
    max-width: 898px;
    margin: 0 auto;
    overflow-x: auto;
}

#pricing-table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid transparent;
    font-weight: 500;
    color: #202020;
    table-layout: fixed;
}

#pricing-table th:first-child {
    visibility: hidden;
}

#pricing-table th:first-child,
#pricing-table td:first-child {
    width: 30%;
}

#pricing-table td a {
    text-decoration: underline;
    font-weight: 500;
}

/* Evenly distribute the remaining columns */
#pricing-table th:not(:first-child),
#pricing-table td:not(:first-child) {
    width: calc(70% / 5);
}

#pricing-table td:not(:first-child) {
    color: #02835B;
    font-weight: bold;
}


#pricing-table th,
#pricing-table td {
    padding: 15px 10px 15px 0px;
    text-align: left;
    border-bottom: 1px solid #CFE3DD;
}

#pricing-table tr:nth-child(even) {
    background-color: transparent;
}

#pricing-table tr:nth-child(even):hover {
    background-color: transparent;
}

#pricing-table tr:nth-child(odd) th,
#pricing-table tr:nth-child(odd) td {
    background-color: transparent;
}

#pricing-table tr:nth-child(even) th:first-child,
#pricing-table tr:nth-child(even) td:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#pricing-table tr:nth-child(even) th:last-child,
#pricing-table tr:nth-child(even) td:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

table tbody tr:hover>td,
table tbody tr:hover>th {
    background-color: transparent;
}

@media only screen and (max-width: 768px) {

    #pricing-table table {
        min-width: 720px; 
    }

    #pricing-table th:first-child, #pricing-table td:first-child {
        width: 25%;
    }

    #pricing-table th:not(:first-child), #pricing-table td:not(:first-child) {
        width: calc(75% / 5);
    }
}