/*<editor-fold desc="WAF-3014 button hovers play for fun feature">*/
.mobile_modal_overlay {
    /* display: none;  */
    display: block;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; /
overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

@-webkit-keyframes silde_to_top {
    0% {
        bottom: -100%;
    }
    100% {
        bottom: 0%;

    }
}

@-webkit-keyframes silde_down {
    0% {
        bottom: 0%;
    }
    100% {
        bottom: -100%;

    }
}

.bottom_mobile_modal{
    -webkit-animation-name: silde_to_top;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
}
#game_details_modal.slide_dawn .bottom_mobile_modal{
    -webkit-animation-name: silde_down;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
}

.bottom_mobile_modal{
    width:100%;
    position: fixed;
    /* bottom: 0; */
    display: flex;
    flex-direction: column;
    row-gap: 11px;
}
.bottom_mobile_modal .modal_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    row-gap: 20px;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    color: #1C0257;
}
.bottom_mobile_modal .modal_content_row{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.bottom_mobile_modal .modal_content_row.vertical_content{
    flex-direction: column;
    row-gap: 11px;
}
.bottom_mobile_modal .modal_content_col{
    display: flex;
    align-items: center;
}
.bottom_mobile_modal .game_full_title,
.bottom_mobile_modal .game_rpt{
    font-size: 16px;
    line-height: 24px;
}
.bottom_mobile_modal .game_tag{
    border: 1px solid #0367E4CB;
    border-radius: 100px;
    padding: 12px 24px;
    font-weight: 600;
    line-height: 20px;
    color: #0367E4CB;
}
.bottom_mobile_modal .provider_name{
    font-size: 14px;
    line-height: 20%;
}
.bottom_mobile_modal .game_img{
    width:100%;
    height: 150px;
}
.bottom_mobile_modal .game_fav{
    font-size: 24px;
    padding: 4px;
    color: #1C0257;
    font-weight: lighter;
    font-family: 'FontAwesome';
}
.bottom_mobile_modal .game_fav:before{
    color:#1C0257;
}
.bottom_mobile_modal button{
    background: #0367E4CB;
    border-radius: 100px;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    margin: 0;
    padding: 12px 24px;
}
.bottom_mobile_modal .close{
    width: 16px;
    height: 16px;
    background-color: white;
    text-align: center;
    border-radius: 20px;
    padding: 8px;
    font-size: 32px;
    align-self: flex-end;
    margin-right: 16px;
}
/*</editor-fold>*/
