@property --angle {
    syntax: '<angle>';
    initial-value: 45deg;
    inherits: true;
  }
.pocketGames{
    height: 100dvh;
    width: 100%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 2147483010 !important;
    background: #000;
}
#pocklandingRiv{
    width: 100%;
    height: 95%;
}
.pocketGames_cls{
    position: absolute;
    top: 15px;
    right: 15px;
}
.tourPlayBtn {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    max-width: 230px;
    width: 100%;
    height: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 0;
    outline: 0;
    background: #000;
    animation: 4.5s cometoTop linear; 
    -webkit-animation: 4.5s cometoTop linear;
}
.pocketGames_cls {
    position: absolute;
    top: 2%;
    transform: translateX(-50%);
    left: 50%;
    background: #131212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.pocketGames_cls svg{
    width: 60%;
}
@keyframes cometoTop {
    0% {
        transform: translate(-50%, 100vh); 
    }
    100% {
        transform: translate(-50%, 0);
    }
}
@-webkit-keyframes cometoTop {
    0% {
        -webkit-transform: translate(-50%, 100vh);
    }
    100% {
        -webkit-transform: translate(-50%, 0); 
    }
}
.tourPlayBtn img{
    width: 100%;
    position: absolute;
    z-index: -1;
}
.tourPlayBtn span{
    width: 95%;
    height: 82%;
    background-color: #F0BD49;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    border-radius: 8px;
    border-bottom: 3px solid #111;
    border-top: 3px solid #111;
    border-right: 2px solid #111;
    border-left: 2px solid #111;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tourPlayBtn_act{
    display: flex !important;
}