table.satables-table {
    width: 100%;
    background-color: #fff;
    font-family: inherit;
    border: 1px #292929 solid;
    border-collapse: separate;
    border-spacing: 0px;
}
table.satables-table th, table.satables-table td {
    padding: 7px 15px;
}
table.satables-table thead tr th {
    text-align: center;
    background-color: #292929;
    color: white;
}
table.satables-table thead tr th:first-of-type {
    text-align: right;
}
table.satables-table tbody tr {
    background-color: inherit;
}
table.satables-table tbody tr:nth-child(even) {
    background-color: inherit;
}
table.satables-table thead tr th,
table.satables-table tbody tr td {
    border: 0;
    border-bottom: 1px #e6e6e6 solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
}
table.satables-table tbody tr td:nth-child(1) {
    width: 30%;
    font-weight: bold;
    text-align: right;
}
table.satables-table tbody tr td:nth-child(2) {
    width: 20%;
    text-align: center;
}
table.satables-table tbody tr td:nth-child(2) img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
}
table.satables-table tbody tr td:nth-child(3) {
    width: 30%;
    text-align: center;
}
table.satables-table tbody tr td:nth-child(3) > ul {
    width: 100%;
    list-style-type: none;
    margin: 0;
    text-align: left;
    font-size: 87%;
}
table.satables-table tbody tr td:nth-child(3) li {
    padding-left: 17px;
    position: relative;
}
table.satables-table tbody tr td:nth-child(3) li:before {
    content: " ";
    position: absolute;
    display: block;
    width: 7px;
    height: 7px;
    background: #24d65f;
    left: 0;
    top: 7px;
}
table.satables-table tbody tr td:nth-child(4) {
    width: 20%;
    text-align: center;
}
table.satables-table tbody tr td:nth-child(4) a {
    text-decoration: none !important;
    background-color: #e50404;
    border: unset;
    min-width: 70px;
    font-size: 14px;
    display: inline-block;
    padding: 0px 10px;
    font-weight: 700;
    line-height: 28px;
    border-radius: 3px;
    color: #fff;
}
table.satables-table tbody tr td:nth-child(4) a:hover {
    background-color: #d00000;
    text-decoration: underline !important;
}
table.satables-table tbody tr td:nth-child(4) a:active {
    background-color: #3d6f94;
}

@media screen and (max-width: 750px) {
    table.satables-table thead {
        display: none;
    }
    table.satables-table tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        border-bottom: 1px #e6e6e6 solid;
        padding: 15px;
        padding-top: 5px
    }
    table.satables-table tbody tr td {
        display: block;
        width: 100% !important;
        border: 0;
        text-align: center !important;
        padding: 5px;
    }
    table.satables-table tbody tr td img {
        max-height: 100px !important;
    }
}