.window-wrapper {
    min-width: 320px;
    min-height: 320px;
    width: 320px;           /* feste Breite */
    height: 350px;          /* feste Höhe */
    position: fixed;
    top: 50%;
    right: -100%;
    padding: 60px 50px 60px 50px;
    text-align: center;
    transform: translateY(-50%);
    /*border-radius: 20px 0px 0px 0px;*/
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.12);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.12);
    transition: all 1250ms;
    z-index: 10;
    background-color: #fff;
}

@media (max-width:768px) {
    .window-wrapper{
        width: 80%;       /* kleinere Breite auf Tablets/Mobil */
        height: auto;     /* Höhe automatisch */
        min-height: 300px;
        padding: 40px 20px;
    }
}

.close-button {
    color: #fff;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 16px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: var(--color-main);
    font-weight: 700;
    z-index: 999;
}

.close-button:hover,
.close-button div:hover {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.close-button div {
    transform: translateY(-1px);
    cursor: pointer;
}

.window-wrapper .window-wrapper-headline {
    text-align: center;
    margin-bottom: 32px;
    font-size: 21px;
    font-weight: 700;
}

.categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-link {
    width: 100%;
    background-color: white;
    padding: 22px;
    width: 230px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.category-link:hover{
    text-decoration: none;
}

.category-link p {
    font-size: 17px;
}

.category-link:first-of-type,
.linkOption:first-of-type {
    /*border-radius: 20px 0px 0px 0px;*/
}

.category-link p {
    margin-bottom: 0;
}

.check-icon {
    margin-right: 12px;
}

.check-icon path{
    fill: var(--color-custom-2);
}

.check-icon .check {
    stroke: var(--color-custom-2);
}


.window-wrapper .links-wrapper {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.window-wrapper .links-wrapper .slider-back-button {
    cursor: pointer;
    margin-top: 20px;
    position: absolute;
    bottom: -40px;
    left: -15px;
    transform: rotate(180deg);
}

.window-wrapper .links-wrapper .slider-back-arrow line {
    stroke: var(--color-main);
}
.window-wrapper .links-wrapper .slider-back-arrow path {
    fill : var(--color-main);
}

.linkOption {
    width: 100%;
    background-color: white;
    padding: 22px;
    width: 230px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    text-decoration: none !important;
    font-size: 17px;
}

.linkOption .check-icon {
   width: 100%;
   max-width: 25px;
}
