.btn-provider:hover{
    background-color: #c90;
}

.btn-provider{
    text-align: center;
    display: block;
}   

.btn-provider span{
    position: unset;
}

.wrapper{
    width: 100%;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.card{
    float: left;
    width: 20%;
    background: transparent !important;
    border: none;
    text-align: center;
    position: relative;
}

.card-content{
    margin: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    border: none;
    overflow: hidden;
    position: relative;
}

.percent{
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    /* border-radius: .25rem; */
    position: relative;
    z-index: 1;
    border-radius: 18px;
    width: 90%;
    margin: 0 auto;
}

.percent p{
    z-index: 15;    
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    transform: translateY(14px);
    color: black;
}

.percent-bar{
    /* background-color: #ffc107; */
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    /* background-color: #007bff; */
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    /* animation: ; */
    z-index: 10;
}

.percent-bar-pp{
    /* background-color: #ffc107; */
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    /* background-color: #007bff; */
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    /* animation: ; */
    z-index: 10;
}

.yellow{
    background-color: #ffc107;
}

.green{
    background-color: #28a745;
}

.red{
    background-color: #dc3545;
}

.hover-btn{
    position: absolute;
    opacity: 0;
    background-color: rgba(0,0,0,0.9);
    transition: all 0.1s ease-in-out;
    z-index: 10;
    width: 100%;
    height: 90%;
}

.play-btn{
    font-size: 15px;
    text-decoration: none;
    color: white;
    text-align: center;
    align-items: center;
    /* width: 100%; */
    margin-top: 32%;
    padding: 8px;
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    margin: 45% 30px 32% 30px;
    background: #ffcc29;
    color: #000;
    border-radius: 18px;
    transition: all .3s ease;;
}

.play-btn:hover{
    background: #3BC117;
}

.img-zoom{
    transition: all 0.45s ease-in-out;
}

.hover-btn:hover{
    opacity: 100%;
}

.hover-btn:hover ~ .img-zoom{
    /* transform: scale(1.2); */
    position: relative;
}

#overlaycrypto {
    position: flex;
    top: 0;
    left: 0;
    right: 0; /* Set right to 0 to cover the entire width */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.game-name {
	color: #3BC117;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 0px 0px 10px 0px;
}

.tab-content-logo {
    align-items: center;
}

.tab-content-logo img {
    display: block;
    margin: 0 auto; /* Center the image horizontally and vertically */
}

@media (max-width: 768px){
    .card{
        width: 20% !important;
		padding:0;
    }
    .play-btn {
        font-size: 12px; /* Adjust font size for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 45% 20px;
    }
    .hover-btn{
        height: 90%;
    }
}

@media screen and (max-width: 520px){
    .card:nth-child(n+7) {
        display: none;
    } 
    .card{
        width: 33.3% !important;
		padding:0;
    }
    .play-btn {
        font-size: 12px; /* Adjust font size for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 35% 10px;
    }
    .hover-btn{
        height: 80%;
    }
}