* {
    outline: 0;
    --editor-width: 240px;
    --panel-width: 250px;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
*::-webkit-scrollbar-track {
    background: #ffffff00;
    margin: 0 7px;
}

/* Handle */
*::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.4);
}

[draggable=true] {
    cursor: move!important;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    --preview-width: calc(100% - var(--panel-width, 250px));
}

body.editor-preview {
    --preview-width: 100%;
}

main {
    display: flex;
    flex-wrap: nowrap;
    height: calc(100vh - 54px);
    /*height: -webkit-fill-available;*/
    max-height: calc(100vh - 54px);
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 54px;
}

.scrollarea {
    overflow-y: auto;
}

.fs-7 {
    font-size: .8rem !important;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0);
}

.builder-panel {
    position: relative;
}

.panel-elementos {
    position: absolute;
    top: 0;
    width: var(--panel-width);
    height: 100%;
    z-index: 2;
    border: 0;
    transition: .1s;
}

.panel-back {
    position: relative;
    width: var(--panel-width);
    height: 100%;
    z-index: 1;
    transition: .4s;
}

body.editor-preview .panel-back {
    width: 0;
}

.panel-header {
    padding: .5rem 1rem;
    border-radius: inherit;
}

.panel-elementos.minimize {
    width: auto;
    height: auto;
    /*    border-right: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;*/
    border-radius: 0 0 15px;
}

.minimize .panel-header {
    padding: .25rem;
}

.minimize .panel-title {
    width: 0px;
    opacity: 0;
    position: relative;
    z-index: -1;
}

.minimize .panel-body {
    display: none;
}

.builder-preview {
    width: var(--preview-width);
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

#builder-preview-iframe {
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: .4s;
}

.responsive {
    height: calc(100% - 38px) !important;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3), 0 0 20px rgba(0, 0, 0, .15);
}

.feather-sm {
    width: 18px;
    height: 18px
}

.feather-lg {
    width: 28px;
    height: 28px
}

.feather-xl {
    width: 35px;
    height: 35px
}