#vertige_popup {
    position: fixed;
    z-index: 9999;
}
#vertige_popup {
    width: 100%;
    height: 100vh;
}
#vertige_popup {
    background-color: #00000095;
}
#vertige_popup {
    box-sizing: border-box;
}
@media screen and (min-width: 1080px) {
    #vertige_popup {
        padding: 10% 30%;
    }
}
@media screen and (max-width: 1080px) {
    #vertige_popup {
        padding: 35% 20px;
    }
}
#vertige_popup div {
    position: relative;
}
#vertige_popup div {
    background: linear-gradient(0deg, rgba(101, 20, 25, 1) 0%, rgba(192, 39, 48, 1) 60%, rgba(192, 39, 48, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    padding: 20px;
}
#vertige_popup div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#vertige_popup .logo {
    width: auto;
    height: 4em;
}
#vertige_popup p,
#vertige_popup button {
    font-family: 'content-font';
    font-size: 16px;
    text-align: center;
    color: #fff;
}
#vertige_popup p {
    line-height: 22px;
}
#vertige_popup p span,
#vertige_popup p b {
    font-family: 'bold-font';
    font-weight: 400;
}
#vertige_popup p span {
    text-transform: uppercase;
}
#vertige_popup button {
    cursor: pointer;
}
#vertige_popup button {
    background: #c02730;
    border-radius: 50px;
    border: none;
    padding: 8px 15px;
}
#vertige_popup button {
    background: #c02730;
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 10px #00000050;
    padding: 8px 25px;
}
#vertige_popup button:hover {
    background: #fff;
    color: var(--secondary);
    transition: .3s ease-in-out;
}
#vertige_popup .background_img {
    position: absolute;
    right: 0;
}
#vertige_popup .background_img {
    width: auto;
    height: 100%;
}
#vertige_popup .background_img {
    opacity: 0.1;
}
#vertige_popup .logo,
#vertige_popup p,
#vertige_popup button {
    z-index: 2;
}
#vertige_popup .background_img {
    z-index: 1;
}