@charset "utf-8";
* {
  box-sizing: border-box;
}

/* 공통컴포넌트 CSS */
/*  -------------------- display  -------------------- */
.container {
  overflow-x: hidden;
  width: 100%;
  min-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}
 .container::after {
  content: "";
  display: block;
  clear: both;
} 
.dp-none {
  display: none;
}
.dp-block {
  display: block;
}
.dp-in-block {
  display: inline-block;
}
.po-rel {
  position: relative;
}
.po-abslut {
  position: absolute;
  z-index: 1;
}
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.flex.wrap {
  flex-wrap: wrap;
  overflow: visible;
}
.flex.ve-top {
  align-items: flex-start;
}
.flex.ve-center {
  align-items: center;
}
.flex.between {
  justify-content: space-between;
}
.flex.right {
  justify-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.ul-flex {
  display: flex;
  flex-wrap: wrap;
}
.ul-col2 > li {
  width: 49.5%;
  margin-right: 1%;
}
.ul-col3 > li {
  width: calc((100% - 3%) / 3);
  margin-right: 1.5%;
}
.ul-col4 > li {
  width: calc((100% - 4.5%) / 4);
  margin-right: 1.5%;
}
.ul-col5 > li {
  width: calc((100% - 4%) / 5);
  margin-right: 1%;
}
.ul-col2 > li:nth-child(2n),
.ul-col3 > li:nth-child(3n),
.ul-col4 > li:nth-child(4n),
.ul-col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 1900px) {
  .full1900 {
    flex-wrap: wrap;
  }
  .full1900 > li {
    width: 100%;
    margin-top: 15px;
  }
  .full1900 > li:first-of-type {
    margin-top: 0;
  }
}
.in-ve-center {
  vertical-align: middle;
}
.in-ve-top {
  vertical-align: top;
}
.in-ve-bottom {
  vertical-align: bottom;
}
.in-ve-base {
  vertical-align: baseline;
}
.in-ve-sub {
  vertical-align: sub;
}
.in-ve-txt-top {
  vertical-align: text-top;
}
/*  -------------------- button  -------------------- */
a {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
button {
  vertical-align: middle;
  cursor: pointer;
}
*[onclick] {
  cursor: pointer;
}

.icon-btn-sm {
  box-sizing: border-box;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  height: 34px;
}
.icon-btn-md {
  box-sizing: border-box;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  height: 40px;
}
.icon-btn-lg {
  box-sizing: border-box;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  height: 46px;
}
.btn-lg {
  box-sizing: border-box;
  padding: 0 18px;
  height: 44px;
  line-height: 42px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.btn-lg:focus {
  line-height: 40px;
}
.btn-md {
  box-sizing: border-box;
  padding: 0 16px;
  height: 38px;
  line-height: 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.btn-md:focus {
  line-height: 34px;
}
.btn-sm {
  box-sizing: border-box;
  padding: 0 14px;
  height: 32px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.btn-sm:focus {
  line-height: 28px;
}
.btn-bg-blue {
  background: #5379fd;
  border: 1px solid #5379fd;
  color: #fcfcfc;
}
.btn-bg-blue:hover {
  background: #2e5bfa;
  border: 1px solid #2e5bfa;
}
.btn-bg-blue:focus {
  background: #5379fd;
  border: 2px solid #2e5bfa;
}
.btn-bg-light-blue {
  background: #d1e1ff;
  border: 1px solid #d1e1ff;
  color: #5379fd;
}
.btn-bg-light-blue:hover {
  background: #b2ccff;
  border: 1px solid #b2ccff;
}
.btn-bg-light-blue:focus {
  background: #d1e1ff;
  border: 2px solid #5379fd;
}
.btn-line-blue {
  color: #5379fd;
  background: #fff;
  border: 1px solid #5379fd;
}
.btn-line-blue:hover {
  background: #f2f8ff;
}
.btn-line-blue:focus {
  border: 2px solid #5379fd;
}
.btn-noline-blue {
  color: #5379fd;
  background: transparent;
  border: 1px solid transparent;
}
.btn-noline-blue:hover {
  background: #f1f2f4;
  border: 1px solid #f1f2f4;
}
.btn-noline-blue:focus {
  background: #f1f2f4;
  border: 2px solid #e4e5e8;
}
.btn-noline-blue.bg-blue:hover {
  background: #e7f0ff;
  border: 0;
}
.btn-noline-blue.bg-blue:focus {
  background: #e7f0ff;
  border: 0;
}
.btn-bg-dark {
  color: #fcfcfc;
  background: #414650;
  border: 1px solid #414650;
}
.btn-bg-dark:hover {
  background: #111111;
  border: 1px solid #111111;
}
.btn-bg-dark:focus {
  background: #414650;
  border: 2px solid #111111;
}
.btn-line-dark {
  color: #111111;
  background: #fcfcfc;
  border: 1px solid #111111;
}
.btn-line-dark:hover {
  background: #f1f2f4;
}
.btn-line-dark:focus {
  background: #f1f2f4;
  border: 2px solid #111111;
}
.btn-line-gray {
  color: #414650;
  background: #fcfcfc;
  border: 1px solid #83878f;
}
.btn-line-gray:hover {
  background: #f1f2f4;
}
.btn-line-gray:focus {
  background: #f1f2f4;
  border: 2px solid #83878f;
}
.btn-bg-gray {
  color: #414650;
  background: #f1f2f4;
  border: 1px solid #f1f2f4;
}
.btn-bg-gray:hover {
  background: #e4e5e8;
}
.btn-bg-gray:focus {
  background: #f1f2f4;
  border: 2px solid #abafb6;
}
.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus {
  color: #abafb6;
  background: #e4e5e8;
  border: 1px solid #e4e5e8;
}
.btn-disabled:focus {
  border: 2px solid #e4e5e8;
}
.icon-btn-sm.add,
.icon-btn-md.add,
.icon-btn-lg.add,
.icon-btn-sm.add.no-bg,
.icon-btn-md.add.no-bg,
.icon-btn-lg.add.no-bg {
  padding-left: 10px;
  font-weight: 500;
}
.icon-btn-sm.search {
  padding: 5px 14px 8px 7px;
}
.icon-btn-sm.search .ic.search {
  background-size: 20px;
}
.icon-btn-md.search {
  padding: 9px 16px 10px 10px;
}
.icon-btn-lg.search {
  padding-left: 10px;
}
.datatable-list-btn {
  position: relative;
  bottom: 50px;
}
.pop-notice,
.pop-mypage,
.pop-more-btn {
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 1px 4px hsla(0, 0%, 0%, 0.2);
  border-radius: 4px;
  min-width: 140px;
  white-space: nowrap;
  text-align: left;
  z-index: 10;
}
.pop-more-btn {
  top: 33px;
  right: 15px;
}
.pop-more-btn li {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 14px;
}
/*  --------------------  input  & select  ---------------  ----- */
select {
  width: 150px;
  height: 32px;
  border: 0;
  padding: 0 25px 0 10px;
  background: url(../img/ic-arrow-bottom.png) no-repeat center right 10px;
  background-size: 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-family: "Noto Sans KR";
}
select.auto-h {
  height: auto;
  vertical-align: baseline;
}
select.round {
  border: 1px solid #cccfd3;
  border-radius: 4px;
}
select.round[disabled] {
  border: 1px solid transparent;
  background: none;
}
select.round[disabled].fc-black {
  color: #111;
  opacity: 1;
}
select {
  box-sizing: border-box;
  border-radius: 4px;
}
select:hover {
  border: 1px solid #5379fd !important;
}
.toolbar select:hover {
  border: 1px solid #cccfd3 !important;
  border-right: 0 !important;
}

select:focus {
  border: 2px solid #5379fd !important;
}
select:hover.no-border,
select:focus.no-border,
select:hover[disabled],
select:focus[disabled] {
  border: 0;
}
input {
  box-sizing: border-box;
  font-family: "Noto Sans KR";
}
input[type="text"],
input[type="password"] {
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  border: 1px solid #cccfd3;
}

input[type="text"][readonly] {
  background-color: transparent;
  cursor: default;
}
input:hover {
  border: 1px solid #5379fd !important;
}
input:focus {
  border: 2px solid #5379fd !important;
}

input[type="text"].no-border,
input[type="text"][readonly]:not(.not),
input[type="text"][disabled]:not(.not),
input:hover.no-border,
input:hover[readonly]:not(.not),
input:hover[disabled]:not(.not),
input:focus.no-border,
input:focus[readonly]:not(.not),
input:focus[disabled]:not(.not) {
  border: 0 !important;
}

input[type="checkbox"].chk-round + label,
input[type="radio"].chk-round + label {
  background-color: transparent;
  background-image: url(../img/chk-round.png);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: left 11px top 10px;
  padding: 7px 7px 7px 35px;
  display: inline-block;
  line-height: 22px;
  font-size: 14px;
  min-height: 22px;
  color: #111;
  vertical-align: middle;
  cursor: pointer;
  letter-spacing: 0.01em;
}
input[type="checkbox"].chk-round:checked + label,
input[type="radio"].chk-round:checked + label {
  background-color: #f2f8ff;
  background-image: url(../img/chk-round-on.png);
}
input[type="checkbox"].chk-square + label,
input[type="radio"].chk-square + label {
  background-color: transparent;
  background-image: url(../img/chk-square.png);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: left 11px center;
  padding: 7px 7px 7px 35px;
  display: inline-block;
  line-height: 22px;
  font-size: 14px;
  min-height: 22px;
  color: #111;
  vertical-align: middle;
  cursor: pointer;
  letter-spacing: 0.01em;
}
input[type="checkbox"].chk-square:checked + label,
input[type="radio"].chk-square:checked + label {
  background-color: #f2f8ff;
  background-image: url(../img/chk-square-on.png);
}
input[type="checkbox"].chk-square.no-bg:checked + label,
input[type="radio"].chk-square.no-bg:checked + label {
  background-color: transparent;
  background-image: url(../img/chk-square-on.png);
}
input[type="checkbox"].chk-square.blue.no-bg:checked + label,
input[type="radio"].chk-square.blue.no-bg:checked + label {
  background-color: transparent;
  background-image: url(../img/chk-square-blue-on.png);
}
input[type="checkbox"].chk-square.pl0 + label,
input[type="radio"].chk-square.pl0 + label,
input[type="checkbox"].chk-round.pl0 + label,
input[type="radio"].chk-round.pl0 + label {
  background-position: left center;
  padding: 7px 7px 7px 25px;
}
input[type="checkbox"].chk-square.bold:checked + label,
input[type="radio"].chk-square.bold:checked + label,
input[type="checkbox"].chk-round.bold:checked + label,
input[type="radio"].chk-round.bold:checked + label {
  font-weight: 500;
}
input[type="file"] {
  display: none !important;
}
input.search-bar {
  border-radius: 4px;
  padding: 8px 40px 8px 12px;
  background: url(../img/ic-search.png) no-repeat center right 17px;
  background-size: 20px;
  background-color: #f1f2f4;
}
input.search-bar.no-bg {
  background-color: transparent;
}
input.search-bar[value]:not(.icon-bg),
input.search-bar.no-border[value]:not(.icon-bg) {
  background: none;
}
input.search-bar:hover,
input.search-bar[value]:hover,
input.search-bar.no-border[value]:hover {
  background: url(../img/ic-search.png) no-repeat center right 17px;
  background-size: 20px;
}
input.search-bar.no-border[value]:hover,
input.search-bar.no-border:hover {
  background-color: #e4e5e8;
}
input.search-bar:focus,
input.search-bar[value]:focus,
input.search-bar.no-border[value]:focus {
  background: url(../img/ic-search-dark.png) no-repeat center right 17px;
  background-size: 20px;
}
input.search-bar.blue:focus {
  background: url(../img/ic-search-blue.png) no-repeat center right 17px;
  background-size: 20px;
}
input.search-bar.no-border:focus,
input.search-bar.no-border[value]:focus {
  background-color: #f1f2f4;
}
input.search-bar.border {
  border: 1px solid #cccfd3;
  background-color: transparent;
}
input.search-bar.edit {
  background: url(../img/ic-edit-lightgray.png) no-repeat center right 17px;
  background-size: 20px;
}
input.search-bar.edit:hover,
input.search-bar.edit[value]:hover {
  background: #f1f2f4 url(../img/ic-edit-dark.png) no-repeat center right 17px;
  background-size: 20px;
}
input.search-bar.edit:focus,
input.search-bar.edit[value]:focus {
  background: #f1f2f4 url(../img/ic-search-dark.png) no-repeat center right 17px;
  background-size: 20px;
}
textarea:hover {
  border: 1px solid #5379fd !important;
}
textarea:focus {
  border: 2px solid #5379fd !important;
}
textarea:hover.no-border,
textarea:hover[readonly],
textarea:focus.no-border,
textarea:focus[readonly] {
  border: 0 !important;
}

textarea {
  height: auto;
  resize: none;
  background: none;
  font-family: "Noto Sans KR";
  padding: 8px 11px;
}
textarea::placeholder {
  color: #83878f;
}
.text-area {
  position: relative;
}
.text-area textarea {
  height: 50px;
  border: 1px solid #cccfd3;
  border-radius: 4px;
}
.text-area.h300 textarea {
  height: 300px;
}
.text-area textarea[readonly] {
  border: 0;
  padding-top: 0;
}

.text-area button.send {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 1px;
  right: 1px;
  background: #f1f2f4;
  border-radius: 0 4px 4px 0;
}
.text-area textarea:focus + button.send {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 2px;
  right: 2px;
  background: #d1e1ff;
  border-radius: 0 2px 2px 0;
}
.text-area textarea:focus + button.send .ic.send {
  background-image: url(../img/ic-send-blue.png);
}
pre {
  line-height: 1.4;
  font-size: 14px;
}
/*  --------------------  font  -------------------- */

.txt-xxx-lg {
  font-size: 22px;
  line-height: 1.4;
}
.txt-xx-lg {
  font-size: 20px;
  line-height: 1.4;
}
.txt-x-lg {
  font-size: 18px;
  line-height: 1.3;
}
.txt-lg {
  font-size: 16px;
  line-height: 1.3;
}
.txt-md {
  font-size: 15px;
  line-height: 1.2;
}
.txt-sm {
  font-size: 14px;
  line-height: 1.2;
}
.txt-x-sm {
  font-size: 13px;
  line-height: 1.2;
}
.txt-xx-sm {
  font-size: 12px;
  line-height: 1.2;
}
.fw300 {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.fw500 {
  font-weight: 500;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}
.txt-hover-bold:hover {
  font-weight: bold;
}
.txt-underline {
  text-decoration: underline;
}
/*  --------------------  color  -------------------- */

.fc-red-bb {
  color: #bb0606;
}
.fc-red-ed {
  color: #ed4848;
}
.fc-red-eb {
  color: #eb5c5c;
}
.fc-blue-2e {
  color: #2e5bfa;
}
.fc-blue-53 {
  color: #5379fd;
}
.fc-gray-ab {
  color: #abafb6;
}
.fc-gray-83 {
  color: #83878f;
}
.fc-gray-57 {
  color: #575c64;
}
.fc-gray-41 {
  color: #414650;
}
.no-bg {
  background: none;
}
.bg-ff {
  background: #ffffff;
}
.bg-f1 {
  background: #f1f2f4;
}
.bg-e4 {
  background: #e4e5e8;
}
.bg-fc {
  background: #fcfcfc;
}
.bg-blue-e7 {
  background: #e7f0ff;
}
.bg-blue-f2 {
  background: #f2f8ff;
}
.bd-cc {
  border: 1px solid #cccfd3;
  border-radius: 4px;
}
.border-gray-cc {
  border: 1px solid #cccfd3;
}
.bd-top-gray-e4 {
  border-top: 1px solid #e4e5e8;
}
.gradient-fc-bottom {
  position: relative;
}
.gradient-fc-bottom::after {
  content: "";
  display: block;
  width: 95%;
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 70px;
  background: linear-gradient(hsla(0, 0%, 100%, 0) 0%, #fcfcfc 100%);
  z-index: 1;
}

.gradient-fc-bottom:hover::after,
.gradient-fc-bottom.no-content::after {
  display: none;
}

.p20.gradient-fc-bottom {
  padding-bottom: 5px;
}
.p20.gradient-fc-bottom.no-content,
.p20.gradient-fc-bottom:last-of-type {
  padding-bottom: 20px;
}
.state.state00 {
  background: #abafb6;
}
.state.state01 {
  background: #ffdcdc;
}
.state.state02 {
  background: #ffb7b7;
}
.state.state03 {
  background: #ff8a8a;
}
.state.state04 {
  background: #ff6363;
}
.state.state05 {
  background: #ff4646;
}
.bg.square {
  display: inline-block;
  width: 3px;
  height: 13px;
  background: #000;
  vertical-align: bottom;
}
.bg.circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}
/*  --------------------  icon -------------------- */

.ic {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ic.xx-small {
  width: 14px;
  height: 14px;
}
.ic.x-small {
  width: 16px;
  height: 16px;
}
.ic.small {
  width: 18px;
  height: 18px;
}
.ic.normal {
  width: 20px;
  height: 20px;
}
.ic.big {
  width: 32px;
  height: 32px;
}
.ic.square-filter {
  background-image: url(../img/square-filter.png);
}
.ic.filter {
  background-image: url(../img/ic-filter.png);
}
.ic.filter.on {
  background-image: url(../img/ic-filter-on.png);
}
.ic.line-close {
  background-image: url(../img/ic-line-close.png);
}
.ic.big-line-close {
  background-image: url(../img/ic-big-line-close.png);
}
.ic.circle-close {
  background-image: url(../img/ic-circle-close.png);
}
.ic.download {
  background-image: url(../img/ic-download.png);
  width: 20px;
  height: 20px;
}
.ic.upload {
  background-image: url(../img/ic-upload.png);
  width: 20px;
  height: 20px;
}
.ic.search {
  background-image: url(../img/ic-search.png);
}
.ic.search.blue {
  background-image: url(../img/ic-search-blue.png);
}
.ic.search.dark {
  background-image: url(../img/ic-search-dark.png);
}
.ic.search.white {
  background-image: url(../img/ic-search-white.png);
}
.ic.merge {
  background-image: url(../img/ic-merge.png);
}
.ic.trash {
  background-image: url(../img/ic-trash.png);
}
.ic.trash.gray {
  background-image: url(../img/ic-trash-gray.png);
}
.ic.edit {
  background-image: url(../img/ic-edit.png);
}
.ic.edit.gray {
  background-image: url(../img/ic-edit-gray.png);
}
.ic.edit.gray:hover,
.ic.edit.dark {
  background-image: url(../img/ic-edit-dark.png);
}
.ic.edit-notice {
  background-image: url(../img/ic-edit-notice.png);
}
.ic.line-chk {
  background-image: url(../img/ic-chk-line.png);
}
.ic.edit.line-chk {
  width: 32px;
  height: 32px;
  background-color: #e7f0ff;
  background-size: 24px;
  background-image: url(../img/ic-chk-line.png);
  border-radius: 4px;
}
.ic.edit.line-chk:hover {
  background-color: #d1e1ff;
}
.ic.refrash {
  background-image: url(../img/ic-refresh.png);
}
.ic.send {
  background-image: url(../img/ic-send.png);
}
.ic.send.active {
  background-image: url(../img/ic-send-blue.png);
}
.ic.add {
  background-image: url(../img/ic-add.png);
}
.ic.add.blue {
  background-image: url(../img/ic-add-blue.png);
}
.ic.circle-add {
  background-image: url(../img/ic-circle-add.png);
}
.ic.circle-add:hover,
.ic.circle-add-on {
  background-image: url(../img/ic-circle-add-on.png);
}
.ic.file-download {
  background-image: url(../img/ic-down-disk.png);
}
.ic.file-download:hover {
  background-image: url(../img/ic-down-disk-on.png);
}
.ic.file-download.blue {
  background-image: url(../img/ic-down-disk-blue.png);
}
.ic.fix {
  background-image: url(../img/ic-fix.png);
}
.ic.link {
  background-image: url(../img/ic-file-link.png);
}
.ic.ppt {
  background-image: url(../img/ic-file-ppt.png);
}
.ic.zip {
  background-image: url(../img/ic-file-zip.png);
}
.ic.excel {
  background-image: url(../img/ic-file-excel.png);
}
.ic.word {
  background-image: url(../img/ic-file-word.png);
}
.ic.file-upload {
  background-image: url(../img/ic-file-upload.png);
}
.ic.confirm {
  background-image: url(../img/ic-confirm.png);
}
.ic.arrow.left {
  background-image: url(../img/ic-arrow-left.png);
}
.ic.arrow.right {
  background-image: url(../img/ic-arrow-right.png);
}
.ic.big-arrow.right {
  background-image: url(../img/ic-big-arrow-right.png);
}
.ic.big-arrow.right:hover:not(.blue),
.ic.big-arrow.right-on {
  background-image: url(../img/ic-big-arrow-right-on.png);
  width: 24px;
  height: 24px;
  margin-right: -5px;
}
.ic.big-arrow.right.blue {
  background-image: url(../img/ic-big-arrow-right-blue.png);
}
.ic.admin.login {
  background-image: url(../img/ic-admin-login.png);
}
.ic.admin.login:hover {
  background-image: url(../img/ic-admin-login-on.png);
}
.ic.admin.logout {
  background-image: url(../img/ic-admin-logout.png);
}
.ic.admin.logout:hover {
  background-image: url(../img/ic-admin-logout-on.png);
}
.ic.calendar {
  background-image: url(../img/ic-calendar.png);
}
.ic.calendar.dark {
  background-image: url(../img/ic-calendar-dark.png);
}
.ic.calendar.gray {
  background-image: url(../img/ic-calendar-gray.png);
}
.ic.big-calendar {
  background-image: url(../img/ic-big-calendar.png);
}
.ic.big-calendar.on {
  background-image: url(../img/ic-big-calendar-on.png);
}
.ic.item-list {
  background-image: url(../img/ic-item-list.png);
}
.ic.item-list.on {
  background-image: url(../img/ic-item-list-on.png);
}
.ic.more {
  background-image: url(../img/ic-more.png);
}
.ic.bag {
  background-image: url(../img/ic-bags-dark.png);
}
.ic.money {
  background-image: url(../img/ic-money-dark.png);
}
.ic.dropdown {
  background-image: url(../img/ic-dropdown.png);
}
.ic.line-radio {
  background-image: url(../img/ic-radio-line.png);
}
.ic.line-radio.on {
  background-image: url(../img/ic-radio-line-on.png);
}
.ic.fill-radio.blue {
  background-image: url(../img/ic-radio-fill-blue.png);
}
.ic.fill-radio.lightblue {
  background-image: url(../img/ic-radio-fill-lightblue.png);
}
.ic.fill-radio.gray {
  background-image: url(../img/ic-radio-fill-gray.png);
}
/*  --------------------  box & line  -------------------- */

.no-border {
  border: 0;
}
.round-box,
.ul-round-box li {
  border-radius: 10px;
  background: #fcfcfc;
  padding: 20px;
}

.ul-round-box.shadow li {
  box-shadow: 0px 2px 6px hsla(0, 0%, 0%, 0.2);
}
.shadow-round-box {
  padding: 24px;
  background: #fcfcfc;
  box-shadow: 0px 2px 6px hsla(0, 0%, 0%, 0.2);
  border-radius: 4px;
}
.round-box-ab {
  border: 1px solid #abafb6;
  border-radius: 4px;
}
.round-box-e4 {
  border: 1px solid #e4e5e8;
  border-radius: 4px;
}
.round-box-ccc {
  border: 1px solid #cccfd3;
  border-radius: 4px;
}
.dash-box-ccc {
  border: 1px dashed #cccfd3;
  border-radius: 4px;
}
.ul-right-line {
  padding: 0;
}
.ul-right-line li {
  padding: 15px;
  border-right: 1px solid #e4e5e8;
}
.ul-right-line li:last-of-type {
  border-right: 0;
}
/*  --------------------  scroll  -------------------- */

.scroll {
  height: 150px;
  overflow-y: scroll;
}

.scroll.horizontal {
  height: auto;
  overflow-y: visible;
  overflow-x: scroll;
}
html,
.wrap,
.scroll {
  scrollbar-width: thin;
  scrollbar-color: #cccfd3 #fcfcfc;
}
html::-webkit-scrollbar,
.wrap::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 15px;
}
html::-webkit-scrollbar-track {
  background: #fcfcfc;
  border: 0;
  border-top: 1px solid #e4e5e8;
}
.wrap::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track,
.static .pop-content.scroll::-webkit-scrollbar-track,
.static .pop-content .scroll::-webkit-scrollbar-track {
  background: #fcfcfc;
  border-radius: 10px;
  border: 0 solid transparent;
}
.pop-content.scroll::-webkit-scrollbar-track,
.pop-content .scroll::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb,
.wrap::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 4px solid transparent;
  background-color: #cccfd3;
  background-clip: padding-box;
}
html::-webkit-scrollbar-thumb {
  border: 5px solid transparent;
  border-top-width: 4px;
}

.wrap.transparent,
.scroll.transparent {
  scrollbar-width: thin;
  scrollbar-color: #cccfd3 transparent;
}
.wrap.transparent::-webkit-scrollbar-track,
.scroll.transparent::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  * {
    scrollbar-arrow-color: #fcfcfc;
    scrollbar-3dlight-color: #cccfd3;
    scrollbar-darkshadow-color: #cccfd3;
    scrollbar-face-color: #cccfd3;
    scrollbar-hightlight-color: #cccfd3;
    scrollbar-shadow-color: #cccfd3;
    scrollbar-track-color: #fcfcfc;
  }
  .wrap.transparent,
  .scroll.transparent {
    scrollbar-track-color: transparent;
  }
  .pop-content.scroll,
  .pop-content .scroll {
    scrollbar-track-color: #fff;
  }
}
table tr th.impact,
.impact {
  font-weight: 500;
}
table tr th.impact::after,
.impact::after {
  display: inline-block;
  content: "*";
  color: #df2a2a;
  padding-left: 2px;
  margin-right: -4px;
}

/*  --------------------  progress  -------------------- */

.progress-wrap {
  width: 100%;
  height: 8px;
  position: relative;
  overflow: hidden;
  background: #e5e5e5;
  border-radius: 5px;
}
.progress-wrap.w60p {
  width: 60%;
}
.progress-wrap .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background: #30e46c;
  border-radius: 4px;
}
.state {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
  background: transparent;
}

/*  --------------------  tab-menu (TOP)  -------------------- */

.tab-menu {
  width: calc(100vw - 250px);
  position: fixed;
  padding: 8px 8px 6px 17px;
  z-index: 9;
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tab-menu {
    padding: 8px 8px 6px 17px;
  }
}

.tab-menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: #fcfcfc;
  position: absolute;
  left: 0;
  bottom: 0;
}
.tab-menu li {
  position: relative;
  display: inline-block;
  margin-right: -4px;
  width: calc(100% / 7);
  min-width: 70px;
  max-width: 224px;
}
.tab-menu li::after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #cccfd3;
}
.tab-menu li.active::after,
.tab-menu li.bd0::after {
  background-color: transparent;
}
.tab-menu li a {
  width: calc(100% - 2px);
  padding: 10px 30px 10px 15px;
  display: inline-block;
  margin-right: -4px;
  border-radius: 10px 10px 0 0;
  color: #575c64;
  font-size: 16px;
  line-height: 24px;
}
.tab-menu li a p {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.tab-menu li.active a {
  position: relative;
  background: #fcfcfc;
  color: #111;
  font-weight: bold;
}
.tab-menu li.active a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: -10px;
  background: #fff;
}
.tab-menu li.active a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  right: -10px;
  background: #fff;
}
.tab-menu li.active a p::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 0px;
  left: -17px;
  background: #e4e5e8;
  border-radius: 50%;
}
.tab-menu li.active a p::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  bottom: 0px;
  right: -17px;
  background: #e4e5e8;
  border-radius: 50%;
  z-index: 1;
}
.tab-menu li button {
  position: absolute;
  display: inline-block;
  margin-right: -4px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/ic-line-close.png);
  background-size: 12px;
}
.tab-menu li button:hover {
  background-image: url(../img/ic-circle-close.png);
  background-size: 18px;
}

/*  --------------------  toolbar  -------------------- */
/* .toolbar,
.no-bar {
  margin-top: 58px;
} */
.toolbar {
  padding: 8px 0 12px;
  border-bottom: 1px solid #e4e5e8;
}
.toolbar.p8 {
  padding: 8px 0 8px;
}
.toolbar .btn-bg-dark {
  margin-left: 13px;
}
.toolbar .btn-line-gray {
  margin-left: 24px;
}
.tooltip,
.toolbar .upload,
.toolbar .download,
.toolbar .fl-r .dp-in-block {
  position: relative;
}
.tooltip span,
.toolbar .upload + span,
.toolbar .download + span {
  position: absolute;
  right: -20px;
  top: 42px;
  display: none;
  width: auto;
  padding: 10px 15px;
  background: #414650;
  border-radius: 8px;
  color: #fcfcfc;
  font-size: 12px;
  z-index: 1;
  white-space: nowrap;
}
.tooltip span {
  left: -13px;
  right: auto;
}
.tooltip span::after,
.toolbar .upload + span::after,
.toolbar .download + span::after {
  content: "";
  position: absolute;
  display: block;
  top: -10px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #414650;
}
.tooltip span::after {
  left: 17px;
  right: auto;
}
.tooltip:hover span,
.toolbar .upload:hover + span,
.toolbar .download:hover + span {
  display: block;
}
.toolbar .ic.download:hover {
  position: relative;
  top: 0;
  left: 6px;
  width: 32px;
  height: 32px;
  background-image: url(../img/ic-download-on.png);
}

.toolbar .autocomplete-list {
  top: 35px;
}
.toolbar p.fc-gray-83 span.fc-gray-83 {
  font-weight: normal;
  padding: 0 7px;
  background: #eee;
  border-radius: 10px;
}
/* toolbar tabmenu */
.detail-menu {
  background: #f1f2f4;
  border-radius: 24px;
  padding: 3px;
}
.detail-menu li {
  padding: 10px 0;
  font-size: 14px;
  color: #83878f;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.detail-menu li.active {
  background: #fcfcfc;
  box-shadow: 0px 0px 4px hsla(0, 0%, 0%, 0.18);
  border-radius: 24px;
  color: #111;
  font-weight: bold;
}
/* toolbar datepick */
.toolbar .daterangepicker-wrap {
  height: 32px;
  background: none;
  border: 0;
  padding: 0;
}
.toolbar .daterangepicker-wrap {
  padding-left: 24px;
  background: url(../img/ic-calendar-gray.png) no-repeat center left;
  background-size: 16px;
}
.toolbar .tui-datepicker-input {
  height: auto;
  vertical-align: middle;
}
.toolbar .tui-datepicker-input input[type="text"] {
  background: #fcfcfc;
  border: 1px solid #cccfd3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 4px 0;
}
/* 정보조회 및 메모 (히스토리 작성) */
.view-area {
  width: 70%;
  border-right: 1px solid #e4e5e8;
}
.view-area.full {
  width: 100%;
  border-right: 0;
}
.comments-area {
  width: 30%;
}
.comments-area.full {
  width: 100%;
}
.comments-area .p20 {
  border-bottom: 1px solid #e4e5e8;
}
.comments-area .p20:last-of-type {
  border-bottom: 0;
}
.comments-area h2 label {
  padding: 8px 13px;
  cursor: pointer;
}
.comments-area h2 label:hover {
  background: #e7f0ff;
  border-radius: 4px;
}
.comments-area h2 label i {
  vertical-align: text-bottom;
}
.comments-list.scroll {
  height: 372px;
}
.comments-list > li {
  padding: 13px 16px;
}
.comments-list > li:hover {
  background: #f1f2f4;
  border-radius: 4px;
}
.comments-list .history li:first-of-type {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.comments-list .history li:first-of-type img {
  width: 24px;
  margin-right: 6px;
  border-radius: 50%;
}
.comments-list .history li:first-of-type span {
  font-size: 12px;
  color: #83878f;
  font-weight: 400;
  padding-left: 6px;
}
.comments-list .history li:last-of-type button {
  display: none;
  font-size: 12px;
  font-weight: 500px;
  color: #83878f;
}
.comments-list li:hover .history li button {
  display: inline-block;
}
.comments-list .history li:last-of-type button:hover {
  color: #414650;
}
.comments-list .history li:last-of-type button.fc-blue-53 {
  color: #5379fd;
}
.comments-list .history li:last-of-type button:first-of-type {
  margin-right: 14px;
}
.comments-list ul + p {
  margin-left: 30px;
  font-size: 14px;
  line-height: 22px;
}
.comments-list ul + input {
  width: calc(100% - 30px);
  padding: 8px;
  margin-left: 30px;
  border: 1px solid #cccfd3;
  border-radius: 4px;
  background: none;
}

/* 파일 첨부 리스트 */
.file-list.scroll {
  height: 372px;
}
.file-list > li {
  padding: 13px 16px;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  margin-bottom: 8px;
}
.file-list > li:last-of-type {
  margin-bottom: 0;
}
.file-list > li:hover {
  background: #f1f2f4;
}
.file-list .history {
  margin-bottom: 10px;
}
.file-list .history li,
.file-list .history li span,
.file-list .history li button {
  font-size: 12px;
  color: #83878f;
  font-weight: 400;
}
.file-list .history li button {
  display: none;
}
.file-list .history li button:hover {
  color: #111;
}
.file-list li:hover .history li button {
  display: inline-block;
}
.file-list .history li:last-of-type button:first-of-type {
  margin-right: 14px;
}
.file-list .history li:last-of-type button:first-of-type:hover .ic.file-download {
  background-image: url(../img/ic-down-disk-on.png);
}
.file-list .history li button i {
  vertical-align: text-bottom;
}
.file-list li p {
  font-size: 14px;
}
.file-list li p i {
  vertical-align: text-bottom;
  margin-right: 10px;
}

/* 최근 영업활동 리스트 */
.active-list > li {
  padding: 13px 16px;
  padding-right: 20px;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  margin-bottom: 8px;
}
.active-list > li:last-of-type {
  margin-bottom: 0;
}
.active-list > li:hover {
  background: #f1f2f4 url(../img/ic-arrow-right.png) no-repeat center right 8px;
  background-size: 14px;
}
.active-list > li,
.active-list > li p {
  font-size: 14px;
  color: #111;
}
.active-list > li span,
.active-list > li button {
  font-size: 12px;
  color: #83878f;
  font-weight: 400;
}
/* 정보 입력 및 수정 */
.input-list li {
  margin-bottom: 16px;
  font-size: 14px;
}
.input-list.half li {
  width: 50%;
}
.input-list.read li {
  margin-bottom: 6px;
}
.input-list li:last-child {
  margin-bottom: 0;
}
.input-list span {
  display: inline-block;
  width: 120px;
  margin-right: -4px;
  padding: 7px 0;
  line-height: 1.4;
}
.input-list li:not(.flex) > div {
  display: inline-block;
  width: calc(100% - 120px);
  margin-right: -4px;
}
.input-list li:not(.flex) > div.dp-none {
  display: none;
}
.input-list li > div.w50p {
  width: calc((100% - 120px) / 2) !important;
}
.input-list li > div input,
.input-list li > div select {
  display: inline-block;
  height: 38px;
  border: 1px solid #cccfd3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  vertical-align: baseline;
  color: #111;
  font-weight: 400;
}
.input-list li > div select:focus {
  padding: 8px 10px;
}
.input-list li > div input.dp-none,
.input-list li > div select.dp-none {
  display: none;
}
.input-list li > div input[type="checkbox"],
.input-list li > div input[type="radio"] {
  display: none;
}
.input-list li > div input.no-border {
  border: 0;
}
.input-list li > div input[readonly],
.input-list li > div input[readonly]:hover,
.input-list li > div input[readonly]:focus,
.input-list li > div input[disabled],
.input-list li > div input[disabled]:focus,
.input-list li > div input[disabled]:hover,
.input-list li > div select[disabled]:hover {
  border: 0 !important;
  color: #111;
}
.input-list li > div input {
  background-color: transparent;
}
.input-list li > div input[readonly] {
  border: 0;
  cursor: default;
}
.input-list li > div a input[readonly] {
  cursor: pointer;
}
.input-list li > div.search input {
  width: calc(100% - 105px);
}
.input-list li > div.search button {
  vertical-align: baseline;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .input-list li > div.search button {
    margin-top: -6px;
  }
}
.input-list li > div select {
  width: 50%;
}
.input-list li > div select[disabled] {
  background: none;
  border: 0;
  color: #111;
  opacity: 1;
}
.input-list li > div .po-rel {
  width: 50%;
}

.input-list li > div a.url-btn {
  padding: 6px 8px;
  background: #f1f2f4;
  border-radius: 4px;
}
.input-list li > div a.url-btn:hover {
  background: #e7f0ff;
}
.input-list li > div a.url-link-btn {
  padding: 6px 8px;
}
.input-list li > div a.url-link-btn i {
  margin-top: 1px;
}

.input-list li > div a.url-link-btn:hover {
  color: #5379fd;
}
.input-list li > div a.url-link-btn:hover i {
  background-image: url(../img/ic-arrow-right-blue.png);
}
.input-list li > div .daterangepicker-wrap {
  width: 50%;
}
.input-list li > div .daterangepicker-wrap input {
  padding: 0 !important;
  height: auto !important;
  text-align: center;
  vertical-align: middle;
}
.input-list li > div .time-select {
  border: 1px solid #cccfd3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
}
.input-list li > div .time-select select,
.input-list li > div .time-select input {
  display: inline-block;
  width: 40px;
  height: 22px;
  border: 0;
  padding: 0 5px;
  background: none;
  text-align: center;
}
.input-list li > div .time-select.readonly {
  background: none;
  border: 0;
  text-align: left;
}
.input-list li > div .time-select select[disabled],
.input-list li > div .time-select input[readonly] {
  display: inline;
  width: 25px;
  padding: 0;
}
.input-list.read.round-box-e4 li span {
  color: #575c64;
}
.input-list.round-box-e4 li span {
  color: #111;
}

/* 나이스 정보조회 및 예상매출 테이블*/
.nice-info-table,
.round-table {
  border-radius: 10px;
  width: 100%;
  border-radius: 4px;
  border-collapse: collapse;
  box-shadow: 0 0 0 1px #e4e5e8;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .nice-info-table,
  .round-table {
    border: 1px solid #e4e5e8;
  }
}
.nice-info-table th,
.round-table th {
  width: 120px;
  border-top: 0;
  background: #f9f9fa;
  text-align: left;
}
.nice-info-table tr:first-of-type th:first-of-type,
.round-table thead tr:first-of-type th:first-of-type {
  border-radius: 10px 0 0 0;
}
.nice-info-table tr:first-of-type td:last-of-type,
.round-table thead tr:first-of-type th:last-of-type {
  border-radius: 0 10px 0 0;
}
.nice-info-table tr:last-of-type th:first-of-type,
.round-table tbody tr:last-of-type th:first-of-type {
  border-radius: 0 0 0 10px;
}
.nice-info-table tr:last-of-type td:last-of-type,
.round-table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 10px 0;
}
.nice-info-table th,
.round-table th,
.nice-info-table td,
.round-table td {
  padding: 10px;
  border-bottom: 1px solid #e4e5e8;
  color: #414650;
  font-size: 14px;
  font-weight: normal;
}
.round-table tbody tr:last-of-type th,
.round-table tbody tr:last-of-type td {
  border-bottom: 0;
}
.round-table thead th:not(:first-of-type),
.round-table tbody td {
  border-left: 1px solid #e4e5e8;
}
.nice-info-table th {
  border: 1px solid #e4e5e8;
  border-top: 0;
}
.nice-info-table tr th:nth-of-type(2n-1) {
  border-left: 0;
}
.nice-info-table tr:last-of-type th,
.nice-info-table tr:last-of-type td {
  border-bottom: 0;
}
.nice-info-table td {
  width: 396px;
}
.nice-info-table td span.date,
.round-table td span.date {
  width: 70px;
}

/* 병합테이블 */
.existing {
  width: 60%;
}
.merge {
  width: 40%;
}
.existing table,
.merge table {
  width: 100%;
}
.existing table tbody,
.merge table tbody {
  border-top: 2px solid #cccfd3;
}
.existing table tbody tr,
.merge table tbody tr {
  background: #f9f9fa;
  border-top: 1px solid #e4e5e8;
  border-radius: 2px;
}
.existing table tbody tr.on,
.merge table tbody tr.on {
  background: #f2f8ff;
}
.existing table tbody th,
.existing table tbody td,
.merge table tbody td {
  padding: 8px 12px;
  font-size: 14px;
}
.existing table thead th {
  padding: 12px;
  text-align: left;
}
.existing table thead th span {
  padding: 4px;
  border-radius: 4px;
}
.existing table tbody th {
  width: 25%;
  font-weight: 400;
  text-align: left;
  border-right: 1px solid #e4e5e8;
  border-radius: 0 0 0 4px;
}
.existing table tbody td {
  border-radius: 0 0 4px 0;
}
.merge table thead th {
  position: relative;
  padding: 6px;
}
.merge table thead th .search-bar {
  padding: 5px 40px 5px 12px;
}
.merge table tbody td {
  color: #414650;
}
/*  검색결과 리스트 */
.autocomplete-list {
  display: none;
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
  background: #fcfcfc;
  box-shadow: 0px 2px 5px hsla(0, 0%, 0%, 0.25);
  border-radius: 4px;
  z-index: 10000;
}
.w100p:not(.org-chart) .autocomplete-list {
  border: 1px solid #cccfd3;
  box-shadow: none;
}
.autocomplete-list option {
  display: block;
  background: #fcfcfc;
  padding: 12px;
  font-size: 14px;
  text-align: left;
  font-weight: 400;
  cursor: pointer;
}

.autocomplete-list:not(.scroll) option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.autocomplete-list:not(.scroll) option:last-of-type {
  border-radius: 0 0 4px 4px;
}
.autocomplete-list option:hover,
.autocomplete-list option.active {
  background: #e7f0ff;
}

/* 영업 진행 단계  */
.sales-status-btn {
  border-top: 1px solid #e4e5e8;
  padding: 8px 10px 0;
}
.sales-status-btn p {
  white-space: nowrap;
}
.sales-status-btn li {
  font-size: 12px;
  font-weight: 400;
  color: #83848f;
}
.sales-status-btn li:not(.fail) button {
  position: relative;
  width: 120px;
  background: #f1f2f4;
  padding: 6px 0;
  margin-right: -4px;
  border-radius: 4px;
  color: #83878f;
}

.sales-status-btn li:not(.fail) button.long {
  width: 150px;
}
.sales-status-btn li:not(.fail) button::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 8px;
  height: 11px;
  background: #fcfcfc;
  transform: skew(0deg, 40deg) rotate(-45deg);
}
.sales-status-btn li:not(.fail) button::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 0;
  width: 8px;
  height: 11px;
  background: #fcfcfc;
  transform: skew(0deg, -40deg) rotate(45deg);
}
.sales-status-btn li:not(.fail) button:first-of-type:before,
.sales-status-btn li:not(.fail) button:first-of-type::after {
  display: none;
}
.sales-status-btn li:not(.fail) button i {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin: 0 10px;
}
.sales-status-btn li.fail button {
  color: #bb0606;
}
.sales-status-btn li.fail button img {
  width: 10px;
  vertical-align: baseline;
}
.sales-status-btn li.fail button::before {
  content: "";
  display: inline-block;
  margin: 0 16px;
  background: #e4e5e8;
  width: 1px;
  height: 14px;
}

.sales-status-btn li button.active {
  background: #d1e1ff;
  color: #111;
}
.sales-status-btn li button.step-on {
  background: #e7f0ff;
}

/* 영업활동 담당자 리스트 */
.cp-list li,
.cp-list li:last-of-type {
  margin-right: 10px;
  margin-bottom: 6px;
}
.cp-list li:not(:first-of-type) {
  padding: 5px 8px;
  border-radius: 18px;
  border: 1px solid #111;
}
.cp-list li:not(:first-of-type) img {
  width: 20px;
}
.cp-list li button i {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
.cp-list.acc li {
  border: 0;
}
/* 캘린더 -- 영업활동 */
.calendar-tab {
  border: 1px solid #cccfd3;
  border-radius: 4px;
}
.calendar-tab li {
  display: inline-block;
  margin-right: -4px;
  padding: 7px;
  border-right: 1px solid #cccfd3;
}
.calendar-tab li:first-of-type {
  border-radius: 4px 0 0 4px;
}
.calendar-tab li:last-of-type {
  border-right: 0;
  margin-right: 0;
  border-radius: 0 4px 4px 0;
}
.calendar-tab li.active {
  background: #e4e5e8;
}
.calendar-tab li.active .big-calendar {
  background-image: url(../img/ic-big-calendar-on.png);
}
.calendar-tab li.active .item-list {
  background-image: url(../img/ic-item-list-on.png);
}

/* 공지사항 */
table.notice-table tbody tr td.fix {
  padding-left: 16px;
}
.notice-table tr td:first-of-type {
  color: #83878f;
}
.notice-table tr td.new::after {
  content: "N";
  display: inline-block;
  color: #df2a2a;
  padding-left: 10px;
}

/* 공지사항 파일리스트 */
.notice-file-list li {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  margin-bottom: 8px;
  margin-right: 5px;
}
.notice-file-list li p {
  display: inline-block;
}

/* 조직도 */
.org-chart {
  position: relative;
  display: inline-block;
  width: 150px;
}
.po-rel.arrow input[type="text"],
.org-chart input[type="text"] {
  height: 32px;
  padding: 10px 30px 10px 10px;
  background: url(../img/ic-arrow-bottom.png) no-repeat center right 10px;
  background-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05px;
  font-family: "Noto Sans KR";
  border: 1px solid transparent;
  border-radius: 4px;
}
.po-rel.arrow input[type="text"]:focus,
.org-chart input[type="text"]:focus {
  background: url(../img/ic-arrow-top.png) no-repeat center right 10px;
  background-size: 12px;
}
.org-chart input[type="text"].round-box-ccc {
  border: 1px solid #cccfd3;
}
.org-chart option {
  font-size: 14px;
  padding: 10px 15px;
}
.org-chart:not(.w100p) .autocomplete-list {
  width: 300px;
}
.org-chart .opt::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  vertical-align: top;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/ic-dropdown.png);
  background-color: transparent;
}
.org-chart .opt.dep1::before {
  margin-left: 10px;
}
.org-chart .opt.dep2::before {
  margin-left: 20px;
}
/* chart */
.chart-legend li {
  margin-bottom: 15px;
  cursor: default;
}
.chart-legend.split {
  margin: 40px auto 0;
  width: 100%;
}
@media screen and (min-width: 2000px) {
  .chart-legend.split {
    width: 70%;
  }
}
.chart-legend.split li {
  width: 20%;
  margin-bottom: 15px;
  cursor: default;
}
.chart-legend span {
  width: 14px;
  height: 12px;
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
}
.chart-legend.circle .state {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: -4px;
}
.chart-legend.bold {
  font-weight: bold;
}
.chart-legend p {
  display: inline-block;
  font-size: 12px;
  color: #414650;
  margin-left: 6px;
}
.chart-center {
  position: absolute;
  top: 57%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
/* chart - line & bar  */
.mixbar li.fl-l {
  width: calc(100% - 150px);
}
.mixbar li.fl-r {
  width: 130px;
  right: 0;
  bottom: 12px;
}
@media screen and (max-width: 1850px) {
  .mixbar.responsive li.fl-l {
    width: 100%;
    float: none;
  }
  .mixbar.responsive li.fl-r {
    width: 100%;
    float: none;
    position: static;
    text-align: center;
    margin-top: 40px;
  }
  .mixbar.responsive li.fl-r li {
    display: inline-block;
    margin-right: 28px;
  }
}
/* chart - horiz-bar  */
.horiz-bar li.fl-l {
  width: 60%;
}
.horiz-bar li.fl-r {
  width: 40%;
  padding-left: 50px;
}

.horiz-bar li.fl-r ul {
  width: 50%;
}
.horiz-bar .chart-legend li {
  margin: 0;
  font-size: 14px;
}
/* chart - doughnut */
.doughnut li.fl-l {
  width: 60%;
}
.doughnut li.fl-r {
  width: 40%;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}
/* dashborad */
.sales-profit-table {
  width: 100%;
}
.sales-profit-table tr {
  border-bottom: 1px solid #e4e5e8;
}
.sales-profit-table.no-line tr:last-of-type {
  border-bottom: 0;
}
.sales-profit-table th,
.sales-profit-table td {
  padding: 20px 0;
  text-align: left;
}
.sales-profit-table.reverse th {
  font-size: 14px;
  font-weight: 400;
}
.sales-profit-table.reverse td {
  font-size: 16px;
  font-weight: 700;
  padding-right: 30px;
  text-align: right;
}
.sales-profit-table td:first-of-type {
  font-size: 14px;
}

@media screen and (max-width: 1920px) {
  .sales-profit-table td {
    padding-right: 20px;
  }
}
.sales-profit-table td:first-child {
  padding-right: 0;
  text-align: left;
}
.sales-profit-table td:last-child {
  padding-right: 0;
}
/* pop up */
.pop-right {
  position: fixed;
  bottom: 0;
  right: -500px;
  width: 464px;
  height: calc(100vh - 113px);
  padding: 20px;
  background: #fff;
  box-shadow: -2px 0px 5px 0 #e4e5e8;
  transition: all 0.5s;
  z-index: 1;
}
.pop-right.static {
  background: #fcfcfc;
  border-left: 1px solid #e4e5e8;
  box-shadow: none;
}
.pop-right.dp-block,
.pop-right.show {
  right: 0;
}
.pop-right.show {
  z-index: 10;
}
.pop-right.min {
  height: calc(100vh - 187px);
}

.pop-content.scroll {
  height: calc(100vh - 300px);
}
.min.static .pop-wrapper,
.min .pop-content.scroll {
  height: calc(100vh - 320px);
}
.static .pop-wrapper {
  height: calc(100vh - 240px);
}
@media screen and (max-width: 1600px) {
  .pop-right {
    height: calc(100vh - 128px);
  }
  .pop-right.min {
    height: calc(100vh - 200px);
  }
  .min.static .pop-wrapper,
  .min .pop-content.scroll {
    height: calc(100vh - 400px);
  }
  .static .pop-wrapper {
    height: calc(100vh - 300px);
  }
}
.pop-right .pop-header {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #111;
  font-weight: 700;
}
.pop-right .pop-header .btn-pop-close {
  float: right;
  width: 20px;
  height: 20px;
  background: url(../img/ic-close-pop.png) no-repeat center;
  background-size: 17px;
}
.pop-right .flex.wrap {
  overflow: visible;
}
.pop-right .tbl-search {
  width: 100%;
}
.pop-right .tbl-search > tbody > tr > th {
  padding-right: 20px;
}
.pop-right .tbl-search > tbody > tr > th,
.pop-right .tbl-search > tbody > tr > td {
  padding-top: 25px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  text-align: left;
  font-weight: 400;
  color: #000;
  word-break: keep-all;
}
.pop-right .tbl-search > tbody > tr:first-of-type > th,
.pop-right .tbl-search > tbody > tr:first-of-type > td {
  padding-top: 0;
}
.pop-right .tbl-search label {
  width: 100%;
}
.pop-right .tbl-search select {
  width: 100%;
  border: 1px solid #cccfd3;
  border-radius: 4px;
  height: 38px;
  vertical-align: middle;
}
.pop-right .ul-flex {
  margin-top: 7px;
}
.pop-right .ul-flex li {
  border-top: 1px solid #f1f2f4;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-right: 0;
}
.pop-right .ul-flex li:nth-child(2n-1) {
  padding-right: 7px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .pop-right .tbl-search .ul-flex {
    width: 314px;
  }
  .pop-right .tbl-search > tbody > tr > th {
    padding-top: 32px;
    vertical-align: top;
  }
  .pop-right .tbl-search > tbody > tr:first-of-type > th {
    padding-top: 7px;
  }
}
.pop-right .input-list li > div a.url-link-btn i {
  margin-top: -1px;
}
.pop-right .input-list span {
  display: inline-block;
  width: 100px;
  margin-right: -4px;
  word-break: keep-all;
}
.pop-right .input-list > li:last-child {
  padding-bottom: 16px;
}
.pop-right .input-list li:not(.flex) > div {
  display: inline-block;
  width: calc(100% - 100px);
  margin-right: -4px;
}
.pop-right .input-list li:not(.flex) > div.dp-none {
  display: none;
}
.pop-right .input-list li textarea {
  height: 100px;
  vertical-align: text-top;
}
.pop-right .input-list li > div select,
.pop-right .input-list li > div .full-picker {
  width: 100%;
}
.pop-right .input-list li > div .time-select select {
  width: 40px;
}
.pop-right .input-list li > div .time-select select[disabled] {
  width: auto;
}
.pop-right .full-picker .tui-datepicker {
  border: 0;
}
.pop-right .full-picker .tui-datepicker .tui-calendar {
  border: 1px solid #cccfd3;
}
.pop-right .full-picker .tui-datepicker-input {
  width: 100%;
  text-align: center;
}
.pop-right .full-picker .tui-datepicker-input.readonly {
  text-align: left;
}
.pop-right .autocomplete-list,
.pop-right .autocomplete-list option {
  background: #fff;
}
.pop-right .autocomplete-list option:hover,
.pop-right .autocomplete-list option.active {
  background: #e7f0ff;
}
.pop-right .pop-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
}
.static.pop-right .pop-footer {
  background: #fcfcfc;
}
.pop-right .pop-footer .btn-group {
  padding-top: 22px;
  padding-bottom: 22px;
}

.pop-center {
  width: 420px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 22px 24px 35px 24px;
  background: #fcfcfc;
  box-shadow: 0px 8px 24px hsla(0, 0%, 0%, 0.2);
  border-radius: 4px;
  z-index: 10;
}
.pop-center.top {
  top: 300px;
}
.pop-center p {
  font-size: 14px;
}
.pop-center .input-list {
  margin-bottom: 5px;
}
.pop-center .input-list li > div input[readonly] {
  padding: 0;
  height: auto;
}
.pop-center .input-list li > span {
  color: #575c64;
}
.pop-search input[type="text"] {
  padding: 13px 50px 13px 14px;
  border: 1px solid #abafb6;
  border-radius: 4px;
}
.pop-search input[type="text"] + button {
  width: 46px;
  height: 45px;
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-51%);
  background: #f1f2f4;
  border-radius: 0 4px 4px 0;
}
.pop-center[class*="nice"] .pop-search input[type="text"] + button {
  transform: translateY(-49%);
}
.pop-search input[type="text"]:hover + button,
.pop-search input[type="text"]:focus + button {
  background: #e7f0ff;
}
.pop-search input[type="text"]:focus + button {
  right: 2px;
}
.pop-search input[type="text"]:hover + button .search,
.pop-search input[type="text"]:focus + button .search {
  background: url(../img/ic-search-blue.png) no-repeat center;
  background-size: 24px;
}
.pop-search-result .possible .scroll {
  height: auto;
  max-height: 500px;
}
.pop-search-result .impossible li {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}
.pop-search-result .impossible li:last-of-type {
  margin-bottom: 0;
}
.pop-search-result .result-list-bg {
  margin-top: 7px;
}
.pop-search-result .result-list-bg li {
  border-bottom: 1px solid #e4e5e8;
}
.pop-search-result .result-list-bg li:last-of-type {
  border: 0;
}
.pop-search-result .result-list-bg li a {
  display: block;
  padding: 14px;
}
.pop-search-result .result-list-bg li a:hover {
  background: #f2f8ff;
}
.result-box {
  padding: 14px;
  background: #f9f9fa;
  border: 1px solid #e4e5e8;
  box-sizing: border-box;
  border-radius: 4px;
}

/* ui custom */
/* ----------datatable---------- */
.datatable {
  width: 100%;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  background: #fcfcfc;
}

table.dataTable thead tr {
  background-color: #f9f9fa;
}
table.dataTable tbody tr {
  background-color: #fcfcfc;
  cursor: pointer;
}
table.dataTable tbody tr.on {
  background-color: #f2f8ff;
}
table.dataTable thead th,
table.dataTable tbody td {
  padding: 10px;
  border-bottom: 1px solid #e4e5e8;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  color: #414650;
  vertical-align: middle;
}
table.dataTable thead th:first-of-type,
table.dataTable tbody td:first-of-type {
  padding-left: 20px;
}
.center.dataTable thead th,
.center.dataTable tbody td {
  text-align: center;
}
.center.dataTable thead th:first-of-type,
.center.dataTable tbody td:first-of-type {
  padding-left: 10px;
}
table.dataTable thead th:first-of-type {
  border-radius: 4px 0 0 0;
}
table.dataTable thead th:last-of-type {
  border-radius: 0 4px 0 0;
}
table.dataTable tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 4px;
}
table.dataTable tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 4px 0;
}
table.dataTable thead th.chk-box,
table.dataTable tbody td.chk-box {
  width: 100px;
  white-space: nowrap;
  text-align: right;
}
table.dataTable tbody td {
  color: #111111;
}
table.dataTable tbody td.fc-red-bb {
  color: #bb0606;
}
table.dataTable.no-footer {
  border-bottom: 0;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
  background-image: none;
}
table.dataTable thead span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
}
table.dataTable thead .sorting span {
  background: url("../img/sort_both.png") no-repeat center;
  background-size: contain;
}

table.dataTable thead .sorting_asc span {
  background: url("../img/sort_asc.png") no-repeat center;
  background-size: contain;
}

table.dataTable thead .sorting_desc span {
  background: url("../img/sort_desc.png") no-repeat center;
  background-size: contain;
}
/*  pagination*/
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.dataTables_wrapper .dataTables_paginate {
  float: none;
  text-align: center;
  padding-top: 30px;
}
.dataTables_wrapper .dataTables_paginate span {
  vertical-align: baseline;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: auto;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  border: 0;
  border-radius: 0;
  padding: 10px;
  font-size: 14px;
  color: #414650 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: inherit !important;
  border: 0;
  background: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #111 !important;
  border: 0;
  background: none;
  font-weight: bold;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.first,
.dataTables_wrapper .dataTables_paginate .paginate_button.last {
  padding: 5px;
}
.paginate_button.previous .ic {
  background-image: url(../img/square-arrow-left-on.png);
}
.paginate_button.previous.disabled .ic {
  background-image: url(../img/square-arrow-left.png);
}
.paginate_button.next .ic {
  background-image: url(../img/square-arrow-right-on.png);
}
.paginate_button.next.disabled .ic {
  background-image: url(../img/square-arrow-right.png);
}
.paginate_button.first .ic {
  background-image: url(../img/square-double-arrow-left-on.png);
}
.paginate_button.first.disabled .ic {
  background-image: url(../img/square-double-arrow-left.png);
}
.paginate_button.last .ic {
  background-image: url(../img/square-double-arrow-right-on.png);
}
.paginate_button.last.disabled .ic {
  background-image: url(../img/square-double-arrow-right.png);
}
.paginate_button:focus-visible {
  outline: none;
}
.datatable-search-bar {
  width: 300px;
  position: relative;
  margin-left: 5px;
}
.datatable-search-bar select {
  width: 100px;
  border: 1px solid #cccfd3;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  margin-right: -4px;
}
.datatable-search-bar select:hover {
  border: 1px solid #5379fd;
}
.datatable-search-bar select:target,
.datatable-search-bar select:active {
  border: 2px solid #5379fd;
}
.datatable-search-bar select:disabled {
  color: #111;
  background-image: url(../img/ic-arrow-bottom-gray.png);
  opacity: 1;
}

.datatable-search-bar select:disabled > option {
  color: #111;
}
.datatable-search-bar input {
  display: inline-block;
  width: 200px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #cccfd3;
  border-radius: 0 4px 4px 0;
  margin-left: 0;
  margin-right: -4px;
  background-color: transparent;
  box-sizing: border-box;
}
.datatable-search-bar input::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

.dataTables_wrapper {
  position: static;
}
.dataTables_wrapper .dataTables_filter {
  display: none;
}

.datatable.scroll.horizontal tr th,
.datatable.scroll.horizontal tr td {
  white-space: nowrap;
  border-left: 1px solid #e4e5e8;
}
.datatable.scroll.horizontal tr th:first-of-type,
.datatable.scroll.horizontal tr td:first-of-type {
  border-left: 0;
}
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0;
  }
}
.dataTables_wrapper .dataTables_filter input:hover {
  border: 1px solid #5379fd;
}
.dataTables_wrapper .dataTables_filter input:focus {
  border: 2px solid #5379fd;
}
.dataTables_wrapper .dataTables_filter label {
  display: block;
}
.datatable-search-bar .autocomplete-list {
  width: 200px;
  top: 33px;
  left: 100px;
  max-height: 150px;
  overflow-y: scroll;
}

.dataTables_wrapper .dataTables_info {
  display: block;
  width: 100%;
  padding-top: 0;
  padding-bottom: 10px;
}
.dataTables_wrapper .dataTables_info::after {
  content: "";
  display: block;
  clear: both;
}
.dataTables_wrapper .dataTables_info .right {
  float: right;
  padding-top: 0;
  font-size: 12px;
}
.dataTables_wrapper .dataTables_info .left {
  float: left;
  font-size: 12px;
}
.dataTables_wrapper .dataTables_info .left.txt-sm {
  font-size: 14px;
}

/* daterangepicker */
.daterangepicker-wrap,
.datepicker-wrap {
  position: relative;
  background: url(../img/ic-calendar-dark.png) no-repeat left 13px center;
  background-size: 16px;
  background-color: #fcfcfc;
  border: 1px solid #cccfd3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 4px 13px 4px 46px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
}
.pop-right .daterangepicker-wrap,
.pop-right .datepicker-wrap {
  background-color: #fff;
}
.daterangepicker-wrap.readonly,
.datepicker-wrap.readonly {
  background: none;
  border: 0;
  text-align: left;
  /* padding: 4px 10px; */
  padding: 0 10px;
}

.daterangepicker-wrap.readonly .pop-tui-container,
.datepicker-wrap.readonly .pop-tui-container {
  display: none;
}
.timepicker-wrap {
  background: #f1f2f4;
  padding: 4px 13px;
}
.datepicker-wrap.dp-none {
  display: none;
}
.tui-datepicker {
  position: relative;
  top: 5px;
  left: -7px;
  z-index: 2;
  border: 0;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 10px;
  padding-top: 0;
}

.tui-datepicker-input {
  display: inline-block;
  background: transparent;
  border: none;
  background-image: none;
  width: auto;
  vertical-align: super;
}
.tui-datepicker-selector-button.tui-is-checked .tui-ico-date,
.tui-datepicker-input.tui-has-focus .tui-ico-date,
.tui-datepicker-input .tui-ico-date {
  display: none;
}
.tui-datepicker-input > input {
  width: 100px;
  padding: 6px 10px;
  background: transparent;
  border: none;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
}
.datepicker-wrap .absolute,
.daterangepicker-wrap .absolute,
.daterangepicker-wrap #startpicker-container,
.daterangepicker-wrap #endpicker-container {
  position: absolute;
  left: auto;
  right: -15px;
  z-index: 1;
  top: 34px;
}

.daterangepicker-wrap div[id*="startpicker"] {
  left: -50px !important;
  right: auto !important;
}

.datepicker-wrap .absolute {
  right: 58%;
  transform: translateX(50%);
}
.tui-calendar {
  border-radius: 4px;
}
.tui-calendar-header-info {
  display: none;
}
.tui-datepicker-input {
  height: 30px;
}
.tui-datepicker-input input[type="text"] {
  border: 0;
  height: auto;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  margin-top: 2px;
}
.toolbar .tui-datepicker-input input[type="text"] {
  margin-top: 0;
}
.tui-datepicker-input input[type="text"][readonly] {
  text-align: left;
}

.pop-right .tui-datepicker-input input[type="text"],
.pop-right .tui-datepicker-input input[type="text"][readonly] {
  vertical-align: sub;
}

.tui-calendar .tui-calendar-today {
  color: #111;
}
.tui-calendar th,
.tui-calendar td {
  font-size: 14px;
  height: 36.28px;
  line-height: 36.28px;
  font-weight: 400;
  color: #111;
}

.tui-calendar td.tui-is-blocked {
  color: #abafb6;
}
.tui-calendar .tui-calendar-header {
  border: 0;
}
.tui-calendar .tui-calendar-header-inner {
  padding: 0;
  padding-top: 15px;
  height: auto;
}
.tui-datepicker .tui-is-selectable:hover {
  border-radius: 50%;
}
.tui-is-selectable.tui-is-selected-range:hover {
  border-radius: 0;
}
.tui-datepicker.tui-rangepicker .tui-is-selectable.tui-is-selected {
  background-color: transparent;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.tui-datepicker.tui-rangepicker .tui-is-selected-range {
  background-color: #d1e1ff;
}
.tui-is-selectable.tui-is-selected-range:first-of-type,
.tui-is-selectable.tui-is-selected-range.tui-is-selected:first-of-type {
  border-radius: 20px 0 0 20px;
}
.tui-is-selectable.tui-is-selected-range:last-of-type,
.tui-is-selectable.tui-is-selected-range.tui-is-selected:last-of-type {
  border-radius: 0 20px 20px 0;
}
.tui-is-selectable.tui-is-selected-range:hover {
  font-weight: 700;
}

.tui-datepicker.tui-rangepicker .tui-is-selectable.tui-is-selected::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 1.5px;
  width: 36px;
  height: 36px;
  z-index: -1;
  background: #2e5bfa;
  border-radius: 50%;
}
.tui-is-selected-range.tui-is-selected + .tui-is-selected-range {
  position: relative;
}
#cal-datepicker-container .tui-datepicker .tui-is-selectable.tui-is-selected,
.datepicker-wrap .tui-datepicker .tui-is-selectable.tui-is-selected,
.daterangepicker-wrap .tui-is-selected.tui-is-selected-range + .tui-is-selected-range.tui-is-selected {
  border-radius: 50%;
  background: #2e5bfa;
}
.daterangepicker-wrap .tui-is-selected-range.tui-is-selected + .tui-is-selected-range::before {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 36.27px;
  background: linear-gradient(to right, hsla(0, 0%, 100%, 0) 50%, #d1e1ff 50%);
  top: 0;
  left: -36px;
}
.daterangepicker-wrap .tui-is-selected-range + .tui-is-selected-range.tui-is-selected {
  background: linear-gradient(to left, hsla(0, 0%, 100%, 0) 50%, #d1e1ff 50%);
}
.tui-is-selected.tui-is-selected-range + .tui-is-selected-range.tui-is-selected::before {
  display: none;
}
.tui-calendar-btn {
  background-color: transparent;
}
.tui-calendar.tui-calendar-month .tui-calendar-btn-prev-year,
.tui-calendar.tui-calendar-month .tui-calendar-btn-next-year,
.tui-calendar .tui-calendar-btn-prev-month,
.tui-calendar .tui-calendar-btn-next-month {
  height: 32px;
  top: 6px;
  left: 50px;
}
.tui-calendar.tui-calendar-month .tui-calendar-btn-next-year,
.tui-calendar .tui-calendar-btn-next-month {
  left: auto;
  right: 50px;
}

.tui-calendar .tui-calendar-btn-next-month:after,
.tui-calendar .tui-calendar-btn-prev-month:after,
.tui-calendar.tui-calendar-month .tui-calendar-btn-next-year:after,
.tui-calendar.tui-calendar-month .tui-calendar-btn-prev-year:after,
.tui-calendar.tui-calendar-year .tui-calendar-btn-next-year:after,
.tui-calendar.tui-calendar-year .tui-calendar-btn-prev-year:after {
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: 0;
  line-height: 0;
  transform: translate(-50%, -40%);
  background-position: 0 0;
}
.tui-calendar .tui-calendar-btn-prev-month:after,
.tui-calendar .tui-calendar-btn-prev-year:after {
  background: url(../img/ic-bold-arrow-left.png) no-repeat center;
  background-size: contain;
}

.tui-calendar .tui-calendar-btn-next-month:after,
.tui-calendar .tui-calendar-btn-next-year:after {
  background: url(../img/ic-bold-arrow-right.png) no-repeat center;
  background-size: contain;
}
#cal-datepicker-container .tui-calendar.tui-calendar-year .tui-calendar-btn-prev-year,
#cal-datepicker-container .tui-calendar.tui-calendar-year .tui-calendar-btn-next-year {
  height: 32px;
}
#cal-datepicker-container .tui-calendar-btn-prev-month,
#cal-datepicker-container .tui-calendar-btn-prev-year,
#cal-datepicker-container .tui-calendar-btn-next-month,
#cal-datepicker-container .tui-calendar-btn-next-year {
  top: auto;
  bottom: -6px;
}
#cal-datepicker-container .tui-calendar-btn-prev-month:after,
#cal-datepicker-container .tui-calendar-btn-prev-year:after,
#cal-datepicker-container .tui-calendar-btn-next-month:after,
#cal-datepicker-container .tui-calendar-btn-next-year:after {
  width: 24px;
  height: 24px;
  transform: translate(-50%, -33%);
}
#cal-datepicker-container .tui-calendar-btn-prev-month:after,
#cal-datepicker-container .tui-calendar-btn-prev-year:after {
  background: url(../img/square-arrow-left-on.png) no-repeat center;
  background-size: contain;
}

#cal-datepicker-container .tui-calendar-btn-next-month:after,
#cal-datepicker-container .tui-calendar-btn-next-year:after {
  background: url(../img/square-arrow-right-on.png) no-repeat center;
  background-size: contain;
}
.tui-calendar-month.tui-is-selectable {
  height: 50.5px;
  vertical-align: middle;
}
.tui-calendar-year.tui-is-selectable {
  height: 67.33px;
  vertical-align: middle;
}
.tui-calendar-month .tui-calendar-body,
.tui-calendar-year .tui-calendar-body {
  margin-top: 10px;
}
#cal-datepicker-container .tui-datepicker {
  left: 0;
  border: 0;
  border-bottom: 1px solid #f1f2f4;
  background: #fcfcfc;
  margin-bottom: 22px;
  box-shadow: none;
}
#cal-datepicker-container .tui-datepicker .tui-calendar {
  background: #fcfcfc;
}
#cal-datepicker-container .tui-calendar .tui-calendar-header-inner {
  padding-top: 0;
}
.tui-calendar .tui-calendar-btn-prev-month:after,
.tui-calendar .tui-calendar-btn-prev-year:after {
  background: url(../img/ic-bold-arrow-left.png) no-repeat center;
  background-size: contain;
}

.tui-calendar .tui-calendar-btn-next-month:after,
.tui-calendar .tui-calendar-btn-next-year:after {
  background: url(../img/ic-bold-arrow-right.png) no-repeat center;
  background-size: contain;
}

#calendar {
  width: 100%;
  border: 1px solid #e4e5e8;
  border-top: 0;
  border-radius: 4px;
  height: calc(100vh - 300px);
  min-height: 700px;
}
#calendar.daily,
#calendar.pop,
.cal-navi.pop {
  transition: all 0.3s;
  width: calc(100% - 464px);
}
.cal-navi button {
  padding: 10px;
  font-weight: normal;
}
.cal-navi button.fw700 {
  font-weight: 700;
}

.cal-navi li:not(.view-type) button {
  padding: 0 7px;
}
.cal-navi li:not(.view-type) button img {
  width: 24px;
}
.cal-navi li:not(.view-type) button img[alt="google"] {
  width: 16px;
}
.cal-navi button.active {
  font-weight: bold;
  border-bottom: 2px solid #f42f52;
}
.tui-full-calendar-layout {
  border-radius: 4px;
}
.tui-full-calendar-dayname-container {
  border-radius: 4px 4px 0 0;
}
.tui-full-calendar-weekday-exceed-in-month:hover {
  background: none;
}
.tui-full-calendar-month-dayname {
  border-radius: 4px 4px 0 0;
}
.tui-full-calendar-month-dayname-item {
  font-weight: normal;
}
.tui-full-calendar-weekday-grid-header {
  text-align: right;
}
.tui-full-calendar-weekday-grid-date {
  color: inherit;
}
.tui-full-calendar-weekday-grid-line.tui-full-calendar-near-month-day.tui-full-calendar-extra-date .tui-full-calendar-weekday-grid-date {
  color: #cccfd3 !important;
}

.tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedule {
  margin: 0;
  border-radius: 4px;
}
.tui-full-calendar-weekday-schedule-bullet {
  display: none;
}
.tui-full-calendar-weekday-schedule.tui-full-calendar-weekday-schedule-time .tui-full-calendar-weekday-schedule-title {
  padding-left: 3px;
}
.tui-full-calendar-weekday-schedule {
  margin-right: 0;
  border-radius: 4px;
}
.tui-full-calendar-weekday-schedule-title {
  font-weight: normal;
}
.tui-full-calendar-time-date-schedule-block-wrap {
  margin: 0 !important;
}
.tui-full-calendar-time-schedule {
  padding-top: 8px;
  font-weight: normal;
}
.tui-full-calendar-dayname-date-area {
  font-size: 14px;
}
.tui-full-calendar-month-more {
  border-radius: 4px;
}
.tui-full-calendar-month-more-title {
  border-radius: 4px 4px 0 0;
}
.daily .tui-full-calendar-time-date.tui-full-calendar-today {
  background-color: transparent !important;
}


/* editor */
.editorContent .note-editable p {
  line-height: 1.4;
}
.editorContent .note-editable span {
  padding: 0;
  margin-right: 2px;
  display: inline-block;
  width: auto;
}
.editorContent .note-editable i {
  font-style: italic;
}
.editorContent .note-editable b,
.editorContent .note-editable strong {
  font-weight: bold;
}
.editorContent .note-editable ul,
.editorContent .note-editable ol {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
.editorContent .note-editable ul,
.editorContent .note-editable ul li {
  list-style: disc;
  list-style-type: disc;
}
.editorContent .note-editable ul ul {
  list-style: circle;
  list-style-type: circle;
}
.editorContent .note-editable ol,
.editorContent .note-editable ol li {
  list-style: decimal;
  list-style-type: decimal;
}
.editorContent .note-editable li {
  display: list-item;
}
.editorContent .dropdown-toggle span {
  display: contents;
}
