.EditorContainer li {
    margin-left: 32px;
}

a {
    cursor: pointer;
}

.EditorContainer {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.toolbar {
    padding: 5px;
    background-color: #24262d;
    display: flex;
    align-items: center;
}

.editTextTools {
    width: 80%;
}

.extraConfigEditor {
    width: 20%;
    padding: 5px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.buttonConfigSend {
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 4px;
    background-color: transparent;
}

.buttonConfigSend:hover img {
    filter: grayscale(0);
}

.buttonConfigSend img {
    width: 20px;
    height: 20px;
}

.toolbar .head {
    display: flex;
    grid-gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    font-family: roboto;
}

.toolbar .head>input {
    max-width: 100px;
    padding: 6px 10px;
    border-radius: 2px;
    border: solid 2px #ddd;
    outline: none;
}

.toolbar .head select {
    background-color: #fff;
    border: solid 2px #eee;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.toolbar .head .color {
    background-color: #fff;
    border: solid 2px #eee;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    grid-gap: 6px;
    padding: 0px 10px;
}

.toolbar .head .color span {
    font-size: 14px;
}

.toolbar .head .color input {
    padding: 0px;
    border: none;
    width: 25px;
    height: 25px;
}

.toolbar .head .color input::-moz-color-swatch {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;

}

.btn-toolbar {
    padding: 5px;
    border-radius: 2px;
}

.toolbar .btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
}

.toolbar .btn-toolbar button {
    background-color: #24262d;
    border: solid 1px #dddddd57;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toolbar .btn-toolbar button img {
    width: 20px;
}

.toolbar .btn-toolbar button:hover {
    background-color: #000;
}


#show-code[data-active='true'] {
    background-color: #eee;
}

.spaceEditorElements {
    background-color: red;
    display: flex;
}

#content {
    background-color: white;
    width: 70%;
    min-width: 700px;
    max-width: 1000px;
    padding: 16px;
    outline: none;
    height: calc(100vh - 170px);
    font-family: roboto;
    border: solid 1px rgba(0, 0, 0, 0.1);
    font-size: 1em;
}

.rightElementsEditor {
    width: 30%;
    min-width: 300px;
    background-color: rgb(51, 52, 59);
    height: calc(100vh - 170px);
    padding: 10px;
    overflow: auto;
}


/* ============== figure copiado da fepastec ============ */
.content-image-events img {
    width: 100%;
    border-radius: 1px;
    border-radius: 10px;
}

.itemFluidContent {
    margin: 0px;
    display: flex;
    margin-bottom: 5px;
    break-inside: avoid;
    position: relative;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
}

.itemFluidContent button {
    width: 100%;
    border: none;
    background-color: rgb(23, 24, 36);
    height: 125px;
    cursor: pointer;
    border-radius: 4px;
}

.itemFluidContent button:hover {
    background-color: rgb(14, 15, 24);
}

.itemFluidContent button img {
    width: 100%;
    max-width: 70px;
}

.itemFluidContent button p {
    color: #ccc;
    font-size: 1em;
    font-family: 'Onest';
    text-transform: uppercase;
}

.content-image-events {
    column-count: 2;
    column-gap: 10px;
}

/* ====================================================== */