.dl-fp-slide-in-popup {
    position: fixed;
    left: 50%;
    bottom: -500px;
    transform: translate(-50%, 0);
    padding: 30px 40px;
    flex-direction: column;
    background-color: #F3F3F3;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    max-width: 700px;
    width: 700px;
    z-index: 9999999999999;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0px 0px 13px -5px rgba(0, 0, 0, 0.33)
}

@media all and (max-width: 800px) {
    .dl-fp-slide-in-popup {
        max-width: 90%;
        width: 90%;
        padding: 30px 25px;
    }
}

.dl-fp-slide-in-popup.show {
    -webkit-animation: slide-from-bottom-slide-in-popup .7s forwards;
    -webkit-animation-delay: 0s;
    animation: slide-from-bottom-slide-in-popup .7s forwards;
    animation-delay: 0s;
}

.dl-fp-slide-in-popup.close {
    -webkit-animation: slide-from-bottom-slide-out-popup .7s forwards !important;
    -webkit-animation-delay: 0s;
    animation: slide-from-bottom-slide-out-popup .7s forwards !important;
    animation-delay: 0s;
}

.dl-fp-slide-in-popup .close-button {
    border: none !important;
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 0 !important;
    line-height: 0 !important;
    background-color: transparent !important;
}

.dl-fp-slide-in-popup .close-button:hover {
    background-color: transparent !important;
}

.dl-fp-slide-in-popup .close-button svg {
    width: 20px;
    height: 20px;
}

.dl-fp-slide-in-popup .popup-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: block;
}

@media all and (max-width: 800px) {
    .dl-fp-slide-in-popup .popup-title {
        font-size: 1.5rem;
    }
}

.dl-fp-slide-in-popup p {
    display: block;
    line-height: 1.5;
    margin-bottom: 20px !important;
}

.dl-fp-slide-in-popup a.button {
    display: inline-block;
    text-decoration: none !important;
}

@-webkit-keyframes slide-from-bottom-slide-in-popup {
    100% { bottom: 0; }
}

@keyframes slide-from-bottom-slide-in-popup {
    100% { bottom: 0; }
}

@-webkit-keyframes slide-from-bottom-slide-out-popup {
    0% { bottom: 0; }
    100% { bottom: -500px; }
}

@keyframes slide-from-bottom-slide-out-popup {
    0% { bottom: 0; }
    100% { bottom: -500px; }
}