.table1 {
    --accent-color: #362f4b;
    --text-color: slategray;
    --bgColorDarker: #ececec;
    --bgColorLighter: #fcfcfc;
    --insideBorderColor: lightgray;
    width: 100%;
    min-width: 500px !important;
    /*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);
}

.table1 caption {
    margin: 1rem 0;
    color: slategray;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.055rem;
    text-align: center;
}

.table1 thead tr {
    color: #474747;
    font-size: 1rem;
    font-weight: 600;
}

.table1 tbody tr {
    /*border: 1px solid var(--insideBorderColor);*/
    /*background-color: var(--bgColorDarker);*/
    border-top: 1px solid rgba(196, 196, 196, 1);
}

.table1 tbody tr:nth-child(odd) {
    background-color: var(--bgColorLighter);
}

.table1 th {
    letter-spacing: 0.075rem;
}

.table1 th,
.table1 td {
    padding: 2rem 4rem;
    font-weight: normal;
    text-align: left;
}

.table1 th:nth-child(4),
.table1 td:nth-child(4) {
    text-align: center;
}
@media screen and (max-width: 768px){
    .table1 th, .table1 td{
        padding: 1rem 0.5rem;
        font-size: 14px;
    }
}

/*@media screen and (max-width: 768px) {*/
/*    .table1 {*/
/*        border: none;*/
/*    }*/

/*    .table1 caption {*/
/*        padding: 0.75rem 1rem;*/
/*        border-radius: 6px 6px 0 0;*/
/*        color: whitesmoke;*/
/*        font-size: 1.35rem;*/
/*        background-color: var(--accent-color);*/
/*    }*/

/*    .table1 thead {*/
/*        position: absolute;*/
/*        width: 1px;*/
/*        height: 1px;*/
/*        clip: rect(0 0 0 0);*/
/*        overflow: hidden;*/
/*    }*/

/*    .table1 tbody tr {*/
/*        !*margin-bottom: 2rem;*!*/
/*        display: block;*/
/*    }*/

/*    .table1 td {*/
/*        font-size: 0.875rem;*/
/*        text-align: right;*/
/*        display: block;*/
/*    }*/

/*    .table1 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;*!*/
/*    }*/
/*    .table1 th, table td{*/
/*        padding: 2rem 2rem;*/
/*    }*/

/*    .table1 td:not(:last-child) {*/
/*        border-bottom: 1px solid var(--insideBorderColor);*/
/*    }*/
/*    .table1 th:nth-child(4), table td:nth-child(4){*/
/*        text-align: right;*/
/*    }*/
/*}*/