@keyframes actBg-rotate{
	0%{
		transform:rotate(0deg);
		-ms-transform:rotate(0deg);
		-moz-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
		-ms-transform:rotate(360deg);
		-moz-transform:rotate(360deg);
		-webkit-transform:rotate(360deg);
		-o-transform:rotate(360deg);
	}
}
.opticy_bg {
	position: fixed;
	width: 100%;
	height: 100%;
    display: flex;
    bottom: 0;
    top: 0;
    z-index: 999;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}
.gift_bg {
	width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gift_bg img{
	width: 100%;
}
.gift_bg .close_gift{
	font-size: 16px;
    color: #f85959;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
	padding: 6px;
	font-weight: bold;
	margin-top: 10px;
}