@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Oooh Baby';
    font-style: normal;
    font-weight: 400;
    src: url('../Fonts/OoohBaby/oooh-baby-v4-latin-regular.woff2')
        format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.newsletter-button {
    display: inline-block;
    background-color: #fdd416;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
    padding: 10px 16px 9px 60px;
    font-size: 14px;
    font-weight: 600;
}

.newsletter-button::before,
.newsletter-button::after {
    content: ' ';
    display: block;
    position: absolute;
}

.newsletter-button::before {
    width: 20px;
    height: 10px;
    background-color: #333;
    left: 16px;
    top: 16px;
}

.newsletter-button::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #333;
    top: 11px;
    left: 33px;
}

#krebshilfe-popup {
    border: 10px solid #fdd416;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 60px 48px 40px;
    background-color: #fff;
    width: 480px;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.14);
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    overflow: auto;
}

#krebshilfe-popup .fancy,
.newsletter-banner .fancy {
    position: relative;
    z-index: 1;
    font-family: 'Oooh Baby', serif;
    font-size: 28px;
    font-weight: bold;
}

#close-krebshilfe-popup {
    appearance: none;
    position: absolute;
    right: 12px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    box-shadow: none;
    display: block;
    line-height: 1;
    font-size: 34px;
    color: inherit;
    border: 0;
}

@media (max-width: 767px) {
    #krebshilfe-popup {
        padding: 25px;
    }

    #close-krebshilfe-popup {
        right: 0;
        top: 3px;
    }

    .newsletter-button {
        padding-right: 40px;
    }
}

.newsletter-banner {
    background: #fdd416;
    padding: 40px 80px;
}

.newsletter-banner-btn {
    background: #333333;
    padding: 15px 45px 12px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 4px solid transparent;
    transition: 300ms ease-in-out;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold !important;
    font-size: 16px;
}

.newsletter-banner-btn:hover,
.newsletter-banner-btn:focus {
    border-color: #333;
    background-color: transparent;
}
