
#site_pop {
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
    position: fixed;
    right: 0;
    z-index: 60;
    overflow: hidden;
}

#site_pop:before {
    transition: 0.3s ease-in-out;
    content: '';
    height: 100%;
    background: #D80368;
    left: 0;
    position: absolute;
}

#site_pop:hover:before {
    transition: 0.3s ease-in-out;
    background: #b60358;
}

#site_pop:hover span {
    transition: 0.3s ease-in-out;
    background: #b60358;
}

#site_pop a {
    color: #ffffff;
}

#site_pop span {
    transition: 0.3s ease-in-out;
    background: #D80368;
    font-family:  Mulish, sans-serif;
    display: block;
    text-align: center;
}

#site_pop .close_btn {
    transition: 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #ffffff;
    background: #D80368;
    padding: 0;
  border: none!important;
}

#site_pop .close_btn:hover {
    transition: 0.3s ease-in-out;
    background: #730238;
}





@media only screen and (min-width: 768px) {

    #site_pop {
        top: 148px;
        padding-left: 27px;
    }

    #site_pop:before {
        width: 27px;
        bottom: 27px;
    }

    #site_pop span {
        font-size: 18px;
        padding: 36px 42px 36px 12px;
        max-height: 90px;
    }

    #site_pop .close_btn {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {

    #site_pop {
        top: 180px;
        padding-left: 24px;
    }

    #site_pop:before {
        width: 24px;
        bottom: 24px;
    }

    #site_pop span {
        font-size: 14px;
        padding: 24px 24px 24px 12px;
    }

    #site_pop .close_btn {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 11px;
    }
}