@import url("https://fonts.googleapis.com/css2?family=Lexend+Exa&family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap");
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes shake {
  0% {
    right: 0;
  }
  20% {
    right: 0.3rem;
  }
  45% {
    right: -0.3rem;
  }
  55% {
    right: 0.3rem;
  }
  80% {
    right: -0.3rem;
  }
  100% {
    right: 0rem;
  }
}
@keyframes glow {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(120%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes glow2 {
  0% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(150%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes alert {
  0% {
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) translate(-30%, -30%);
    opacity: 0;
  }
}
@keyframes alert2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes arrowRight {
  0% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(50%);
  }
}
@keyframes tooltip {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
button {
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 1px solid transparent;
  background: none;
  padding: 5px 10px;
  height: 25px;
  font-size: 0.6rem;
  box-sizing: border-box;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
button:disabled {
  pointer-events: none;
  filter: opacity(0.65);
}
button.primary {
  color: #F2F2F2;
  border-color: #9575cd;
  background-color: #9575cd;
}
button.primary:hover {
  filter: brightness(0.9);
}
button.secondary {
  color: #F2F2F2;
  background-color: #6a5a8c;
  border-color: #6a5a8c;
}
button.secondary:hover {
  filter: brightness(0.9);
}
button.caution {
  color: #F2F2F2;
  background-color: #ffa02c;
  border-color: #ffa02c;
}
button.caution:hover {
  filter: brightness(0.9);
}
button.danger {
  color: #F2F2F2;
  background-color: #D92323;
  border-color: #D92323;
}
button.danger:hover {
  filter: brightness(0.9);
}
button.crush {
  color: #F2F2F2;
  background-color: #f83c7b;
  border-color: #f83c7b;
}
button.crush:hover {
  filter: brightness(0.9);
}
button.gray {
  color: #F2F2F2;
  background-color: #737373;
  border-color: #737373;
}
button.gray:hover {
  filter: brightness(0.9);
}
button.outline-primary {
  color: #9575cd;
  border: 1px solid #9575cd;
}
button.outline-primary:hover {
  color: #fff;
  background-color: #9575cd;
}
button.outline-secondary {
  color: #6a5a8c;
  border: 1px solid #6a5a8c;
}
button.outline-secondary:hover {
  color: #fff;
  background-color: #6a5a8c;
}
button.outline-caution {
  color: #ffa02c;
  border: 1px solid #ffa02c;
}
button.outline-caution:hover {
  color: #fff;
  background-color: #ffa02c;
}
button.outline-danger {
  color: #D92323;
  border: 1px solid #D92323;
}
button.outline-danger:hover {
  color: #fff;
  background-color: #D92323;
}
button.outline-crush {
  color: #f83c7b;
  border: 1px solid #f83c7b;
}
button.outline-crush:hover {
  color: #fff;
  background-color: #f83c7b;
}
button.outline-gray {
  color: #737373;
  border: 1px solid #737373;
}
button.outline-gray:hover {
  color: #fff;
  background-color: #737373;
}

.scrollable {
  overflow-x: hidden;
  overflow-y: auto;
}
.scrollable::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.scrollable::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}
.scrollable::-webkit-scrollbar-thumb {
  background-color: #cdc0e3;
  border-radius: 2px;
}

table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
table thead tr th, table thead tr td, table tbody tr th, table tbody tr td {
  text-align: left;
  margin: 0;
  border-bottom: 1px solid #e8e8e8;
  padding: 5px 0;
}
table thead tr th:first-child, table thead tr td:first-child, table tbody tr th:first-child, table tbody tr td:first-child {
  padding-left: 5px;
}
table thead tr th.primary, table thead tr td.primary, table tbody tr th.primary, table tbody tr td.primary {
  background-color: #d6cde7;
}
table thead tr th.secondary, table thead tr td.secondary, table tbody tr th.secondary, table tbody tr td.secondary {
  background-color: #c9c4d3;
}
table thead tr th.caution, table thead tr td.caution, table tbody tr th.caution, table tbody tr td.caution {
  background-color: #f6d9b7;
}
table thead tr th.danger, table thead tr td.danger, table tbody tr th.danger, table tbody tr td.danger {
  background-color: #ebb4b4;
}
table thead tr th.crush, table thead tr td.crush, table tbody tr th.crush, table tbody tr td.crush {
  background-color: #f4bbce;
}
table thead tr th.gray, table thead tr td.gray, table tbody tr th.gray, table tbody tr td.gray {
  background-color: #dbdbdb;
}
table thead tr th.dark, table thead tr td.dark, table tbody tr th.dark, table tbody tr td.dark {
  background-color: #292033;
  color: #F2F2F2;
}
table thead tr.primary th, table thead tr.primary td, table tbody tr.primary th, table tbody tr.primary td {
  background-color: #d6cde7;
}
table thead tr.secondary th, table thead tr.secondary td, table tbody tr.secondary th, table tbody tr.secondary td {
  background-color: #c9c4d3;
}
table thead tr.caution th, table thead tr.caution td, table tbody tr.caution th, table tbody tr.caution td {
  background-color: #f6d9b7;
}
table thead tr.danger th, table thead tr.danger td, table tbody tr.danger th, table tbody tr.danger td {
  background-color: #ebb4b4;
}
table thead tr.crush th, table thead tr.crush td, table tbody tr.crush th, table tbody tr.crush td {
  background-color: #f4bbce;
}
table thead tr.crush.primary th, table thead tr.crush.primary td, table tbody tr.crush.primary th, table tbody tr.crush.primary td {
  background-color: #e5c4db;
}
table thead tr.gray th, table thead tr.gray td, table tbody tr.gray th, table tbody tr.gray td {
  background-color: #dbdbdb;
}
table thead tr.dark th, table thead tr.dark td, table tbody tr.dark th, table tbody tr.dark td {
  background-color: #292033;
  color: #F2F2F2;
}
table thead tr th, table thead tr td {
  font-weight: 700;
}
table.stripe tbody tr:nth-child(odd) {
  background-color: #e8e8e8;
}
table.noBorder thead tr th, table.noBorder thead tr td, table.noBorder tbody tr th, table.noBorder tbody tr td {
  border-bottom: 0px;
}

code {
  display: block;
  padding: 10px;
  background-color: #e8e8e8;
  border-radius: 10px;
  margin: 5px 0;
  position: relative;
  overflow: hidden;
  line-height: 1.4em;
}
code::after {
  content: attr(data-type);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #A6A6A6;
  color: #F2F2F2;
  padding: 1px 8px;
  font-size: 11px;
  line-height: normal;
}
code.pre {
  white-space: pre;
}

.checkBoxDiv {
  transform-origin: left;
  display: inline-flex;
  align-items: center;
}
.checkBoxDiv label.checkBox {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(166, 166, 166, 0.5);
  border-radius: 0px;
  position: relative;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
  cursor: pointer;
  display: block;
}
.checkBoxDiv input.chkBox {
  display: none;
}
.checkBoxDiv input.chkBox:checked + label.checkBox {
  background-color: #9575cd;
}
.checkBoxDiv input.chkBox:checked + label.checkBox::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 5px;
  height: 8px;
  box-shadow: inset 2px 2px #F2F2F2;
  transform: rotate(-135deg);
}
.checkBoxDiv label.text {
  margin-left: 0.2rem;
  cursor: pointer;
  line-height: 0.8rem;
}

.list {
  width: 100%;
  height: auto;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
}
.list .depth1 {
  width: 100%;
  height: auto;
}
.list .depth1 .title {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d9d9d9;
  box-sizing: border-box;
  position: relative;
}
.list .depth1 .title .iconList {
  max-width: 250px;
  max-height: 250px;
  background-color: #F2F2F2;
  border-radius: 10px;
  box-shadow: 0px 0px 5px rgba(166, 166, 166, 0.3);
  padding: 5px;
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  display: none;
}
.list .depth1 .title .iconList i {
  width: 18%;
  margin: 10px 1%;
  text-align: center;
  cursor: pointer;
  opacity: 0.7;
  font-size: 1.1rem;
  color: #A6A6A6;
}
.list .depth1 .title .iconList i:hover {
  opacity: 1;
}
.list .depth1 .title .iconList.active {
  display: flex;
}
.list .depth1 .title i._icon {
  margin-left: 10px;
  margin-right: 20px;
  color: #8474a5;
}
.list .depth1 .title span.iconSelect {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  box-sizing: border-box;
  border: 1px solid #A6A6A6;
  border-radius: 5px;
}
.list .depth1 .title span.iconSelect:hover {
  background-color: #d9d9d9;
  cursor: pointer;
}
.list .depth1 .title span.iconSelect .selected {
  color: #8474a5;
  margin-right: 5px;
}
.list .depth1 .title span.iconSelect .caret {
  font-size: 0.8rem;
  color: #A6A6A6;
}
.list .depth1 .title p {
  flex: 1;
  font-size: 0.8rem;
  font-weight: bold;
}
.list .depth1 .title input {
  flex: 1;
  font-size: 0.8rem;
  padding: 2px 0;
}
.list .depth1 .title button.saveBtn i,
.list .depth1 .title button.addBtn i {
  font-size: 1rem;
  color: #b29adb;
}
.list .depth1 .title button.saveBtn:hover i,
.list .depth1 .title button.addBtn:hover i {
  color: #7850bf;
}
.list .depth1 .title button.editBtn i {
  font-size: 1rem;
  color: silver;
}
.list .depth1 .title button.editBtn:hover i {
  color: #8d8d8d;
}
.list .depth1 .title button.cancelBtn i {
  font-size: 1rem;
  color: silver;
}
.list .depth1 .title button.cancelBtn:hover i {
  color: #8d8d8d;
}
.list .depth1 .title button.delBtn i {
  font-size: 1rem;
  color: #fa6d9c;
}
.list .depth1 .title button.delBtn:hover i {
  color: #f60b5a;
}
.list .depth1.clickable .title {
  cursor: pointer;
}
.list .depth1.clickable .title:hover {
  background-color: rgba(217, 217, 217, 0.3);
  color: #6a5a8c;
}
.list .depth1 ul.depth2 li {
  padding: 4px 0;
  padding-left: 60px;
  font-size: 0.8rem;
}
.list .depth1 ul.depth2 li.clickable {
  cursor: pointer;
}
.list .depth1 ul.depth2 li.clickable:hover {
  background-color: rgba(217, 217, 217, 0.3);
  color: #6a5a8c;
}
.list .depth1:last-child ul.depth2 li:last-child {
  border-bottom: 0px;
}
.list.accordion .depth1 ul.depth2 {
  transition: all 0.3s;
  display: none;
}
.list.accordion .depth1.active ul.depth2 {
  display: block;
}

input {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 100;
  font-size: 0.8rem;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 0px;
  text-indent: 5px;
  height: 23px;
}
input:focus {
  outline: none;
  border: 1px solid #9575cd;
}
input:disabled {
  background-color: rgba(166, 166, 166, 0.3);
  pointer-events: none;
}

select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  font-weight: 100;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  text-indent: 5px;
  height: 25px;
}
select:focus {
  border: 1px solid #9575cd;
  outline: none;
}

.toggleSwitch {
  transform-origin: left;
}
.toggleSwitch input[type=checkbox].toggle {
  display: none;
  opacity: 0;
  z-index: -1;
}
.toggleSwitch input[type=checkbox].toggle:checked + .check-trail {
  background: #9575cd;
}
.toggleSwitch input[type=checkbox].toggle:checked + .check-trail .check-handler {
  margin-left: 55%;
}
.toggleSwitch label.check-trail {
  transform-origin: left;
  display: flex;
  align-items: center;
  width: 40px;
  height: 20px;
  background: #e8e8e8;
  transition: all 0.2s ease;
  cursor: pointer;
}
.toggleSwitch .check-handler {
  display: flex;
  margin-left: 3px;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: #F2F2F2;
  transition: all 0.2s ease;
  box-shadow: 0 0 8px rgba(166, 166, 166, 0.3);
  position: relative;
}

.searchForm {
  width: 100%;
  max-height: 400px;
  transition: all 0.5s;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(166, 166, 166, 0.3);
}
.searchForm button#foldSearchForm {
  width: 100%;
  border: none;
  position: sticky;
  background-color: #fff;
  bottom: 0;
}
.searchForm button#foldSearchForm:hover {
  color: #A6A6A6;
}
.searchForm.hide > div:not([data-fix_view=true]) {
  display: none;
}
.searchForm .period,
.searchForm .day {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 1px solid #e8e8e8;
}
.searchForm .period b,
.searchForm .day b {
  width: 150px;
  font-size: 0.8rem;
  font-weight: 400;
}
.searchForm .period input[name*=dateTimePicker1],
.searchForm .day input[name*=dateTimePicker1] {
  width: 100px;
}
.searchForm .period input[name*=dateTimePicker2],
.searchForm .day input[name*=dateTimePicker2] {
  width: 100px;
}
.searchForm .period span,
.searchForm .day span {
  width: 10px;
  text-align: center;
}
.searchForm .period .fastBtns,
.searchForm .day .fastBtns {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
  align-items: center;
}
.searchForm .period .fastBtns button,
.searchForm .day .fastBtns button {
  padding: 0 5px;
}
.searchForm .optionRow {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 1px solid #e8e8e8;
  padding: 5px 0 4px 0;
}
.searchForm .optionRow .title {
  width: 150px;
  font-size: 0.8rem;
}
.searchForm .optionRow .title label.text {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: capitalize;
}
.searchForm .optionRow .title b {
  font-weight: 400;
}
.searchForm .optionRow .checkBoxRow {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  grid-auto-rows: 20px;
}
.searchForm .optionRow .checkBoxRow .checkBoxDiv {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
.searchForm .optionRow .checkBoxRow .checkBoxDiv label.text {
  width: calc(100% - 20px);
  white-space: pre;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 2px 0;
}
.searchForm .optionRow .checkBoxRow .checkBoxDiv:hover {
  position: relative;
}
.searchForm .optionRow .checkBoxRow .checkBoxDiv:hover::after {
  content: attr(data-tooltip);
  pointer-events: none;
  position: absolute;
  bottom: -25px;
  font-size: 0.8rem;
  display: block;
  left: 0%;
  font-family: "OpenSans";
  font-weight: 500;
  opacity: 0;
  animation-name: tooltip;
  animation-timing-function: linear;
  animation-duration: 0.3s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  background-color: #A6A6A6;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
}
.searchForm .optionRow select {
  width: 224px;
}
.searchForm .textInputRow {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  border-bottom: 1px solid #e8e8e8;
}
.searchForm .textInputRow b {
  width: 150px;
  font-size: 0.8rem;
  font-weight: 400;
}
.searchForm .textInputRow input {
  width: 222px;
}
.searchForm .textInputRow button {
  width: 100px;
}
.searchForm .searchRow {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 5px 0;
}
.searchForm .searchRow .fastBtns {
  flex: 1;
  grid-auto-rows: 20px;
}
.searchForm .searchRow .fastBtns button {
  width: -moz-fit-content;
  width: fit-content;
  height: 22px;
  margin-right: 5px;
  padding: 0 5px;
  margin-top: 5px;
}
.searchForm .searchRow button#searchBtn {
  width: 100px;
  display: block;
}
.searchForm .period,
.searchForm .day,
.searchForm .textInputRow {
  padding: 2px 0;
}

.underSearchForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 5px;
}
.underSearchForm .leftBtns,
.underSearchForm .rightBtns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.underSearchForm .leftBtns b,
.underSearchForm .rightBtns b {
  font-size: 0.7rem;
  font-weight: 400;
  margin-right: 5px;
}
.underSearchForm .leftBtns button,
.underSearchForm .rightBtns button {
  height: 24px;
}
.underSearchForm .leftBtns button#searchBtn,
.underSearchForm .rightBtns button#searchBtn {
  width: 100px;
}
.underSearchForm .leftBtns select,
.underSearchForm .rightBtns select {
  width: 100px;
  background-color: #fff;
}
.underSearchForm .leftBtns input,
.underSearchForm .rightBtns input {
  width: 150px;
  background-color: #fff;
}
.underSearchForm .leftBtns .fastBtns,
.underSearchForm .rightBtns .fastBtns {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.underSearchForm .leftBtns {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.underSearchForm .rightBtns {
  -moz-column-gap: 5px;
       column-gap: 5px;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination .page-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  width: 30px;
  padding: 6px 0;
  text-align: center;
}
.pagination .page-btn:hover {
  background-color: #f5f5f5;
}
.pagination .page-btn:focus {
  outline: none;
}
.pagination .page-btn:disabled {
  opacity: 0.5;
}
.pagination .page-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.radioDiv {
  display: flex;
  align-items: center;
}
.radioDiv input {
  display: none;
}
.radioDiv input:checked + label.radioBox {
  transition: ease-out 0.2s;
  border: 2px solid #9575cd;
}
.radioDiv input:checked + label.radioBox::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #9575cd;
  border-radius: 50%;
}
.radioDiv label.radioBox {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(166, 166, 166, 0.5);
  transition: ease-out 0.2s;
  position: relative;
  cursor: pointer;
  display: block;
  transform-origin: left;
}
.radioDiv label.radioBox:hover {
  border: 2px solid #a5a5a5;
}
.radioDiv span {
  margin-left: 0.2rem;
  font-size: 1rem;
  cursor: pointer;
}
.radioDiv label.text {
  margin-left: 0.2rem;
  font-size: 0.9rem;
  cursor: pointer;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

textarea {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
}
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: auto;
  overflow: hidden;
}

ol,
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  border: 0;
  display: block;
}

@keyframes loading {
  from {
    width: 100vw;
  }
  to {
    width: 5px;
  }
}
@keyframes rowLoading {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loadingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes deLoading {
  from {
    width: 5px;
  }
  to {
    width: 100vw;
  }
}
@keyframes rowDeLoading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wrap {
  width: 100vw;
  height: 100vh;
  background: #504676;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.wrap span.version {
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 0.8rem;
  color: #baa7dc;
}
.wrap .loginWrap {
  position: relative;
  max-width: 600px;
  width: 95%;
  border-radius: 20px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #292033;
  padding: 30px;
  box-sizing: border-box;
}
.wrap .loginWrap .row {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #A6A6A6;
}
.wrap .loginWrap .row:nth-child(1) {
  border-bottom: 0;
  padding: 10px 0;
}
.wrap .loginWrap .row:nth-child(1) h2 {
  text-align: center;
  color: #F2F2F2;
  text-indent: 10px;
}
.wrap .loginWrap .row:nth-child(2) .inputTitle, .wrap .loginWrap .row:nth-child(3) .inputTitle {
  flex: 1;
  font-size: 1rem;
  color: #F2F2F2;
  text-indent: 10px;
}
.wrap .loginWrap .row:nth-child(2) .inputBox, .wrap .loginWrap .row:nth-child(3) .inputBox {
  flex: 2;
  position: relative;
}
.wrap .loginWrap .row:nth-child(2) .inputBox input, .wrap .loginWrap .row:nth-child(3) .inputBox input {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  border: 0px solid;
  border-left: 1px solid #A6A6A6;
  background-color: rgba(80, 70, 118, 0.2);
  border-radius: 0px;
  color: #A6A6A6;
  padding: 15px 0;
  text-indent: 5px;
}
.wrap .loginWrap .row:nth-child(2) .inputBox input:focus, .wrap .loginWrap .row:nth-child(3) .inputBox input:focus {
  outline: none;
}
.wrap .loginWrap .row:nth-child(2) .inputBox input:focus + i, .wrap .loginWrap .row:nth-child(3) .inputBox input:focus + i {
  animation-name: fadeIn;
  animation-timing-function: ease;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.wrap .loginWrap .row:nth-child(2) .inputBox i, .wrap .loginWrap .row:nth-child(3) .inputBox i {
  width: 0%;
  height: 4px;
  background-color: #6a5a8c;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.wrap .loginWrap .row:nth-child(2) .inputBox span, .wrap .loginWrap .row:nth-child(3) .inputBox span {
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 5px;
  font-size: 0.7rem;
  color: #ffa02c;
  transform: translateY(-50%);
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s;
}
.wrap .loginWrap .row:nth-child(2) .inputBox span.active, .wrap .loginWrap .row:nth-child(3) .inputBox span.active {
  opacity: 1;
  animation-name: shake;
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.wrap .loginWrap .row:nth-child(4) {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 0px solid;
  justify-content: flex-end;
}
.wrap .loginWrap .row:nth-child(4) .checkBoxDiv {
  margin-right: 10px;
}
.wrap .loginWrap .row:nth-child(4) .checkBoxDiv label.text {
  color: #F2F2F2;
}
.wrap .loginWrap .row:nth-child(5) {
  border-top: 0px solid;
}
.wrap .loginWrap .row:nth-child(5) .blank {
  flex: 1;
  font-size: 1rem;
  color: #F2F2F2;
}
.wrap .loginWrap .row:nth-child(5) .loginBtnBox {
  flex: 2;
  position: relative;
  border-left: 1px solid #A6A6A6;
}
.wrap .loginWrap .row:nth-child(5) .loginBtnBox button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgba(80, 70, 118, 0.2);
  color: #F2F2F2;
  display: block;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.2s;
}
.wrap .loginWrap .row:nth-child(5) .loginBtnBox button:hover {
  background-color: #504676;
}
.wrap .loginWrap .row:nth-child(6) {
  border-top: 0px solid;
}
.wrap .loginWrap .row:nth-child(6) a {
  width: 100%;
  color: #F2F2F2;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(80, 70, 118, 0.2);
  transition: all 0.2s;
}
.wrap .loginWrap .row:nth-child(6) a:hover {
  background-color: #504676;
}
.wrap .loginWrap .row:nth-child(6) a img {
  width: 80px;
  margin-left: 10px;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3333333333);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
  display: flex;
}
.modal .layerPopup {
  width: auto;
  min-width: 300px;
  max-width: 90vw;
  height: auto;
  background-color: #F2F2F2;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.modal .layerPopup .popupHead {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 10px 0 10px;
  box-sizing: border-box;
}
.modal .layerPopup .popupHead button {
  padding: 0;
  height: 32px;
  border-radius: 10px;
}
.modal .layerPopup .popupHead button i {
  color: #3a3353;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0px 10px;
  cursor: pointer;
}
.modal .layerPopup .popupHead button i:hover {
  color: #f83c7b;
}
.modal .layerPopup .popupHead button:focus {
  outline: none;
}
.modal .layerPopup > h3 {
  padding: 0 15px 10px 15px;
  background-color: #F2F2F2;
}
.modal .layerPopup .popupBody {
  width: 100%;
  max-height: calc(50vh - 110px);
  padding: 0 15px;
  margin: 10px 0 20px 0;
  box-sizing: border-box;
  overflow: scroll;
  overflow-x: hidden;
}
.modal .layerPopup .popupBody::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.modal .layerPopup .popupBody::-webkit-scrollbar-thumb {
  background-color: #9575cd;
  border-radius: 5px;
  background-clip: padding-box;
  border: 2px solid transparent;
}
.modal .layerPopup .popupBody::-webkit-scrollbar-thumb:hover {
  border: none;
}
.modal .layerPopup .popupBody::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}
.modal .layerPopup .popupBody .box .inputDiv {
  width: 100%;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #baa7dc;
}
.modal .layerPopup .popupBody .box .inputDiv:last-child {
  border-bottom: none;
}
.modal .layerPopup .popupBody .box .inputDiv h5 {
  color: #8d8d8d;
  font-size: 1rem;
  font-weight: 100;
}
.modal .layerPopup .popupBody .box .inputDiv input {
  width: 50%;
  outline: none;
  border: none;
  box-shadow: none;
  padding: 2px 5px;
  box-sizing: border-box;
  border: 1px solid #8d8d8d;
}
.modal .layerPopup .popupBody .box .inputDiv input:focus {
  outline: 1px solid #9575cd;
}
.modal .layerPopup .btnBox {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 5px 15px 15px 15px;
  align-items: center;
  box-sizing: border-box;
}
.modal .layerPopup .btnBox button {
  width: 100%;
  box-shadow: none;
  outline: none;
  padding: 10px;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  border-radius: 10px;
  font-size: 0.8rem;
}
.modal .layerPopup .btnBox button:focus {
  outline: 2px solid black;
}
.modal#simple-confirm .layerPopup .popupHead, .modal#simple-text .layerPopup .popupHead {
  display: none;
}
.modal#simple-confirm .layerPopup .popupBody, .modal#simple-text .layerPopup .popupBody {
  padding-top: 10px;
}/*# sourceMappingURL=login.css.map */