.cursor_pointer {
    cursor: pointer;
}
.modal_casino_pop_up {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    padding: 20px;
    align-items: center;
    justify-content: center;
    display: none;
    box-sizing: border-box;
}
.modal_casino_pop_up.active {
    display: flex;
}
.wrapper_modal {
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}
.close_casino_pop_up {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: url(/wp-content/themes/casinoace_child/components/pop_up_casino/img/Close.png);
    position: absolute;
    top: -40px;
    right: -40px;
    cursor: pointer;
}
.wrapper_casino_pop_up {
    width: 860px;
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-sizing: border-box;
}
.title_casino_pop_up {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-family: sans-serif;
}
.description_casino_pop_up{
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-family: sans-serif;
}
.loop_casino_pop_up {
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.card_casino_pop_up {
    background: var(--white);
    border: 1px solid var(--gray);
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(77, 92, 129, .25);
    border-radius: 15px;
    padding-top: 5px;
    overflow: hidden;
}
.img_wrapper_casino_pop_up {
    padding: 0 5px;
    aspect-ratio: 292/71;
    width: 100%;
}
.img_wrapper_casino_pop_up img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.title_card_casino_pop_up {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    padding: 5px;
    text-align: center;
    font-family: sans-serif;
}
.card_btn_casino_pop_up {
    margin-top: 15px;
    width: 100%;
    height: 46px;
    background: #28A745FF;
    box-sizing: border-box;
    display: inline-block;
    font-size: 17px;
    line-height: 23px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    text-decoration: none;
    line-height: 46px;
    cursor: pointer;
    text-align: center;
    outline: none;
    border: none;
    font-family: sans-serif;
}
.actions_casino_pop_up {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}
.btn_casino_pop_up {
    background: #005c98;
    border: 1px solid hsla(0, 0%, 100%, .2);
    box-sizing: border-box;
    box-shadow: inset 0 0 4px hsla(0, 0%, 100%, .25);
    border-radius: 10px;
    display: inline-block;
    font-style: normal;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    text-decoration: none;
    line-height: 46px;
    cursor: pointer;
    padding: 5px 15px;
    outline: none;
}
@media (min-width: 320px) and (max-width: 767px) {
    .loop_casino_pop_up {
        overflow-x: scroll;
        justify-content: flex-start;
    }
    .item_casino_pop_up {
        flex-shrink: 0;
        flex-grow: 1;
        max-width: 220px;
    }
    .btn_casino_pop_up {
        line-height: 23px;
    }
}