.popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
}

.popup-container {
    font-size: 25px;
    background-color: #273252;
    width: 60%;
    margin: 0 auto;
    padding: 25px 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-div {
    flex-direction: row;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.popup-logo {
    background-image: url("../images/Logo_Zarezerwuj.710b4b1aa5f6.svg");
    width: 134px;
    height: 25px;
    justify-content: flex-end;
    display: flex;
    margin-left: 8px;
}

.popup-h4 {
    color: #fff;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5;
}

.popup-link {
    text-decoration: none;
    margin: 0 auto;
    margin-top: 25px;
    width: 250px;
    padding: 10px 0;
    color: #fff;
    background-color: #f0a130;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
}

.popup-link:hover {
    color: #fff;
    text-decoration: none;
}

span.close-btn {
    transform: rotate(45deg);
    display: inline-block;
    font-size: 30px;
    position: absolute;
    top: -2px;
    right: 10px;
    color: #b6b6b6;
    cursor: pointer;
}

@media screen and (max-width: 460px) {
    .popup-link {
        font-size: 13px;
    }
}

@media screen and (max-width: 576px) {
    .popup-div {
        flex-direction: column;
        align-items: center;
    }

    .popup-link {
        width: 100% !important;
    }
}

@media screen and (max-width: 760px) {
    .popup-link {
        width: 30%;
        font-size: 16px;
    }

    .popup-h4 {
        font-size: 20px;
    }

    .popup-container {
        width: 95%;
    }
}
