.cta_wrapper {
    margin: 20px 20px;
    position: fixed;
    bottom: 0;
    left: -250px;
    z-index: 10000;
    transition: .8s;
}
.cta_wrapper:hover {
    /* z-index: 999991; */
}
.cta_pop-up img {
    height: 25px;
}
.cta_pop-up {
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    min-width: 200px;
    border-radius: 4px;
    border-style: none;
    border-width: 0px;
    border-color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    background-position-y: 50%;
    padding: 10px 18px 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 30px
}

.popup-close {
    position: absolute;
    top: 7px;
    right: 6px;
}

.cta-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 5px;
}

.cta-text {
    margin-top: 3px;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
}

.cta-button {
    background: rgb(0, 0, 0);
    display: flex;
    color: white;
    height: 30px;
    text-decoration: none;
    align-items: center;
    letter-spacing: 2px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}
.cta-button:focus {
    box-shadow: 0 0 5px #0064CD;
}

body.up .cta_wrapper,
#fixed.up .cta_wrapper {
    left: -250px!important;
}