.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;
    border-radius: 7px 7px 0px 0px;
}

.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: 1px;
}

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

.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: rgba(255, 0, 0, 0);
    display: flex;
}

#content {
    background-color: white;
    width: 60%;
    max-width: 1050px;
    outline: none;
    height: calc(100vh - 170px);
    font-family: roboto;
    border: solid 1px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    border-radius: 0px 0px 0px 7px;
    overflow-y: auto;
}

.rightElementsEditor {
    width: 40%;
    /* min-width: 150px; */
    background-color: rgb(51, 52, 59);
    height: calc(100vh - 170px);
    padding: 10px;
    overflow: auto;
    user-select: none;
    border-radius: 0px 0px 7px 0px;
}

.component-button {
    width: 100%;
    display: flex;
    gap: 15px;
    padding: 5px;
    border-radius: 2px;
    cursor: pointer;
    align-items: center;
    background-color: #000000;
    font-size: 0.8em;
    margin-bottom: 5px;
    border: solid 1px transparent;
}

.component-button:hover {
    background-color: #181818;
}

.component-button:active {
    background-color: #464646;
    cursor: copy;
    border: solid 1px #008bc250;
}

.component-button img {
    width: 25px;
}

.component-button p {
    color: #eee;
    font-size: 0.9em;
    text-transform: uppercase;
    user-select: none;
}

.editable {
    border: 1px dashed transparent;
    width: auto;
}

.editable:focus {
    border: 1px dashed #00b4fe;
    outline: none;
}

.placeholder {
    border: 2px dashed #00b4fe;
    height: 20px;
    margin: 5px 0;
}

.image-placeholder {
    border: 2px dashed #00b6fe00;
    /* width: 100px;
    height: 100px;
    background-color: #b80000;
    border: 1px solid #b80000;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.image-placeholder:focus,
.image-placeholder:active {
    border: 2px dashed #00b4fe;
}

/* ======= CONTEXT ELEMENTS STYLES ======= */
.inputContext {
    width: 100%;
    padding: 3px;
    background: #454649;
    border: none;
    outline: none;
    border-radius: 2px;
    font-size: 0.9em;
    text-indent: 10px;
    color: #eee;
    font-family: 'Onest';
}

.text-align-right {
    text-align: right;
}

.context-label {
    color: #d6d6d6;
    font-size: 0.8em;
}

#updateSourceBtn {
    cursor: pointer;
}

#imageControls,
#textControls {
    display: none;
    margin-top: 10px;
}

.elem-props {
    height: calc(100vh - 170px);
    overflow-y: auto;
    padding-bottom: 40px;
}

#content img {
    cursor: pointer;
}


/* .double-container {
    display: flex;
    gap: 2px;
    background-color: #ffffff;
}

.column {
    flex: 1;
    padding: 20px 2px;
    background-color: #f0f0f0;
} */
