/* Скрол для таблиц */
@media screen and (max-width: 1035px) {
.table-cover {
width: 100%;
overflow: auto;
margin: 0 0 1em;
}
}
/* Стиль для таблиц*/
table{
border-collapse: separate;
max-width: 100%;
overflow: auto;
table-layout: fixed;
border: none;
width: auto;
}
table th{
background: #F8F0F8;
padding: 17px 10px;
vertical-align: middle;
color: #234082;
font-size: 14px;
text-align: left;
}
table th:first-child{
-webkit-border-radius: 5px 0 0 5px;
border-radius: 5px 0 0 5px;
}
table th:last-child{
-webkit-border-radius: 0 5px 5px 0;
border-radius: 0 5px 5px 0;
}
table th.th-border{
border-left: 1px solid #ECE1EC;
}
table td{
color: #424242;
font-size: 15px;
border-bottom: 1px dashed #E5E5E5;
padding: 10px 5px 5px 10px;
text-align: left;
}
table tr:last-child td{
border-bottom: none;
padding-bottom: 20px;
}
table td{
border-right: 1px solid #F7F7F7;
}
table td:last-child{
border-right: none;
}
table tr:first-child td{
padding-top: 20px;
}