.bet-site-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: -10px;
    margin-bottom: 30px;
}

.bet-site-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    height: 100px;
    border-radius: 10px;
    background: #fff;
}

.bet-site-item img {
    display: block;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 30px);
    object-fit: contain;
    object-position: center;
}

.bet-site-item.hide {
    display: none;
}

.bet-site-list-button-more {
    margin-top: 30px;
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #573B97;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    height: 52px;
    padding: 12px 24px;
    -webkit-box-shadow: 0 0 12px rgba(59, 49, 110, 0.2);
    box-shadow: 0 0 12px rgba(59, 49, 110, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
    .bet-site-list-button-more:hover {
        box-shadow: 0 0 12px rgba(59, 49, 110, 0.4);
    }
}

@media screen and (min-width: 40em) { 
    .bet-site-item {
        width: calc(25% - 10px);
    }
}