.hidden {
    display: none;
}

.editor_wrapper {
    z-index: 999999999999999999;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 1;
    font-size: 22px;

}

.editor {
    margin-left: 30%;
    margin-right: auto;
    margin-top: 20vh;
    display: flex;
    position: fixed;

    width: 550px;

    background-color: white;

    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 20px;
    border: 1px solid color blue;
}

.editor__row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 25px;
}

.field {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.field_label {
    width: 150px;
}

.field_value {
    width: 350px;
}

.field__btn {
    width: 100px;
}

.editor__loader-wrapper {

    position: fixed;
}

.editor__loader {
    z-index: 999999999999999999;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: black;
    opacity: 0.5;
}

.editor__loader-text {
    z-index: 999999999999999999;
    margin-left: 150px;
    margin-top: 30%;
    color: black;
    font-size: 24px;
    opacity: 1;
}