/* Editor */
.setting {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 100%; /* of een andere vaste/max breedte */
    white-space: normal;
    transition: background 0.5s ease;
}

section > .setting{
    width:100%;
}

.setting:hover {
    cursor: pointer;
}

.setting::after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width:100%;
    height:100%;
    background: rgba(255, 0, 0, 0.2);
    font-size: 13px;
    display: none;
    z-index: 20;
}

.setting:hover::after {
    display: block;
}
#editor_sidebar{
    z-index:50000;
    position: fixed;
    height:calc(100vh - 40px);
    top:20px;
    right:20px;
    width:45vw;
    background:white;
    border-radius:15px;
    display:block;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    overflow-y:auto;
}
#close_editor_sidebar{
    font-size:30px;
    cursor:pointer;
}
#close_editor_sidebar:hover{
    color:red;
}
.editor_config_button{
    z-index:49999;
    position:absolute;
    right:20px;
    top:20px;
    font-size:20px;
    line-height:20px;
    padding-top:8px;
    border-radius:2px !important;
}
.editor_config_options_list{
    z-index:49999;
    background:white;
    position:absolute;
    right:20px;
    top:55px;
    border-radius:2px !important;
    display:none;
}
.editor_config_options_list a{
    text-decoration:none;
    color:black;
    padding-left:12px;
    padding-right:12px;
    font-size:18px;
    line-height:30px;
    cursor:pointer;
    display:block;
}
.editor_config_options_list a:hover{
    color: var(--bs-primary);
}
#editor_content .select2{
    width:100% !important;
}
.select2-container--open {
    z-index: 999999 !important;
}
.select2-dropdown {
    z-index: 999999 !important;
}
.ql-tooltip {
    transform: translateY(80px) !important;
}