#popup{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
}

.annoucement {
    position: relative;
    width: 890px;
    height: 601px;
    border-radius: 40px;
    background: url('../image/promo-desktop.png');
    background-size: cover;
    background-repeat: no-repeat;
    border: 3px solid #fff;
}

.annoucement img {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 15px;
}

.annoucement .btn-buy {
    width: 189px;
    height: 48px;
    border-radius: 7px;
    background: #96191c;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 22px;
    text-align: center;
    color: #fff;
    position: absolute;
    cursor: pointer;
    left: 50%;
    top: 67%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    padding-top: 9px;
}

.floating-modal {
    display: none;
	width: 442.91px;
    height: 299.31px;
    border-radius: 20px;
    border: 3px solid #fff;
    background: url('../image/promo-desktop.png');
    background-size: cover;
    background-repeat: no-repeat;
	box-shadow: 0 16px 22px -17px #03153B;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
}

.icofont-maximize {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 10px;
    font-size: 18px;
    color: #000000;
}

.floating-modal .btn-buy {
    width: 96px;
    height: 23px;
    border-radius: 3px;
    background: #96191c;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 10px;
    text-align: center;
    color: #fff;
    position: absolute;
    cursor: pointer;
    left: 50%;
    top: 67%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    padding-top: 5px;
}

.floating-icon {
    display: none;
	width: 95px;
    height: 104.45px;
    background: url('../image/festival_egg.svg');
    background-size: cover;
    background-repeat: no-repeat;
	box-shadow: 0 16px 22px -17px #03153B;
	position: fixed;
	top: 45px;
	left: 20px;
	z-index: 999;
}

.hideModal {
    animation: hide .50s, spin 3s;
    transform: scale(0);
}
@keyframes hide {
    from{
        background: none;
        transform: scale(1);
    } 
    to {
        background: none;
        transform: scale(0);
    }
}

@keyframes spin {
    100% {
        transform: translate(-120%,-150%);
    }
}

.showModal {
    animation: show .60s;
    transform: scale(1);
}
@keyframes show {
    from {
        background: none;
        transform: scale(0);
    } 
    to { 
        background: none;
        transform: scale(1);
    }
}

@media (max-width: 768px){
    .annoucement {
        position: relative;
        width: 365px;
        height: 400px;
        border-radius: 25px;
        background: url('../image/promo-mobile.png');
    }

    .annoucement .btn-buy {
        width: 160.11px;
        height: 40.66px;
        font-size: 18px;
    }
}