.edit-mode {
    display: flex;
    flex-direction: row;
    position: relative
}

.elementor-menu {
    width: 15%;
    position: sticky;
    top: 0;
    height: 1000px;
    background-color: #ffffff;
    border-right: dashed #f1f1f1 1px;
}

.elementor-menu-box {
    padding: 15px;
    display: flex;;
    flex-direction: column;
    text-align: start;
    align-items: flex-start;
}

* {
    box-sizing: border-box;
    --base-500: #a0aec0;
    --base-200: #e2e8f0;
    --base-300: #e2e8f0;
    --base-400: #cbd5e0;
    --main-400: #7f9cf5;
    --main-200: #c3dafe;
    --main-100: #ebf4ff;
    --solid: #fff;
    --solid-900: #4a5568;
    --sidebar-bg: #edf2f7;
    --sidebar-color: #4a5568;
    --shadow: 0 10px 15px -3px rgba(36, 69, 101, 0.19), 0 4px 6px -2px #d0dce8;
    --shadow-active: 0 0 0 2px currentColor,
    0 10px 15px -3px rgba(36, 69, 101, 0.19), 0 4px 6px -2px #d0dce8;
}

.main-content {
    height: 100%;
    min-height: 100vh;
}
#navbar {
    background: #2c2c2c;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 1;
}
.mirror {
    cursor: grabbing !important;
    transform:scale(.3)
}
.menu-title {
    font-family: Arial;
    margin:auto;
    margin-top: 50px;
    margin-bottom:20px;
    max-width:300px;
}
.drag-container {
    width: 100%;
    margin-top:30px
}

.drag-item {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 5px;
    padding: 0;
    width: 50%;
    display: inline-block;
    cursor: grab;
}
.drag-container {
    padding: 0;
}

#page .drag-item {
    animation: slide-in 0.3s ease-in;
}

.scale{
    transform: scale(0.4) translateX(-100%);
}
.drag-container .drag-item {
    transition: transform 0.2s ease-in-out;
}
.drag-container .drag-item:hover {
    transform: scale(1.2);
}
@keyframes slide-in {
    from {
        transform: translate(0, -10px);
        opacity: 0;
    }
}
.drag-item:active {
    cursor: grabbing !important;
}
#page .drag-item {
    display: block !important;
    width: 100%;
    padding: 20px;
    height: auto;
}
[data-type="text"] {
    font-family: Arial;
    font-size: 14px;
    text-align: left;
}

#container {
    height: 100%;
    width: 80%;
    background: #fcf7ff;
    position: fixed;
    top: -0;
    right: 0;
    float: right;
    overflow-y: scroll;
}

#page {
    width: 100%;
    border-radius: 5px;
    min-height: 90vh;
    background: #fff;
    overflow-y: hidden;
    overflow-x: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
