﻿.popup {
    position: fixed;
    left: 0px;
    height: 125px;
    width: 350px;
    bottom: -125px;
    transition: 1s ease-out;
    background-color: rgb(212, 228, 137);
    border-start-end-radius: 25px;
    font-family: Manrope, Helvetica, sans-serif;
}

.popup-title {
    font-size: 14px;
    font-weight: 700;
}

.popup-displayed {
    bottom: 0px !important;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup-button {
    padding: 8px 24px;
    font-family: "Manrope-Medium", Helvetica;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    text-align: center;
}

    .popup-button:hover {
        color: white;
    }

.popup-button--pink {
    background: #d75297;
    color: #ffffff;
}

@media(max-width: 700px) {
    .popup {
        width: 100%;
        border-start-start-radius: 25px;
    }

    .popup-title {
        text-align: center;
    }
}