
.download_all:disabled {
    cursor: not-allowed;
}

.download_all:disabled:hover {
    background-color: #6B7280;
}

.main_content ul {
    list-style-type: disc;
}

.editor-container .toolbar {
    border-bottom-color: #E5E7EB;
}

.editor-container .toolbar .divider {
    background-color: #E5E7EB;
}


/* SHIMMER EFFECT */

.editor-skeleton {
    width: 100%;
    margin: 0 auto;
}

.editor-skeleton,
.editor-skeleton * {
    box-sizing: border-box;
}

.editor-skeleton .es-toolbar {
    display: flex;
    align-items: center;
    background: #fff;
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #E5E7EB;
}
.editor-skeleton {
    overflow: hidden;
}

.editor-skeleton .es-toolbar {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.editor-skeleton .es-toolbar::-webkit-scrollbar {
    display: none;
}

.editor-skeleton .es-content {
    background: #fff;
    padding: 8px 16px 0px 40px;
    min-height: 350px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.editor-skeleton .es-cell {
    flex-shrink: 0;
    height: 40px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editor-skeleton .es-w32 { width: 32px; }
.editor-skeleton .es-w40 { width: 40px; }
.editor-skeleton .es-w56 { width: 56px; }
.editor-skeleton .es-w60 { width: 60px; }


.editor-skeleton .es-dd     { width: 142px; } /* block format & font family */
.editor-skeleton .es-insert { width: 108px; } /* insert dropdown */
.editor-skeleton .es-align  { width: 127px; } /* alignment dropdown */


.editor-skeleton .es-cell > i {
    display: block;
    width: calc(100% - 12px);
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ededed 25%, #f5f5f5 50%, #ededed 75%);
    background-size: 200% 100%;
    animation: es-shimmer 1s linear infinite;
}

.editor-skeleton .es-sep {
    flex-shrink: 0;
    width: 1px;
    height: 32px;
    margin: 0;
    background: #E5E7EB;
}

@keyframes es-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .editor-skeleton .es-cell > i {
        animation: none;
    }
}

@media screen and (max-width: 768px) {
    .dropdown .item .shortcut{
        display: none;
    }
}
@media screen and (max-width: 1100px) {
    .editor-skeleton .es-dd     { width: 58px; }
    .editor-skeleton .es-insert { width: 54px; }
    .editor-skeleton .es-align  { width: 56px; }
}

@media screen and (max-width: 1025px) {
    .editor-skeleton .es-content {
        padding-left: 8px;
        padding-right: 8px;
    }

    #fakePlaceholder {
        left: 8px;
    }
}
