/* For Tablet View */
@media screen and (min-device-width: 768px)
    and (max-device-width: 1024px) {

}
 
/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {

        html, body {
            max-width: 100%;
            overflow-y: scroll !important;
            overflow-x: hidden !important;
        }

        .logo img {
            width: 13rem !important;
        }

        .pola-wrapper {
            width: 100% !important;
            padding: 0.58rem !important;
        }

        .rtp-card-img {
            width: 100% !important;
        }
        .slider, .swiper {
            width: 100%;
            height: 100%;
        }

        .icon-card-bg p {
            font-size: 0.6rem !important;
            font-weight: bold !important;
        }

        .icon-prov {
            justify-content: start !important;
        }

        .icon-card-bg img {
            width: 3rem !important;
        }

        .title-game {
            font-size: 1.2rem !important;
        }

        .item-nav-bottom {
            font-size: 0.7rem !important;
        }

        .icon-providers {
            top: 0.2rem !important;
            right: 0 !important;
        }

}
 
/* For Mobile Landscape View */
@media screen and (max-device-width: 850px)
    and (orientation: landscape) {
        
        html, body {
            max-width: 100%;
            overflow-y: scroll !important;
            overflow-x: hidden !important;
        }
}
 
/* For Mobile Phones Portrait or Landscape View */
@media screen
    and (max-device-width: 640px) {
        
        .btn-play {
            font-size: 0.6rem !important;
        }    
}
/* snackbar */
  
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -850px;
    background-color: #78787883;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 12px;
    text-shadow: 1px 1px 5px rgb(0, 0, 0);
    position: fixed;
    z-index: 100;
    left: 50%;
    bottom: 65px;
    font-size: 14px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 1.5s, fadeout 1.8s 6.5s;
    animation: fadein 1.8s, fadeout 1.2s 6.5s;
  }