.editable-block {
	min-height: 100px;
	padding: 5px 0 0 0;
}

.editable-block-custom {
	border: 1px solid;
	border-radius: 5px;
}

.bloceditable-wrapper {
    position: relative;
    width: 100%;
}

.bloc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.bloc-toolbar button img {
    width: 20px;
    height: 20px;
}

.bloc-toolbar button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloc-toolbar button:hover {
    background: #c0c0c0;
    border-radius: 1px;
}

.bloc-tools {
    display: flex;
    gap: 10px;
}

.bloc-editor {
    width: 100%;
    min-height: 150px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    outline: none;
}

.bloc-editor:focus {
    border-color: #4a90e2;
}

/* ACTIONS */
.bloc-actions {
    display: flex;
    gap: 10px;
	margin-left: auto;
	padding-right: 10px;
	padding-top: 5px;
}

.bloc-actions span {
    font-size: 1em;
}

/* animation copy */
.copy-animate {
    transform: scale(1.4);
    transition: transform 0.15s ease;
}