@charset "utf-8";
.tableWrap table {
    font-size: calc( var(--fs-standart) - 2px);
    background: white;
    border: 3px solid rgb(146 158 188);
}

.tableWrap {
    max-width: calc(100vw - 30px);
    overflow-x: auto;
}

.tableWrap td {
    border: 2px solid rgb(146 158 188) !important;
}

.tableHeader {
    text-align: center;
    color: rgb(146 158 188);
    margin-bottom: 12px;
}

.tableWrap th {
    font-size: var(--fs-standart);
}

.tablepress thead th {
    background-color: #929ebc !important;
    color: rgb(235 235 236);
    text-align: center;
}

.tablepress {
    min-width: 320px;
}

.tablepress caption {
    caption-side: top !important;
}

.tablepress caption a {
	color: white;
	font-size: var(--fs-standart);
	float: right;
}

/****** Адаптив ******/
@media screen and (max-width: 720px){
    .tableWrap {
        max-width: calc(100vw - 10px);
    }
}