<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.players-search {
    background: #F5F5F5;
    padding: 10px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.players-search__input {
    width: 30%;
}

.players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 30px;
}

.players__item {
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    color: #333333;
    text-decoration: none;
}

.players__item-img {
    flex-shrink: 0;
}

.players__item-info {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.players__item-name {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 16px;
}

.players__item-name:after {
    content: '';
    margin-top: 10px;
    height: 2px;
    width: 30px;
    background: #FF2424;
    display: block;
}

.players__item-stats {
    font-size: 14px;
    color: #888888;
}

.players__item-stats + .players__item-stats {
    margin-top: 10px;
}

.players__item-stats-value {
    font-weight: 800;
}

.players__double {
    display: flex;
    flex-direction: column;
    width: 135px;
    flex-shrink: 0;
}

.players__double-img:first-child {
    align-self: flex-start;
}

.players__double-img:last-child {
    align-self: flex-end;
    margin-top: -40px;
}

.players__double-img:hover {
    z-index: 1;
}

@media (max-width: 520px) {

    .players-search__input {
        width: 100%;
    }

    .search_input input {
        width: 100%;
    }
}</pre></body></html>