.icon-close {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: -2rem;
    background-color: #fff;
    z-index: 10000;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

.bg-modal,
#video-modal {
    background-color: rgba(0, 0, 0, 0.8);
}

img {
    display: block;
}

strong {
    font-weight: 600;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    color: #1c2a38;
    background-color: #f3f5f9;
}

.match {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 2px 0 rgba(48, 48, 48, 0.1),
        0 4px 4px 0 rgba(48, 48, 48, 0.1);
    margin-bottom: 15px;
}

.match-header {
    display: flex;
    border-bottom: 2px solid rgba(48, 48, 48, 0.1);
    padding: 16px;
}

.match-status {
    background-color: #fdeaec;
    color: #d72641;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-right: auto;
}

.match-status:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 8px;
}

.match-tournament {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.match-tournament img {
    width: 20px;
    margin-right: 12px;
}

.match-actions {
    display: flex;
    margin-left: auto;
}

.btn-icon {
    border: 0;
    background-color: transparent;
    color: #dbdade;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-content {
    display: flex;
    position: relative;
    flex-direction: column;
}
.match-content a {
    padding: 1rem 0;
}
.column {
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(48, 48, 48, 0.15), 0 0 0 15px #f3f5f9;
}

.team-logo img {
    width: 50px;
}

.team-name {
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
    font-weight: 600;
}

.match-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-date,
.match-referee {
    font-size: 1.2rem;
    color: #8a8f98;
}

.match-date,
.match-referee strong {
    color: #1c2a38;
}

.match-score {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.match-score-number {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.match-score-number--leading {
    color: #623ce6;
}

.match-score-divider {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #dbdade;
    margin-left: 10px;
    margin-right: 10px;
}

.match-time-lapsed {
    color: #df9443;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.match-referee {
    margin-top: 12px;
}

.match-bet-options {
    display: flex;
    margin-top: 8px;
    padding-bottom: 12px;
}

.match-bet-option {
    margin-left: 4px;
    margin-right: 4px;
    border: 1px solid #dbdade;
    background-color: #f9f9f9;
    border-radius: 2px;
    color: #8a8f98;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
}

.match-bet-place {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    background-color: #623ce6;
    border-radius: 6px;
    padding: 10px 48px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    box-shadow: 0 4px 8px 0 rgba(48, 48, 48, 0.25);
}
@media (max-width: 375px) {
    .match-date {
        font-size: 0.5rem;
    }
}

@media (max-width: 768px) {
    .match-date {
        font-size: 1rem;
    }
}