.table2 {
    --accent-color: #362f4b;
    --text-color: slategray;
    --bgColorDarker: #ececec;
    --bgColorLighter: #fcfcfc;
    --insideBorderColor: lightgray;
    width: 100%;
    min-width: 700px;
    /*margin: 0;*/
    padding: 0;
    /*border: 1px solid var(--accent-color);*/
    border-collapse: collapse;
    color: var(--text-color);
    table-layout: fixed;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.25);
}

.table2 caption {
    margin: 1rem 0;
    color: slategray;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.055rem;
    text-align: center;
}

.table2 thead tr {
    color: #474747;
    font-size: 1rem;
    font-weight: 600;
}

.table2 tbody tr {
    /*border: 1px solid var(--insideBorderColor);*/
    /*background-color: var(--bgColorDarker);*/
    border-top: 1px solid rgba(196, 196, 196, 1);
}

.table2 tbody tr:nth-child(odd) {
    background-color: var(--bgColorLighter);
}

.table2 th {
    letter-spacing: 0.075rem;
}

.table2 th,
.table2 td {
    padding: 1rem;
    font-weight: normal;
    text-align: left;
}

.table2 th:first-child,
.table2 td:first-child {
    padding-left: 3rem;
}
.table2 th:last-child,
.table2 td:last-child {
    padding-right: 2rem;
}
.table2 th:nth-child(4),
.table2 td:nth-child(4) {
    text-align: center;
}

@media screen and (max-width: 768px){
    .table2 th, .table2 td{
        padding: 0.2rem 0.5rem;
        font-size: 14px;
    }
}
/*@media screen and (max-width: 768px) {*/
/*    .table2 {*/
/*        border: none;*/
/*    }*/

/*    .table2 caption {*/
/*        padding: 0.75rem 1rem;*/
/*        border-radius: 6px 6px 0 0;*/
/*        color: whitesmoke;*/
/*        font-size: 1.35rem;*/
/*        background-color: var(--accent-color);*/
/*    }*/

/*    .table2 thead {*/
/*        position: absolute;*/
/*        width: 1px;*/
/*        height: 1px;*/
/*        clip: rect(0 0 0 0);*/
/*        overflow: hidden;*/
/*    }*/

/*    .table2 tbody tr {*/
/*        !*margin-bottom: 2rem;*!*/
/*        display: block;*/
/*    }*/

/*    .table2 td {*/
/*        font-size: 0.875rem;*/
/*        text-align: right;*/
/*        display: block;*/
/*    }*/

/*    .table2 td:before {*/
/*        content: attr(data-label);*/
/*        font-size: 0.75rem;*/
/*        font-weight: 600;*/
/*        letter-spacing: 0.075rem;*/
/*        text-transform: uppercase;*/
/*        float: left;*/
/*        !*opacity: 0.5;*!*/
/*    }*/
/*    .table2 th, .table2 td,*/
/*    .table2 th:first-child,*/
/*    .table2 td:first-child{*/
/*        padding: 2rem 2rem;*/
/*    }*/

/*    .table2 td:not(:last-child) {*/
/*        border-bottom: 1px solid var(--insideBorderColor);*/
/*    }*/
/*    .table2 th:nth-child(4), table td:nth-child(4){*/
/*        text-align: right;*/
/*    }*/
/*}*/