.popup_fenster {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.popup_close_btn {
    margin-bottom: 10px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    width: 75px;
    height: 75px;
    font-size: 62px;
    color: black;
}

.popup_nav_btn {
    margin: 20px;
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    width: 75px;
    height: 75px;
    font-size: 62px;
    color: black;
}

.popup_close_btn:hover,
.popup_nav_btn:hover {
    box-shadow: 0 0 8px 2px rgba(255, 255, 0, 0.781);
    cursor: pointer;
}

.popup_main_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_body {
    width: 480px;
    height: 750px;
    font-size: 32px;
    display: flex;
    flex-direction: column;
}

.popup_header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: rgb(1, 129, 102);
    padding: 5px 5px 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.popup_header_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup_header img {
    margin: 10px;
    border-radius: 50px;
    height: 64px;
    width: 64px;
}

.popup_img_btn {
    z-index: 19;
    padding: 5px 5px 5px 5px;
    border: 0;
    border-radius: 7px;
    background-color: grey;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.popup_img_btn:hover {
    cursor: pointer;
    background-color: blue;
    color: yellow;
}

.popup_image_controls {
    margin-bottom: -40px;
    padding: 5px 15px 5px 15px;
    display: flex;
    justify-content: space-between;
}

.shinny_star {
    padding-right: 5px;
    width: 16px;
    height: 16px;
}

.popup_image_display {
    display: flex;
    justify-content: center;
    align-items: end;
}

.popup_image_display img {
    width: 400px;
    height: 400px;
}

.popup_tabs {
    background-color: grey;
    display: flex;
    text-align: center;
}

.popup_tab {
    width: 50%;
    height: 40px;
}

.popup_tab:not(.activ):hover {
    cursor: pointer;
    background-color: blue;
    color: yellow;
    text-decoration: none;
}

.popup_tab_content {
    box-sizing: border-box;
    padding: 0 30px 0 30px;
    width: 100%;
    flex-grow: 1;
    background-color: rgb(1, 129, 102);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.popup_tab_content p {
    margin: 0;
}

.activ {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.692);
    text-decoration: underline;
}