.live_mathes {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 19px;
    overflow-x: scroll;
}
.live_mathes::-webkit-scrollbar {
    display: none;
}
.live_mathes__card_wrapper {
    background-color: #0d1321;
    border-radius: 8px;
    max-width: 346px;
    min-width: 346px;
    max-height: 212px;
    min-height: 212px;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.live_mathes__card_wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    background-color: #e55a53;
    width: 4px;
    height: 66%;
    border-radius: 0 8px 8px 0;
}
.live_mathes__card_header {
    padding: 10px;
    font-size: 10px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.live_mathes__card_header_left {
    color: #e55a53 !important;
}
.live_mathes__card_header_right {
    opacity: 50%;
    position: relative;
}
.live_mathes__card_header_right::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 210%;
    background-color: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.live_mathes__card_body {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 38px;
}
.live_mathes__card_body_team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 54px;
}
.live_mathes__card_body_team_title {
    opacity: 50%;
    font-size: 9px !important;
}
.live_mathes__card_body_team_body {
    max-width: 54px;
    min-width: 54px;
    max-height: 54px;
    min-height: 54px;
    background-color: #121b31;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.live_mathes__card_body_team_name {
    opacity: 80%;
    font-size: 10px !important;
    text-align: center;
    max-height: 30px;
    width: 100px;
}

.live_mathes__card_footer {
    font-size: 10px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding: 8px 10px 4px;
}
.live_mathes__card_footer_left {
    opacity: 50%;
}
.live_mathes__card_footer_left_place {
}
.live_mathes__card_footer_left_city {
}
.live_mathes__card_footer_right {
    color: #e55a53 !important;
}
