.game-products{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    margin: 1rem 0 0;
    gap: 1rem 5px;
    overflow-y: hidden;
    overflow-x: hidden;
}

.download-products .download-item{
	width: 100%;
	height: 280px;
	text-align: center;
	background: var(--prov-card-gradient-bg);
    border-radius: 16px;
}

.download-products .download-item .provider-logo{
    max-width: 175px;
    max-height: 175px;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download-products .download-item .mask {
    overflow: hidden;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    position: absolute;
    top: 0;
    width: 100%;
}

.download-products .download-item .mask .download-detail{
	bottom: 0px;
    width: 100%;
    height:20%;
    text-align: center;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.download-products .download-item .mask:hover .download-detail{
	bottom: 25px;
	-webkit-transition: .3s ease;
    transition: .3s ease;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.download-products .download-item .mask .download-detail .btn-box{
	max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease
}

.download-products .download-item .mask:hover .download-detail .btn-box{
	max-height: 50px;
    opacity: 1;
    -webkit-transition: .3s ease;
    transition: .3s ease
}

.download-products .download-item .mask .download-detail .btn-box .btn-play{
	position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 120px;
   	background: var(--down1_BTN_PLAY);
   	font-weight: var(--REG_FONT_WEIGHT) !important;
}

.download-products .download-item .mask:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--down1_PRODUCTS_DOWNLOAD_ITEM_MASK_BEFORE_BG);
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.download-products .download-item .mask:hover:before{
	opacity: 1;
	-webkit-transition: .3s ease;
    transition: .3s ease
}

.download-products .download-item .game-title-wrap{
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(0deg,#000 -20%,transparent 40%); */
    box-shadow: var(--down1_ITEM_BOX_SHADOW);
	border-radius: 5px;
}

.download-products .download-item .game-title-wrap:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    left: 0;
    bottom: 0;
    border-radius: 0 0 5px 5px;
    z-index: -1;
    background: var(--down1_ITEM_B)
}

.download-products .download-item .game-title-wrap:after{
	content: "";
    position: absolute;
    width: 100%;
    height: 3.375rem;
    left: 0;
    bottom: 0;
    border-radius: 0 0 5px 5px;
    z-index: -2;
    background-image: var(--down1_ITEM_A)
}

.download-products .download-item .game-title-wrap .title-box{
	z-index: 4;
    bottom: 0;
    width: 100%;
    padding: 0 15px 10px;
    position: absolute
}

.download-products .download-item .game-title-wrap .title-box span{
	width: 100%;
    overflow: hidden;
    color: var(--down1_TITLE_TXT);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 20px;
    text-shadow: 0 2px 2px rgba(0,0,0,.2);
}

.download-products .download-item .support .one-icon,
.download-products .download-item .support .two-icon{
	position: absolute;
    padding: 10px 0 0 15px;
    font-size: 20px;
}

.download-products .download-item .support .two-icon:last-child{
	position: absolute;
    margin-left:30px;
    font-size: 20px;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content{
	display:flex;
	justify-content: center;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .label{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	padding-bottom: 5px;
	color: var(--down1_MODAL_LBL);
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .label .text{
	font-size: 18px;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .label .icon{
	padding-right: 10px;
	font-size:20px;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .form-group{
	display: flex;
	align-items:center;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .form-group .form-wrap{
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

#downloadmodal .modal-dialog .modal-content .modal-body .downloadQR-content .form-group .form-wrap i{
	font-size:18px;
	padding-left: 10px;
	cursor: pointer;
}