#bonus-box-casinobonus {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: #efefef;
    padding: 30px 0 0;
}

#bonus-box-casinobonus .bonus-box {
    flex: 0 0 300px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    box-shadow:
        0px 4px 8px rgba(75, 59, 0, 0.8),
        0px 6px 20px rgba(139, 117, 0, 0.6);
    border-radius: 10px;
    gap: 10px;
    background-color: transparent !important;
}

#bonus-box-casinobonus .bonus-box:hover {
    background-color: transparent !important;
}

#bonus-box-casinobonus .bonus-title {
    font-size: 20px !important;
    font-weight: 700;
    color: #666 !important;
    text-decoration: none;
    margin-bottom: 0;
    text-align: center !important;
    width: 100%;
    display: block;
    text-transform: uppercase;
}

#bonus-box-casinobonus .logo-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 5px;
}

#bonus-box-casinobonus .bonus-description {
    padding: 5px;
    margin-bottom: 0;
}

#bonus-box-casinobonus .bonus-offer {
    text-transform: uppercase;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

#bonus-box-casinobonus .bonus-offer a {
    color: #484747 !important;
}

 #bonus-box-casinobonus #template_description {
    font-size: 14px;
    text-align: center;
    color: black !important;
    font-style: italic;
}

#bonus-box-casinobonus .bonus-description .box_description {
    margin-bottom: 0;
}

#bonus-box-casinobonus .terms {
    font-size: 12px;
    color: #555!important;
    text-align: center!important;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 10px;
    line-height: 1.4;
}

#bonus-box-casinobonus .bottom-link-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#bonus-box-casinobonus .bonus-button {
    position: relative;
    z-index: 5;
    width: 100%;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    padding: 10px 20px;
    color: #fff !important;
    background-color: #6DAB3C !important;
    border: 1px solid #558032 !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    animation: pop_out 5s linear 1s normal infinite;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 90%;
}

#bonus-box-casinobonus .bonus-button:hover {
    opacity: 0.9;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, .5),
                0 0 20px rgba(255, 255, 255, .2);
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    background-color: #5a9030 !important;
}

#bonus-box-casinobonus .bonus-button::before {
    content: "";
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: absolute;
    left: 5%;
    top: 0;
    width: 20%;
    background: #fff;
    opacity: 0;
    height: 100%;
    transform: skew(-20deg, 0deg);
    box-shadow: 0 0 0 rgba(255, 255, 255, .3);
}

#bonus-box-casinobonus .bonus-button:hover::before {
    opacity: .4;
    left: 88%;
    box-shadow: -15px 0 0 rgba(255, 255, 255, .3);
}

#bonus-box-casinobonus .bonus-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    background: rgba(255, 255, 255, .3);
    width: 15%;
    height: 100%;
    transform: skew(-20deg, 0deg);
    animation: bonus-button-animation 3s infinite;
    z-index: 6;
}

@keyframes bonus-button-animation {
    0% { left: -30%; }
    50% { left: 130%; }
    100% { left: 130%; }
}

@keyframes pop_out {
    3% { transform: scale(1.05, 1.05); }
    6% { transform: scale(1, 1); }
    9% { transform: scale(1.05, 1.05); }
    12%, 100% { transform: scale(1, 1); }
}

@media screen and (max-width: 600px) {
    #bonus-box-casinobonus .bonus-box {
        flex: 0 1 93%;
    }
}