.exitlinkpopup-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    font-family: "Droid Sans", sans-serif;
}

#exitlinkpopup {
    background: rgba(255,255,255, 1);
    max-width: 500px;
    display: flex;
    padding: 20px 40px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-self: center;
    justify-self: center;
    z-index: 9999;
    transition: all 0.5s;
    margin-top: 20px;
    width: 90%;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    #exitlinkpopup {
        width: 70%;
    }
}

.exitlinkpopup-wrapper.visible {
    display: flex !important;
}

.exitlinkpopup-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.exitlinkpopup-header .exitlinkpopup-header-text {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.exitlinkpopup-header #exitlinkpopup-header-close {
    width: 25px;
    height: 25px;
    border: 0 none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: #322728;
}

.exitlinkpopup-header #exitlinkpopup-header-close svg {
    width: 25px;
    height: 25px;
}

.exitlinkpopup-wrapper .cookie-teaser {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.exitlinkpopup-intro {
    color: #fff;
    font-size: 14px;
    text-align: center;
    width: 90%;
}
.exitlinkpopup-intro p {
    line-height: 20px;
}
.exitlinkpopup-intro a {
    color: #ffffff;
    text-decoration: underline;
}
.exitlinkpopup-intro a:hover {
    text-decoration: none;
}

.exitlinkpopup-teaser-buttons{
    display: flex;
    flex-direction: column;
    width: 250px;
}

.exitlinkpopup-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    margin-top: 30px;
}

@media screen and (min-width: 710px) {
    .exitlinkpopup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        margin-top: 30px;
    }
}

#acceptexit {
    margin-top: 5px;
    background: rgba(85, 158, 216, 1);
    border: 1px solid rgba(85, 158, 216, 1);
    color: #ffffff;
    font-size: 16px;
    padding: 7px 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

#denyexit:hover {
    background: rgba(224,224,224,.85);
    color: rgba(59, 58, 58, 1);
}

#denyexit {
    background-color: rgba(224,224,224,1);
    border: 1px solid rgba(224,224,224,1);
    color: rgba(59, 58, 58, 1);
    margin-top: 5px;
    font-size: 16px;
    padding: 7px 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

#acceptexit:hover {
    background-color: rgba(85, 158, 216, .9);
}

#acceptexit:focus,
#denyexit:focus {
    outline: 0;
}

.exitlinkpopup-teaser-links {
    width: 220px;
    justify-content: space-evenly;
    display: flex;

}

.exitlinkpopup-teaser-links a {
    font-size: 14px;
    color: #3B3A3A;
    text-decoration: underline;
}

.exitlinkpopup-teaser-links a:hover {
    text-decoration: none;
}

