.cards {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.card {
    box-sizing: border-box;
    border-radius: 0 0 15px 15px;
    padding-bottom: 20px;
    max-width: 450px;
    width: 100%;
    margin-right: 15px;
    color: white;
}

.card img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 150px;
}

.card .card-body {
    margin-top: -4px;
    border: #666666 solid 1px;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    background-color: #292B34;
}

.card .card-body .card-title {
    margin: 0;
}

.card .card-body .card-text {
    margin-top: 10px;
}

.card .card-body .card-text p {
    margin: 0;
}

.card .card-body .card-text .card-color_turquoise {
    color: #66ffff;
    font-weight: 600;
}

.card .card-body .card-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #BA2720;
    transition: background-color 0.2s;
}

.card .card-body .card-link:hover {
    transition: 0.2s;
    background-color: #9f251f;
}

/*---*/

.spoiler_wrap {}

.spoiler_title_wrap {
    display: block;
    padding: 0px;
}

.spoiler_title {
    cursor: pointer;
    display: table;
    transition: all .3s ease-in-out;
    position: relative;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.spoiler_title:hover,
.expanded .spoiler_title {
    opacity: 0.7;
}

.spoiler_content {
    font-size: 16px;
    border-radius: 5px;
    line-height: 26px;
    display: none;
    /*padding: 15px;*/
    /*background: #333;*/
    position: relative;
    margin-top: 5px;
}

.spoiler_content p {
    color: #999;
    margin-bottom: 25px;
}

.spoiler_content p:last-child {
    margin-bottom: 0px;
}

/*table*/

table {
    border-collapse: collapse;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

table::after {
    content: attr(title);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #000;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

thead {
    background-color: #BA2720;
}

tbody {
    background-color: #353848;
}

tr:last-child td {
    border-bottom: none;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #666666;
    color: white;
}

th {
    padding: 0;
    font-size: 14px;
    width: 35%;
}

td {
    font-size: 12px;
    /*border-top: 1px solid #ccc;*/
    text-align: left;
    padding: 0;
}

td:first-child,
th:first-child {
    padding-left: 15px;
    border-left: none;
}

tr:first-child th {
    border-bottom: none;
}

td:nth-child(2),
th:nth-child(2) {
    text-align: center;
}

td:last-child,
th:last-child {
    column-width: auto;
    text-align: right;
    padding-right: 15px;
    border-right: none;
    max-width: 50px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

td div {
    display: inline-block;
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}