/*======================================SmallEditor style =============================*/
.editor-container {
    border: none;
    box-shadow: none;
    position: relative;
    background-color: #fff;
    clear: both;
}

/*=================Editor toolbar style================*/
.editor-container .editor-toolbar {
    box-shadow: none;
    border-bottom: 1px solid #ededed;
    background-color: #fff;
    display: block;
    padding: 5px;
}

.editor-container .editor-toolbar:after {
    content: " ";
    display: block;
    clear: both;
}

.editor-toolbar .editor-btn {
    position: relative;
    display: inline-block;
    float: left;
    vertical-align: top;
    width: auto;
    margin: 0 1px;
    padding: 1px;
    border: none;
}

.editor-toolbar .editor-btn a {
    color: #bbb;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-underline: none;
}

.editor-toolbar .editor-btn a:hover,
.editor-toolbar .editor-btn a.active {
    color: #666;
    background: #ddd;
    border: transparent;
}

.editor-toolbar i {
    font-size: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

.editor-toolbar .separator {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 1px;
    height: 20px;
    padding: 0px;
    margin: 8px 5px 0 5px;
    background: #f4f4f4;
}

/*=================Editor body style================*/
.editor-container .editor-body-container {
    padding-top: 10px;
    background-color: #fff;
}

.editor-body-container .editor-body {
    border: 0;
    outline: 0;
    cursor: text;
    padding: 0 10px;
    overflow: auto;
    display: block;
    word-wrap: break-word;
    font-size: 16px;
    font-family: sans-serif;
    min-height: 300px;
    max-height: 500px;
    border-bottom: 1px solid #ededed;
}

.editor-body:empty:not(:focus)::before {
    content: attr(placeholder);
    color: #b3b3b1;
    font-weight: 400;
    font-size: 18px;
}

.editor-body-container .editor-body ol {
    list-style: decimal outside none;
    line-height: 1.8;
    padding-left: 40px;
}

.editor-body-container .editor-body ul {
    list-style: disc outside none;
    padding-left: 40px;
    line-height: 1.8;
}

.editor-body-container .editor-body ol,
.editor-body-container .editor-body ul {
    margin: 0;
}

.editor-body-container .editor-body p {
    margin: 5px 0;
    line-height: 1.6;
}

.editor-body-container .editor-body blockquote {
    border-left: 5px solid #ddd;
    margin: 15px 0 15px 15px;
    padding: 5px 0 5px 10px;
}




