* {
    padding: 0;
    margin: 0;
}


#betting-table-stacked a {
    text-decoration: none !important;
}


#betting-table-stacked {
    display: flex; 
    flex-direction: column;
    gap: 5px;
margin-bottom:5px;
}


#betting-table-stacked .betting-table {
    width: 97%;
    margin: 4px auto;
    border: 1px solid grey;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    text-align: center;
    padding: 10px 5px;
    background: transparent!important;
}


#betting-table-stacked .wrapper-for-betting {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: center;
}

.mobile-wrapper-only {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#betting-table-stacked .betting-logo {
    border-radius: 10px;
}

#betting-table-stacked .betting-logo img {
    width: 120px;
    display: block;
    height: auto;
    border-radius: 10px;
}

#betting-table-stacked .raiting {
    padding: 0px 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8em;
color:black!important;

}

#betting-table-stacked .icon-star {
    --star-size: 20px;
    position: relative;
    display: inline-block;
    color: gold!important;
    width: var(--star-size);
    height: var(--star-size);
    background-color: gold;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

#betting-table-stacked .bonus-box {
    width: 40%;
    text-decoration: none !important;
}

#betting-table-stacked .bonus-title {
    font-size: 14px;
    color: black;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    margin-bottom: 7px;
}

#betting-table-stacked .bonus-offer {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

#betting-table-stacked .review {
    width: 15%;
    border: none !important;
    padding-right: 10px;
}

#betting-table-stacked .review:hover {
    background-color: transparent !important;
}

#betting-table-stacked .review-link {
    color: rgb(11, 127, 244);
    text-decoration: none;
}

#betting-table-stacked .betting-btn-wrapper {
    width: 15%;
    display: flex;
    justify-content: center;
}

#betting-table-stacked .link-btn {
    display: block;
    border: none !important;
    border-radius: 20px;
    padding: 5px;
    width: 150px;
    background-color: rgb(10, 177, 10);
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: inset 0px 19px 9px -11px #ffffff2b,
                inset 0px -18px 9px -11px #007f2e21,
                0px 0px 0px 4px #00000014;
    text-decoration: none;
}

#betting-table-stacked .link-btn:hover {
    background-color: #7dd47d;
}

#template_star_rating {
    padding: 0 5px;
}

#betting-table-stacked .terms {
    font-size: 9px;
    font-weight: bold;
    margin-bottom: 5px;
color:black!important;
}

#betting-table-stacked .betting-table > div:not(:first-child)::before {
    content: '';
    display: block;
    border-left: 1px solid #EFEFF2;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#betting-table-stacked .betting-table > div {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}


@media (max-width: 800px) {
    .mobile-wrapper-only {
        flex-direction: column;
    }

    #betting-table-stacked .betting-table > div:not(:first-child)::before {
        border-left: none;
    }
}


@media (max-width: 670px) {
    #betting-table-stacked {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow-x: hidden;
        white-space: normal;
    }


    #betting-table-stacked .betting-table {
        flex-direction: column;
      width: 80%;
        height: auto; /* Allow height to expand as needed */
        padding: 10px;
        margin-bottom: 5px;  /* Optional spacing between boxes */
    }


    #betting-table-stacked .wrapper-for-betting {
        flex-direction: column;
        gap: 10px;
    }


    #betting-table-stacked .bonus-box,
    #betting-table-stacked .review,
     #betting-table-stacked .betting-btn-wrapper {
        width: 100%;
    }

    #betting-table-stacked .review {
        padding-top: 10px;
    }

 
    #betting-table-stacked .terms {
        font-size: 7px;
        margin-top: 5px;
        font-weight: normal;
    }
}