/* Ajax-Overlay */
.listOverlay,
.overlayOverlay {
    position: fixed;
    display: none;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 16;

    /*overflow-y: scroll;*/
}

.overlayLoadingSpinner,
.loadingSpinner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40vh;
    text-align: center;
    font-size: 60px;
    color: #ff8215;
}

.overlayOverlay {
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
}

.listEditor {
    position: relative;
    background-color: #fff;
    color: #000;
}

.windowNarrow,
.windowWide,
.windowModal {
    position: relative;
    height: auto;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.windowNarrow {
    width: 40%;
}

.windowWide {
    width: 70%;
}

.windowModal {
    width: 40%;
}

.closeListEditor {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 2;
    color: #ff8215;
    cursor: pointer;
}

.closeListEditor:active {
    color: #d06a11;
}

.closeListEditor i.fas.fa-times-circle {
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.editorContent {
    width: 100%;
    margin-bottom: 100px;
    position: static;
    padding-bottom: 80px;

    overflow-y: auto;
    max-height: calc(100vh - 120px);
    margin-top: 40px;

    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.2);
}

.editorContent::-webkit-scrollbar {
    width: 12px;
}

.editorContent::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.editorContent::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.editorContent header {
    background-color: #444444;
    border-bottom: 3px solid #ff8215;
    padding: 20px;
    font-size: 24px;
    color: #fff;
}

.editorContent footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 5px 15px;
    background-color: #efefef;
    border-top: 1px solid #ff8215;
    height: unset;
}

.editorContent .container {
    position: relative;
    padding: 20px;
    padding-top: 40px;
    max-width: unset;
    width: 90%;
}

.editorContent .alertContainer {
    display: none;
    margin-top: 15px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

[data-action] {
    cursor: pointer;
}

@media (max-width: 1600px) {
    .editorContent .container {
        width: 98%;
    }
}

@media (max-width: 1440px) {
    /* Abmessungen und Abstände der Overlay-Container anpassen */
    .windowNarrow {
        width: 80%;
    }

    .windowWide {
        width: 96%;
    }

    .windowModal {
        width: 80%;
    }
}

@media (max-width: 576px) {
    /* Abmessungen und Abstände der Overlay-Container anpassen */
    .windowNarrow,
    .windowWide,
    .windowModal {
        width: 90%;
    }
}
