.bet-of-the-day {
    background-image: url('../../../images/betoftheday.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 10px;
    max-width: 400px;
    margin-bottom: 15px !important;

    .botd-label {
        position: relative;
        display: inline-block;
        background-color: #00fff8;
        color: #402685;
        padding: 4px 6px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .botd-content {
        margin-bottom: 20px;
        p {
            margin-bottom: 0;
        }
    }

    .botd-heading {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        
        p {
            font-size: 11px;
            font-weight: 500;
            line-height: 14px;
            color: #402685;
        }
    }

    .botd-event {
        font-size: 15px;
        font-weight: 600;
        line-height: 18px;
        color: #402685;
    }

    .botd-description {
        font-size: 10px;
        font-weight: 600;
        line-height: 17px;
        color: #402685;
    }

    .botd-cta-link {
        border-radius: 8px;
        background-color: #ffff54;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 8px;
        text-decoration: none;
        gap: 8px;

        &:hover {
            background-color: #00fff8;

            .botd-cta-price {
                color: rgba(64, 38, 133, 0.54);
            }
        }

        svg {
            display: inline-block;
        }
    }

    .botd-cta-price {
        font-size: 13px;
        font-weight: 500;
        line-height: 16px;
        color: #2cdcd7;
        text-decoration: line-through;
    }

    .botd-cta-price-discount {
        color: #402688;
        font-size: 13px;
        font-weight: 600;
        line-height: 16px;
    }
}