/* font */
/* text cutting */
/* flex */
/* transition */
/* custom scroll bar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #878787;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
}

body {
  overflow-x: overlay;
  overflow-y: hidden;
}

/* custom scroll bar */
/* animations */
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes spin2 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes spin2 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
/* animations */
/* layouts */
#wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 1900px;
}

#container {
  height: calc(100vh - 80px);
  /*background: #FCFCFC;*/
  overflow: hidden;
}

#main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  overflow-x: hidden;
}

#header {
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 0px 40px;
}
#header .inner .logo {
  width: 194px;
  height: 42px;
  font-size: 0px;
  background: url(../imgs/logo.svg) no-repeat center center;
}
#header .inner .gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0px 8px;
  height: 100%;
}
#header .inner .gnb li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100px;
  padding: 0px 16px;
  background: #fff;
  border: 1px solid transparent;
  border-bottom: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#DFDFDF)), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(#DFDFDF));
  background-image: linear-gradient(180deg, #FFF 0%, #DFDFDF 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #DFDFDF 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #949494;
  font-size: 16px;
  line-height: 47px;
  font-weight: 500;
  letter-spacing: -0.32px;
}
#header .inner .gnb li a:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#d3d3d3)), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(#d3d3d3));
  background-image: linear-gradient(180deg, #FFF 0%, #d3d3d3 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #d3d3d3 100%);
}
#header .inner .gnb li.on a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F1994C), to(#E9580E)), -webkit-gradient(linear, left top, left bottom, from(rgba(233, 88, 14, 0.9)), to(#E9580E));
  background-image: linear-gradient(180deg, #F1994C 0%, #E9580E 100%), linear-gradient(180deg, rgba(233, 88, 14, 0.9) 0%, #E9580E 100%);
  color: #fff;
}
#header .inner .gnb li.on a:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ec872f), to(#e44d01)), -webkit-gradient(linear, left top, left bottom, from(rgba(228, 77, 1, 0.9)), to(#e44d01));
  background-image: linear-gradient(180deg, #ec872f 0%, #e44d01 100%), linear-gradient(180deg, rgba(228, 77, 1, 0.9) 0%, #e44d01 100%);
}
#header .inner .user-info .top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 16px;
}
#header .inner .user-info .top-box .user-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 5px;
  color: #555555;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.64px;
}
#header .inner .user-info .top-box .user-name .modal-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 5px;
  color: #111111;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.64px;
}
#header .inner .user-info .top-box .user-name .modal-btn:before {
  width: 24px;
  height: 24px;
  background: url(../imgs/icon_avatar.svg) no-repeat center center;
  background-size: 24px 24px;
  content: "";
}
#header .inner .user-info .top-box .user-name .modal-btn:hover {
  text-decoration: underline;
}
#header .inner .user-info .top-box .logout-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  height: 24px;
  padding: 0px 5px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  color: #949494;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.24px;
}
#header .inner .user-info .top-box .logout-btn:before {
  width: 12px;
  height: 12px;
  background: url(../imgs/icon_logout.svg) no-repeat center center;
  background-size: 12px 12px;
  content: "";
}
#header .inner .user-info .top-box .logout-btn:hover {
  background: #EFEFEF;
}
#header .inner .user-info .bottom-box {
  margin-top: 8px;
}
#header .inner .user-info .bottom-box .last-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #949494;
  font-size: 14px;
  line-height: 18px;
}
#header .inner .user-info .bottom-box .last-login .clock {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 11px;
  background: url(../imgs/icon_clock.svg) no-repeat center center;
  background-size: 14px 14px;
}
#header .inner .user-info .bottom-box .last-login .clock:after {
  position: absolute;
  top: 50%;
  left: 19px;
  width: 1px;
  height: 8px;
  margin-top: -4px;
  background: #DFDFDF;
  content: "";
}

.navigation-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DFDFDF;
}
.navigation-sub .left-group, .navigation-sub .right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.navigation-sub .left-group .list-condition, .navigation-sub .right-group .list-condition {
  margin-right: 8px;
}
.navigation-sub .left-group .list-condition dl, .navigation-sub .right-group .list-condition dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.navigation-sub .left-group .list-condition dl dt, .navigation-sub .right-group .list-condition dl dt {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.navigation-sub .left-group .list-condition dl dd, .navigation-sub .right-group .list-condition dl dd {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}
.navigation-sub .left-group .search-form, .navigation-sub .right-group .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  overflow: hidden;
}
.navigation-sub .left-group .search-form input[type=text], .navigation-sub .right-group .search-form input[type=text] {
  width: 100%;
  height: 38px;
  padding: 0px 8px;
  border: none;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.navigation-sub .left-group .search-form input[type=text]::-webkit-input-placeholder, .navigation-sub .right-group .search-form input[type=text]::-webkit-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.navigation-sub .left-group .search-form input[type=text]::-moz-placeholder, .navigation-sub .right-group .search-form input[type=text]::-moz-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.navigation-sub .left-group .search-form input[type=text]:-ms-input-placeholder, .navigation-sub .right-group .search-form input[type=text]:-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.navigation-sub .left-group .search-form input[type=text]::-ms-input-placeholder, .navigation-sub .right-group .search-form input[type=text]::-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.navigation-sub .left-group .search-form input[type=text]::placeholder, .navigation-sub .right-group .search-form input[type=text]::placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.navigation-sub .left-group .search-form .search-btn, .navigation-sub .right-group .search-form .search-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 40px;
  width: 40px;
  height: 38px;
  padding: 0px;
  background-image: url(../imgs/icon_list_search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  border-left: 1px solid #DFDFDF;
  border-radius: 0px;
  text-indent: -9999px;
}

.scroll-frame {
  height: 100%;
  padding: 40px;
  overflow-y: overlay;
}
.scroll-frame .article {
  margin: 40px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.scroll-frame .article + .navigation-sub {
  margin-top: 0px;
  padding-top: 0px;
}
.scroll-frame .article .article-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px 40px;
}
.scroll-frame .article .article-head .left-group, .scroll-frame .article .article-head .right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.scroll-frame .article .article-head .left-group > button, .scroll-frame .article .article-head .right-group > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0px 10px;
  background: #333;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  font-weight: bold;
}
.scroll-frame .article .article-head .left-group > button#excel-btn, .scroll-frame .article .article-head .right-group > button#excel-btn {
  gap: 0px 10px;
  background: #107C42;
}
.scroll-frame .article .article-head .left-group > button#excel-btn:before, .scroll-frame .article .article-head .right-group > button#excel-btn:before {
  width: 22px;
  height: 24px;
  background: url(../imgs/icon_excel.svg) no-repeat center center;
  content: "";
}
.scroll-frame .article .article-head .left-group .dropdown-box > button, .scroll-frame .article .article-head .right-group .dropdown-box > button {
  width: 200px;
  height: 40px;
  padding-left: 10px;
}
.scroll-frame .article .article-head .left-group .dropdown-box > button:before, .scroll-frame .article .article-head .right-group .dropdown-box > button:before {
  right: 40px;
  height: 24px;
}
.scroll-frame .article .article-head .left-group .dropdown-box > button:after, .scroll-frame .article .article-head .right-group .dropdown-box > button:after {
  width: 40px;
}
.scroll-frame .article #graph-element {
  height: 368px;
  padding: 0px 40px 20px;
  font-size: 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.scroll-frame .article #graph-element * {
  font-size: inherit !important;
}

.scroll-aside {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  width: 340px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
.scroll-aside .inner {
  height: 100%;
  padding: 20px 20px 40px;
  overflow-y: overlay;
}
.scroll-aside .inner .menu-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0px;
}
.scroll-aside .inner .menu-list ul li {
  width: 100%;
}
.scroll-aside .inner .menu-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 10px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.scroll-aside .inner .menu-list ul li.on a {
  background: #F36633;
  border-color: #F14A0E;
  color: #fff;
}
.scroll-aside + .scroll-frame {
  padding-left: 400px;
}

/* layouts */
/* components */
.fc-blue {
  color: #2970FF !important;
}
.fc-red {
  color: #F04438 !important;
}
.fc-ornage {
  color: #F36633 !important;
}
.fc-gray {
  color: #878787 !important;
}
.fc-black {
  color: #111111 !important;
}

.ta-left {
  text-align: left !important;
}
.ta-center {
  text-align: center !important;
}
.ta-right {
  text-align: right !important;
}

.btn {
  min-width: 60px;
  height: 40px;
  padding: 0px 11px;
  background-color: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  line-height: 38px;
  font-weight: 700;
  text-align: center;
}
.btn:hover {
  background-color: #EFEFEF;
  border-color: #DFDFDF;
}
.btn.type-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn.type-edit:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_edit.svg) no-repeat center center;
  content: "";
}
.btn.type-edit:hover {
  background-color: #333;
  border-color: #333;
}
.btn.type-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn.type-search:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_search_list.svg) no-repeat center center;
  content: "";
}
.btn.type-search:hover {
  background-color: #333;
  border-color: #333;
}
.btn.type-excel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
  background-color: #107C42;
  border-color: #107C42;
  color: #fff;
}
.btn.type-excel:before {
  width: 14px;
  height: 16px;
  background: url(../imgs/icon_excel.svg) no-repeat center center;
  content: "";
}
.btn.type-excel:hover {
  background-color: #0D5E2E;
  border-color: #0D5E2E;
}
.btn.type-blue {
  background-color: #0062C0;
  border-color: #0062C0;
  color: #fff;
}
.btn.type-blue:hover {
  background-color: #005BAB;
  border-color: #005BAB;
}
.btn.type-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 2px;
  padding: 0px 11px 0px 9px;
}
.btn.type-add:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_plus.svg) no-repeat center center;
  content: "";
}
.btn.type-black {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn.type-black:hover {
  background-color: #333;
  border-color: #333;
}
.btn.type-delete {
  border-color: #F04438;
  color: #F04438;
}
.btn.type-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-calendar:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_calendar.svg) no-repeat center center;
  content: "";
}
.btn.type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-list:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_list.svg) no-repeat center center;
  content: "";
}
.btn.type-primary {
  background: #F36633;
  border-color: #F36633;
  color: #fff;
}
.btn.type-primary:hover {
  background: #F14A0E;
  border-color: #F14A0E;
}
.btn.type-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-text:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_content_text.svg) no-repeat center center;
  content: "";
}
.btn.type-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 5px;
}
.btn.type-arrow:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_button_arrow.svg) no-repeat center center;
  content: "";
}
.btn.type-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-link:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_content_link.svg) no-repeat center center;
  content: "";
}
.btn.type-add-black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 2px;
  padding: 0px 11px 0px 9px;
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn.type-add-black:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_plus_white.svg) no-repeat center center;
  content: "";
}
.btn.type-add-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 2px;
  padding: 0px 11px 0px 9px;
  background-color: #F36633;
  border-color: #F36633;
  color: #fff;
}
.btn.type-add-primary:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_plus_white.svg) no-repeat center center;
  content: "";
}
.btn.type-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-card:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_type_card.svg) no-repeat center center;
  content: "";
}
.btn.type-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  padding: 0px 11px 0px 9px;
}
.btn.type-video:before {
  width: 20px;
  height: 20px;
  background: url(../imgs/icon_type_video.svg) no-repeat center center;
  content: "";
}
.btn.type-submit {
  padding: 0px 12px;
  background: linear-gradient(346deg, #F1994C 0%, #E9580E 100%);
  border: none;
  color: #fff;
  line-height: 40px;
}
.btn.type-submit:hover {
  background: linear-gradient(162deg, #F36633 0%, #FA4C03 53.13%, #FF7200 100%);
}

.loading-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loading-overlay span {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 7px solid #ececec;
  border-radius: 50%;
  border-top-color: #2970FF;
  -webkit-animation: spin 1s ease infinite;
          animation: spin 1s ease infinite;
}
.loading-overlay p {
  margin-top: 24px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.check-item {
  display: inline-block;
}
.check-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.check-item > label input {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0px;
  background: url("../imgs/icon_checkbox_off.svg") no-repeat center center;
  border: none;
}
.check-item > label input:checked {
  background: url("../imgs/icon_checkbox_on.svg") no-repeat center center;
}
.check-item > label p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.check-item > input {
  display: none;
}
.check-item > input + label {
  display: inline-block;
  padding-left: 28px;
  background: url("../imgs/icon_checkbox_off.svg") no-repeat center left;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.check-item > input:checked + label {
  background: url("../imgs/icon_checkbox_on.svg") no-repeat center left;
}

.radio-item {
  display: inline-block;
}
.radio-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.radio-item > label input {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0px;
  background: url("../imgs/icon_radio_off.svg") no-repeat center left;
  border: none;
}
.radio-item > label input:checked {
  background: url("../imgs/icon_radio_on.svg") no-repeat center left;
}
.radio-item > label p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.radio-item > input {
  display: none;
}
.radio-item > input + label {
  display: inline-block;
  padding-left: 28px;
  background: url("../imgs/icon_radio_off.svg") no-repeat center left;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.radio-item > input:checked + label {
  background: url("../imgs/icon_radio_on.svg") no-repeat center left;
}

.radio-box,
.check-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 24px;
  padding: 8px 0px;
}
.radio-box .check-item, .radio-box .radio-item,
.check-box .check-item,
.check-box .radio-item {
  position: static;
}
.radio-box.error-box,
.check-box.error-box {
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #F04438;
  border-radius: 5px;
}
.radio-box.error-box .error,
.check-box.error-box .error {
  display: none !important;
  position: absolute;
  top: 43px;
  left: 0px;
  z-index: 10;
  min-height: 36px;
  padding: 10px 10px 10px 36px;
  background: #fff url(../imgs/icon_invalid.svg) no-repeat center left 10px;
  border: 1px solid #F04438;
  border-radius: 5px;
  color: #F04438;
  font-size: 12px;
  line-height: 18px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.radio-box.error-box .error:before,
.check-box.error-box .error:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #F04438;
  border-top: 0;
  margin-left: -10px;
  margin-top: -10px;
  content: "";
}
.radio-box.error-box .error:after,
.check-box.error-box .error:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
  margin-left: -9px;
  margin-top: -9px;
  content: "";
}
.radio-box.error-box:hover .error,
.check-box.error-box:hover .error {
  display: block !important;
}
.radio-box.valid-box .error,
.check-box.valid-box .error {
  display: none !important;
}

.input-box input[type=text],
.input-box input[type=password] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0px 40px 0px 10px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  -webkit-transition-property: border-color, background;
  transition-property: border-color, background;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.input-box input[type=text]::-webkit-input-placeholder, .input-box input[type=password]::-webkit-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.input-box input[type=text]::-moz-placeholder, .input-box input[type=password]::-moz-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.input-box input[type=text]:-ms-input-placeholder, .input-box input[type=password]:-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.input-box input[type=text]::-ms-input-placeholder, .input-box input[type=password]::-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.input-box input[type=text]::placeholder,
.input-box input[type=password]::placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.input-box input[type=text]:focus,
.input-box input[type=password]:focus {
  /*border-color: #F1994C;*/
  border-color: #ef3225;
}
.input-box input[type=text]:disabled,
.input-box input[type=password]:disabled {
  border-color: #E0E0E0;
  background: #E0E0E0;
  color: #AAAAAA;
}
.input-box textarea {
  display: block;
  width: 100%;
  height: 96px;
  padding: 10px 8px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  overflow: overlay;
  resize: none;
}
.input-box textarea::-webkit-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 20px;
}
.input-box textarea::-moz-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 20px;
}
.input-box textarea:-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 20px;
}
.input-box textarea::-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 20px;
}
.input-box textarea::placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 20px;
}
.input-box textarea:focus {
  /*border-color: #F1994C;*/
  border-color: #ef3225;
}
.input-box textarea:-moz-read-only {
  background: #E0E0E0;
}
.input-box textarea:read-only {
  background: #E0E0E0;
}
.input-box textarea:disabled {
  border-color: #E0E0E0;
  background: #E0E0E0;
  color: #AAAAAA;
}
.input-box .input-delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  background: #A5A5A5 url(../imgs/icon_input_delete.svg) no-repeat center center;
  border-radius: 50%;
  font-size: 0px;
}
.input-box.date-picker input[type=text] {
  padding-right: 79px;
}
.input-box.date-picker input[type=text]:disabled {
  border-color: #E0E0E0;
  background: #E0E0E0;
  color: #AAAAAA;
}
.input-box.date-picker > .icon {
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 1;
  width: 40px;
  height: 24px;
  margin-top: -12px;
  background: url(../imgs/icon_datepicker.svg) no-repeat center center;
  border-left: 1px solid #DFDFDF;
  cursor: pointer;
}
.input-box.date-picker .input-delete-btn {
  right: 50px;
}
.input-box.date-picker.view-age .age {
  position: absolute;
  top: 50%;
  right: 62px;
  z-index: 1;
  margin-top: -12px;
  color: #878787;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: right;
}
.input-box.agency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 10px;
}
.input-box.agency > .dropdown-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.input-box.agency > input[type=text],
.input-box.agency > input[type=password] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.input-box.agency #hco-search {
  width: 70px;
  height: 40px;
  background: #333;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
}
.input-box.agency .input-delete-btn {
  right: 140px;
}
.input-box.agency .agency-list {
  display: none;
  position: absolute;
  top: 40px;
  left: 0px;
  right: 80px;
  z-index: 9;
  max-height: 240px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: overlay;
}
.input-box.agency .agency-list ul li button {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-top: none;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
}
.input-box.agency .agency-list ul li button:hover {
  background: #F1F1F1;
}
.input-box.agency .agency-list ul li button span {
  font: inherit;
  background: rgba(243, 102, 51, 0.4);
  border-radius: 3px;
}
.input-box.agency .agency-list ul li.hide {
  display: none;
}
.input-box.agency .agency-list ul li:first-child button {
  border-top: 1px solid #D9D9D9;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.input-box.agency .agency-list ul li:last-child button {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.input-box.agency .agency-list ul li.empty {
  margin-top: 0px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  color: #A5A5A5;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
.input-box.error-box .error {
  display: none !important;
  position: absolute;
  top: 51px;
  z-index: 10;
  min-height: 36px;
  padding: 10px 10px 10px 35px;
  background: #fff url(../imgs/icon_invalid.svg) no-repeat center left 10px;
  border: 1px solid #F04438;
  border-radius: 5px;
  color: #F04438;
  font-size: 12px;
  line-height: 18px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.input-box.error-box .error:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #F04438;
  border-top: 0;
  margin-left: -10px;
  margin-top: -10px;
  content: "";
}
.input-box.error-box .error:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
  margin-left: -9px;
  margin-top: -9px;
  content: "";
}
.input-box.error-box input[type=text],
.input-box.error-box input[type=password],
.input-box.error-box textarea {
  border-color: #F04438;
}
.input-box.error-box input[type=text]:focus + .error,
.input-box.error-box input[type=password]:focus + .error,
.input-box.error-box textarea:focus + .error {
  display: block !important;
}
.input-box.error-box input[type=text]:focus + .error:empty,
.input-box.error-box input[type=password]:focus + .error:empty,
.input-box.error-box textarea:focus + .error:empty {
  display: none !important;
}
.input-box.error-box.textarea .error {
  top: 106px;
}
.input-box.valid-box .error {
  display: none !important;
}
.input-box.size-medium input[type=text],
.input-box.size-medium input[type=password] {
  height: 48px;
  padding: 0px 20px;
  font-size: 16px;
}
.input-box.size-medium textarea {
  padding: 16px 20px;
  font-size: 16px;
}
.input-box.size-medium .input-delete-btn {
  top: 14px;
}
.input-box.size-medium.agency #hco-search {
  height: 48px;
  line-height: 48px;
}
.input-box.size-medium.agency .agency-list {
  top: 48px;
}
.input-box.size-medium.agency .agency-list ul li button {
  height: 44px;
  padding: 0px 10px 0px 20px;
}
.input-box.size-medium.error-box .error {
  top: 59px;
}

.input-row > label,
.input-row > .label,
.input-col > label,
.input-col > .label {
  display: block;
  margin-bottom: 6px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  cursor: default;
}
.input-row > label span,
.input-row > .label span,
.input-col > label span,
.input-col > .label span {
  font: inherit;
  color: #A5A5A5;
}
.input-row > label span.required,
.input-row > .label span.required,
.input-col > label span.required,
.input-col > .label span.required {
  color: #F36633;
}
.input-row.horizontal,
.input-col.horizontal {
  padding-left: 91px;
}
.input-row.horizontal > label,
.input-row.horizontal > .label,
.input-col.horizontal > label,
.input-col.horizontal > .label {
  position: absolute;
  top: 0px;
  left: 0px;
  margin-bottom: 0px;
  line-height: 48px;
}
.input-row > .hint,
.input-col > .hint {
  margin-top: 10px;
  color: #F36633;
  font-size: 14px;
  line-height: 20px;
}
.input-row.with-btn,
.input-col.with-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 8px;
}
.input-row.with-btn > .input-box:first-child,
.input-col.with-btn > .input-box:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.input-row.with-btn > .btn:last-child,
.input-col.with-btn > .btn:last-child {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.input-row-group .input-row,
.input-row-group .input-col-group {
  margin-top: 20px;
}
.input-row-group .input-row.not-label,
.input-row-group .input-col-group.not-label {
  margin-top: 10px !important;
}
.input-row-group .input-row:first-child,
.input-row-group .input-col-group:first-child {
  margin-top: 0px !important;
}

.input-col-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px 16px;
}
.input-col-group .input-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.btn-row input[type=submit],
.btn-row .primary-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 48px;
  background: linear-gradient(346deg, #F1994C 0%, #E9580E 100%);
  border: none;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  line-height: 48px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 640px) {
  .btn-row .primary-btn {
    height: 56px;
    line-height: 56px;
  }
}

.btn-row input[type=submit]:disabled,
.btn-row .primary-btn:disabled {
  background: #AAAAAA;
}
.btn-row a, .btn-row button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 48px;
  background: #fff;
  border: 1px solid #878787;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #878787;
  font-size: 16px;
  line-height: 46px;
  font-weight: 700;
  text-align: center;
}
.btn-row a.gray-btn, .btn-row button.gray-btn {
  height: 48px;
  background: #878787;
  border-color: #878787;
  color: #fff;
}
@media (max-width: 640px) {
  .btn-row a.gray-btn, .btn-row button.gray-btn {
    height: 56px;
  }
}
.btn-row a.black-btn, .btn-row button.black-btn {
  height: 48px;
  background: #111111;
  border-color: #111111;
  color: #fff;
}
.btn-row a[style-type=delete], .btn-row button[style-type=delete] {
  background: #F04438;
  border-color: #F04438;
  color: #fff;
}

.btn-row-group .btn-row {
  margin-top: 10px;
}
.btn-row-group .btn-row:first-child {
  margin-top: 0px !important;
}

.dropdown-box > button {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0px 48px 0px 10px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.dropdown-box > button span {
  font: inherit;
}
.dropdown-box > button strong {
  font: inherit;
  font-weight: 700;
}
.dropdown-box > button:after {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  width: 40px;
  background: url("../imgs/icon_dropdown_arrow.svg") no-repeat center center;
  background-size: 24px 24px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.dropdown-box > button:before {
  position: absolute;
  top: 7px;
  right: 40px;
  z-index: 2;
  width: 1px;
  height: 24px;
  background: #D9D9D9;
  content: "";
}
.dropdown-box > button:disabled {
  border-color: #E0E0E0;
  background: #E0E0E0;
  color: #AAAAAA;
}
.dropdown-box .dropdown-list {
  display: none;
  position: absolute;
  top: 40px;
  left: 0px;
  z-index: 9;
  min-width: 100%;
  max-height: 240px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: overlay;
}
.dropdown-box .dropdown-list .list-search {
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}
.dropdown-box .dropdown-list .list-search input {
  padding-left: 38px;
  background: #fff url(../imgs/icon_search.svg) no-repeat center left 12px;
  border: none;
  border-bottom: 1px solid #D9D9D9;
  border-radius: 0px;
}
.dropdown-box .dropdown-list ul li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
  width: 100%;
  height: 40px;
  padding: 0px 10px 0px 10px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-top: none;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  white-space: nowrap;
}
.dropdown-box .dropdown-list ul li button span {
  font: inherit;
}
.dropdown-box .dropdown-list ul li button strong {
  font: inherit;
  font-weight: 700;
}
.dropdown-box .dropdown-list ul li button:hover {
  background: #F1F1F1;
}
.dropdown-box .dropdown-list ul li button.selected {
  background: #1e43e3;
  border-color: #1e43e3;
  color: #fff;
}
.dropdown-box .dropdown-list ul li button.selected span, .dropdown-box .dropdown-list ul li button.selected strong {
  color: #fff !important;
}
.dropdown-box .dropdown-list ul li button.selected:after {
  width: 13px;
  height: 10px;
  background: url("../imgs/icon_dropdown_check.svg") no-repeat center center;
  content: "";
}
.dropdown-box .dropdown-list ul li:first-child button {
  border-top: 1px solid #D9D9D9;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dropdown-box .dropdown-list ul li:last-child button {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dropdown-box.relative .dropdown-list {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  margin-top: 5px;
}
.dropdown-box.placeholder > button {
  color: #A5A5A5;
}
.dropdown-box.error-box .error {
  display: none !important;
  position: absolute;
  top: 51px;
  z-index: 10;
  min-height: 36px;
  padding: 10px 10px 10px 35px;
  background: #fff url(../imgs/icon_invalid.svg) no-repeat center left 10px;
  border: 1px solid #F04438;
  border-radius: 5px;
  color: #F04438;
  font-size: 12px;
  line-height: 18px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.dropdown-box.error-box .error:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #F04438;
  border-top: 0;
  margin-left: -10px;
  margin-top: -10px;
  content: "";
}
.dropdown-box.error-box .error:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
  margin-left: -9px;
  margin-top: -9px;
  content: "";
}
.dropdown-box.error-box > button {
  border-color: #F04438;
}
.dropdown-box.error-box .dropdown-list {
  border-color: #F04438;
}
.dropdown-box.error-box:not(.open):hover .error {
  display: block !important;
}
.dropdown-box.valid-box .error {
  display: none !important;
}
.dropdown-box.open > button:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dropdown-box.multi .dropdown-list {
  min-width: 100%;
  padding: 0px;
}
.dropdown-box.multi .dropdown-list ul {
  padding: 10px;
}
.dropdown-box.multi .dropdown-list ul li {
  margin-top: 5px;
}
.dropdown-box.multi .dropdown-list ul li:first-child {
  margin-top: 0px;
}
.dropdown-box.multi .dropdown-list ul li.empty {
  margin-top: 0px;
  color: #A5A5A5;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
.dropdown-box.multi .dropdown-list ul li label input {
  display: none;
}
.dropdown-box.multi .dropdown-list ul li label input + p {
  padding: 5px 10px 5px 35px;
  background: #fff url(../imgs/icon_checkbox_off.svg) no-repeat center left 5px;
  border-radius: 5px;
  color: #000;
  font-size: 14px;
  line-height: 24px;
}
.dropdown-box.multi .dropdown-list ul li label input + p span {
  font: inherit;
  background: rgba(241, 153, 76, 0.4);
  border-radius: 3px;
}
.dropdown-box.multi .dropdown-list ul li label input:checked + p {
  background: #F1F1F1 url(../imgs/icon_checkbox_on.svg) no-repeat center left 5px;
}
.dropdown-box[direction=top] .list-search {
  top: unset;
  bottom: 0px;
  border-bottom: none;
  border-top: 1px solid #878787;
}
.dropdown-box[direction=top] .dropdown-list {
  top: unset;
  bottom: 41px;
}
.dropdown-box.size-medium > button {
  height: 48px;
  padding: 0px 52px 0px 20px;
  font-size: 16px;
}
.dropdown-box.size-medium > button:after {
  width: 48px;
}
.dropdown-box.size-medium > button:before {
  top: 8px;
  right: 48px;
  height: 32px;
}
.dropdown-box.size-medium .dropdown-list {
  top: 48px;
}
.dropdown-box.size-medium .dropdown-list .list-search input {
  padding-left: 46px;
}
.dropdown-box.size-medium .dropdown-list ul li button {
  height: 44px;
  padding: 0px 10px 0px 20px;
  font-size: 16px;
}
.dropdown-box.size-medium.multi .dropdown-list ul li label input + p {
  font-size: 16px;
}
.dropdown-box.size-medium.error-box .error {
  top: 59px;
}

.date-range-box,
.range-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.date-range-box > span,
.range-box > span {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

.table-sub-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.table-sub-caption .left-group, .table-sub-caption .right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.table-sub-caption + [class^=table-style] {
  margin-top: 16px;
}

.table-style-a .table-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.table-style-a .table-caption .left-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.table-style-a .table-caption .left-group .list-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.table-style-a .table-caption .left-group .list-count dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.table-style-a .table-caption .left-group .list-count dl dt {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.table-style-a .table-caption .left-group .list-count dl dd {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}
.table-style-a .table-caption .left-group .list-count dl dd span {
  font: inherit;
}
.table-style-a .table-caption .left-group .list-count .slash {
  color: #B7B7B7;
  font-size: 16px;
  line-height: 20px;
}
.table-style-a .table-caption .right-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
}
.table-style-a .table-wrapper {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  overflow-x: overlay;
}
.table-style-a .table-wrapper table {
  width: 100%;
}
.table-style-a .table-wrapper table thead tr th {
  background: #F5F5F5;
  border-top: 1px solid #DFDFDF;
  border-left: 1px solid #DFDFDF;
  vertical-align: middle;
}
.table-style-a .table-wrapper table thead tr th:first-child {
  border-left: none;
}
.table-style-a .table-wrapper table thead tr th > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
.table-style-a .table-wrapper table thead tr:first-child th {
  border-top: none;
}
.table-style-a .table-wrapper table tbody tr td {
  border-top: 1px solid #DFDFDF;
  border-left: 1px solid #DFDFDF;
  text-align: center;
  vertical-align: middle;
}
.table-style-a .table-wrapper table tbody tr td:first-child {
  border-left: none;
}
.table-style-a .table-wrapper table tbody tr td > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.table-style-a .table-wrapper table tbody tr td > p strong {
  font-weight: 700;
}
.table-style-a .table-wrapper table tbody tr td > p a {
  text-decoration: underline;
}
.table-style-a .table-wrapper table tbody tr td > p.text-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.table-style-a .table-wrapper table tbody tr td .status-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.table-style-a .table-wrapper table tbody tr td .status-box button {
  min-width: auto;
}
.table-style-a .table-wrapper table tbody tr.modal-btn {
  background: #fff;
  cursor: pointer;
}
.table-style-a .table-wrapper table tbody tr.modal-btn:hover {
  background: #FEF1EC;
}
.table-style-a .table-wrapper table tbody tr.select-btn {
  background: #fff;
  cursor: pointer;
}
.table-style-a .table-wrapper table tbody tr.select-btn.current {
  background: #FEF1EC;
}
.table-style-a .table-wrapper .empty {
  border: 1px solid #E0E0E0;
  border-top: none;
  color: #878787;
  font-size: 16px;
  line-height: 120px;
  text-align: center;
}

.table-style-b .table-wrapper {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
}
.table-style-b .table-wrapper table {
  width: 100%;
}
.table-style-b .table-wrapper table tbody tr th {
  background: #EFEFEF;
  border-top: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  vertical-align: middle;
}
.table-style-b .table-wrapper table tbody tr th > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
  padding: 8px 12px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
.table-style-b .table-wrapper table tbody tr th > p span {
  font: inherit;
}
.table-style-b .table-wrapper table tbody tr th > p span.normal {
  font-weight: 400;
}
.table-style-b .table-wrapper table tbody tr th > p span.required {
  margin-right: 8px;
  color: #F04438;
  font-weight: 400;
}
.table-style-b .table-wrapper table tbody tr td {
  position: relative;
  padding: 8px 12px;
  border-top: 1px solid #DFDFDF;
  vertical-align: middle;
}
.table-style-b .table-wrapper table tbody tr td > p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
.table-style-b .table-wrapper table tbody tr td > p strong {
  font-weight: 700;
}
.table-style-b .table-wrapper table tbody tr td .unapprove-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  margin-top: -20px;
}
.table-style-b .table-wrapper table tbody tr td .status-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.table-style-b .table-wrapper table tbody tr td .status-box button {
  min-width: auto;
}
.table-style-b .table-wrapper table tbody tr:first-child th, .table-style-b .table-wrapper table tbody tr:first-child td {
  border-top: none;
}

.table-grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.table-grid-box.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.paging {
  margin: 32px auto 0px;
}
.paging ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
}
.paging ul li:not(.prev, .next) a {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  padding: 0px 5px;
  background: transparent;
  border-radius: 10px;
  color: #878787;
  font-size: 12px;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.paging ul li:not(.prev, .next) a.active, .paging ul li:not(.prev, .next) a:hover {
  background: #111111;
  color: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.paging ul li.next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
}
.paging ul li.next a:after {
  width: 20px;
  height: 20px;
  background: url("../imgs/icon_paging_next.svg") no-repeat center center;
  content: "";
}
.paging ul li.prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
}
.paging ul li.prev a:after {
  width: 20px;
  height: 20px;
  background: url("../imgs/icon_paging_prev.svg") no-repeat center center;
  content: "";
}

#calendar {
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  overflow: hidden;
}
#calendar .calendar-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 16px;
  padding: 24px 0px 16px 0px;
  border-bottom: 1px solid #DFDFDF;
}
#calendar .calendar-navigation .prev-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 50%;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
#calendar .calendar-navigation .prev-btn:hover {
  background: #F1F1F1;
}
#calendar .calendar-navigation .prev-btn:after {
  width: 16px;
  height: 16px;
  background: url("../imgs/icon_calendar_prev.svg") no-repeat center center;
  content: "";
}
#calendar .calendar-navigation .calendar-title {
  color: #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
#calendar .calendar-navigation .next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 50%;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
#calendar .calendar-navigation .next-btn:hover {
  background: #F1F1F1;
}
#calendar .calendar-navigation .next-btn:after {
  width: 16px;
  height: 16px;
  background: url("../imgs/icon_calendar_next.svg") no-repeat center center;
  content: "";
}
#calendar .calendar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
#calendar .calendar-wrapper .calendar-head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
#calendar .calendar-wrapper .calendar-head .calendar-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;
}
#calendar .calendar-wrapper .calendar-head .calendar-row .calendar-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 48px;
  padding: 10px 0px;
  background: #F5F5F5;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}
#calendar .calendar-wrapper .calendar-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  width: 100%;
}
#calendar .calendar-wrapper .calendar-body .calendar-row {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 1fr;
  min-height: 194px;
  border-top: 1px solid #DFDFDF;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col {
  height: 100%;
  padding: 16px;
  border-left: 1px solid #DFDFDF;
  overflow: hidden;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col:first-child {
  border-left: none;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col .date {
  width: 24px;
  height: 24px;
  color: #111111;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col .date.today {
  background: #000;
  border-radius: 12px;
  color: #fff;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: #FEF1EC;
  border-radius: 5px;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info .type {
  padding: 4px 6px;
  background: #F36633;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  line-height: 13px;
  font-weight: 500;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info p .time {
  color: #000;
  font-size: 12px;
  line-height: 16px;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info p .slash {
  width: 1px;
  height: 8px;
  background: #DFDFDF;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li .schedule-info p .people {
  padding-left: 14px;
  background: url("../imgs/icon_people.svg") no-repeat center left;
  color: #949494;
  font-size: 12px;
  line-height: 16px;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col ul li h6 {
  margin-top: 8px;
  color: #000;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col.placeholder {
  background: #EFEFEF;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col.placeholder .date {
  color: #949494;
}
#calendar .calendar-wrapper .calendar-body .calendar-row .calendar-col.placeholder .date.today {
  background: #949494;
  color: #fff;
}

.group-list .list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 10px;
  margin-bottom: 32px;
  padding: 0px 0px 16px;
  border-bottom: 1px solid #DFDFDF;
}
.group-list .list-head .search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
  overflow: hidden;
}
.group-list .list-head .search-box .search-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  overflow: hidden;
}
.group-list .list-head .search-box .search-form input[type=text] {
  width: 100%;
  height: 38px;
  padding: 0px 8px;
  border: none;
  color: #000;
  font-size: 14px;
  line-height: 21px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.group-list .list-head .search-box .search-form input[type=text]::-webkit-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.group-list .list-head .search-box .search-form input[type=text]::-moz-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.group-list .list-head .search-box .search-form input[type=text]:-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.group-list .list-head .search-box .search-form input[type=text]::-ms-input-placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.group-list .list-head .search-box .search-form input[type=text]::placeholder {
  color: #A5A5A5;
  font-size: 14px;
  line-height: 21px;
}
.group-list .list-head .search-box .search-form .search-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 40px;
  width: 40px;
  height: 38px;
  padding: 0px;
  background-image: url(../imgs/icon_list_search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  border-left: 1px solid #DFDFDF;
  border-radius: 0px;
  text-indent: -9999px;
}
.group-list .list-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0px;
}
.group-list .list-body ul li {
  position: relative;
  width: 100%;
}
.group-list .list-body ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
  height: 48px;
  padding: 10px 12px 10px 10px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
}
.group-list .list-body ul li a .group-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.group-list .list-body ul li a .group-count {
  color: #949494;
  font-size: 13px;
  line-height: 20px;
}
.group-list .list-body ul li.on a {
  background: #F36633;
  border-color: #F14A0E;
}
.group-list .list-body ul li.on a .group-name,
.group-list .list-body ul li.on a .group-count {
  color: #fff;
}
.group-list .list-body ul li.list-placeholder {
  height: 48px;
  background: #FCFCFC;
  border: 1px dashed #DFDFDF;
  border-radius: 5px;
}
.group-list .list-body ul li:hover a {
  background: #EFEFEF;
}
.group-list .list-body ul li:hover.on a {
  background: #F14A0E;
}
.group-list .list-body ul.ui-sortable li .drag-bar {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: url(../imgs/icon_drag.svg) no-repeat center center;
  border: none;
  border-radius: 12px;
}
.group-list .list-body ul.ui-sortable li .drag-bar:hover {
  background: rgba(0, 0, 0, 0.1) url(../imgs/icon_drag.svg) no-repeat center center;
}
.group-list .list-body ul.ui-sortable li a {
  padding-left: 42px;
}
.group-list .list-body ul.ui-sortable li.on .drag-bar {
  background: url(../imgs/icon_drag_white.svg) no-repeat center center;
}
.group-list .list-body ul.ui-sortable li.on .drag-bar:hover {
  background: rgba(0, 0, 0, 0.1) url(../imgs/icon_drag_white.svg) no-repeat center center;
}

.content-list ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 32px 16px;
}
.content-list ul li a, .content-list ul li button {
  display: block;
}
.content-list ul li a .thumb, .content-list ul li button .thumb {
  position: relative;
  padding-bottom: 100%;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}
.content-list ul li a .thumb > img, .content-list ul li button .thumb > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-list ul li a .thumb .type-label, .content-list ul li button .thumb .type-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  height: 24px;
  padding: 0px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.content-list ul li a .thumb .type-label.video:before, .content-list ul li button .thumb .type-label.video:before {
  width: 12px;
  height: 12px;
  background: url("../imgs/icon_type_video_small.svg") no-repeat center center;
  content: "";
}
.content-list ul li a .thumb .type-label.card:before, .content-list ul li button .thumb .type-label.card:before {
  width: 12px;
  height: 12px;
  background: url("../imgs/icon_type_card_small.svg") no-repeat center center;
  content: "";
}
.content-list ul li a .thumb .expire-label, .content-list ul li button .thumb .expire-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 8px;
  height: 35px;
  padding: 0px 7px;
  background: #fff;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.content-list ul li a .thumb .expire-label p, .content-list ul li button .thumb .expire-label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 4px;
  color: #000;
  font-size: 12px;
  line-height: 14px;
}
.content-list ul li a .thumb .expire-label p strong, .content-list ul li button .thumb .expire-label p strong {
  font: inherit;
  font-weight: 500;
}
.content-list ul li a .thumb .expire-label:after, .content-list ul li button .thumb .expire-label:after {
  width: 16px;
  height: 16px;
  padding-left: 7px;
  background: url("../imgs/icon_expire_black.svg") no-repeat center right;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  content: "";
}
.content-list ul li a .thumb .expire-label.warning, .content-list ul li button .thumb .expire-label.warning {
  background-color: #F79009;
  border-color: #E38407;
}
.content-list ul li a .thumb .expire-label.warning p, .content-list ul li button .thumb .expire-label.warning p {
  color: #fff;
}
.content-list ul li a .thumb .expire-label.warning:after, .content-list ul li button .thumb .expire-label.warning:after {
  background: url("../imgs/icon_expire_white.svg") no-repeat center right;
  border-left-color: rgba(255, 255, 255, 0.5);
}
.content-list ul li a .thumb .expire-label.danger, .content-list ul li button .thumb .expire-label.danger {
  background-color: #F04438;
  border-color: #EF3225;
}
.content-list ul li a .thumb .expire-label.danger p, .content-list ul li button .thumb .expire-label.danger p {
  color: #fff;
}
.content-list ul li a .thumb .expire-label.danger:after, .content-list ul li button .thumb .expire-label.danger:after {
  background: url("../imgs/icon_expire_white.svg") no-repeat center right;
  border-left-color: rgba(255, 255, 255, 0.5);
}
.content-list ul li a .subject, .content-list ul li button .subject {
  margin-top: 12px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: -webkit-box;
  max-height: 48px;
  overflow: hidden;
  vertical-align: top;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.content-list ul li a .date, .content-list ul li button .date {
  margin-top: 8px;
  color: #949494;
  font-size: 12px;
  line-height: 14px;
}

/* components */