.odds-table {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 12px 36px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 48px;
}

.odds-table-placeholders-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    border-radius: 4px;
    width: 100%;
}

.odds-table-team-placeholder {
    width: 100%;
}

.odds-table-team-placeholder,
.odds-table-odds-column {
    color: #000;
    text-transform: uppercase;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 120%;
}

.odds-table-odds-columns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    max-width: 416px;
}

.odds-table-odds-columns.columns-3 .odds-table-odds-column {
    width: 132px;
    text-align: center;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 4px;
    flex-grow: 1;
}

.odds-table-odds-columns.columns-2 {
    width: 50%;
}

.odds-table-odds-columns.columns-2 .odds-table-odds-column {
    width: 130px;
    text-align: center;
}

.odds-table-odds-columns.columns-1 .odds-table-odds-column {
    width: 100%;
    text-align: end;
    margin-right: 24px;
}

.odds-table-teams {
    width: 100%;
}

.odds-table-team {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
    height: 38px;
    margin-bottom: 8px;
}

.odds-table-team-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
}

.odds-table-team-logo {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.odds-table-team-name {
    width: 238px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #060606;
    font-family: Barlow, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-left: 10px;
}

.odds-table-team-brands {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 100%;
}

.odds-table-team-brand {
    width: 130px;
    height: 38px;
    background: #010000;
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff!important;
    font-family: Barlow, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    text-decoration: none !important;

    background-size: 62px 30px;
    background-repeat: no-repeat;
    background-position: 1000px 1000px;
}

.odds-table-team-brand:hover {
    background-position: center center !important;
    background-color: #010000;
}

.odds-table-team-brand:hover .odds-table-team-odd-numbers {
    display: none;
}

.odds-table-team-brand-placeholder-mobile, .odds-table-team-brand-title-mobile {
    display: none;
}

.odds-table-team-line {
    display: none;
}

@media screen and (max-width: 768px) {
    .odds-table {
        width: auto;
    }


    .odds-table-placeholders-section {
        display: none;
    }

    .odds-table-team {
        display: block;
        height: 100%;
        margin-bottom: 16px;
    }

    .odds-table-team-details {
        margin-bottom: 15px;
        margin-top: 23px;
    }

    .odds-table-team-brand {
        display: flex;
        flex-direction: column;
        height: auto;
        background-image: none !important;
    }

    .odds-table-team-brands.brands-3 .odds-table-team-brand {
        width: 33%;
    }

    .odds-table-team-brands.brands-2 .odds-table-team-brand {
        width: 50%;
    }

    .odds-table-team-brands.brands-1 .odds-table-team-brand {
        width: 100%;
    }

    .odds-table-team-odd-numbers {
        display: block !important;
    }

    .odds-table-team-brand-placeholder-mobile {
        text-transform: uppercase;
    }

    .odds-table-team-brand-placeholder-mobile, .odds-table-team-brand-title-mobile {
        display: block;
        font-size: 8px;
        font-weight: 400;
        color: #737373;
    }

    .odds-table-team-line {
        right: 3%;
        display: block;
        clear: both;
        text-align: center;
        width: 90vw;
        position: relative;
        border: none;
        height: 1px;
        color: #333;
        background-color: #333;
        opacity: 0.2;
    }

    .odds-table-team:first-of-type .odds-table-team-details {
        margin-top: 0;
    }

    .odds-table-team:last-of-type {
        margin-bottom: 0;
    }

    .odds-table-team-line:last-child {
        display: none;
    }

    .odds-table-team-brand.empty .odds-table-team-brand-placeholder-mobile {
        margin-top: 6px;
    }
}

@media screen and (min-width: 500px) and (max-width: 760px) {
    .odds-table-team-line {
        right: 2%;
    }
}

@media screen and (min-width: 891px) and (max-width: 1200px) {
    .odds-table-team-brand {
        width: 100px;
    }

    .odds-table-odds-columns.columns-3 .odds-table-odds-column {
        width: 100px;
    }

    .odds-table-team-name {
        width: 130px;
    }
}

@media screen and (min-width: 891px) and (max-width: 1200px) {
    .odds-table-odds-columns.columns-3 {
    }
}

