.sport-match {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 135px;
    padding: 10px;
    font-size: 13px;
    background: linear-gradient(180deg, #6C0C0C 0%, #161616 73.56%);
    border-radius: 10px;
    overflow: hidden;
}

.sport-match:before {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 133px;
    opacity: 0.1;
    text-align: right;
    margin-right: -65px;
}

.sport-match .sport-match-link {
    position: absolute;
    width: inherit;
    height: inherit;
    max-width: inherit;
    top: 0;
    left: 0;
    z-index: 2;
}

.sport-match .sport-match-header {
    display: flex;
    font-weight: 600;
}

.sport-match .sport-match-title {
    display: flex;
    align-items: center;
    max-width: 230px;
    margin-right: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--text-main-color);
}

.sport-match .sport-match-title .ico {
    display: flex;
    margin-right: 5px;
}

.sport-match .sport-match-actions {
    z-index: 3;
}

.sport-match .sport-match-body {
    display: flex;
    min-height: 29px;
    margin-top: 17px;
    font-size: 12px;
    font-weight: 600;
}

.sport-match .sport-match-teams {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 145px;
    justify-content: center;
}

.sport-match .sport-match-team {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sport-match .sport-match-start-date {
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.sport-match .sport-match-start-time {
    font-weight: 400;
    color: #FEE275;
    margin-left: 10px;
    padding: 8px 0 0 10px;
    border-left: 1px solid var(--text-main-color);
}

.sport-match .sport-match-footer {
    margin-top: 22px;
}

.sport-match .sport-match-markets {
    display: flex;
}

.sport-match .sport-match-markets-1 .sport-match-market {
    max-width: 100%;
}

.sport-match .sport-match-markets-2 .sport-match-market {
    max-width: calc((100% - 5px) / 2);
}

.sport-match .sport-match-markets-3 .sport-match-market {
    max-width: calc((100% - 10px) / 3);
}

.sport-match .sport-match-market {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 30px;
    max-height: 30px;
    padding: 5px 10px;
    background-color: #2C2C2C;
    color: var(--text-main-color);
    font-weight: 400;
    font-family: Roboto, sans-serif;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    z-index: 3;
    text-decoration: none;
    transition: 0.3s;
}

.sport-match .sport-match-market.inbetslip {
    background: var(--bg-second-color);
}

.sport-match .sport-match-market:hover {
    background: #454545;
}

.sport-match .sport-match-market:not(:first-child) {
    margin-left: 5px;
}
