#popup-message{
    display: none;
    width: 100%;
    min-height: 100vh;
    justify-content: start; 
    margin-top: 60px;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
}

.message {    
    background-size: cover;
    background-repeat: no-repeat;
    border: 3px solid #fff;
    position: relative;
    width: 365px; 
    border-radius: 25px;
    background: #fff;
    padding: 9px 18px 30px 18px;
}

.message h3 {
    font-size: 20px;
    font-weight: 700; 
    color: #353940;
    padding-left: 15px;
}
.message p { 
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
}
.message hr {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 13px;
border: beige;
border-top: 1px solid #cdc7c7;
}


.message img {
    position: absolute;
    cursor: pointer;
    right: 13px;
    top: 15px;
}

.message .iconfont { 
    margin-left: 10px !important; 
}


.padding-top-15 {
    padding-top: 15px !important;
}

.padding-top-30 {
    padding-top: 15px !important;
}

.padding-x {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.padding-y-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.message .btn-download ,.message .btn-copy-link {
    width: 141px;
    height: 49px;
    border-radius: 15px;
    background: #001343;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-family: "PingFang SC";
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
    position: absolute;
    cursor: pointer;
    left: 50%;
    top: 67%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    padding-top: 14px;
}

.message .btn-copy-link { 
    background: transparent;
    color: #727272;
    width: 152px;

}

.floating-modal {
    display: none;
    width: 302.91px;
    height: 294.31px;
    border-radius: 150px;
    /* border: 3px solid #fff; */
    background: url(../image/promo_circle.png);
    color: #313131;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 16px 22px -17px #03153B;
    position: fixed;
    bottom: 20px;
    right: 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: #001343;
    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: white;
    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: 1024px){
    .floating-modal {
    display: none;
    width: 100%;
    height: 65px;
    border-radius: 0px;
    border: 3px solid #fff;
    background: url(../image/1@2x.png);
    color: #313131;
    background-size: 100% 65px;
    background-repeat: no-repeat;
    box-shadow: 0 16px 22px -17px #03153B;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 999;
    }
}



@media (max-width: 768px){ 

    .message .btn-buy {
        width: 160.11px;
        height: 40.66px;
        font-size: 18px;
    }
}

@media (max-width: 450px){
    .message {  
        width: 310px;  
    }

    #popup-message{
    padding: 10px;
    }
}