:root {
  --white: #ffffff;
  --red: #DA0033;
  --orange: #FE8302;
  --yellow: #FFC600;
  --sky-blue: #D3DFEC;
  --navy: #001E41;
  --g-10: #E9E9E9;
  --g-20: #D3D2D2;
  --g-30: #BCBCBC;
  --g-40: #A7A5A5;
  --g-50: #918F90;
  --g-60: #7C7979;
  --g-70: #656263;
  --g-80: #4F4C4D;
  --g-90: #231F20;
  --disabled: #f3f3f3;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.splash {
  display: grid;
  min-width: 100%;
  min-height: 100dvh;
  align-content: center;
  justify-content: center;
}
.splash .logo {
  width: 80%;
  max-width: 200px;
}

.login {
  width: 100%;
  height: 100dvh;
  display: grid;
  align-content: center;
}
.login .logo {
  width: 80%;
  max-width: 160px;
  margin: -15vh auto 58px;
}
.login .login-box {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}
.login .login-box .input-wrap {
  position: relative;
  margin-top: 10px;
  width: 100%;
}
.login .login-box .input-wrap .input {
  padding-left: 2.625rem;
  height: 48px;
}
.login .login-box .input-wrap .material-icons {
  color: var(--g-20);
  position: absolute;
  top: 50%;
  left: 1rem;
  right: auto;
  transform: translateY(-50%);
}
.login .login-box .error-mms {
  margin-top: 5px;
  color: var(--red);
}
.login .login-box .btn {
  margin-top: 20px;
  height: 46px;
}

/* input */
::placeholder {
  color: var(--g-40);
}

.input {
  border: 1px solid var(--g-20);
  height: 38px;
  width: 100%;
  padding: 0 14px;
  border-radius: 10px;
  box-sizing: border-box;
}
.input:disabled {
  background-color: var(--disabled);
}

.textarea {
  border-radius: 10px;
  border: 1px solid var(--g-20);
  padding: 15px;
  width: 100%;
}
.textarea:disabled {
  background-color: var(--disabled);
}

.select {
  position: relative;
  width: 100%;
  height: 38px;
}
.select select {
  border: 1px solid var(--g-20);
  height: 100%;
  padding: 0 20px 0 10px;
  border-radius: 10px;
  box-sizing: border-box;
  width: 100%;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}
.select::after {
  content: "\e5c5";
  font-family: "Material Icons";
  display: block;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  z-index: -1;
}
.select.disabled {
  background-color: var(--disabled);
}
.select.disabled::after {
  z-index: 2;
}

.btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 100%;
  height: 36px;
  border-radius: 10px;
  background-color: var(--white);
  cursor: pointer;
  font-weight: 700;
}
.btn.btn-icon {
  border-radius: 5px;
}
.btn.btn-icon .material-icons {
  font-size: 24px;
}
.btn.btn-text {
  text-decoration: underline;
  width: fit-content;
  border-radius: 0;
  background-color: transparent;
}
.btn.line {
  border: 1px solid var(--g-20);
}
.btn.orange {
  background-color: var(--orange);
  color: var(--white);
}
.btn.yellow {
  background-color: var(--yellow);
  color: var(--white);
}
.btn.line-orange {
  border: 1px solid var(--orange);
  color: var(--orange);
}
.btn.line-yellow {
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
.btn.line-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn:disabled {
  background-color: var(--g-20);
  border: 1px solid var(--g-30);
  color: var(--g-60);
}

.table {
  border-top: 2px solid var(--orange);
}
.table table {
  width: 100%;
}
.table table th {
  background-color: rgba(254, 131, 2, 0.15);
  height: 40px;
  vertical-align: middle;
  text-align: center;
  min-width: 85px;
  width: 15%;
  padding: 0 10px;
  border-bottom: 1px solid var(--g-20);
}
.table table td {
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border-bottom: 1px solid var(--g-20);
}
.table table td.disabled {
  background-color: var(--disabled);
}
.table table td .input {
  height: 30px;
}
.table table td .input[type=date] {
  max-width: 160px;
}
.table table td .select {
  height: 30px;
}
.table table td .select-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:disabled + span {
  background-color: var(--g-10);
}
.radio input[type=radio]:disabled:checked + span {
  border-color: var(--g-40);
}
.radio input[type=radio]:disabled:checked + span::after {
  background-color: var(--g-30);
}
.radio input[type=radio]:checked + span {
  border-color: var(--orange);
}
.radio input[type=radio]:checked + span::after {
  display: block;
}
.radio span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--g-40);
  position: relative;
  cursor: pointer;
}
.radio span::after {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--orange);
}

.checkbox {
  cursor: pointer;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:disabled + span {
  background-color: var(--g-10);
}
.checkbox input[type=checkbox]:disabled:checked + span {
  border-color: var(--g-40);
  background-color: var(--g-30);
}
.checkbox input[type=checkbox]:disabled:checked + span .material-icons {
  color: var(--g-10);
}
.checkbox input[type=checkbox]:checked + span {
  border-color: var(--orange);
  background-color: var(--orange);
}
.checkbox input[type=checkbox]:checked + span .material-icons {
  color: #fff;
}
.checkbox span:not(.material-icons) {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--g-40);
  position: relative;
}
.checkbox span:not(.material-icons) .material-icons {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--g-40);
  font-size: 18px;
  font-weight: 700;
}

header {
  border-bottom: 1px solid var(--g-20);
  height: 48px;
  position: sticky;
  top: 0;
  z-index: 1999;
  background-color: var(--white);
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 100%;
}
header .header .logo {
  flex: 1;
  text-align: center;
}
header .header .btn-icon {
  width: 26px;
  height: 26px;
}
header .header .btn-icon.menu-btn img {
  width: 100%;
  display: none;
}
header .header .btn-icon.menu-btn.on .material-icons {
  display: none;
}
header .header .btn-icon.menu-btn.on img {
  display: block;
}
header .header .noti {
  position: relative;
}
header .header .noti .new {
  background-color: #FF0000;
  color: var(--white);
  position: absolute;
  right: -7px;
  top: -7px;
  display: block;
  width: auto;
  height: 18px;
  padding: 0 5px;
  border-radius: 10px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
}

.slidenav-bg {
  position: fixed;
  left: 0;
  top: 48px;
  width: 100%;
  height: calc(100% - 48px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2002;
  display: none;
}

.slidenav {
  position: fixed;
  left: -100%;
  top: 48px;
  z-index: 2001;
  height: calc(100% - 48px);
  width: 70%;
  max-width: 400px;
  background-color: var(--g-90);
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  color: var(--white);
}
.slidenav.active {
  left: 0;
  z-index: 2003;
}
.slidenav .top-info {
  position: relative;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.slidenav .top-info .state {
  flex: 1;
}
.slidenav .top-info .state .input-wrap {
  height: 28px;
  width: 120px;
  position: relative;
}
.slidenav .top-info .state .input-wrap .input {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
  height: 100%;
  padding-right: 30px;
}
.slidenav .top-info .state .input-wrap button {
  position: absolute;
  top: 50%;
  left: auto;
  right: 5px;
  transform: translateY(-50%);
  font-size: 14px;
  padding: 0;
  background-color: transparent;
  border: 0;
  width: 28px;
  height: 25px;
}
.slidenav .top-info .state .input-wrap button .material-icons {
  font-size: 15px;
}
.slidenav .top-info .state .name {
  margin-bottom: 8px;
  font-weight: 700;
}
.slidenav .top-info .state .in-progress {
  color: var(--orange);
  margin-left: 5px;
  border: 1px solid var(--orange);
  height: 28px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  padding: 0 5px;
  display: grid;
  align-items: center;
}
.slidenav .top-info .state .label-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.slidenav .top-info .state .label-input .label {
  width: auto;
  font-size: 12px;
  color: var(--g-40);
  margin-right: 5px;
}
.slidenav .top-info .state .label-input .select {
  height: 28px;
  width: 120px;
}
.slidenav .top-info .state .label-input .select select {
  border-radius: 8px;
  color: var(--white);
}
.slidenav .top-info .state .label-input .select option {
  color: var(--g-90);
}
.slidenav .top-info .user-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
}
.slidenav .top-info .user-img .user-img-btn .material-icons {
  background-color: var(--orange);
}
.slidenav .nav {
  width: 100%;
  padding: 20px 16px;
}
.slidenav .nav li {
  margin-bottom: 20px;
}
.slidenav .nav li:last-child {
  margin-bottom: 0;
}
.slidenav .nav li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
}
.slidenav .nav li a .material-icons {
  font-size: 18px;
  background-color: var(--g-10);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  color: var(--g-90);
}
.slidenav .nav li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.slidenav .nav li a.logout {
  text-align: center;
  text-decoration: underline;
  justify-content: center;
  opacity: 0.7;
  background-color: transparent;
  color: var(--white);
}
.slidenav .nav li a.logout:hover {
  background-color: transparent;
  opacity: 1;
}

.container {
  display: flex;
  gap: 16px;
  min-height: calc(100dvh - 48px);
}
.container > div {
  height: 100%;
  flex: 1;
}
.container > div.main .list {
  padding: 16px;
}
.container > div.main .list li {
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 15px;
}
.container > div.main .list li.no-data {
  text-align: center;
  box-shadow: none;
}
.container > div.main .list li.no-data img {
  width: 60%;
  max-width: 160px;
}
.container > div.main .list li.no-data p {
  margin-top: 20px;
  color: var(--g-40);
}
.container > div.main .list li:first-child {
  margin-top: 0;
}
.container > div.main .list li .info {
  margin-top: 15px;
}
.container > div.main .list li .info > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.container > div.main .list li .info > div .label {
  color: var(--g-40);
  width: 20%;
  min-width: 60px;
}
.container > div.main .list li .info > div .val {
  flex: 1;
}
.container > div.main .list li .site-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.container > div.main .list li .site-name .badge {
  width: 90px;
  border-radius: 18px;
  height: 30px;
  text-align: center;
  color: var(--white);
  background-color: var(--orange);
  display: block;
  line-height: 30px;
  position: relative;
}
.container > div.main .list li .site-name .badge > span {
  position: absolute;
  right: -2px;
  top: -12px;
  background-color: #0c3c74;
  border-radius: 15px;
  color: var(--white);
  padding: 2px 6px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.container > div.main .list li .site-name .badge.yellow {
  background-color: var(--yellow);
}
.container > div.main .list li .site-name .badge.blue {
  background-color: var(--sky-blue);
  color: var(--g-90);
}
.container > div.main .list li .site-name .name {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  font-weight: 700;
  line-height: 1.2;
}
.container > div.main .list li .btn-wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.container > div.main .list li .btn-wrap .btn {
  flex: 1;
}
.container > div.main.main-map {
  min-height: calc(100dvh - 48px);
}
.container > div.main.main-map .map {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 153px);
  overflow: hidden;
}
.container > div.main.main-map .map #map {
  flex: 1;
  width: 100%;
  position: relative;
  background-color: #888;
  z-index: 999;
}
.container > div.main.main-map .map .search-count {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2000;
  background-color: var(--navy);
  color: var(--white);
  padding: 0 16px;
  border-radius: 10px;
  font-size: 16px;
  width: max-content;
  border: 0;
  height: 40px;
}
.container > div.main.main-map .map .search-count span {
  margin: 0 2px 0 10px;
  font-weight: 700;
  color: var(--orange);
}
.container > div.main.main-map .map .map-icon {
  position: absolute;
  bottom: 34px;
  right: 16px;
  z-index: 2000;
}
.container > div.main.main-map .map .my-location {
  background-color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #1463be;
  display: grid;
  align-items: center;
  justify-content: center;
}
.container > div.main.main-map .map .pin {
  background-color: var(--red);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: grid;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.container > div.main.main-map .map .count {
  background-color: var(--red);
  width: auto;
  height: 26px;
  min-width: 26px;
  margin: -4px 0 0 20px;
  padding: 0 5px;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.container > div.main.main-map .map .list-wrap {
  position: relative;
  padding-top: 0;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  max-height: 0;
  height: auto;
  margin-top: -20px;
  background-color: #ffffff;
  transition: all 0.15s linear;
  z-index: 2001;
}
.container > div.main.main-map .map .list-wrap.on {
  padding-top: 30px;
  max-height: 260px;
  height: auto;
}
.container > div.main.main-map .map .list-wrap.more {
  padding-top: 30px;
  max-height: calc(100dvh - 320px);
  height: auto;
}
.container > div.main.main-map .map .list-wrap.more .map-list-btn .material-icons {
  transform: rotate(-180deg);
  transform-origin: center center;
}
.container > div.main.main-map .map .list-wrap.single {
  padding-top: 30px;
  max-height: 260px;
  height: auto;
}
.container > div.main.main-map .map .list-wrap.single .map-list-btn .material-icons {
  transform: rotate(-180deg);
  transform-origin: center center;
}
.container > div.main.main-map .map .list-wrap .map-list-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
  width: 60%;
  max-width: 160px;
  border: 0;
  background-color: transparent;
}
.container > div.main.main-map .map .list-wrap .map-list-btn .material-icons {
  transition: all 0.15s linear;
}
.container > div.main.main-map .map .list-wrap .list {
  overflow-y: auto;
  height: 100%;
}
.container > div.main.main-map .map.on {
  max-height: calc(100% - 200px);
}
.container > div.main.main-map.on .map {
  height: calc(100dvh - 355px);
}
.container > div.main.main-map.on .map .list-wrap.more {
  height: calc(100dvh - 500px);
}
.container > div.pad-sub {
  position: relative;
  min-height: calc(100dvh - 48px);
}
.container > div.pad-sub .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.search-wrap {
  background-color: var(--white);
  position: sticky;
  top: 48px;
  border-bottom: 5px solid var(--g-10);
  padding: 16px 16px 0;
  z-index: 2001;
}
.search-wrap .search-text-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
}
.search-wrap .search-text-wrap .search-text-wrap {
  flex: 1;
}
.search-wrap .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  row-gap: 10px;
  flex-wrap: wrap;
  /*.file-down, .reset-btn{
    @include flex(center, center);
    gap: 2px;
    border: 1px solid var(--g-20);
    width: 90px; height: 38px;
    border-radius: 10px;
    > span{font-size: 18px;}
  }
  .reset-btn{
    width: 80px;
  }*/
}
.search-wrap .search .search-text {
  position: relative;
  width: 100%;
}
.search-wrap .search .search-text .input {
  padding: 0 35px 0 10px;
}
.search-wrap .search .search-text .material-icons {
  position: absolute;
  top: 50%;
  left: auto;
  right: 12px;
  transform: translateY(-50%);
}
.search-wrap .search .map-btn, .search-wrap .search .list-btn, .search-wrap .search .file-down, .search-wrap .search .reset-btn {
  border: 1px solid var(--g-20);
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.search-wrap .search .label-input {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.search-wrap .search .label-input .label {
  font-size: 12px;
  color: var(--g-60);
  word-break: keep-all;
  min-width: 50px;
}
.search-wrap .search .label-input > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 5px;
}
.search-wrap .search .label-input > div .select {
  flex: 1;
}
.search-wrap .search .label-input > div.period {
  width: calc(100% - 55px);
}
.search-wrap .search-filter {
  width: 100%;
  margin-top: 10px;
}
.search-wrap .search-filter.on .material-icons {
  transform: rotate(180deg);
}
.search-wrap .more-filter {
  width: 100%;
  display: none;
}
.search-wrap .more-filter .label-input {
  margin-bottom: 10px;
}
.search-wrap .more-filter .label-input.period {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 50px);
  gap: 5px;
}
.search-wrap .more-filter .label-input.period .input {
  flex: 1;
}

.user-img {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
}
.user-img .img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  display: grid;
  align-items: center;
  justify-content: center;
  object-fit: fill;
  overflow: hidden;
}
.user-img .img img {
  width: 100%;
  height: 100%;
}
.user-img .img .material-icons {
  font-size: 40px;
  color: var(--g-40);
}
.user-img > .user-img-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.user-img > .user-img-btn input {
  display: none;
}
.user-img > .user-img-btn .material-icons {
  background-color: var(--g-90);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
}

.sub-page .sub-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  height: 54px;
  border-bottom: 1px solid var(--g-20);
  position: sticky;
  top: 48px;
  z-index: 1999;
  background-color: var(--white);
}
.sub-page .sub-header .title {
  flex: 1;
  font-weight: 700;
  font-size: 16px;
}
.sub-page .sub-header .title span {
  color: var(--g-60);
  margin-left: 5px;
}
.sub-page .sub-header .back {
  width: 24px;
  height: 24px;
}
.sub-page.alarm .category-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: rgba(211, 223, 236, 0.5);
}
.sub-page.alarm .category-wrap .category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: calc(100% - 80px);
  overflow-x: auto;
}
.sub-page.alarm .category-wrap .category .btn {
  padding: 0 8px;
  width: max-content;
  word-break: keep-all;
  background-color: #fff;
}
.sub-page.alarm .category-wrap .category .btn.on {
  background-color: var(--navy);
  color: var(--white);
}
.sub-page.alarm .recent {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 0 16px;
  border-bottom: 1.5px solid var(--g-40);
  margin-top: 10px;
}
.sub-page.alarm .recent .btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  font-size: 12px;
}
.sub-page.alarm .recent .btn .material-icons {
  font-size: 12px;
}
.sub-page.alarm .list-wrap {
  height: calc(100dvh - 217px);
  overflow-y: auto;
}
.sub-page.alarm .list-wrap .date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  padding: 10px 16px;
  background-color: #E9E9E9;
}
.sub-page.alarm .list-wrap .date span {
  color: var(--orange);
  display: block;
  margin-left: 5px;
  font-weight: 700;
}
.sub-page.alarm .list-wrap li {
  padding: 16px;
  border-bottom: 1px solid var(--g-20);
}
.sub-page.alarm .list-wrap li > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.sub-page.alarm .list-wrap li > div.title {
  margin-bottom: 10px;
}
.sub-page.alarm .list-wrap li > div.title .material-icons {
  font-size: 18px;
  margin-top: -2px;
}
.sub-page.alarm .list-wrap li > div.title p {
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}
.sub-page.alarm .list-wrap li > div.title span {
  margin-right: 8px;
  word-break: keep-all;
}
.sub-page.alarm .list-wrap li > div:not(.title) {
  margin-top: 5px;
}
.sub-page.alarm .list-wrap li > div:not(.title) .label {
  color: var(--g-40);
  width: 60px;
}
.sub-page.detail .sub-header .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.sub-page.detail .sub-header .btn-wrap .btn {
  background-color: var(--g-10);
  border-radius: 50%;
  width: 26px;
  height: 26px;
}
.sub-page.detail .sub-header .btn-wrap .btn .material-icons {
  font-size: 20px;
}
.sub-page.detail .info-wrap {
  padding: 10px 16px;
}
.sub-page.detail .info-wrap .tb-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-page.detail .info-wrap .tb-ttl.on {
  border-bottom: 1px solid var(--g-20);
}
.sub-page.detail .info-wrap .tb-ttl h4 {
  font-size: 16px;
  font-weight: 700;
}
.sub-page.detail .info-wrap .tb-ttl .btn {
  width: auto;
}
.sub-page.detail .textarea {
  height: 190px;
}
.sub-page.detail .textarea:read-only:focus {
  outline: none;
}
.sub-page.detail .btn-upload input[type=file] {
  display: none;
}
.sub-page.detail .btn-upload label {
  display: grid;
  align-items: center;
  background-color: transparent;
  width: 100%;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  background-color: var(--orange);
  border: 0;
  color: var(--white);
  padding: 0 10px;
}
.sub-page.detail .file-list .file-empty {
  border: 1px solid var(--g-20);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.sub-page.detail .file-list .file-name {
  text-align: left;
  border: 1px solid var(--g-20);
  padding: 15px;
  height: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-page.detail .file-list .file-name span {
  font-size: 12px;
  color: var(--g-40);
}
.sub-page.detail .file-list .file-name p {
  font-weight: 700;
}
.sub-page.detail .file-list .file-name button {
  width: 24px;
  height: 24px;
  border: 0;
  background-color: transparent;
  padding: 0;
}
.sub-page.detail .file-list .file-name button .material-icons {
  font-size: 20px;
  color: var(--g-90);
}
.sub-page.detail .file-list .btn {
  text-align: left;
  border: 1px solid var(--g-20);
  padding: 15px;
  height: auto;
  position: relative;
}
.sub-page.detail .file-list .btn:hover {
  background-color: #f8f8f8;
}
.sub-page.detail .file-list .btn:hover::after {
  opacity: 1;
}
.sub-page.detail .file-list .btn::after {
  content: "\e171";
  display: block;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  transform: translateY(-50%);
  font-family: "Material Icons";
  font-size: 20px;
  text-align: center;
  opacity: 0.8;
}
.sub-page.detail .file-list .btn span {
  font-size: 12px;
  color: var(--g-40);
}
.sub-page.mypage {
  padding-bottom: 20px;
}
.sub-page.mypage .sub-header .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.sub-page.mypage .sub-header .btn-wrap .btn {
  padding: 0 10px;
  width: max-content;
}
.sub-page.mypage .user-info {
  text-align: center;
  padding: 20px 16px;
}
.sub-page.mypage .user-info .user-img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  margin: 0 auto;
}
.sub-page.mypage .user-info .name {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
}
.sub-page.mypage .user-info .team {
  color: var(--g-60);
  margin-top: 5px;
}
.sub-page.mypage .processing {
  margin: 0 auto;
  border: 1px solid var(--g-20);
  margin-top: 20px;
  border-radius: 10px;
}
.sub-page.mypage .processing .sub-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background-color: var(--g-10);
  border-bottom: 1px solid var(--g-20);
}
.sub-page.mypage .processing .sub-ttl > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.sub-page.mypage .processing .sub-ttl > div .input {
  width: 118px;
  padding: 0 8px;
}
.sub-page.mypage .processing .sub-ttl .reset-btn {
  border: 1px solid var(--g-20);
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.sub-page.mypage .processing .sub-ttl .reset-btn .material-icons {
  font-size: 20px;
}
.sub-page.mypage .processing ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20%;
  padding: 15px;
}
.sub-page.mypage .processing ul .material-icons {
  font-size: 28px;
  background-color: rgba(254, 131, 2, 0.1);
  color: var(--orange);
  padding: 10px;
  border-radius: 50%;
}
.sub-page.mypage .processing ul p {
  margin: 10px auto 0;
  width: max-content;
}
.sub-page.mypage .processing ul p span {
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.sub-page.mypage .processing ul li:nth-child(2) .material-icons {
  background-color: var(--sky-blue);
  color: var(--navy);
}
.sub-page.mypage .processing ul li:nth-child(3) .material-icons {
  background-color: rgba(255, 198, 0, 0.3);
  color: var(--orange);
}
.sub-page.mypage .day-off {
  padding: 0 16px;
}
.sub-page.mypage .day-off .sub-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-page.mypage .day-off .sub-ttl > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: max-content;
  position: relative;
}
.sub-page.mypage .day-off .sub-ttl > div p {
  color: var(--g-60);
  width: max-content;
  font-size: 12px;
  margin-right: 5px;
}
.sub-page.mypage .day-off .sub-ttl > div .input {
  width: 120px;
}
.sub-page.mypage .day-off .sub-ttl > div .btn {
  position: absolute;
  top: 50%;
  left: auto;
  right: 5px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  align-items: center;
}
.sub-page.mypage .day-off .sub-ttl > div .btn .material-icons {
  font-size: 20px;
  color: var(--orange);
}
.sub-page.mypage .day-off .calendar-wrap {
  margin-top: 20px;
}
.sub-page.mypage .day-off .fc-day-header {
  height: 30px;
  vertical-align: middle;
  background-color: #f1f1f1;
}
.sub-page.mypage .day-off .fc-center h2 {
  height: 30px;
  line-height: 30px;
}
.sub-page.mypage .day-off .fc button {
  border: 1px solid var(--g-20);
  background: var(--white);
}
.sub-page.mypage .day-off .fc-h-event {
  border: 0;
  text-align: center;
}
.sub-page.mypage .day-off .fc-h-event span {
  font-size: 12px;
  display: block;
  padding: 2px 0;
}
.sub-page.mypage .day-off .history h4 {
  font-weight: 700;
  margin: 20px 0 10px;
}
.sub-page.mypage .day-off .history > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sub-page.mypage .day-off .history > div p {
  border: 1px solid var(--g-90);
  text-align: center;
  width: 24%;
  border-radius: 5px;
  padding: 10px 5px;
  font-size: 12px;
}
.sub-page.mypage .day-off .history > div p span {
  font-weight: 700;
  font-size: 12px;
  margin-left: 10px;
}
.sub-page.mypage .day-off .history > div p:nth-child(2) {
  color: var(--red);
  border-color: var(--red);
}
.sub-page.mypage .day-off .history > div p:nth-child(3) {
  color: var(--orange);
  border-color: var(--orange);
}
.sub-page.mypage .day-off .history > div p:nth-child(4) {
  color: #1463be;
  border-color: #1463be;
}
.sub-page.statistics .acc-wrap {
  padding: 10px 16px;
}
.sub-page.statistics .acc-wrap .acc-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-page.statistics .acc-wrap .acc-ttl .btn {
  width: auto;
}
.sub-page.statistics .acc-wrap .acc-ttl h4 {
  font-size: 16px;
  font-weight: 700;
}
.sub-page.statistics .acc-wrap .acc-ttl.on {
  border-bottom: 1px solid var(--g-20);
}
.sub-page.statistics .tb-ttl h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.sub-page.statistics .tb-ttl span {
  background-color: var(--orange);
  color: var(--white);
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}
.sub-page.statistics .info-wrap {
  margin: 10px 0;
}
.sub-page.statistics .search-wrap {
  top: 102px;
}
.sub-page.statistics .table table {
  table-layout: fixed;
}
.sub-page.statistics .table table th {
  width: 25%;
}

.btn-fixed {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-fixed .btn {
  border-radius: 0;
  flex: 1;
  height: 50px;
}

.pop-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2004;
  display: none;
}

.under-pop {
  position: fixed;
  bottom: -100%;
  left: 0;
  z-index: 2005;
  background-color: var(--white);
  width: 100%;
  height: auto !important;
  min-height: initial !important;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 30px 16px 0;
  transition: all 0.2s linear;
}
.under-pop.active {
  bottom: 0;
}
.under-pop h3 {
  font-size: 18px;
  border-bottom: 1px solid var(--g-40);
  padding-bottom: 10px;
}
.under-pop .content {
  padding: 20px 0;
}
.under-pop .close-pop {
  width: 100px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--g-40);
  position: absolute;
  top: 20px;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
}

.center-pop-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2006;
  display: none;
}

.center-pop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  z-index: 2007;
  background-color: var(--white);
  border-radius: 10px;
  width: 80%;
  height: auto !important;
  padding: 20px;
  display: none;
}

.alert-pop p {
  text-align: center;
  padding: 15px 0;
}
.alert-pop .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
}
.bottom-btn .btn {
  flex: 1;
}

.integrated-info .top-info {
  background-color: rgba(211, 223, 236, 0.5);
  padding: 10px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.integrated-info .top-info p {
  font-weight: 700;
}
.integrated-info .list {
  margin-top: 20px;
  border-top: 1px solid var(--g-20);
  border-bottom: 1px solid var(--g-20);
  max-height: 60vh;
  overflow-y: auto;
}
.integrated-info .list li {
  border-bottom: 1px solid var(--g-20);
  padding: 10px;
  cursor: pointer;
}
.integrated-info .list li:last-child {
  border-bottom: 0;
}
.integrated-info .list li.on {
  background-color: rgba(254, 131, 2, 0.1);
}
.integrated-info .list li.master {
  background-color: rgba(20, 99, 190, 0.14);
}
.integrated-info .list li p {
  font-weight: 700;
}
.integrated-info .list li .list-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}
.integrated-info .list li .list-info .label {
  color: var(--g-60);
  word-break: keep-all;
}

.duplication-integration .top-info {
  background-color: rgba(211, 223, 236, 0.5);
  padding: 10px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.duplication-integration .top-info p {
  font-weight: 700;
}
.duplication-integration .list {
  margin-top: 20px;
  border-top: 1px solid var(--g-20);
  border-bottom: 1px solid var(--g-20);
  max-height: 60vh;
  overflow-y: auto;
}
.duplication-integration .list li {
  border-bottom: 1px solid var(--g-20);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: stretch;
}
.duplication-integration .list li:last-child {
  border-bottom: 0;
}
.duplication-integration .list li > div {
  border-right: 1px solid var(--g-40);
  display: grid;
  align-items: center;
  padding: 10px;
}
.duplication-integration .list li > div:last-child {
  flex: 1;
  border-right: 0;
}
.duplication-integration .list li > div .default-info {
  border-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.duplication-integration .list li > div .default-info > div {
  width: calc(100% - 30px);
}
.duplication-integration .list li > div .default-info .more {
  width: 26px;
  height: 26px;
}
.duplication-integration .list li > div .default-info .more.on {
  transform: rotate(-180deg);
}
.duplication-integration .list li > div .more-info {
  display: none;
  width: calc(100% - 30px);
}
.duplication-integration .list li.on {
  background-color: rgba(254, 131, 2, 0.1);
}
.duplication-integration .list li p {
  font-weight: 700;
  word-break: break-word;
}
.duplication-integration .list li .list-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}
.duplication-integration .list li .list-info .label {
  color: var(--g-60);
  word-break: keep-all;
}

.text-detail h4 {
  margin-bottom: 10px;
}
.text-detail .text {
  border: 1px solid var(--g-20);
  padding: 10px;
  border-radius: 10px;
  min-height: 120px;
  max-height: 50vh;
  overflow-y: auto;
}
.text-detail textarea {
  border: 1px solid var(--g-20);
  padding: 10px;
  border-radius: 10px;
  min-height: 120px;
  max-height: 50vh;
  overflow-y: auto;
  width: 100%;
}

.day-off-pop h3 span {
  margin-left: 5px;
  font-size: inherit;
  color: var(--g-60);
}
.day-off-pop .content p {
  font-size: 14px;
  font-weight: 700;
}
.day-off-pop .content ul li {
  margin-top: 10px;
}
.day-off-pop .content ul li .radio input[type=radio] {
  display: none;
}
.day-off-pop .content ul li .radio input[type=radio]:checked + span {
  border-color: var(--orange);
  background-color: rgba(254, 131, 2, 0.05);
  color: var(--orange);
  font-weight: 700;
}
.day-off-pop .content ul li .radio input[type=radio]:checked + span::after {
  display: none;
}
.day-off-pop .content ul li .radio span {
  display: block;
  width: 100%;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--g-40);
  position: relative;
  cursor: pointer;
  text-align: center;
  line-height: 30px;
}
.day-off-pop .content ul li .radio span::after {
  display: none;
}

.substitute-work .search-text {
  position: relative;
}
.substitute-work .search-text .input {
  padding-right: 40px;
}
.substitute-work .search-text .material-icons {
  position: absolute;
  top: 50%;
  left: auto;
  right: 12px;
  transform: translateY(-50%);
}
.substitute-work ul {
  margin-top: 10px;
  max-height: 60vh;
  min-height: 85px;
  overflow-y: auto;
}
.substitute-work ul button {
  text-align: left;
  padding: 0 10px;
  margin-top: 3px;
}
.substitute-work ul button:hover {
  background-color: var(--g-10);
}
.substitute-work ul button.select {
  background-color: var(--sky-blue);
}

.alarm-setting h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.alarm-setting h4:last-of-type {
  margin-top: 30px;
}
.alarm-setting .radio-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.alarm-setting .radio-wrap label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
}
.alarm-setting .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.alarm-setting .time.check-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.alarm-setting .time.check-time .checkbox {
  width: 12.5%;
  text-align: center;
}
.alarm-setting .time.check-time .checkbox label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.profile-img .content {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.profile-img .content .btn {
  width: auto;
  height: auto;
}
.profile-img .content .btn .material-icons {
  width: 50px;
  height: 50px;
  color: var(--orange);
  border-radius: 50%;
  background-color: rgba(254, 131, 2, 0.1);
  line-height: 50px;
}
.profile-img .content .btn p {
  margin-top: 10px;
  font-size: 12px;
  color: var(--g-60);
}

.info-detail .content {
  height: 85vh;
  overflow-y: auto;
}

.main-wrap .container {
  height: calc(100dvh - 48px);
  min-height: inherit;
}
.main-wrap .container > div {
  overflow-y: auto;
}
.main-wrap .search-wrap {
  top: 0;
}
.main-wrap .pop-bg,
.main-wrap .center-pop-bg,
.main-wrap .under-pop {
  width: calc(50% - 8px);
}
.main-wrap .center-pop {
  position: absolute;
  top: 50%;
  left: 5%;
  right: auto;
  transform: translateY(-50%);
  width: 40%;
}

@media (max-width: 768px) {
  header {
    border-bottom: 0;
  }
  .container {
    display: block;
  }
  .container .pad-sub {
    display: none;
  }
  .main-wrap .container {
    min-height: calc(100% - 48px);
    height: inherit;
  }
  .main-wrap .container > div {
    overflow-y: inherit;
  }
  .main-wrap .search-wrap {
    top: 48px;
  }
  .main-wrap .pop-bg,
  .main-wrap .center-pop-bg,
  .main-wrap .under-pop {
    width: 100%;
  }
  .main-wrap .center-pop {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }
}
@media (max-width: 340px) {
  .sub-page.mypage .day-off .history > div {
    row-gap: 8px;
  }
  .sub-page.mypage .day-off .history > div p {
    width: 49%;
  }
  .duplication-integration .list li .list-info {
    flex-wrap: wrap;
    gap: 0;
  }
  .duplication-integration .list li .list-info span {
    display: none;
  }
  .duplication-integration .list li .list-info p {
    width: 100%;
  }
  .duplication-integration .list li .list-info p.label {
    display: block;
  }
  .duplication-integration .list li .list-info:first-child .label:nth-of-type(3) {
    margin-top: 10px;
  }
  .integrated-info .top-info {
    display: block;
  }
  .integrated-info .top-info > span {
    display: none;
  }
  .integrated-info .top-info .date {
    margin-top: 5px;
  }
  .integrated-info .list li .list-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .integrated-info .list li .list-info > span {
    display: none;
  }
}
.loader-bg {
  background-color: transparent;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
}

.loader {
  z-index: 3001;
  width: 80px;
  height: 80px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  animation: rotate 2s linear infinite;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.dot-3 {
  background-color: #FF0000;
  animation: dot-3 2s ease infinite;
}

.dot-2 {
  background-color: #FFC600;
  animation: dot-2 2s ease infinite;
}

.dot-1 {
  background-color: #FE8302;
  animation: dot-1 2s ease infinite;
}

@keyframes dot-3 {
  0% {
    transform: translateY(-18px);
  }
  50% {
    transform: translateY(-32px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes dot-2 {
  0% {
    transform: translate(-16px, 12px);
  }
  50% {
    transform: translate(-32px, 20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes dot-1 {
  0% {
    transform: translate(16px, 12px);
  }
  50% {
    transform: translate(32px, 20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(720deg);
    opacity: 0;
  }
}
.no-result {
  text-align: center;
  padding: 10px 0;
}
.no-result span {
  font-size: 40px;
  color: var(--g-40);
}
.no-result p {
  color: var(--g-40);
  font-weight: 700;
}

.no-data {
  text-align: center;
  box-shadow: none;
  padding: 5vh 0;
}
.no-data img {
  width: 60%;
  max-width: 160px;
}
.no-data p {
  margin-top: 20px;
  color: var(--g-40);
}

body .select2-dropdown {
  z-index: 9999;
}

body .select2-container {
  height: 38px;
}

body .select2-container--default .select2-selection--multiple {
  border: 1px solid var(--g-20);
  padding: 0 20px 0 10px;
  border-radius: 10px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  background-color: transparent;
}

body .select2-container .select2-selection--multiple .select2-selection__rendered {
  padding-bottom: 8px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 8px;
}

.pop-search > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 5px;
  margin-bottom: 10px;
}
.pop-search > div.flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pop-search > div.flex > div {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pop-search > div .label {
  font-size: 12px;
  color: var(--g-60);
  word-break: keep-all;
  min-width: 50px;
}
.pop-search > div .select, .pop-search > div .input-wrap {
  flex: 1;
}
.pop-search > div .period {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
}
.pop-search > div .period .input {
  flex: 1;
}

.multiple-select .custom-select {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #495057;
  vertical-align: middle;
  border: 1px solid var(--g-20);
  border-radius: 10px;
  background: inherit;
  position: relative;
  padding: 0 20px 0 10px;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.multiple-select .custom-select::after {
  content: "\e5c5";
  font-family: "Material Icons";
  display: block;
  position: absolute;
  top: 50%;
  left: auto;
  right: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  border: 0;
  margin: 0;
}

.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.multiple-select .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.multiselect-container .multiselect-all, .multiselect-container .multiselect-group, .multiselect-container .multiselect-option {
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
}

.multiple-select .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.multiple-select span.multiselect-native-select select {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px -1px -1px -3px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  left: 50%;
  top: 30px;
}

.multiple-select span.multiselect-native-select {
  position: relative;
  width: 100%;
  height: 38px;
  display: block;
}

.multiple-select .dropdown-menu.show {
  display: block;
}

.label-input.flex > div {
  width: calc((100% - 5px) / 2);
}

.multiselect-selected-text {
  text-align: left;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  width: calc(100% - 10px);
}

.multiselect-native-select .btn-group {
  width: 100%;
  height: 100%;
}

.multiple-select .dropdown-menu {
  width: 100%;
}

.search-wrap .search .label-input.flex > div {
  width: calc((100% - 5px) / 2);
}

.two-input > div {
  flex: 1;
}

.flex > div {
  flex: 1;
}

.multiple-select {
  flex: 1;
}

.paging-btn button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.15);
  border: 0;
  width: 18px;
  height: 10%;
  padding: 0;
}
.paging-btn button:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.paging-btn button.prev {
  left: 0;
}
.paging-btn button.next {
  right: 0;
}

/*# sourceMappingURL=style.css.map */
