.top-matches .info {
    text-align: center;
    font-style: italic;
}

.top-matches .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 25px;
    padding-bottom: 25px;
}

.top-matches .cards .card {
    border-left: 3px solid var(--green);
    border-right: 3px solid var(--green);
    padding: 0 10px;
    box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.1);
    width: 400px;
    min-height: 350px;
    margin: 20px;
}


.top-matches .cards .card .match-info {
    border-bottom: 1px solid var(--green);
    border-top: 1px solid var(--green);
    margin-bottom: 20px;
}

.top-matches .cards .card .match-info .league,
.top-matches .cards .card .match-info .kickoff {
    text-align: center;
    font-weight: bold;
    color: var(--orange);
}


.top-matches .cards .card .match-info .league .flag {
    height: 25px;
    padding: 0 10px;
}

.top-matches .cards .card .match-info .league {
    color: var(--green);
    font-size: 16px;
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.top-matches .cards .card .match-info .kickoff {
    color: var(--orange);
    font-size: 13px;
    padding-bottom: 2px;
}

.top-matches .cards .card .teams {
    text-align: center;
    font-size: 20px;
    border-top: 3px solid var(--green);
}

.top-matches .cards .card .teams .team {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;
    justify-content: space-between;
    align-items: center;
}

.top-matches .cards .card .teams .team:first-of-type {
    border-bottom: 3px solid var(--green);
}

.top-matches .cards .card .teams .team .score {
    width: 20%;
    display:flex;
    align-items: center;
}
.top-matches .cards .card .teams .team .score img.statKickScore {
    padding-right: 10px;
    width: 30px;
}

.top-matches .cards .card .teams .team .flag {
    min-width: 50px;
}

.top-matches .cards .card .teams .team .flag img {
    height: 50px;
}

.top-matches .cards .card .market {
    padding-bottom: 10px;
}

.top-matches .cards .card .market .sugg-tip {
    color: var(--green);
    font-weight: bold;
    text-decoration: underline;
}

.top-matches .cards .card .risk,
.top-matches .cards .card .confidence {
    padding-bottom: 10px;
}

.top-matches .cards .card .reasons {
    border-bottom: 3px solid var(--green);
}

.top-matches .cards .card .reasons ul {
    padding: 0;
    margin-left: 15px; 
}

.win-predictions,
.win-predictions-labels {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.win-predictions .home-predictions,
.win-predictions .draw-predictions,
.win-predictions .away-predictions {
    padding: 10px 0;
    text-align: center;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    font-weight: bold;
}

.win-predictions .home-predictions {
    background: var(--green);
    color: var(--yellow);
}

.win-predictions .draw-predictions {
    color: var(--green);
}

.win-predictions .away-predictions {
    background: var(--yellow);
    color: var(--green);
}

.win-predictions-label {
    font-weight: bold;
    text-align: center;
    color: var(--green);
}


.win-predictions-labels {
    text-align: center;
    font-size: 12px;
}

.match-predictions {
    padding-top: 20px;
}