#popup {
    /*background: #0391b5;*/
    padding: 0;
    /*border: 2px solid #0391b5;*/
    /* margin-left: 5px; */
    color: #7b7c80;
    border-radius: 15px 15px 0 0;
    position: fixed;
    right: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    opacity: 1;
    /* max-height: 240px; */
    overflow: hidden;
    transition: opacity 500ms ease-out, width 500ms ease-out, bottom 500ms ease-out;
    z-index: 999;
    border: 2px solid #0391b5;
}

#popupContent {
    background: #fff;
    padding: 1.25rem;
    position: relative;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    /* bottom: 2%; */
    /* left: .5px; */
}

#popupContent p {
    font-size: 1rem;
}

#popupContent h4 {
    margin: 0 0 15px 0;
    color: #000;
    max-width: 90%;
    font-size: 1.125rem;
}

#popupContent a {
    background-color: #c2477d;
    display: block;
    width: fit-content;
    border-radius: 20px;
    padding: 10px 30px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-top: 1.25rem;
    text-decoration: none;
}

#popupContent a:hover, #popupContent a:focus-visible {
    background-color: #dd2776;
    cursor: pointer;
}

#popupContent .closeBtn {
    position: absolute;
    right: 20px;
    top: 11px;
    color: #7b7c80;
    font-size: 28px;
}

#popupContent .closeBtn:hover, #popupContent .closeBtn:focus-visible {
    color: #FF000075;
    cursor: pointer;
}

.popup-closed {
    /* top: calc(100vh - 30px); */
    transform: translateY(100vh);
    width: 20vw;
    cursor: pointer;
    transition: opacity 500ms ease-out, width 500ms ease-out, bottom 500ms ease-in;
    display: none;
}

.popup-open {
    bottom: 0;
    width: 20vw;
    opacity: 1;
    transition: opacity 500ms ease-out, width 500ms ease-out, bottom 500ms ease-out, top 500ms ease-out;
}


@media only screen and (max-width: 768px) {
    #popup {
        width: 90%;
        margin: 0 auto;
        left: 0;
    }

    .popup-closed {
        transform: translateY(calc(100vh - 60px));
        transition: opacity 500ms ease-out, width 500ms ease-out, transform 500ms ease-in;
    }
}

@media only screen and (min-width: 992px) {
    #popupContent {
        /* margin: 0 auto;
        right: 1%; */
    }
}

/* Override possition */
.posOverride {
    position: fixed;
    right: 1%;
    bottom: 135px !important;
}