/*---BASE---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

/* ol, ul {
	list-style: none;
} */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html, body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans SC", sans-serif;
  color: #1F1F2D;
  line-height: 1;
  overflow-y: hidden;
}

html.no-scroll {
  overflow-y: hidden;
}

img {
  max-width: 100%;
}

input {
  font-family: "Noto Sans SC", sans-serif;
}

input:focus {
  outline: 0 none;
}

textarea:focus {
  outline: 0 none;
}

a {
  text-decoration: unset;
}

header .wrapper .sort {
  display: none;
}
header .wrapper .sort.active {
  display: flex;
}

.input-wrapper {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.input-wrapper.active label {
  font-size: 12px;
  line-height: 160%;
  color: #13ADAD;
  top: 3px;
}
.input-wrapper.active input {
  border-color: #13ADAD;
}
.input-wrapper.active .showPassword {
  filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(358%) hue-rotate(131deg) brightness(89%) contrast(100%);
}
.input-wrapper.error label {
  color: #F95557;
}
.input-wrapper.error input {
  background: #FFEBED;
  border-color: #F95557;
  border-radius: 8px 8px 0 0;
}
.input-wrapper.error .error-message {
  display: flex;
}
.input-wrapper label {
  transition: 0.3s;
  position: absolute;
  font-size: 16px;
  line-height: 160%;
  color: #001730;
  left: 16px;
  top: 12.5px;
}
.input-wrapper label span.required {
  color: #CD455C;
}
.input-wrapper input {
  transition: 0.3s;
  font-family: "Noto Sans SC", sans-serif;
  width: 100%;
  height: 56px;
  padding: 22px 0 8px 16px;
  font-size: 16px;
  line-height: 160%;
  color: #001730;
  box-sizing: border-box;
  border-bottom: 1px solid #F1F2F4;
  border-width: 0 0 1px 0;
  border-radius: 2px;
}
.input-wrapper input#pinyin {
  background: #F1F2F4;
}
.input-wrapper input#pinyin.filled {
  background: #DDF0EE;
}
.input-wrapper .error-message {
  padding-left: 16px;
  color: #F95557;
  font-size: 12px;
  line-height: 160%;
  display: none;
}
.input-wrapper .showPassword {
  top: 18px !important;
}

.overlay {
  background-color: rgba(0, 23, 48, 0.4);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
}
@media (min-width: 768px) {
  .overlay {
    max-width: 768px;
    left: calc((100% - 770px) / 2);
  }
  .overlay.scroll {
    left: calc((100% - 770px) / 2 - 8px);
  }
}
.overlay.active {
  z-index: 9999;
  opacity: 1;
}

.desktop-wrapper {
  min-height: calc(100vh - 2px);
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  body {
    background-color: #a6a6a6;
  }

  .desktop-wrapper {
    position: relative;
    background-color: #fff;
    border: 1px solid #000;
    max-width: 768px;
    margin: 0 auto;
    min-height: 100vh;
    box-sizing: border-box;
  }
}
.fixed_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}
.fixed_header.scrolled {
  box-shadow: 0 2px 8px -6px #3A3C40;
}
@media (min-width: 768px) {
  .fixed_header {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    max-width: 768px;
    transform: translateX(-1px);
  }
}

.dropdown .list.long_list {
  z-index: 99;
  max-height: 168px;
  overflow-y: scroll;
}

.closeoverlay button {
  padding: 10px 0;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 152px;
  box-sizing: border-box;
  border: unset;
  transition: 0.3s;
}
.closeoverlay button:first-child {
  margin-right: 5px;
}
.closeoverlay button:last-child {
  margin-left: 5px;
}
.closeoverlay button.primary {
  color: #fff;
  background: #CD455C;
}
.closeoverlay button.primary:hover {
  background: #DE576D;
}
.closeoverlay button.secondary {
  color: #001730;
  background: #DDDFE4;
}
.closeoverlay button.secondary:hover {
  background: #F1F2F4;
}
.closeoverlay button.disabled {
  color: #C0C3CC !important;
  background: #F1F2F4 !important;
}

header {
  padding: 0 28px 0 20px;
  background: #001730;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
header .wrapper img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(55%) saturate(2%) hue-rotate(125deg) brightness(102%) contrast(100%);
}
header .wrapper .back {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.15px;
  color: #FFFFFF;
}
header .wrapper .back img {
  padding-right: 16px;
  width: 16px;
  height: 16px;
}

.desktop-wrapper {
  background: #F0F2F5;
}

main {
  margin-top: 56px;
}
main .wrapper {
  padding: 0 16px;
}
main .cards {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
main .cards .card-row {
  display: flex;
  padding: 15px 0;
  background: #FFFFFF;
  border: 1px solid #F1F2F4;
  box-sizing: border-box;
  border-radius: 12px;
  margin-bottom: 8px;
}
main .cards .card-row .card {
  padding: 0 16px;
  width: 50%;
}
main .cards .title {
  font-size: 12px;
  line-height: 19px;
  text-transform: uppercase;
  color: #848790;
  margin-bottom: 8px;
}
main .cards .count {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #001730;
  margin-bottom: 8px;
}
main .cards .data {
  display: flex;
  align-items: center;
}
main .cards .data p {
  margin-left: 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.005em;
}
main .cards .data img {
  width: 16px;
  height: 16px;
}
main .cards .data.green p {
  color: #46C05A;
}
main .cards .data.green img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(81%) saturate(339%) hue-rotate(78deg) brightness(89%) contrast(95%);
}
main .cards .data.red p {
  color: #D11241;
}
main .cards .data.red img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(50%) saturate(2148%) hue-rotate(329deg) brightness(109%) contrast(106%);
}
main .cards .data.yellow p {
  color: #EBA41C;
}
main .cards .data.yellow img {
  filter: brightness(0) saturate(100%) invert(74%) sepia(66%) saturate(3271%) hue-rotate(355deg) brightness(107%) contrast(84%);
}

.datepicker-wrapper {
  padding: 16px;
  position: relative;
  z-index: 99;
}
.datepicker-wrapper .title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.15px;
  color: #001730;
}
.datepicker-wrapper .dates {
  background: #FFFFFF;
  border: 1px solid #F1F2F4;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
}
.datepicker-wrapper .dates .date {
  height: 48px;
  width: 50%;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #001730;
  border-right: 1px solid #F1F2F4;
  padding-left: 16px;
  display: flex;
  align-items: center;
}
.datepicker-wrapper .dates .toggleButton {
  cursor: pointer;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.datepicker-wrapper .dates .toggleButton img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(4%) saturate(549%) hue-rotate(187deg) brightness(88%) contrast(93%);
}
@media (min-width: 769px) {
  .datepicker-wrapper .dates .toggleButton:hover {
    background: #DDF0EE;
  }
}
.datepicker-wrapper .dates .toggleButton.active img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(6%) saturate(3063%) hue-rotate(131deg) brightness(94%) contrast(91%);
}
.datepicker-wrapper .dates-popup {
  transform: scaleY(0);
  background: #FFFFFF;
  box-shadow: 0px 8px 8px rgba(45, 43, 70, 0.12), 0px -2px 6px rgba(45, 43, 70, 0.08);
  border-radius: 8px;
  padding: 8px 0;
  transform-origin: top;
  transition: 0.2s;
  position: absolute;
  width: 328px;
  margin-top: 8px;
  right: 16px;
}
.datepicker-wrapper .dates-popup.active {
  transform: scaleY(1);
}
.datepicker-wrapper .dates-popup .range {
  padding: 4px 0;
}
.datepicker-wrapper .dates-popup .range:not(:last-child) {
  border-bottom: 1px solid #DDDFE4;
}
.datepicker-wrapper .dates-popup .range .datepicker-button {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width: 769px) {
  .datepicker-wrapper .dates-popup .range .datepicker-button:hover {
    background: #DDF0EE;
  }
}
.datepicker-wrapper .dates-popup .range .datepicker-button .name {
  font-size: 16px;
  line-height: 160%;
  color: #001730;
}
.datepicker-wrapper .dates-popup .range .datepicker-button .date {
  font-size: 16px;
  line-height: 160%;
  color: #848790;
}

.temp .header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
.temp .header .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.15px;
  color: #001730;
}
.temp .header .icon {
  margin-right: 8px;
}
.temp .users {
  padding: 0;
}
.temp .users .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #FFFFFF;
  border-bottom: 1px solid #E6E8EB;
}
.temp .users .card .avatar-wrap {
  display: flex;
  align-items: center;
}
.temp .users .card .avatar-wrap .avatar {
  border: 1px solid #DDDFE4;
  border-radius: 8px;
  height: 44px;
  width: 44px;
  margin-right: 14px;
}
.temp .users .card .avatar-wrap .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #001730;
}
.temp .users .card .avatar-wrap .name-en {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #848790;
}
.temp .users .card .temp-wrap {
  display: flex;
  align-items: center;
}
.temp .users .card .temp-wrap .date {
  margin: 0 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  color: #848790;
}
.temp .users .card .temp-wrap .user-temp {
  width: 39px;
  text-align: right;
  margin: 0 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #001730;
}
.temp .users .card-empty {
  display: none;
  align-items: center;
  background: #fff;
  padding: 20px 16px;
}
.temp .users .card-empty.active {
  display: flex;
}
.temp .users .card-empty img {
  width: 28px;
  height: 28px;
}
.temp .users .card-empty p {
  margin-left: 8px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.005em;
  color: #A8ABB3;
}

#datepicker {
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.2s;
  position: absolute;
  width: calc(100% - 32px);
  margin-top: 8px;
  right: 16px;
  height: 411px;
  width: 328px;
}
#datepicker.active {
  transform: scaleY(1);
}
#datepicker .datepicker-close {
  filter: brightness(0) saturate(100%) invert(68%) sepia(6%) saturate(3063%) hue-rotate(131deg) brightness(94%) contrast(91%);
  position: absolute;
  top: 28px;
  left: 16px;
  z-index: 9999;
  cursor: pointer;
}
#datepicker .vc-container {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  box-shadow: 0px 8px 8px rgba(45, 43, 70, 0.12), 0px -2px 6px rgba(45, 43, 70, 0.08);
  border-radius: 8px;
}
#datepicker .vc-container .vc-arrows-container {
  padding: 24px 12px 16px 12px;
}
#datepicker .vc-container .vc-arrows-container .vc-arrow {
  border: unset;
  margin-left: 16px;
}
#datepicker .vc-container .vc-arrows-container svg {
  width: 24px;
  height: 24px;
}
#datepicker .vc-container .vc-arrows-container path {
  fill: #13ADAD;
}
#datepicker .vc-container .vc-header {
  padding: 24px 12px 16px 44px;
}
#datepicker .vc-container .vc-header .vc-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  color: #001730;
  font-family: "Noto Sans SC", sans-serif;
}
#datepicker .vc-container .vc-weeks {
  font-family: "Noto Sans SC", sans-serif;
  padding: 0 12px;
  grid-row-gap: 8px;
}
#datepicker .vc-container .vc-weeks .vc-weekday {
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.005em;
  color: #848790;
  padding: 0 0 8px 0;
  border-bottom: 1px solid #DDDFE4;
  margin-bottom: 24px;
}
#datepicker .vc-container .vc-weeks .vc-day {
  font-size: 16px;
  line-height: 160%;
  color: #001730;
  height: 40px;
}
#datepicker .vc-container .vc-weeks .vc-day.is-today .vc-day-content {
  border: 1px solid #51B8B8;
}
#datepicker .vc-container .vc-weeks .vc-day .vc-day-content {
  width: 40px;
  height: 40px;
}
#datepicker .vc-container .vc-weeks .vc-day .vc-highlight {
  width: 40px;
  height: 40px;
  border: unset !important;
  background-color: #51B8B8 !important;
}
#datepicker .vc-container .vc-weeks .vc-day .vc-highlight.vc-highlight-base-middle {
  width: 100%;
  background: rgba(81, 184, 184, 0.2) !important;
}
#datepicker .vc-container .vc-weeks .vc-day .vc-highlight.vc-highlight-base-start, #datepicker .vc-container .vc-weeks .vc-day .vc-highlight.vc-highlight-base-end {
  background: rgba(81, 184, 184, 0.2) !important;
}