.licht {
    padding: 60px 15px;
    height: 100vh;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    z-index: 100;
    backdrop-filter: blur(9px);
}
.licht div.bgccl {
    position: absolute;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    cursor: pointer;
    cursor: url(src/close.png), auto;
}
.licht:not(.f-a-c) .contm{
    flex: 1 0 0; 
}
.licht .btnClose {
    --square: 21px;
    position: fixed;
    z-index: 10;
    right: 15px;
    top: 15px;
    width: var(--square);
    height: var(--square);
    border-radius: 50%;
    border: 2px solid darkred;
    color: darkred;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}
.licht .contm { 
    width: 800px;
    max-width: 100%;
    background-color: #fefefe;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #ccc;
}
.licht .container.main { 
    max-width: 100%; 
}
.licht .contbx {
    overflow: hidden;
    overflow-y: auto; 
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 0;
    max-height: 100%;
    position: relative;
    &::-webkit-scrollbar {
        width: 6px;
    }
    /* Track */
    &::-webkit-scrollbar-track {
        background: #ccc; 
    }
   
    /* Handle */
    &::-webkit-scrollbar-thumb {
        background: var(--clr01); 
    }
}
.licht .contbx > .contbx-w {
    padding: 15px
} 
@media (max-width: 575px) { 
    .licht {
        padding: 30px 15px; 
    } 
}
@media (width > 575px) { 
    .licht .contbx > .contbx-w {
        padding: 30px
    } 
}

.licht.lichtZwei{
    --pad-top: 60px;
    padding: var(--pad-top) 0 0;

    .bg_wrapper{
        background-color: #fff;
        width: 100%;
        height: calc(100svh - var(--pad-top));
        overflow: clip;
        overflow-y: auto;
        border-radius: 15px 15px 0 0;
    }
    .contm{
        margin: 0 auto;
        border: 0;
        padding: 60px 30px 120px;
    } 
    @media(width<575px){
        --pad-top: 45px;
        .contm{ 
            padding: 30px 15px 120px;
        } 
    }
}
/* ============================== */
/* ============================== */
 