editor-container {
    height: 1200px;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    z-index: 9999;
}

.upload-form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 100px;
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
}

.bg {
    background-color: #f8f9fa;
}

#toast {
    visibility: hidden;
    width: 100%;
    max-width: 450px;
    border: 1px solid #bedfe6;
    border-left: 5px solid #21d030;
    border-radius: 5px;
    padding: 15px;

    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 20px;
    top: 20px;
    margin-left: auto;
    margin-right: auto;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#toast.top {
    top: 20px;
    bottom: auto;
}

#toast.bottom {
    top: auto;
    bottom: 20px;
}

#toast.left {
    left: 20px;
    right: auto;
}

#toast.right {
    left: auto;
    right: 20px;
}

#toast.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}

#toast.success {
    background-color: #2889a7;
    border-color: #21d030;
    border-left: 10px solid #21d030;
}

#toast.warning {
    background-color: #2889a7;
    border-color: #d0a721;
    border-left: 10px solid #d0a721;
}

#toast.error {
    background-color: #2889a7;
    border-color: #d02121;
    border-left: 10px solid #d02121;
}

@keyframes fadein {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        transform: translateY(0px);
        opacity: 1;
    }

    to {
        transform: translateY(20px);
        opacity: 0;
    }
}