body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

ul {
    margin-top: 6px;
    margin-bottom: 24px;
}

form {
    margin-top: 6px;
}

.hint {
    font-size: 14px;
}

.landing {
    width: 100vw;
    height: 55vh;
    position: relative;
}

.landing > .landing_bg {
    background-image: url("/rd2b.png");
}

.landing .header {
    position: absolute;
    bottom: 10px;
    color: white;
    font-size: 100%;
}

.landing .header h1 {
    margin: 0;
    font-size: 15vh;
    font-weight: bold;
    text-align: center;
    width: 100vw;
}

.landing .header p {
    margin: 0;
    font-size: 4vh;
    text-align: center;
    font-weight: bold;
    margin-left: 0.5vw;
}

.landing > .landing_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
}

.landing > .landing_bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: linear-gradient(6deg, #000000db 0%, #00000098 20%, #00000000 40%);
}

@media screen and (max-width: 1400px) {
    .landing .header h1 {
        font-size: 60px;
    }
    .landing .header p {
        font-size: 25px;
    }
}

@media screen and (max-width: 400px) {
    .landing .header h1 {
        font-size: 50px;
    }
    .landing .header p {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .landing {
        background: linear-gradient(4deg, #0000006f 0%, #00000000 30%);
    }
}

/*										// unkommentiere für Animation
#nav_logo_img {
    transition: width 0.2s ease;
    overflow: hidden;
}

#nav_logo_img.unscrolled {
    width: 0px;
}
*/

h2 {
    font-size: 55px;
    text-align: center;
}

h3 {
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
}

.content {
    padding: 30px 20px;
    width: calc(100vw - 40px);
    overflow-x: scroll;
    min-height: 29vh;
    font-size: 17px;
}

input {
    font-size: 17px;
    margin-top: 6px;
}

.schicht_pref {
    border: none;
}

.schicht_pref td {
    border: none !important;
    background: transparent !important;
    padding: 1px !important;
}

.schicht_pref input {
    margin: 0 !important;
}

table:not(.schicht_pref) {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-top: 20px;
    position: relative;
    table-layout: fixed;
}

th, td {
    background: #e3e3e3;
    color: black;
    border: 1px solid black;
    font-size: 16px;
    padding: 5px;
    position: relative;
}

thead th {
    position: sticky; top: 0;
    font-weight: bold;
    background: #bdbdbd;
    text-decoration: underline;
}

td button {
    height: calc(100% - 0px);
    width: 100%;
    background-color: #779ae0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

td button:hover {
    color: white;
}

.shift_t, .shift_b {
    vertical-align: top;
}

.shift_applicants {
    max-height: 0;
    overflow-y: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    position: absolute;
    z-index: 100;
}

.shift_applicants table {
    margin: 0;
}

.shift_applicants td {
    background-color: white;
}

ol {
    border-top: 1px solid gray;
}

.clear {
    width: 20px;
}

.clear_btn, .applicants_btn, .set_btn {
    width: auto;
    background-color: #9d6b6b;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    padding: 0 7px;
}

.applicants_btn {
    background-color: #779ae0;
}

.set_btn {
    background-color: #6b9d6b;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0%;
    transition: 0.3s ease;
}

.popup h3 {
    margin: 0;
    font-size: 24px;
}

.popup .pu_am_changer {
    font-size: 80px;
    padding: 0;
    line-height: 40px;
}

.popup-closer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
}

.popup-closer2 {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px 15px 20px;
    border-bottom-left-radius: 100px;
    background-color: #779ae0;
    font-size: 30px;
    z-index: 999999;
    cursor: pointer;
    color: white;
}

.popup-content {
    background: white;
    padding: 1em;
    border-radius: 10px;
    max-width: 300px;
    max-height: calc(95vh - 2em);
    overflow-y: scroll;
    width: 90%;
    text-align: center;
    z-index: 99999;
}

.popup-content input {
    margin-top: 4px;
    margin-bottom: 10px;
}