@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css);
html {
  height: 100%;
}

body {
  height: 100%;
  background: #f2f2f2;
  font-family: "futura-pt", sans-serif;
}

.wrapper {
  background: url(../img/clouds.svg) no-repeat center right;
  background-size: cover;
  min-width: 300px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  padding: 1.5625vw 2.0833333333vw;
}
header .logo {
  max-width: 9.7916666667vw;
}
@media screen and (max-width: 991.98px) {
  header {
    padding: 10px 20px 30px;
  }
  header .logo {
    max-width: 120px;
  }
}

main {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  main {
    align-items: flex-start;
  }
}

.card {
  margin: 0 auto;
  width: 64.5833333333vw;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
  padding: 20px;
  background-color: white;
  background-repeat: no-repeat;
  background-position: right bottom 50px;
  background-size: 56%;
}
.card.no-bg {
  background-image: none;
}
.card.card-type2 {
  padding: 40px;
}
@media screen and (min-width: 992px) {
  .card {
    min-height: 33.3333333333vw;
    background-image: url(../img/kv.svg);
  }
}
@media screen and (min-width: 992px) {
  .card.error-page {
    background-image: url(../img/kv_error.svg);
    background-size: auto 80%;
    background-position-x: 86%;
    background-position-y: center;
  }
}
@media screen and (max-width: 1600px) {
  .card {
    width: 1100px;
    height: 80%;
  }
}
@media screen and (max-width: 1199.98px) {
  .card {
    width: 900px;
    height: 500px;
  }
}
@media screen and (max-width: 991.98px) {
  .card {
    width: calc(100% - 20px);
    padding: 20px;
    height: auto;
  }
}
.card .row {
  flex-grow: 1;
}
.card .dropzone {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Open sans", sans-serif;
  font-size: 1.0416666667vw;
  border: 2px dashed #bbbbbb;
  border-radius: 20px;
}
@media screen and (max-width: 1199.98px) {
  .card .dropzone {
    max-height: 460px;
  }
}
.card .dropzone .big {
  padding-top: 20px;
  font-size: 1.4em;
  display: block;
  font-family: "Noto Sans KR", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .card .dropzone {
    font-size: 1rem;
  }
  .card .dropzone .big {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .card .dropzone {
    padding: 10px;
  }
}
.card .btn {
  margin-top: 40px;
}
.card .btn.add-files {
  text-transform: none;
  background: none;
  color: black;
  font-size: 1rem;
  display: flex;
  justify-items: center;
}
.card .btn.add-files:before {
  content: url(../img/icon_add.svg);
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.card .btn:focus {
  outline: none;
  box-shadow: none;
}
.card .link {
  border: none;
  background: none;
  text-decoration: underline;
}
.card .submit-button {
  display: none;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card h2 {
  font-weight: 700;
}

.dropzone-previews {
  width: 100%;
  max-height: 18.2291666667vw;
  overflow-y: auto;
  padding: 10px;
}
@media screen and (max-width: 1199.98px) {
  .dropzone-previews {
    max-height: 280px;
  }
}

.info {
  padding-top: 20px;
}
@media screen and (max-width: 1399.98px) {
  .info {
    font-size: 0.75rem;
  }
}

.alert {
  font-size: 1rem;
  font-weight: normal;
  display: none;
  margin-top: 10px;
}

.progress {
  border-radius: 20px !important;
  height: 10px !important;
}

.progress-bar {
  background-color: #e43852 !important;
}

.alert-success,
.alert-danger {
  text-align: center;
  background-color: transparent !important;
  border: none !important;
}

.alert-danger {
  color: #e43852 !important;
}

.btn {
  background-color: #04073C;
  color: white;
  text-transform: uppercase;
  border-radius: 66px;
  font-size: 1.125rem;
  padding: 14px 50px;
  font-weight: 400;
  display: inline-block;
}
.btn:hover {
  color: white;
  background-color: rgba(4, 7, 60, 0.7);
}
@media screen and (max-width: 991.98px) {
  .btn {
    font-size: 1rem;
    padding: 10px;
    width: 100%;
  }
}

.file_size_checker_area {
  margin-top: 1em;
  width: 300px;
  color: #e02d45;
  background-color: #dfdfdf;
  height: 1.5em;
  text-align: center;
}

.file_size_checker_area #current_file_size {
  background-color: #e02d45;
  height: 1.5em;
  color: #fff;
  text-align: center;
  transition: width 0.5s ease-in;
  -moz-transition: width 0.5s ease-in;
  -webkit-transition: width 0.5s ease-in;
}

.all-files-container {
  overflow-y: auto;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .all-files-container {
    max-height: 20.8333333333vw;
  }
}
@media screen and (max-width: 1199.98px) {
  .all-files-container {
    max-height: 300px;
  }
}
@media screen and (max-width: 991.98px) {
  .all-files-container {
    max-height: 50vh;
  }
}

.file-container {
  background-color: white;
  box-shadow: 0 0 8px 0 rgba(12, 12, 13, 0.1);
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.file-container > div {
  flex-grow: 1;
  width: calc(100% - 50px);
}
@media screen and (max-width: 991.98px) {
  .file-container > div {
    width: 50%;
  }
}
.file-container img {
  opacity: 1;
}
.file-container img:hover {
  opacity: 0.5;
}
.file-container .filesize {
  opacity: 0.75;
  font-size: 14px;
}
.file-container .filename {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 95%;
}

.hide {
  display: none;
}

.file_config_area {
  font-size: 0.9375rem;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  width: calc(100% - 10px);
}
.file_config_area label {
  white-space: nowrap;
  margin-right: 10px;
}
.file_config_area .password {
  /*border-right: 1px solid #b5b9bd;
  padding-right: 10px;
  margin-right: 10px;*/
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  height: 40px;
  width: 100%;
}
.file_config_area .password label {
  padding-left: 10px;
  white-space: nowrap;
}
.file_config_area .password .password-input {
  position: static;
  bottom: calc(100% + 20px);
  width: 271px;
  max-width: 100%;
  display: none;
}
.file_config_area .password .password-input input {
  width: 100%;
  border-radius: 0;
  border: 1px solid #c4c4c4;
}
.file_config_area .password .password-input input:focus {
  outline: none;
}
.file_config_area select {
  margin-left: 6px;
  font-weight: 700;
  margin-right: 8px;
  border: 1px solid rgba(42, 54, 66, 0.35);
}
.file_config_area .expiration {
  flex-grow: 0;
  border: 1px solid rgba(42, 54, 66, 0.35);
  color: #000;
}
@media screen and (max-width: 991.98px) {
  .file_config_area {
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }
  .file_config_area .password {
    height: auto;
    width: 100%;
    border: none;
    display: block;
    padding: 0 10px;
    text-align: left;
    margin: 0 auto 20px auto;
  }
  .file_config_area .password .password-input {
    border: 8px solid #f2f2f2;
    margin: 10px 0 0 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
  .file_config_area .password .password-input input {
    width: 100%;
  }
  .file_config_area .password .password-input:before {
    content: none;
  }
  .file_config_area label {
    padding: 0 0 0 10px;
  }
  .file_config_area select {
    margin: 0;
    padding: 5px;
  }
  .file_config_area .expiration {
    height: 34px;
    padding: 5px;
    margin: 10px 10px 10px;
    width: 200px;
  }
}

.login {
  min-height: 100%;
  background: #fff url(../img/login_bg.svg) no-repeat right center;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  .login {
    background-size: auto 90%;
    background-position: left bottom;
  }
}
.login main {
  display: block;
  position: absolute;
  top: 50%;
  left: 14.9479166667vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .login main {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
}
.login h1 {
  font-size: 3.75vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .login h1 {
    font-size: 35px;
  }
}
.login p {
  font-size: 26px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .login p {
    font-size: 20px;
  }
}
.login .googlelogin {
  margin-top: 40px;
  border-radius: 5px;
  background: white;
  color: grey;
  padding: 18px 30px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  text-decoration: none;
  box-shadow: 1px 2px 4px 0px rgba(212, 212, 212, 0.75);
}
.login .googlelogin:before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQ5SURBVHgBtVZvTFxFEJ/dfX8OOFuk7dmilteClBobsZJYUQNYa22j5mKCGmvb1KCm1hi+mBgk5RBjP2lqa0xMrJgGE2MT0RpjLdYDIlq0CB96RZJSEEkrlJ70KHfcvbc77h1Cjte740/xl9y9tzPz5rc7u7MzBOaAztLCzCW6UqRxXsQF5gMBFwJRCIW/OMB5YYba8zas+YUc/i48my+SSjmwrThXWFYNDY8/QQEyU9lySodMRf3atMSB9c1d/fMiPFte7nT6e/dTy6ykKFSYB1Bh/hCqB/O9HXVzIuwrLTCA6CdUbq2DBQLlj+tpR4ymMxV2nWInY4J5KVgG3BAQ0AwOJtKwqZfTNTuWZPw5clpBNJK6oWScM8Unw3IKGe0RhExIcTaZQQUgKNQazec8iXxMr3BVm6+aCWEkMhKUXhlXtUMOkx9a82PXaLzu3MPFOToL7VU4r6SWpQuA2pwkZFHEJte9vSDfeU3pIbH5zUSEsR9EpnNHXuPPw5AC0e2gwNw5zb6DqexihIFvnY0TPzndkbYsiD9HXNNOrW76fQshBGGRQP1Na1dzCLq1B4fA4R4EkmFNahgbClpYsZhkMUIUgcemQqmsG4P05/sAs4Jg6foHqRJ4oVCIiJTFC0imCc5dAxDuvf0zOJH4o5c+QtV3caSaAp2Wiejs42zsYxmnQOtby95VCAZX2h2SNL135eutfZAE2asuqr5Bfb+wyVOPBSDie5SA6rQ75CguwCID5XqfPtC5nCKhml3JiMphkRE7++NUowT5ZbsS0SyA/wErspWrCgo+SGxXuCmvty+/f9T11NaTiZP9EoBK+VlMkjAcqayX1BUvYyD4h/vuuqZwJe2Mwsd2Tyn+Fg54c2wj9Ia1V+TQk8ih5+Vbg/KxAZKgpOZykyXgkXgZEtIefVLK7jiOkj+a3h1WFuwNPATd1s0gGNn3wJFns2Ge2PTGJYMLstkuZyLSHSPM2tIxgKh460O5UDl6HwxzLbbBHHB5UA1/CvOErinvyPZjxiZNDnjD9Pueo2Ulv0FGc6ItcQj1WLGrbOfh7a+l7Fc8Hg/14qt1MpRV9rrOkPe1vu1aG1th9K9+l7dFZ+rHiRxNULO8eaTpj8JPntwtE/e6DsGDHnpPg3vzceP8ryGHrwoTdS0YqYUZq5UoPrrTdRX97TIaBiQBRfDLy7yNABmWp0BWI1yKgpRw4Mv+swDHFTc4/nlckkzWdgXCJ1vqsrdeRxhFYb3bMJnplWIDbgBK8E5IH3oRmLX0wgoWuL/RkzeckHCKlBPuFTR5qzEn0sgt/c7BqpI2T+5AvJzaDbv2fNXvTHfcqyJ9f6GVkAl67KZIaKOdLIqUjfCmz59ZH7SC1ULgc7NyY6xB8lJOajtf+KYlmRmBOWBbQ8VtQ3ykFCgpMrl1N9JJeoo0JD30aIJ2WwhfyOiMzubrX/LjrdkGuiOwAAAAAElFTkSuQmCC);
  float: left;
  width: 27px;
  height: 27px;
  margin-right: 13px;
}
@media screen and (max-width: 767.98px) {
  .login .googlelogin {
    font-size: 20px;
    width: 100%;
  }
}

.logout {
  position: absolute;
  top: 20px;
  right: 20px;
  color: black;
  text-decoration: none;
  padding-right: 25px;
}
@media screen and (max-width: 767.98px) {
  .logout {
    top: 32px;
  }
}
.logout:hover {
  color: black;
}
.logout:after {
  content: "";
  background: url(../img/logout.svg) no-repeat;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
}

.error-content-wrap {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Open sans", sans-serif;
  font-size: 1.0416666667vw;
  border: 2px dashed #bbbbbb;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
}
.error-content-wrap .alert-icon {
  max-width: 80px;
}
.error-content-wrap .alert-msg {
  font-size: 28px;
  font-weight: 700;
}
.error-content-wrap .alert-note {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 22px;
  width: 75%;
}

.datepicker {
  position: absolute;
  /* -webkit-touch-callout: none; */
  /* -webkit-user-select: none; */
  /* -khtml-user-select: none; */
  /* -moz-user-select: none; */
  /* -ms-user-select: none; */
  user-select: none;
  width: 250px;
  height: 250px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 16px -8px black;
  border: 2px solid dodgerblue;
  color: #404040;
  font: 16px Tahoma;
}

/* ========= Head ======== */
.datepicker .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}

.datepicker .head span {
  margin: 2px;
  padding: 4px 8px;
}

.datepicker .head span:not(.disabled) {
  cursor: pointer;
}

/* ======== Table ========= */
.datepicker table {
  width: 100%;
  height: calc(100% - 32px);
}

.datepicker td:not(.disabled) {
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.1s, color 0.1s;
}

/* ======== Colors i guess ======== */
.datepicker .disabled {
  color: lightgray;
}

.datepicker .today {
  color: dodgerblue;
}

.datepicker td:not(.disabled):hover {
  background-color: dodgerblue;
  color: white;
  transition: background-color 0.1s, color 0.1s;
}

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-drag-hover {
  border-color: #999;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.4;
}

.dropzone .dz-message {
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .dropzone .dz-message {
    width: 100%;
  }
}
.dropzone .dz-message label {
  display: block;
}
.dropzone .dz-message.has-files {
  height: auto;
}
.dropzone .dz-message.has-files .drag-file {
  display: none;
}
.dropzone .dz-message.has-files label {
  margin: 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-align: left;
  margin: 10px 0 0 0;
  width: 100%;
  border-radius: 5px;
  padding: 0px 15px;
  box-shadow: 0 0 8px 0 rgba(12, 12, 13, 0.1);
  background-color: white;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 13px;
  color: black;
  font-weight: normal;
  display: inline-block;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  width: 20px;
  height: 20px;
}
.dropzone .dz-preview .dz-remove:after, .dropzone .dz-preview .dz-remove:before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 10px;
  background-color: #666;
  top: 50%;
  right: 0;
}
.dropzone .dz-preview .dz-remove:after {
  transform: rotate(-45deg);
}
.dropzone .dz-preview .dz-remove:before {
  transform: rotate(45deg);
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
  color: #a92222;
  opacity: 1;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  opacity: 0;
  font-size: 15px;
  padding: 5px 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}

.dropzone .dz-preview .dz-details .dz-size {
  font-weight: normal;
  white-space: nowrap;
  opacity: 0.75;
  font-size: 14px;
}
.dropzone .dz-preview .dz-details .dz-size strong {
  font-weight: normal;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 20px;
  height: 20px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 8px;
  right: 15%;
  top: 50%;
  margin-top: -4px;
  width: 4.1666666667vw;
  transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  .dropzone .dz-preview .dz-progress {
    width: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .dropzone .dz-preview .dz-progress {
    width: 40px;
    right: 18%;
  }
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.accordion_wrap {
  width: 100%;
}
.accordion_wrap .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion_wrap .accordion.active, .accordion_wrap .accordion:hover {
  background-color: #ccc;
}
.accordion_wrap .panel {
  padding: 5px 10px 5px 5px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
  font-size: 0.8em;
}
.accordion_wrap .panel ol, .accordion_wrap .panel ul {
  padding-left: 1.5rem;
}
.accordion_wrap .panel .toggle-icon {
  width: 1.25rem;
}

.bg_video_area video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.bg_video_area video.desk {
  display: block;
}
.bg_video_area video.mob {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .bg_video_area video.desk {
    display: none;
  }
  .bg_video_area video.mob {
    display: block;
  }
}

.d_v1.login {
  min-height: 100%;
  background: #00063c;
  background-size: cover;
  color: white;
}
.d_v1.login header {
  position: relative;
}
.d_v1.login footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.d_v1.login footer p {
  width: 100%;
  text-align: center;
  color: #DDDDDD;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.d_v1.login main {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .d_v1.login main {
    background-color: transparent;
    border-radius: 20px;
    padding: 40px 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
}
.d_v1.login .logo_sub {
  width: 2.7973958333vw;
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .d_v1.login .logo_sub {
    width: 10vw;
  }
}
.d_v1.login h1 {
  font-size: 2.0833333333vw;
  font-weight: 450;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .d_v1.login h1 {
    font-size: 35px;
  }
}
.d_v1.login p {
  font-size: 26px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .d_v1.login p {
    font-size: 20px;
  }
}
.d_v1.login .help_link {
  margin-top: 24px;
}
.d_v1.login .help_link a {
  font-weight: 500;
  font-size: 14px;
  font-weight: 2.3;
  color: #DDDDDD;
  text-decoration: none;
}
.d_v1.login .googlelogin {
  margin-top: 40px;
  border-radius: 5px;
  background: #2A3642;
  color: white;
  padding: 16px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-indent: 0px;
  width: 328px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  text-decoration: none;
  box-shadow: none;
  border-radius: 100px;
}
.d_v1.login .googlelogin:before {
  content: none;
}
@media screen and (max-width: 767.98px) {
  .d_v1.login .googlelogin {
    font-size: 20px;
    width: 100%;
  }
}
.d_v1.login .alert-msg {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  color: #FFFFFF !important;
  background-color: #c43852 !important;
  padding: 10px 20px;
  margin-top: 30px;
  border-radius: 10px;
}
.d_v1.wrapper {
  background: #00063c;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .d_v1.wrapper {
    background: #00063c;
    background-size: cover;
    padding-bottom: 20px;
  }
}
.d_v1.wrapper header {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  .d_v1.wrapper header {
    position: relative;
    margin-bottom: 30px;
  }
}
.d_v1.wrapper .card.no_bg {
  background: white;
}
.d_v1.wrapper .card .col-lg-6.down_content {
  padding: 20px 10px 20px 20px;
}
.d_v1.wrapper .card .col-lg-6.asd_content {
  padding: 25px 20px 25px 10px;
}
@media screen and (max-width: 992px) {
  .d_v1.wrapper .card .col-lg-6.down_content, .d_v1.wrapper .card .col-lg-6.asd_content {
    padding: 20px;
  }
}
.d_v1.wrapper .card .asd_video {
  width: 100%;
  border-radius: 20px;
}
.d_v1.wrapper .card .link {
  color: #E43852;
  font-size: 20px;
  font-weight: 600;
}
.d_v1.logout, .d_v1.logout:hover {
  color: white;
  z-index: 10;
}
.d_v1.logout:after {
  content: "";
  background: url(../img/logout_w.png) no-repeat;
  background-size: cover;
  top: 5px;
}
/* 기본 레이아웃 */
.switch-wrapper {
display: inline-block;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", "Helvetica Neue", Arial;
}

/* 숨기지만 포커스 가능하도록 유지 */
.toggle-input {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
clip: rect(0 0 0 0);
clip-path: inset(50%);
overflow: hidden;
white-space: nowrap;
}

/* 라벨(실제 보이는 스위치) */
.toggle-label {
display: inline-flex;
align-items: center;
gap: 10px;
cursor: pointer;
user-select: none;
-webkit-tap-highlight-color: transparent;
}

/* 트랙(배경) */
.toggle-track {
width: 56px;
height: 30px;
background: #e6e6e6;
border-radius: 999px;
display: inline-block;
position: relative;
transition: background 180ms ease;
box-sizing: border-box;
padding: 3px;
}

/* thumb(원) */
.toggle-thumb {
width: 24px;
height: 24px;
background: white;
border-radius: 50%;
display: block;
transition: transform 180ms cubic-bezier(.2,.8,.2,1), box-shadow 120ms;
transform: translateX(0);
box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* 상태 텍스트 (ON/OFF) */
.toggle-text {
font-size: 14px;
color: #333;
min-width: 36px;
text-align: left;
margin-left: 0.75em;
}

/* 포커스 링: input에 포커스되면 라벨에 표시 */
.toggle-input:focus + .toggle-label .toggle-track {
box-shadow: 0 0 0 4px rgba(0,123,255,0.15);
}

/* checked 상태 스타일 */
.toggle-input:checked + .toggle-label .toggle-track {
background: linear-gradient(90deg, #28a745, #1e7e34);
}
.toggle-input:checked + .toggle-label .toggle-thumb {
transform: translateX(26px);
box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.toggle-input:checked + .toggle-label .toggle-text {
color: #0b6b2f;
font-weight: 600;
}

/* disabled (선택사항) */
.toggle-input:disabled + .toggle-label {
cursor: not-allowed;
opacity: 0.6;
}

.form-group {
--nf-input-size: 1rem;
    --nf-input-font-size: calc(var(--nf-input-size) * 0.875);
    --nf-small-font-size: calc(var(--nf-input-size) * 0.975);
    --nf-input-font-family: inherit;
    --nf-label-font-family: inherit;
    --nf-input-color: #20242f;
    --nf-input-border-radius: 0.25rem;
    --nf-input-placeholder-color: #929292;
    --nf-input-border-color: #c0c4c9;
    --nf-input-border-width: 1px;
    --nf-input-border-style: solid;
    --nf-input-border-bottom-width: 2px;
    --nf-input-focus-border-color: #3b4ce2;
    --nf-input-background-color: #f9fafb;
    --nf-invalid-input-border-color: var(--nf-input-border-color);
    --nf-invalid-input-background-color: var(--nf-input-background-color);
    --nf-invalid-input-color: var(--nf-input-color);
    --nf-valid-input-border-color: var(--nf-input-border-color);
    --nf-valid-input-background-color: var(--nf-input-background-color);
    --nf-valid-input-color: inherit;
    --nf-invalid-input-border-bottom-color: red;
    --nf-valid-input-border-bottom-color: green;
    --nf-label-font-size: var(--nf-small-font-size);
    --nf-label-color: #374151;
    --nf-label-font-weight: 700;
    --nf-slider-track-background: #dfdfdf;
    --nf-slider-track-height: 0.25rem;
    --nf-slider-thumb-size: calc(var(--nf-slider-track-height) * 4);
    --nf-slider-track-border-radius: var(--nf-slider-track-height);
    --nf-slider-thumb-border-width: 2px;
    --nf-slider-thumb-border-focus-width: 1px;
    --nf-slider-thumb-border-color: #fff;
    --nf-slider-thumb-background: var(--nf-input-focus-border-color);
    display: flex;
    margin-top: calc(var(--nf-input-size) * 1.5);
    line-height: 1;
    white-space: nowrap;
    --switch-orb-size: var(--nf-input-size);
    --switch-orb-offset: calc(var(--nf-input-border-width) * 2);
    --switch-width: calc(var(--nf-input-size) * 2.5);
    --switch-height: calc(var(--nf-input-size) * 1.25 + var(--switch-orb-offset));
    flex-direction: row;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.spacer {
    margin: 2rem 0;
    height: 1px;
    background: #a7a7a7;
}

.switch-label{
    font-weight: 600;
    font-size: 1.1em;
}
.data-base-dt-text, .quiz-status{
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5em;
}
.quiz-status.on{
    color:#37993A;
    background: #DDF0DD;
    padding: 0.5em;
}
.quiz-status.off{
    color:#E6E6E6;
    background: #676767;
    padding: 0.5em;
}
#quiz_status_change_wrap{
    display: none;
}
#quiz_status_change_wrap.active{
    display: flex;
}

.table-container {
    max-height: 400px; /* 원하는 높이 */
    overflow-y: auto;  /* 테이블 전체 스크롤 */
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead th {
    position: sticky;
    top: 0;
    background: #f4f4f4;
    z-index: 2;
}

.custom-table th, .custom-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.hr_line {
    height: 1px;
    display: block;
    margin: 20px 0;
    background: #a7a7a7;
}