*{
    font-family: sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: white;
}

a:hover{
    color: white;
    text-decoration: none;
}

body{
    background-color: #fff;
    background-image: url("../assets/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.btn-logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.adv{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

img{
    vertical-align: middle;
    border-style: none;
}

.title{
    display: flex;
    justify-content: center;
}

.title-text{
    color: black;
}

.content-box{
    padding: .5em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.content{
    padding: .5em;
    position: relative;
    width: 100%;
}

.content-item{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .3rem;
}

.btn{
    /* border-color: #810e0e; */
    color: #ffffff!important;
    font-weight: 700!important;
    height: 36px;
    background: #F33407;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn:hover{
    background: #1B1A28;
    border-color: #810e0e;
}
.card-box{
    width: 50%;
    transition: transform .2s;
    padding-left: 0;
    padding-right: 0;
    float: left;
    position: relative;
}

.pra-padding{
    padding: 10px;
}

.game-img{
    display: block;
    margin: auto;
    /* max-height: 90px; */
    max-width: 144px;
    border-radius: 20px;
}

.percent{
    height: 27px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    /* border-radius: .25rem; */
    position: relative;
    max-width: 144px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
}

.percent p{   
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(14px);
    color: black;
    
}

.percent-bar{
    /* background-color: #000; */
    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;
    border-radius: 18px;
    /* animation: ; */
}

.yellow{
    background-color: #ffc107;
}

.green{
    background-color: #28a745;
}

.red{
    background-color: #dc3545;
}

.game-box{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    font-family: 'Roboto',sans-serif;
    background: rgba(34,34,34,.5);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    border-radius: 18px;
}

.game-box:hover{
    opacity: 1;
}

.game-box-content{
    position: absolute;
    top: 45%;
    width: 100%;
    font-size: 18px;
    text-align: center;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    cursor: default;
    transition: all .2s;
}

.play-now{
    background-color: #cc0;
    font-size: 18px;
    /* height: 50%; */
    padding: 10px;
    width: 70%;
    cursor: pointer;
    margin: auto;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    border-radius: 18px;
    /* overflow: hidden; */
}

.play-btn{
    font-size: 14px;
    transition: 0.2s;
}

.play-now:hover{
    background-color: #E6E600;
    /* transform: scale(1.2); */
    /* font-size: 20px; */
}

.play-now:hover .play-btn{
    font-size: 18px;
    /* transform: scale(1.2); */
}

.bck-btn{
    padding: 10px 12px;
    border-radius: 5px;
    background-color: rgb(0, 173, 0);
    margin-left: 5%;
    transition: 0.1s;
}

.bck-btn:hover{
    background-color: rgb(0, 151, 0);
}

@media (min-width: 576px){
    .container{
        max-width: 540px;
    }
    .game-img{
        max-width: 217px !important;
        /* max-height: 139.8px !important; */
    }
    .percent{
        max-width: 217px !important;
    }
}

@media (min-width: 768px){
    .container{
        max-width: 720px;
    }
    .card-box{
        width: 33.3333%;
    }
}

@media (min-width: 992px){
    .container{
        max-width: 960px;
    }
    .content{
        width: 50%;
    }
}

@media (min-width: 1200px){
    .container{
        max-width: 1140px;
    }
    .card-box{
        width: 25%;
    }
}