
.hjs-editor-panel{
	border: 1px solid #8d8484;
    height: 100%;
    width: 100%;
    position: relative;
    font-family: monospace;
    font-size: 15px;
    background: #fff;
}
.hjs-editor-panel button{
    font-family: monospace;
    font-size: 13px;
}
.hjs-editor-panel > .hjseditor-panel-controls{
	display: flex;
    border: 1px solid #8d8484;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    padding: 0px 5px;
    background-color: whitesmoke;
}
.hjs-editor-panel > .hjseditor-panel-controls > *{
    margin: 5px;
    margin-left: 0px;
}
.hjs-editor-panel > .hjseditor-panel-editor{
	display: block;
}
iframe.hjseditor-iframe-editor{
	height:100%;
	width:100%;
}

.hjs-editor-control{
	position: relative;
}

.hjs-editor-control .hjs-button,
.hjseditor-panel-controls .hjs-button{
	white-space: nowrap;
    cursor: default;
    vertical-align: middle;
    text-align: center;
    min-width: 27px;
    line-height: 1;
    font-size: 16px;
    border: 1px solid transparent;
    transition: box-shadow .2s ease-in-out,border .2s ease-in-out;
    -webkit-appearance: none;
	background: transparent;
	position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	padding: 5px;
    border-radius: 2px;
    position: relative;
    font-family: 'FontAwesome';
    color: #838383;
}
.hjs-editor-control .hjs-button.hjs-button-highlight > i{
    background-color: #838383;
    color: white;
}
.hjseditor-panel-controls .hjs-button.hjs-undo,
.hjseditor-panel-controls .hjs-button.hjs-redo{
    position: absolute;
    right: 5px;
}
.hjseditor-panel-controls .hjs-button.hjs-undo{
    right: 32px;
}

.hjs-editor-control .hjs-button:not(.hjs-disabled):hover, 
a.hjs-editor-control .hjs-button:not(.hjs-disabled):hover,
.hjseditor-panel-controls .hjs-button:not(.hjs-disabled):hover, 
a.hjseditor-panel-controls .hjs-button:not(.hjs-disabled):hover 
{
    background: #eeeeee;
    color: #000;
}
.hjs-tooltip {
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
.hjseditor-panel-controls .hjs-tooltip{
    position: absolute;
    left: 0;
    top: 34px;
    pointer-events: none;
    background-color: #000;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-family: monospace;
    font-size: 13px;
}
.hjseditor-panel-controls .hjs-tooltip:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    transition: opacity .2s ease-in-out .2s;
    border-style: solid;
    left: 10%;
    top: -5px;
    border-left-color: transparent;
    border-bottom-color: #000;
    border-right-color: transparent;
    border-top-color: transparent;
    border-left-width: 6px;
    border-bottom-width: 6px;
    border-right-width: 6px;
    border-top-width: 0;
}
.hjseditor-panel-controls > [data-title]:hover .hjs-tooltip{
    visibility: visible;
    opacity: 1;
}
.hjs-editor-control .hjs-button.hjsicon-ctrl,
.hjs-editor-control .hjs-button.hjsicon-circle-up{
	min-width: auto;
    padding-right: 16px;
}
.hjs-editor-control .hjs-button.hjsicon-ctrl::before,
.hjs-editor-control .hjs-button.hjsicon-circle-up::before{
	position: absolute;
    right: 1px;
    top: 3px;
    transform: rotateX(180deg);
}

.hjs-editor-control .hjs-popup{
    position: absolute;
    display: none;
    z-index: 997;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.15);
    min-width: 33px;
    top: 32px;
}

.hjs-editor-control .hjs-popup.hjs-button-fontcolor,
.hjs-editor-control .hjs-popup.hjs-button-highlight{
    min-width: 150px;
}
.hjs-editor-control .hjs-popup.hjs-button-table{
    min-width: 155px;
}
.hjs-editor-control .hjs-popup.hjs-open{
	display: block;
}

.hjs-editor-control .hjs-popup:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    transition: opacity .2s ease-in-out .2s;
    border-style: solid;
    left: 3%;
    top: -6px;
    border-left-color: transparent;
    border-bottom-color: #fff;
    border-right-color: transparent;
    border-top-color: transparent;
    border-left-width: 6px;
    border-bottom-width: 6px;
    border-right-width: 6px;
    border-top-width: 0px;
}

.hjs-editor-control .hjs-popup .hjs-list{
    list-style: none;
    margin: 0px;
    padding: 0;
    user-select: none;
    display: flex;
    flex-direction: column;
}
.hjs-editor-control .hjs-popup .hjs-list li{
    display: block;
}

.hjs-editor-panel .hjs-popup .hjs-list li button{
    font-family: monospace;
    font-size: 13px;
    text-indent: 3px !important;
}
.hjs-editor-panel .hjs-popup .hjs-list li button::before{
    font-size: 16px;
}

.hjs-editor-control .hjs-popup .hjs-list li > button.fa::before{
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    font-family: 'FontAwesome';
}
.hjs-editor-control .hjs-popup .hjs-list li > button.hjs-files {
   text-indent: 10px;
}
.hjs-editor-control .hjs-popup .hjs-list li > button.hjs-files:before {
    text-indent: 0px;
 }
.hjs-editor-control .hjs-popup .hjs-list li .hjs-no-pointer{
    justify-content: left;
}
.hjs-editor-control .hjs-popup .hjs-list li .hjs-no-pointer > *{
    margin: 0px;
    padding: 0px;
    user-select: none;
    pointer-events: none;
}

.hjs-editor-control .hjs-popup.hjs-button-table .hjs-list,
.hjs-editor-control .hjs-popup.hjs-button-fontcolor .hjs-list,
.hjs-editor-control .hjs-popup.hjs-button-highlight .hjs-list{
    flex-direction: row;
    flex-wrap: wrap;
}

.hjs-editor-control .hjs-popup.hjs-button-table .hjs-list li,
.hjs-editor-control .hjs-popup.hjs-button-fontcolor .hjs-list li,
.hjs-editor-control .hjs-popup.hjs-button-highlight .hjs-list li{
    margin: 3px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.hjs-editor-control .hjs-popup.hjs-button-fontcolor .hjs-list li > button,
.hjs-editor-control .hjs-popup.hjs-button-highlight .hjs-list li > button{
    height: 24px;
    width: 24px;
    border-radius: 2px;
}
.hjs-editor-control .hjs-popup.hjs-button-table .hjs-list li{
    margin: 1px;
    border-radius: 0px;
}
.hjs-editor-control .hjs-popup.hjs-button-table .hjs-list li > button{
    height: 26px;
    width: 15px;
    border-radius: 0px;
}

.hjs-editor-control .hjs-popup.hjs-button-fontcolor .hjs-list li:hover,
.hjs-editor-control .hjs-popup.hjs-button-highlight .hjs-list li:hover{
    border-color: rgb(177, 177, 236);
}


.hjs-toolbar__separator{
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-width: 1px;
    background: #ccc;
    margin: 5px 0;
}

.hjseditor-iframe-editor blockquote {
    overflow: hidden;
    padding-right: 1.5em;
    padding-left: 1.5em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: 5px solid #ccc;
}

.hjs-editor-overpopup{
    position: absolute;
    z-index: 997;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.15);
    min-width: 150px;
    top: 45px;
    left: 0px;
    padding: 10px;
}
.hjs-fake-link-selection{
    background-color: rgb(31 177 255 / 30%);
    position: relative;
}
.hjs-editor-overpopup:after, .hjs-editor-overpopup:before {
    width: 0;
    height: 0;
    border-style: solid;
    content: "";
    position: absolute;
    left: 10%;
    margin-left: 0;
    top: -8px;
    z-index: 999;
}
.hjs-editor-overpopup:after, .hjs-editor-overpopup:before {
    border-left-width: 7px;
    border-bottom-width: 7px;
    border-right-width: 7px;
    border-top-width: 0;

    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
}

.hjs-editor-overpopup:before {
    border-bottom-color: #ccc;
}

.hjs-editor-overpopup:after {
    border-bottom-color: #ffffff;
    margin-top: 1px;
}

.hjs-editor-overpopup > .hjs-overpopup-continer{
    display: flex;
    margin-top: 10px;
}

.hjs-overpopup-continer .hjs-popup-get-link {
    background: hsl(0deg 0% 100%);
    border: 1px solid hsl(0deg 0% 78%);
    padding: 5px 10px;
    min-width: 100px;
    min-height: 20px;
    transition: box-shadow .1s ease-in-out,border .1s ease-in-out;
}

.hjs-overpopup-continer .hjs-popup-get-link:focus {
    outline: none;
    border: 1px solid hsl(208deg 79% 51%);
    box-shadow: 0 0 0 3px #bcdefb;
}

.hjs-overpopup-continer .hjs-popup-get-link.hjs-popup-link-image-re {
    background: hsl(0deg 0% 100%);
    border: 1px solid hsl(0deg 0% 78%);
    padding: 5px 10px;
    max-width: 40px;
    min-height: 20px;
    transition: box-shadow .1s ease-in-out,border .1s ease-in-out;
}

.hjs-overpopup-continer > button.hjs-button{
    white-space: nowrap;
    cursor: default;
    vertical-align: middle;
    text-align: center;
    min-width: 27px;
    line-height: 1;
    font-size: inherit;
    border: 1px solid transparent;
    transition: box-shadow .2s ease-in-out,border .2s ease-in-out;
    -webkit-appearance: none;
    background: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 2px;
    margin-left: 10px;
    font-family: 'FontAwesome';
}

.hjs-overpopup-continer > button.hjs-popup-button-add{
    color: #008a00;
}
.hjs-overpopup-continer > button.hjs-popup-button-remove{
    color: #db3700;
}

.hjs-overpopup-continer > button.hjs-button:hover{
    background: #eeeeee;
}

.hjs-editor-overpopup > .hjs-editor-overpopup-label{
    line-height: 1.5em;
    font-weight: 600;
}

.hjs-file-hidden{
    opacity: 0;
    position: absolute;
    visibility: hidden;
}