.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, z-index 0s linear 0.4s;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #111111;
        opacity: 0.9;
    }
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.4s ease, z-index 0s linear 0s;
    z-index: 101;
}

.lightbox.open .window {
    transform: scale(1);
}

.lightbox .window {
    position: relative;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 20px 60px -20px black;
    transform: scale(0.9);
    transition: 0.4s ease;
}

.lightbox img {
    position: relative;
    display: block;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 15px;
    font-size: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.lightbox .close::before, .lightbox .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 2px;
    background-color: #111;
    margin: -1px -18px;
    transform: rotate(45deg);
}

.lightbox .close::after {
    transform: rotate(-45deg);
}



header {
    background-color: #2f2f81;
}

@media(min-width: 992px) {
    header .logo {
      width: 120px;
      height: 120px;
      top: 10px;
    }

    header::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 50%;
        background-color: #2f2f81;
        opacity: 1;
        z-index: -1;
        box-shadow: 0 0 0 2px white;
    }

    header .secondary {
      top: 7px;
    }

    header .secondary > li:hover > a {
      opacity: 1;
      background-color: transparent;
    }

    header {
        box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2);
        height: 106px;
        background-color: #d12229;
    }

    .wrapper {
      padding-top: 130px;
    }
}

header .logo::after {
    content: '';
    position: absolute;
    left: 100%;
    width: 270px;
    height: 30px;
    background-image: url(https://FC-Eiserfeld.test.regionalfussball.net/File/claim.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    top: 2px;
}

@media(max-width: 991px) {
    header .logo {
        left: 0;
        margin: 0;
        top: 5px;
    }

    header .logo::after {
        top: -10px;
        bottom: 18px;
        height: auto;
    }
}

@media(max-width: 767px) {
    header .logo::after {
        width: 200px;
        top: -3px;
    }
}