@charset "UTF-8";
/**
 * Copyright (c) 2015 Spoqa, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 700;
  src: local("Spoqa Han Sans Neo Bold"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 500;
  src: local("Spoqa Han Sans Neo Medium"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 400;
  src: local("Spoqa Han Sans Neo Regular"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 300;
  src: local("Spoqa Han Sans Neo Light"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.ttf") format("truetype");
}
/*-----------------------
Author : Sooj
Last Updated : 2022-03-18
Reference : The new CSS reset - version 1.5.1 (last updated 1.3.2022) (https://github.com/elad2412/the-new-css-reset)
------------------------*/
/* 모든 브라우저 스타일 초기화 */
*:where(:not(iframe, canvas, img, svg, video, hr):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* 박스스타일 지정 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 기본 라인 높이 설정 */
/* ios 폰트사이즈 변화 대응 */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* 포인트 커서 적용 */
a,
button {
  cursor: pointer;
  color: #66696d;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

/* 리스트 스타일 삭제 */
ol,
ul,
menu {
  list-style: none;
}

/* 이미지가 컨테이너 영역을 넘어갈 수 없도록 지정 */
img,
picture,
video,
canvas,
svg {
  display: block;
}

/* 테이블 셀 간 간격 삭제 */
table {
  border-collapse: collapse;
}

/* 체크박스, 라디오스타일 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

/* 웹폰트가 나눔스퀘어일때 */
/* 사파리에서 textarea의 공백 되돌림 */
textarea {
  white-space: revert;
}

/* meter 최소 스타일링 */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* placeholder 초기화 */
/* 모든 hidden 요소 숨김 ( display:revert; 로 되돌림 ) */
:where([hidden]) {
  display: none;
}

/* 크롬 버그 복구 */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
}

/* 드래그 기능 다시적용 ( Chrome 및 Safari ) */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  font-family: "Spoqa Han Sans Neo", "맑은 고딕", "MalgumGothic", sans-serif;
  font-size: 0.875rem;
  overflow-x: hidden;
  color: #66696d;
  letter-spacing: -0.05rem;
}

.inner {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

input:not([type=file]) {
  padding: 0 1rem;
  background: #ffffff;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #d5dadb;
}
input:not([type=file])[type=date] {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  color: #21252b;
}
input:not([type=file])[type=date]::-webkit-clear-button, input:not([type=file])[type=date]::-webkit-inner-spin-button {
  display: none;
}
input:not([type=file])[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
}
input:not([type=file])[type=date]::after {
  content: "\e927";
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.625rem;
  font-family: "feather";
  z-index: 0;
}

.wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #eff2f8;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  color: #ffffff;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  padding-right: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.header__logo::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url("../imgs/logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}
.header__btn--menu {
  background-image: url("../imgs/ico_menu.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header__btn--back {
  background-image: url("../imgs/ico_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner--clone {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding-bottom: 0.5rem;
  transform: translateY(-100%);
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  transition: all 0.3s ease-in-out;
  z-index: 9000;
  border-radius: 0 0 2rem 2rem;
}
.banner--stick {
  transform: translateY(0%);
}

/* 슬라이드 메뉴 추가 시작 */
.header {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.wrapper {
  transition: all 0.3s ease-in-out;
}
.wrapper--locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.slidem {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -20%;
  width: 20%;
  background-color: #ffffff;
  z-index: 2000;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .slidem {
    right: -30%;
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .slidem {
    right: -50%;
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .slidem {
    right: -80%;
    width: 80%;
  }
}
.slidem--active {
  right: 0;
}
.slidem--active .slidem__btn {
  display: flex;
}
.slidem__btn {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1.25rem;
  left: -2.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../imgs/ico_x.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slidem__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem 0;
}
.slidem__item {
  border-bottom: 1px solid #d5dadb;
}
.slidem__item > a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #21252b;
}

.layer-dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 43, 0.7);
  z-index: 1000;
}

/* 슬라이드 메뉴 추가 끝 */
/* 20230717 메뉴 상단 유저메뉴 추가 */
.slidem__top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #21252b;
  color: #ffffff;
  padding: 1.5rem 1rem;
}
.slidem__top ~ .slidem__list {
  padding-top: 0;
}
.slidem__top .username {
  font-size: 1rem;
  color: #d5dadb;
}
.slidem__top .username strong {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
}
.slidem__top .username strong::before {
  content: "\e9f1";
  font-family: "feather";
  margin-right: 0.25rem;
  margin-top: -0.25rem;
  color: #566ffd;
}
.slidem__top .usermenu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.slidem__top .usermenu__item {
  color: #d5dadb;
}
.slidem__top .usermenu__item i {
  margin-right: 0.25rem;
}
.slidem__top .usermenu__line {
  display: block;
  width: 1px;
  height: 0.75rem;
  background-color: #66696d;
}

/* 20230717 메뉴 상단 유저메뉴 추가 끝 */
/* 추가 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
}
.breadcrumb a {
  color: #ffffff;
}
.breadcrumb i {
  color: #d5dadb;
}

.wrapper.login, .wrapper.join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .wrapper.login, .wrapper.join {
    justify-content: flex-start;
    background-color: #ffffff;
    padding-top: 2.5rem;
  }
}
.wrapper.login::after, .wrapper.join::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .wrapper.login::after, .wrapper.join::after {
    background: none;
  }
}

.login__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.login__header h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 576px) {
  .login__header h1 {
    margin-bottom: 0;
    color: #566ffd;
    font-size: 1.5rem;
  }
}
.login__header::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../imgs/logo_big.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 576px) {
  .login__header::before {
    width: 3rem;
    height: 3rem;
    background-image: url("../imgs/logo_big_color.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.login__input {
  position: relative;
}
.login__input label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  color: #66696d;
  transform: translateY(-50%);
}
.login__input label i {
  font-size: 1.125rem;
}
.login__input input {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.25rem;
  line-height: 3rem;
  background-color: #eff2f8;
  transition: all 0.25s ease;
  border-radius: 1rem;
  border: 2px solid #eff2f8;
}
.login__input input:focus {
  border: 2px solid #566ffd;
  color: #21252b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.login__input input:focus ~ label i {
  color: #566ffd;
}
.login__input ~ .login__input {
  margin-top: 0.5rem;
}
.login__util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
.login__util a {
  display: inline-block;
  text-decoration: underline;
}
.login__util a.util-join {
  color: #21252b;
  font-weight: 700;
}
.login__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  text-align: center;
}
.login__footer .copyright {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #66696d;
}
.login__footer .copyright span {
  display: inline-block;
  text-align: center;
  margin-right: 0.5rem;
}
.login__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
  height: 3.5rem;
  border: 1px solid #566ffd;
  background: #566ffd;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.login .form-box {
  width: 27.5rem;
  padding: 3.5rem 3rem;
}

.join {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 0;
}
.join .form-box {
  width: 40rem;
  padding: 2rem;
}
@media screen and (max-width: 576px) {
  .join .form-box {
    width: 100%;
  }
}

/* 회원가입 */
.form-box {
  height: auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  z-index: 10;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}
.form-box__text {
  padding: 1rem;
  background-color: #eff2f8;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 140%;
}
.form-box hr {
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .form-box {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 0;
    background: transparent;
  }
}

.form-list .rowtit {
  border-bottom: 1px solid #566ffd;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #566ffd;
}
.form-list form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: auto;
}
.form-list__row {
  border-bottom: 0;
  margin-bottom: 1.5rem;
}
.form-list__row.varient {
  overflow-x: auto;
}
.form-list__row:last-of-type {
  margin-bottom: 0;
}
.form-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .form-list__item {
    align-items: stretch;
    flex-direction: column;
  }
}
.form-list__item ~ .form-list__item {
  margin-left: 10px;
}
.form-list__tit, .form-list__cont {
  padding: 0;
}
.form-list__tit {
  flex-shrink: 0;
  width: 7.5rem;
  font-weight: 500;
  color: #21252b;
}
.form-list__cont {
  width: 100%;
}
.form-list__cont ~ .form-cont {
  margin-top: 10px;
}
.form-list__input {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 576px) {
  .form-list__input {
    flex-wrap: wrap;
  }
}
.form-list__input input {
  flex-shrink: 1;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}
.form-list__input input.input-mail {
  width: 6.25rem;
}
.form-list__input input.input-phone {
  width: 5rem;
}
@media screen and (max-width: 576px) {
  .form-list__input input {
    flex-grow: 1;
  }
}
.form-list__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.form-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  height: 3rem;
  background-color: #566ffd;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.form-list__btn.cancle {
  background-color: #21252b;
  width: 100px;
}
.form-list__btn--inner {
  width: auto;
  height: 2.25rem;
  color: #21252b;
  background-color: #ffffff;
  border: 1px solid #21252b;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-weight: 500;
}
.form-list__btn--inner--active {
  background-color: #4a54cf;
  color: #ffffff;
  border-color: #4a54cf;
}
.form-list__select {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  border: 1px solid #d5dadb;
  border-radius: 0.5rem;
}
@media screen and (max-width: 576px) {
  .form-list__select {
    flex-grow: 1;
  }
}
select option { color:#21252b }
.form-list__select select {
  width: 100%;
  height: 100%;
  line-height: 2.25rem;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down_black.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.form-list__box {
  padding: 0.5rem 1rem;
  background-color: #eff2f8;
  border-radius: 0.5rem;
  margin-top: -0.5rem;
}
@media screen and (max-width: 576px) {
  .form-list__box {
    background-color: rgba(213, 218, 219, 0.5);
  }
}
.form-list__box .box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #d5dadb;
}
.form-list__box .box-item:last-child {
  border-bottom: none;
}
.form-list__box .box-item label {
  flex-grow: 1;
  color: #21252b;
  font-weight: 700;
}

.error-text {
  color: #e91b41;
  font-size: 0.875rem;
  width: 100%;
  /*margin-top: 0.5rem;*/
}

.accordion {
  display: none;
}
.accordion--open {
  display: block;
}

.flexbox {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.flexbox .form-list__row {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1248px) {
  .flexbox {
    flex-direction: column;
  }
}
.flexbox__item {
  width: 50%;
}
@media screen and (max-width: 1248px) {
  .flexbox__item {
    width: 100%;
  }
}

.table__payment {
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 576px) {
  .table__payment {
    min-width: 33.75rem;
  }
}
.table__payment th {
  text-align: center;
  color: #ffffff;
  background-color: #4a54cf;
}
.table__payment th,
.table__payment td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #d5dadb;
  vertical-align: middle;
  text-align: center;
}
.table__payment td {
  border-right: 1px solid #d5dadb;
}
.table__payment td:last-of-type {
  border-right: none;
}
.table__payment td ~ td[rowspan] {
  border-left: 1px solid #d5dadb;
}
.table__payment td.price {
  background-color: rgba(86, 111, 253, 0.2);
  font-weight: 700;
  color: #21252b;
}

/* 추가 끝 */
.page-top__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
  border-radius: 0 0 2rem 2rem;
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  color: #ffffff;
}
.page-top__title {
  line-height: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
}
.page-top__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-top__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  padding: 0 1.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}
.page-top__btn--active {
  background: #ffffff;
  color: #566ffd;
  font-weight: 500;
}
.page-top__btn:active {
  box-shadow: 0 0 0 0.375rem rgba(255, 255, 255, 0.2);
}
.page-top__select {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding-right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.page-top__select select {
  padding-left: 1rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  font-size: 0.875rem;
}
.page-top__input {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  /*background-color: rgba(255, 255, 255, 0.1);*/
  border-radius: 999px;
}
.page-top__input input {
  border: none;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
.page-top__input input::placeholder {
  color: #3540cb;
}

.page-cont__inner {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.page-cont__title {
  padding-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #21252b;
  font-weight: 700;
}
.page-cont__cont {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.box-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.list-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  font-size: 0.875rem;
  box-shadow: 0 0 1rem rgba(33, 37, 43, 0.08);
}
.list-item__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-item__title .title {
  color: #21252b;
  font-size: 1rem;
  font-weight: 700;
}
.list-item__title .badges {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
}
.list-item__title .badges .badges__sensor, .list-item__title .badges .badges__status {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
}
.list-item__title .badges__status {
  background-color: #eff2f8;
  color: #21252b;
  opacity: 0.6;
}
.list-item__title .badges__status::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-color: #d5dadb;
  border-radius: 100%;
}
.list-item__title .badges__status.error {
  opacity: 1;
}
.list-item__title .badges__status.error::before {
  background-color: #e91b41;
}
.list-item__title .badges__status.active {
  opacity: 1;
  font-weight: 500;
}
.list-item__title .badges__status.active::before {
  background-color: #00bd55;
}
.list-item__title .badges__sensor {
  border: 1px solid #21252b;
  color: #21252b;
}
.list-item__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 150%;
}
.list-item__info strong {
  display: inline-block;
  min-width: 4rem;
  margin-right: 0.5rem;
  font-weight: 500;
  color: #21252b;
}
.list-item__info strong::after {
  content: ":";
  margin-left: 0.5rem;
}

.box-chart {
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
}
.box-chart img {
  max-width: 100%;
}

.box-table table {
  width: 100%;
  font-size: 0.875rem;
  text-align: center;
}
.box-table table thead {
  border-bottom: 2px solid #566ffd;
}
.box-table table td, .box-table table th {
  padding: 0.5rem;
}
.box-table table th {
  color: #21252b;
  font-weight: 700;
}
.box-table table td {
  letter-spacing: normal;
  border-bottom: 1px solid #d5dadb;
  background-color: rgba(255, 255, 255, 0.3);
}
.box-table table td ~ td {
  border-left: 1px dashed #d5dadb;
}

.box-input__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.box-input__row {
  display: flex;
}
.box-input .notice {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  background: #e0e3e9;
  border-radius: 999px;
}
.box-input dl {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.box-input dl dt {
  flex-basis: 11rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #566ffd;
  font-weight: 700;
}
.box-input dl dt::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.875rem;
  margin: 0 1rem 0 0.5rem;
  background-color: #566ffd;
}
.box-input dl dd {
  flex: 1;
}
.box-input dl dd .input-group {
  width: 100%;
}
.box-input input[type=date] {
  width: 100%;
}
.box-input__select {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding-right: 0.5rem;
  background-color: #ffffff;
  border-radius: 999px;
  border: 1px solid #d5dadb;
}
.box-input__select select {
  width: 100%;
  height: 100%;
  line-height: 2.25rem;
  padding-left: 1rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down_black.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  font-size: 0.875rem;
}

.box-input__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  margin-top: 0.75rem;
  padding: 0 2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  background-color: #4a54cf;
  transition: all 0.3s ease-in-out;
}
.box-input__btn i {
  margin-right: 0.5rem;
}
.box-input__btn:active {
  background-color: #566ffd;
}

.status__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.status__item {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(33, 37, 43, 0.08);
}
.status__item .title {
  font-weight: 700;
  color: #21252b;
}
.status__item .indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  background-color: #eff2f8;
  color: #21252b;
}
.status__item .indicator::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-color: #d5dadb;
  border-radius: 100%;
}
.status__item .indicator--error::before {
  background-color: #e91b41;
}
.status__item .indicator--good {
  font-weight: 500;
}
.status__item .indicator--good::before {
  background-color: #00bd55;
}
.status__item .indicator--wait::before {
  background-color: #66696d;
}
.status__item .indicator--check::before {
  background-color: #ffdd00;
}

.control__inner, .control__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}
.control__title {
  display: flex;
  align-items: center;
  line-height: 2rem;
  border-bottom: 1px solid #d5dadb;
  color: #21252b;
  font-size: 0.9375rem;
  font-weight: 500;
}
.control__title::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-image: url("../imgs/ico_control.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.control__group {
  flex-direction: row;
  gap: 0.5rem;
}
.control__btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
}
.control__btn i {
  margin-right: 0.5rem;
}
.control__btn--green {
  background-color: #4a54cf;
}
.control__btn--red {
  background-color: #e91b41;
}
.control__group .control__title {
  width:8rem;
}
.control__group input {
  height:2rem;
  padding: 0 4rem;
}
.control__group .control__btn {
  height:2rem
}
.control__group .control__title {
  border:none
}
.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
}
.input-group__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  color: #21252b;
  font-weight: 500;
  background-color: #e0e3e9;
  border: 1px solid #d5dadb;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.input-group__label_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  color: #21252b;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #d5dadb;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-left:0;
}
.input-group input {
  width: 100%;
  border-radius: 0;
  border-right: 0;
}
.input-group input:first-child {
  width: 100%;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-right: 0;
}
.input-group input:last-child {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

/* 2023-07-10 추가 , 2023-07-17 수정 */
.box-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.box-grid .list-item {
  position: relative;
  width: calc(25% - 8px);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .box-grid .list-item {
    width: calc(33.333% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .box-grid .list-item {
    opacity: 1;
    padding: 0.5rem;
  }
}
.box-grid .list-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #566ffd;
  border-radius: 1rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item::after {
    display: none;
  }
}
.box-grid .list-item__title {
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__title {
    flex-wrap: wrap;
  }
}
.box-grid .list-item__title .title {
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__title .title {
    font-size: 0.8125rem;
    order: 3;
    width: 100%;
  }
}
.box-grid .list-item__sensor {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.375rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  border: 1px solid #21252b;
  color: #21252b;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__sensor {
    height: 1.25rem;
    font-size: 0.75rem;
    order: 1;
  }
}
.box-grid .list-item__status {
  flex-shrink: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #d5dadb;
  border-radius: 999px;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__status {
    width: 0.875rem;
    height: 0.875rem;
    order: 2;
  }
}
.box-grid .list-item__status--active {
  background-color: #00bd55;
}
.box-grid .list-item__status--error {
  background-color: #e91b41;
}
.box-grid .list-item__thumb {
  position: relative;
  object-fit: cover;
  margin-top: 0.25rem;
  background-color: #eff2f8;
  border-radius: 1rem;
  overflow: hidden;
}
.box-grid .list-item__thumb > img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.box-grid .list-item:hover {
  opacity: 1;
}
.box-grid .list-item:hover::after {
  opacity: 1;
}
.box-grid .list-item:hover .list-item__thumb > img {
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item:hover .list-item__thumb > img {
    scale: 1;
  }
}

.page-top__item {
  flex-wrap: wrap;
}

/* ---------- 로딩중 회전  ----------  시작*/
.loader{
    width: 100%;
    height: 100%;
    z-index: 600;
    position: fixed;
    /*

	left:50%;
	top:50%;
	margin:-40px 0 0 -40px;
    vertical-align:middle;

    text-align:center;
    /*background:transperate;*/
    background-color: #000000;
    opacity: 0.8;
    display:none;
    background-color: rgba( 0, 0, 0, 0.8 );
}
.loader .loading {
    border: 16px solid rgba( 0, 0, 0, 0.5 ); /* border: 16px solid #f3f3f3; Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    text-align:center;
    vertical-align:middle;
    position: fixed;
	left:50%;
	top:50%;
	margin:-40px 0 0 -50px;
}
.loader div.red {
    border-top: 16px solid #c9548e; /* Pink */
	color:red;
}
.loader div.green {
    border-top: 16px solid #64FE2E; /* yellow green #BCF5A9 */
}
.loader .msg{
    width: 100%;
    height: 20px;
    text-align:center;
    z-index:600;
    position:fixed;
	top:50%;
	margin:-9px 0 0 -10px;
    vertical-align:middle;
    opacity: 1.0;
    font-weight:bold;

}
.red ~.loader .msg
{
	color:red;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@charset "UTF-8";
/**
 * Copyright (c) 2015 Spoqa, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 700;
  src: local("Spoqa Han Sans Neo Bold"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 500;
  src: local("Spoqa Han Sans Neo Medium"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 400;
  src: local("Spoqa Han Sans Neo Regular"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 300;
  src: local("Spoqa Han Sans Neo Light"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.woff2") format("woff2"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.woff") format("woff"), url("../fonts/spoqahansansneo/SpoqaHanSansNeo-Light.ttf") format("truetype");
}
/*-----------------------
Author : Sooj
Last Updated : 2022-03-18
Reference : The new CSS reset - version 1.5.1 (last updated 1.3.2022) (https://github.com/elad2412/the-new-css-reset)
------------------------*/
/* 모든 브라우저 스타일 초기화 */
*:where(:not(iframe, canvas, img, svg, video, hr):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* 박스스타일 지정 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 기본 라인 높이 설정 */
/* ios 폰트사이즈 변화 대응 */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

/* 포인트 커서 적용 */
a,
button {
  cursor: pointer;
  color: #66696d;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

/* 리스트 스타일 삭제 */
ol,
ul,
menu {
  list-style: none;
}

/* 이미지가 컨테이너 영역을 넘어갈 수 없도록 지정 */
img,
picture,
video,
canvas,
svg {
  display: block;
}

/* 테이블 셀 간 간격 삭제 */
table {
  border-collapse: collapse;
}

/* 체크박스, 라디오스타일 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

/* 웹폰트가 나눔스퀘어일때 */
/* 사파리에서 textarea의 공백 되돌림 */
textarea {
  white-space: revert;
}

/* meter 최소 스타일링 */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* placeholder 초기화 */
/* 모든 hidden 요소 숨김 ( display:revert; 로 되돌림 ) */
:where([hidden]) {
  display: none;
}

/* 크롬 버그 복구 */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
}

/* 드래그 기능 다시적용 ( Chrome 및 Safari ) */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  font-family: "Spoqa Han Sans Neo", "맑은 고딕", "MalgumGothic", sans-serif;
  font-size: 0.875rem;
  overflow-x: hidden;
  color: #66696d;
  letter-spacing: -0.05rem;
}

.inner {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

input:not([type=file]) {
  padding: 0 1rem;
  background: #ffffff;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #d5dadb;
}
input:not([type=file])[type=date] {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  color: #21252b;
}
input:not([type=file])[type=date]::-webkit-clear-button, input:not([type=file])[type=date]::-webkit-inner-spin-button {
  display: none;
}
input:not([type=file])[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
}
input:not([type=file])[type=date]::after {
  content: "\e927";
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.625rem;
  font-family: "feather";
  z-index: 0;
}

.wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #eff2f8;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  color: #ffffff;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  padding-right: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.header__logo::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
  background-image: url("../imgs/logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}
.header__btn--menu {
  background-image: url("../imgs/ico_menu.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.header__btn--back {
  background-image: url("../imgs/ico_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner--clone {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding-bottom: 0.5rem;
  transform: translateY(-100%);
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  transition: all 0.3s ease-in-out;
  z-index: 9000;
  border-radius: 0 0 2rem 2rem;
}
.banner--stick {
  transform: translateY(0%);
}

/* 슬라이드 메뉴 추가 시작 */
.header {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.wrapper {
  transition: all 0.3s ease-in-out;
}
.wrapper--locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.slidem {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -20%;
  width: 20%;
  background-color: #ffffff;
  z-index: 2000;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .slidem {
    right: -30%;
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .slidem {
    right: -50%;
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .slidem {
    right: -80%;
    width: 80%;
  }
}
.slidem--active {
  right: 0;
}
.slidem--active .slidem__btn {
  display: flex;
}
.slidem__btn {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1.25rem;
  left: -2.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../imgs/ico_x.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slidem__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem 0;
}
.slidem__item {
  border-bottom: 1px solid #d5dadb;
}
.slidem__item > a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #21252b;
}

.layer-dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 37, 43, 0.7);
  z-index: 1000;
}

/* 슬라이드 메뉴 추가 끝 */
/* 20230717 메뉴 상단 유저메뉴 추가 */
.slidem__top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #21252b;
  color: #ffffff;
  padding: 1.5rem 1rem;
}
.slidem__top ~ .slidem__list {
  padding-top: 0;
}
.slidem__top .username {
  font-size: 1rem;
  color: #d5dadb;
}
.slidem__top .username strong {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
}
.slidem__top .username strong::before {
  content: "\e9f1";
  font-family: "feather";
  margin-right: 0.25rem;
  margin-top: -0.25rem;
  color: #566ffd;
}
.slidem__top .usermenu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.slidem__top .usermenu__item {
  color: #d5dadb;
}
.slidem__top .usermenu__item i {
  margin-right: 0.25rem;
}
.slidem__top .usermenu__line {
  display: block;
  width: 1px;
  height: 0.75rem;
  background-color: #66696d;
}

/* 20230717 메뉴 상단 유저메뉴 추가 끝 */
/* 추가 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
}
.breadcrumb a {
  color: #ffffff;
}
.breadcrumb i {
  color: #d5dadb;
}

.wrapper.login, .wrapper.join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .wrapper.login, .wrapper.join {
    justify-content: flex-start;
    background-color: #ffffff;
    padding-top: 2.5rem;
  }
}
.wrapper.login::after, .wrapper.join::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .wrapper.login::after, .wrapper.join::after {
    background: none;
  }
}

.login__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.login__header h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 576px) {
  .login__header h1 {
    margin-bottom: 0;
    color: #566ffd;
    font-size: 1.5rem;
  }
}
.login__header::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../imgs/logo_big.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 576px) {
  .login__header::before {
    width: 3rem;
    height: 3rem;
    background-image: url("../imgs/logo_big_color.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.login__input {
  position: relative;
}
.login__input label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  color: #66696d;
  transform: translateY(-50%);
}
.login__input label i {
  font-size: 1.125rem;
}
.login__input input {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.25rem;
  line-height: 3rem;
  background-color: #eff2f8;
  transition: all 0.25s ease;
  border-radius: 1rem;
  border: 2px solid #eff2f8;
}
.login__input input:focus {
  border: 2px solid #566ffd;
  color: #21252b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.login__input input:focus ~ label i {
  color: #566ffd;
}
.login__input ~ .login__input {
  margin-top: 0.5rem;
}
.login__util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
.login__util a {
  display: inline-block;
  text-decoration: underline;
}
.login__util a.util-join {
  color: #21252b;
  font-weight: 700;
}
.login__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  text-align: center;
}
.login__footer .copyright {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #66696d;
}
.login__footer .copyright span {
  display: inline-block;
  text-align: center;
  margin-right: 0.5rem;
}
.login__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
  height: 3.5rem;
  border: 1px solid #566ffd;
  background: #566ffd;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.login .form-box {
  width: 27.5rem;
  padding: 3.5rem 3rem;
}

.join {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 0;
}
.join .form-box {
  width: 40rem;
  padding: 2rem;
}
@media screen and (max-width: 576px) {
  .join .form-box {
    width: 100%;
  }
}

/* 회원가입 */
.form-box {
  height: auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  z-index: 10;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}
.form-box__text {
  padding: 1rem;
  background-color: #eff2f8;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 140%;
}
.form-box hr {
  margin-bottom: 1rem;
}
@media screen and (max-width: 576px) {
  .form-box {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 0;
    background: transparent;
  }
}

.form-list .rowtit {
  border-bottom: 1px solid #566ffd;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #566ffd;
}
.form-list form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: auto;
}
.form-list__row {
  border-bottom: 0;
  margin-bottom: 1.5rem;
}
.form-list__row.varient {
  overflow-x: auto;
}
.form-list__row:last-of-type {
  margin-bottom: 0;
}
.form-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .form-list__item {
    align-items: stretch;
    flex-direction: column;
  }
}
.form-list__item ~ .form-list__item {
  margin-left: 10px;
}
.form-list__tit, .form-list__cont {
  padding: 0;
}
.form-list__tit {
  flex-shrink: 0;
  width: 7.5rem;
  font-weight: 500;
  color: #21252b;
}
.form-list__cont {
  width: 100%;
}
.form-list__cont ~ .form-cont {
  margin-top: 10px;
}
.form-list__input {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 576px) {
  .form-list__input {
    flex-wrap: wrap;
  }
}
.form-list__input input {
  flex-shrink: 1;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}
.form-list__input input.input-mail {
  width: 6.25rem;
}
.form-list__input input.input-phone {
  width: 5rem;
}
@media screen and (max-width: 576px) {
  .form-list__input input {
    flex-grow: 1;
  }
}
.form-list__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.form-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  height: 3rem;
  background-color: #566ffd;
  border-radius: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.form-list__btn.cancle {
  background-color: #21252b;
  width: 100px;
}
.form-list__btn--inner {
  width: auto;
  height: 2.25rem;
  color: #21252b;
  background-color: #ffffff;
  border: 1px solid #21252b;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-weight: 500;
}
.form-list__btn--inner--active {
  background-color: #4a54cf;
  color: #ffffff;
  border-color: #4a54cf;
}
.form-list__select {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  border: 1px solid #d5dadb;
  border-radius: 0.5rem;
}
@media screen and (max-width: 576px) {
  .form-list__select {
    flex-grow: 1;
  }
}
select option { color:#21252b }
.form-list__select select {
  width: 100%;
  height: 100%;
  line-height: 2.25rem;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down_black.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.form-list__box {
  padding: 0.5rem 1rem;
  background-color: #eff2f8;
  border-radius: 0.5rem;
  margin-top: -0.5rem;
}
@media screen and (max-width: 576px) {
  .form-list__box {
    background-color: rgba(213, 218, 219, 0.5);
  }
}
.form-list__box .box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #d5dadb;
}
.form-list__box .box-item:last-child {
  border-bottom: none;
}
.form-list__box .box-item label {
  flex-grow: 1;
  color: #21252b;
  font-weight: 700;
}

.error-text {
  color: #e91b41;
  font-size: 0.875rem;
  width: 100%;
  /*margin-top: 0.5rem;*/
}

.accordion {
  display: none;
}
.accordion--open {
  display: block;
}

.flexbox {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.flexbox .form-list__row {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1248px) {
  .flexbox {
    flex-direction: column;
  }
}
.flexbox__item {
  width: 50%;
}
@media screen and (max-width: 1248px) {
  .flexbox__item {
    width: 100%;
  }
}

.table__payment {
  width: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 576px) {
  .table__payment {
    min-width: 33.75rem;
  }
}
.table__payment th {
  text-align: center;
  color: #ffffff;
  background-color: #4a54cf;
}
.table__payment th,
.table__payment td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #d5dadb;
  vertical-align: middle;
  text-align: center;
}
.table__payment td {
  border-right: 1px solid #d5dadb;
}
.table__payment td:last-of-type {
  border-right: none;
}
.table__payment td ~ td[rowspan] {
  border-left: 1px solid #d5dadb;
}
.table__payment td.price {
  background-color: rgba(86, 111, 253, 0.2);
  font-weight: 700;
  color: #21252b;
}

/* 추가 끝 */
.page-top__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
  border-radius: 0 0 2rem 2rem;
  background: linear-gradient(141.56deg, #566ffd 35.36%, #4a54cf 94.27%);
  color: #ffffff;
}
.page-top__title {
  line-height: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
}
.page-top__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-top__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  padding: 0 1.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
}
.page-top__btn--active {
  background: #ffffff;
  color: #566ffd;
  font-weight: 500;
}
.page-top__btn:active {
  box-shadow: 0 0 0 0.375rem rgba(255, 255, 255, 0.2);
}
.page-top__select {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding-right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.page-top__select select {
  padding-left: 1rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  font-size: 0.875rem;
}
.page-top__input {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  /*background-color: rgba(255, 255, 255, 0.1);*/
  border-radius: 999px;
}
.page-top__input input {
  border: none;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
.page-top__input input::placeholder {
  color: #3540cb;
}

.page-cont__inner {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.page-cont__title {
  padding-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #21252b;
  font-weight: 700;
}
.page-cont__cont {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.box-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.list-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  font-size: 0.875rem;
  box-shadow: 0 0 1rem rgba(33, 37, 43, 0.08);
}
.list-item__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-item__title .title {
  color: #21252b;
  font-size: 1rem;
  font-weight: 700;
}
.list-item__title .badges {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
}
.list-item__title .badges .badges__sensor, .list-item__title .badges .badges__status {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
}
.list-item__title .badges__status {
  background-color: #eff2f8;
  color: #21252b;
  opacity: 0.6;
}
.list-item__title .badges__status::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-color: #d5dadb;
  border-radius: 100%;
}
.list-item__title .badges__status.error {
  opacity: 1;
}
.list-item__title .badges__status.error::before {
  background-color: #e91b41;
}
.list-item__title .badges__status.active {
  opacity: 1;
  font-weight: 500;
}
.list-item__title .badges__status.active::before {
  background-color: #00bd55;
}
.list-item__title .badges__sensor {
  border: 1px solid #21252b;
  color: #21252b;
}
.list-item__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 150%;
}
.list-item__info strong {
  display: inline-block;
  min-width: 4rem;
  margin-right: 0.5rem;
  font-weight: 500;
  color: #21252b;
}
.list-item__info strong::after {
  content: ":";
  margin-left: 0.5rem;
}

.box-chart {
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
}
.box-chart img {
  max-width: 100%;
}

.box-table table {
  width: 100%;
  font-size: 0.875rem;
  text-align: center;
}
.box-table table thead {
  border-bottom: 2px solid #566ffd;
}
.box-table table td, .box-table table th {
  padding: 0.5rem;
}
.box-table table th {
  color: #21252b;
  font-weight: 700;
}
.box-table table td {
  letter-spacing: normal;
  border-bottom: 1px solid #d5dadb;
  background-color: rgba(255, 255, 255, 0.3);
}
.box-table table td ~ td {
  border-left: 1px dashed #d5dadb;
}

.box-input__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.box-input__row {
  display: flex;
}
.box-input .notice {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  background: #e0e3e9;
  border-radius: 999px;
}
.box-input dl {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}
.box-input dl dt {
  flex-basis: 11rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #566ffd;
  font-weight: 700;
}
.box-input dl dt::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.875rem;
  margin: 0 1rem 0 0.5rem;
  background-color: #566ffd;
}
.box-input dl dd {
  flex: 1;
}
.box-input dl dd .input-group {
  width: 100%;
}
.box-input input[type=date] {
  width: 100%;
}
.box-input__select {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
  padding-right: 0.5rem;
  background-color: #ffffff;
  border-radius: 999px;
  border: 1px solid #d5dadb;
}
.box-input__select select {
  width: 100%;
  height: 100%;
  line-height: 2.25rem;
  padding-left: 1rem;
  padding-right: 1.5rem;
  background-image: url("../imgs/select_down_black.png");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right center;
  font-size: 0.875rem;
}

.box-input__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  margin-top: 0.75rem;
  padding: 0 2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  background-color: #4a54cf;
  transition: all 0.3s ease-in-out;
}
.box-input__btn i {
  margin-right: 0.5rem;
}
.box-input__btn:active {
  background-color: #566ffd;
}

.status__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.status__item {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(33, 37, 43, 0.08);
}
.status__item .title {
  font-weight: 700;
  color: #21252b;
}
.status__item .indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  background-color: #eff2f8;
  color: #21252b;
}
.status__item .indicator::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-color: #d5dadb;
  border-radius: 100%;
}
.status__item .indicator--error::before {
  background-color: #e91b41;
}
.status__item .indicator--good {
  font-weight: 500;
}
.status__item .indicator--good::before {
  background-color: #00bd55;
}
.status__item .indicator--wait::before {
  background-color: #66696d;
}
.status__item .indicator--check::before {
  background-color: #ffdd00;
}

.control__inner, .control__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}
.control__title {
  display: flex;
  align-items: center;
  line-height: 2rem;
  border-bottom: 1px solid #d5dadb;
  color: #21252b;
  font-size: 0.9375rem;
  font-weight: 500;
}
.control__title::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-image: url("../imgs/ico_control.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.control__group {
  flex-direction: row;
  gap: 0.5rem;
}
.control__btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
}
.control__btn i {
  margin-right: 0.5rem;
}
.control__btn--green {
  background-color: #4a54cf;
}
.control__btn--red {
  background-color: #e91b41;
}
.control__group .control__title {
  width:8rem;
}
.control__group input {
  height:2rem;
  padding: 0 4rem;
}
.control__group .control__btn {
  height:2rem
}
.control__group .control__title {
  border:none
}
.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
}
.input-group__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  color: #21252b;
  font-weight: 500;
  background-color: #e0e3e9;
  border: 1px solid #d5dadb;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.input-group__label_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  color: #21252b;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #d5dadb;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-left:0;
}
.input-group input {
  width: 100%;
  border-radius: 0;
  border-right: 0;
}
.input-group input:first-child {
  width: 100%;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  border-right: 0;
}
.input-group input:last-child {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

/* 2023-07-10 추가 , 2023-07-17 수정 */
.box-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.box-grid .list-item {
  position: relative;
  width: calc(25% - 8px);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .box-grid .list-item {
    width: calc(33.333% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .box-grid .list-item {
    opacity: 1;
    padding: 0.5rem;
  }
}
.box-grid .list-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #566ffd;
  border-radius: 1rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item::after {
    display: none;
  }
}
.box-grid .list-item__title {
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__title {
    flex-wrap: wrap;
  }
}
.box-grid .list-item__title .title {
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__title .title {
    font-size: 0.8125rem;
    order: 3;
    width: 100%;
  }
}
.box-grid .list-item__sensor {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.375rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  border: 1px solid #21252b;
  color: #21252b;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__sensor {
    height: 1.25rem;
    font-size: 0.75rem;
    order: 1;
  }
}
.box-grid .list-item__status {
  flex-shrink: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #d5dadb;
  border-radius: 999px;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item__status {
    width: 0.875rem;
    height: 0.875rem;
    order: 2;
  }
}
.box-grid .list-item__status--active {
  background-color: #00bd55;
}
.box-grid .list-item__status--error {
  background-color: #e91b41;
}
.box-grid .list-item__thumb {
  position: relative;
  object-fit: cover;
  margin-top: 0.25rem;
  background-color: #eff2f8;
  border-radius: 1rem;
  overflow: hidden;
}
.box-grid .list-item__thumb > img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.box-grid .list-item:hover {
  opacity: 1;
}
.box-grid .list-item:hover::after {
  opacity: 1;
}
.box-grid .list-item:hover .list-item__thumb > img {
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .box-grid .list-item:hover .list-item__thumb > img {
    scale: 1;
  }
}

.page-top__item {
  flex-wrap: wrap;
}

/* ---------- 로딩중 회전  ----------  시작*/
.loader{
    width: 100%;
    height: 100%;
    z-index: 600;
    position: fixed;
    /*

	left:50%;
	top:50%;
	margin:-40px 0 0 -40px;
    vertical-align:middle;

    text-align:center;
    /*background:transperate;*/
    background-color: #000000;
    opacity: 0.8;
    display:none;
    background-color: rgba( 0, 0, 0, 0.8 );
}
.loader .loading {
    border: 16px solid rgba( 0, 0, 0, 0.5 ); /* border: 16px solid #f3f3f3; Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    text-align:center;
    vertical-align:middle;
    position: fixed;
	left:50%;
	top:50%;
	margin:-40px 0 0 -50px;
}
.loader div.red {
    border-top: 16px solid #c9548e; /* Pink */
	color:red;
}
.loader div.green {
    border-top: 16px solid #64FE2E; /* yellow green #BCF5A9 */
}
.loader .msg{
    width: 100%;
    height: 20px;
    text-align:center;
    z-index:600;
    position:fixed;
	top:50%;
	margin:-9px 0 0 -10px;
    vertical-align:middle;
    opacity: 1.0;
    font-weight:bold;

}
.red ~.loader .msg
{
	color:red;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 240607 디자인 수정 */
.box-list__notice {
  padding: 1rem 0.5rem;
  text-align: right;
  color: #21252b;
}
.box-list__notice span {
  display: inline-block;
  width: 2.25rem;
  height: 1.125rem;
  margin-top: -2px;
  color: transparent;
  background-color: rgba(0, 189, 85, 0.2);
  border: 1px solid #00bd55;
  vertical-align: middle;
}
.box-list__table {
  width: 100%;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(33, 37, 43, 0.08);
  overflow-x: auto;
}
.box-list__table table {
  table-layout: auto;
  width: 100%;
}
.box-list__table thead th {
  text-align: center;
  font-weight: 700;
  color: #21252b;
  border-color: #21252b;
  text-align: left;
}
.box-list__table thead th strong {
  font-size: 1rem;
}
.box-list__table tbody tr.active {
  background-color: rgba(0, 189, 85, 0.2);
}
.box-list__table tbody tr:last-of-type td {
  border-bottom: 0;
}
.box-list__table td,
.box-list__table th {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #d5dadb;
  vertical-align: middle;
}
.box-list__table td:nth-child(even),
.box-list__table th:nth-child(even) {
  background-color: rgba(33, 37, 43, 0.04);
}
.box-list__table td:nth-child(odd):not(:first-child),
.box-list__table th:nth-child(odd):not(:first-child) {
  background-color: rgba(33, 37, 43, 0.08);
}
.box-list__table .info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .box-list__table .info {
    min-width: 8.75rem;
  }
}
.box-list__table .title {
  color: #21252b;
  font-size: 1rem;
  font-weight: 700;
}
.box-list__table .detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .box-list__table .detail {
    flex-direction: column;
    align-items: flex-start;
  }
}
.box-list__table .detail strong {
  color: #21252b;
}
.box-list__table .detail p {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .box-list__table .detail p {
    flex-direction: column;
    align-items: flex-start;
  }
}
.box-list__table .value {
  min-width: 5rem;
}
.box-list__table .value span {
  display: block;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: #4a54cf;
  font-weight: 500;
  line-height: 1.5;
}
.box-list__table .badges {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.box-list__table .badges .badges__sensor {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.25rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
}
.box-list__table .badges__sensor {
  border: 1px solid #21252b;
  color: #21252b;
}

.box-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: rgba(86, 111, 253, 0.1);
  border-radius: 1rem;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .box-sort {
    flex-direction: column;
    gap: 1rem;
  }
}
.box-sort__title {
  color: #566ffd;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .box-sort__title {
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(86, 111, 253, 0.4);
  }
}
.box-sort__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.box-sort__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.box-sort__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 3.75rem;
  height: 2.25rem;
  margin: 0 auto;
  padding: 0 1rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  background-color: #566ffd;
  transition: all 0.3s ease-in-out;
}
.box-sort__btn span {
  flex-shrink: 0;
}

/* 240607 디자인 수정 끝 */





/* 2023-07-10 추가 , 2023-07-17 수정 끝 */

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



