/* 일일업무보고 댓글 목록 색상추가 */
table.alternate_color tr:nth-child(2n) {
     background-color: #F9F9F9;
}
table.alternate_color tr{
     height: 25px;
}

/* 일일업무보고 목록 조회수 말풍선 */
#reportListTB div {
    position: relative;
    display: inline-block;
}
#rdCntSpan {
    display: block;
    width: 100px;
}

#rrCntSpan {
    display: block;
    width: 100px;
}

.arrow_box {
  display: none;
  position: absolute;
  width: 100px;
  padding: 10px;
  left: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #42647B;
  color: #fff;
  font-size: 14px;
  text-align: left;
}
.arrow_box:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: solid transparent;
  border-color: rgba(51, 51, 51, 0);
  border-bottom-color: #42647B;
  border-width: 10px;
  pointer-events: none;
  content: " ";
}

.arrow_box2 {
  display: none;
  position: absolute;
  width: 166px;
  padding: 10px;
  left: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #42647B;
  color: #fff;
  font-size: 14px;
  text-align: left;
}
.arrow_box2:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: solid transparent;
  border-color: rgba(51, 51, 51, 0);
  border-bottom-color: #42647B;
  border-width: 10px;
  pointer-events: none;
  content: " ";
}


#rdCntSpan:hover + p.arrow_box {
  display: block;
}

#rrCntSpan:hover + p.arrow_box2 {
  display: block;
}


/**
 * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
 * This file is licensed under the terms of the MIT License (see LICENSE.md).
 */

:root {
	--ck-base-spacing: 1em;
	--ck-color-white: #fff;
	--ck-color-green: #279863;
	--ck-color-blue: #1a9aef;
	--ck-container-width: 1285px;
	--ck-sidebar-width: 350px;
	--ck-editor-min-height: 1400px;
	--ck-editor-z-index: 10;
}

/* --------- EDITOR STYLES  ---------------------------------------------------------------------------------------- */

.editor__editable,
/* Classic build. */
main .ck-editor[role='application'] .ck.ck-content,
/* Decoupled document build. */
.ck.editor__editable[role='textbox'],
.ck.ck-editor__editable[role='textbox'],
/* Inline & Balloon build. */
.ck.editor[role='textbox'] {
	width: 100%;
	background: #fff;
	font-size: 16px;
	font-family: GyeonggiTitle;
	line-height: 1em;
	min-height: 250px;
	padding: 0.5em 0.5em;
}

.ck.ck-toolbar.ck-toolbar_grouping { /* zoom: 0.8 !important; */ }
.ck.ck-icon { font-size: 9px !important; }
.ck.ck-toolbar { background: white; padding: 0px; border: 1px solid #c4c4c4; }
.ck.ck-toolbar { border-radius: 0; }
.ck.ck-toolbar { user-select: none; display: flex; flex-flow: row nowrap; align-items: center; }
.ck.ck-button, a.ck.ck-button { min-width: 1em !important; min-height: 1em !important; }

.ck.ck-editor__editable {
	background: #fff;
	border: 0px solid hsl(0, 0%, 70%);
	width: 100%;
	min-height: 100px;
}

/* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
.ck.ck-editor__editable {
	position: relative;
	z-index: var(--ck-editor-z-index);
}

.ck.ck-content ul {
  /* Default user agent stylesheet, you can change it to your needs. */
  padding-left: 5px;
    line-height: 1.5em;
}

.ck.ck-content ul li {
  list-style-type: inherit;

}
.ck.ck-content ol {
  /* Default user agent stylesheet, you can change it to your needs. */
  padding-left: 5px;
    line-height: 1.5em;
}


.ck.ck-label {
    display: none;
}