/*!
 * Quill Resize Module v2.0.4
 * https://github.com/mudoo/quill-resize-module
 */
.ql-resize-overlay {
    position: absolute;
    box-sizing: border-box;
    border: 1px dashed #444;
    pointer-events: none;
}
.ql-resize-toolbar {
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 0;
    min-width: 120px;
    text-align: center;
    color: #333;
    box-sizing: border-box;
    cursor: default;
    pointer-events: all;
}
.ql-resize-toolbar button {
    display: inline-block;
    min-width: 24px;
    height: 24px;
    padding: 2px;
    background-color: #fff;
    border: 1px solid #999;
    vertical-align: middle;
}
.ql-resize-toolbar button:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.ql-resize-toolbar button:last-child {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.ql-resize-toolbar button:not(:first-child) {
    border-left: none;
}
.ql-resize-toolbar button.active {
    filter: invert(20%);
}
.ql-resize-toolbar svg {
    width: 18px;
}
.ql-resize-handle {
    position: absolute;
    height: 12px;
    width: 12px;
    background-color: #fff;
    border: 1px solid #777;
    box-sizing: border-box;
    opacity: 0.8;
    pointer-events: all;
}
.ql-resize-handle.tl {
    top: -6px;
    left: -6px;
    cursor: nwse-resize;
}
.ql-resize-handle.tr {
    top: -6px;
    right: -6px;
    cursor: nesw-resize;
}
.ql-resize-handle.br {
    right: -6px;
    bottom: -6px;
    cursor: nwse-resize;
}
.ql-resize-handle.bl {
    left: -6px;
    bottom: -6px;
    cursor: nwse-resize;
}
.ql-resize-display {
    position: absolute;
    padding: 4px 8px;
    text-align: center;
    background-color: #fff;
    color: #333;
    border: 1px solid #777;
    box-sizing: border-box;
    opacity: 0.8;
    cursor: default;
    line-height: 1;
}
.ql-resize-style-left {
    float: left;
    margin: 0 1em 1em 0;
}
.ql-resize-style-center {
    display: block;
    margin: auto;
}
.ql-resize-style-right {
    float: right;
    margin: 0 0 1em 1em;
}
.ql-resize-style-full {
    width: 100% !important;
}
