#hc-visitor-popup{
    display:none;
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:99999;
}


.hc-popup-box{

    width:320px;
    background:#07152f;
    color:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    text-align:center;

    animation:hcPopup .5s ease;

}


.hc-popup-box h2{

    color:#d4af37;
    font-size:22px;
    margin-bottom:15px;

}


.hc-popup-box p{

    font-size:15px;
    line-height:1.5;

}


.hc-popup-box a{

    display:block;
    margin-top:20px;
    background:#d4af37;
    color:#07152f;
    padding:12px;
    border-radius:10px;
    font-weight:bold;
    text-decoration:none;

}


.hc-popup-close{

    position:absolute;
    right:15px;
    top:10px;

    background:none;
    border:none;
    color:#fff;
    font-size:25px;
    cursor:pointer;

}


@keyframes hcPopup{

from{
transform:translateY(50px);
opacity:0;
}

to{
transform:translateY(0);
opacity:1;
}

}


@media(max-width:600px){

#hc-visitor-popup{

right:15px;
left:15px;
bottom:20px;

}


.hc-popup-box{

width:auto;

}

}
