@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "Noto Sans KR Thin";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Thin.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR Light";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR Medium";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans KR Black";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/Noto_Sans_KR/NotoSansKR-Black.otf") format("opentype");
}
button {
  outline: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.btn-s {
  padding-top: 10px;
  padding-right: 14px;
  padding-bottom: 10px;
  padding-left: 14px;
}

.btn-m {
  padding-top: 12px;
  padding-right: 30px;
  padding-bottom: 12px;
  padding-left: 30px;
}

.btn-l {
  padding-top: 15px;
  padding-right: 34px;
  padding-bottom: 15px;
  padding-left: 34px;
}

.btn {
  color: #fff;
}
.btn.type-manager {
  background-color: #7c59ff;
}
.btn.type-user {
  background-color: #ff7a59;
}
.btn.type-negative {
  background-color: #bdbdbd;
}
.btn.type-warning {
  background-color: #df0032;
}
.btn.round {
  border-radius: 6px;
}
.btn.shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.btn:disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
}

.toggleSwitch {
  width: 40px;
  height: 20px;
  display: block;
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 0 16px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  margin: 30px;
  transition: all 0.2s ease-in;
}
.toggleSwitch .toggleButton {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f03d3d;
  transition: all 0.2s ease-in;
}

.toggleInput:checked ~ .toggleSwitch {
  background: #f03d3d;
}
.toggleInput:checked ~ .toggleSwitch .toggleButton {
  left: calc(100% - 18px);
  background: #fff;
}

input:focus {
  outline: none;
}

.input-regular {
  font-family: "Noto Sans KR Regular", sans-serif;
  font-size: 14px;
  line-height: 48px;
  background-color: #fff;
  border: none;
  padding-right: 20px;
  padding-left: 20px;
}

.search-group-01 {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  gap: 0;
  align-items: center;
}

.date-pick-01 label {
  font-family: "Noto Sans KR Regular", sans-serif;
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
}
.date-pick-01 .date-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  position: relative;
}
.date-pick-01 .date-wrap::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 20%;
  background-color: #e9e9e9;
}
.date-pick-01 .date-wrap input[type="date"] {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0;
  width: 100%;
}
.date-pick-01 .date-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border-width: thin;
}
.date-pick-01 .date-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 5%;
}
.date-pick-01
  .date-wrap
  input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  position: relative;
  left: 10%;
}
.date-pick-01 .date-wrap input[type="date"]::-webkit-datetime-edit {
  position: relative;
  left: 14%;
}

::-webkit-scrollbar {
  width: 8px; /* 스크롤바의 너비 */
}

::-webkit-scrollbar-thumb {
  height: 30%; /* 스크롤바의 길이 */
  background: rgba(0, 0, 0, 0.2); /* 스크롤바의 색상 */
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, 0.1); /*스크롤바 뒷 배경 색상*/
}

.hidden {
  display: none !important;
}

body {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  background-color: #ffffff;
}

* {
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}
a:visited {
  color: #333;
}

.wrapper {
  width: 100vw;
  height: 100dvh;
}

.container {
  width: 100%;
  height: 100%;
}

.panel {
  height: 100dvh;
  overflow: auto;
  position: relative;
}

.media-check {
  width: 200px;
  height: 100px;
  overflow: hidden;
  background-color: red;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.media-check::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  text-align: center;
  line-height: 100px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .media-check::after {
    content: "mobile";
  }
}
@media only screen and (min-width: 600px) {
  .media-check::after {
    content: "mobile-tablet";
  }
}
@media only screen and (min-width: 768px) {
  .media-check::after {
    content: "tablet";
  }
}
@media only screen and (min-width: 992px) {
  .media-check::after {
    content: "laptop";
  }
}
@media only screen and (min-width: 600px) and (orientation: landscape) {
  .media-check::after {
    content: "mobile-landscape";
  }
}
@media only screen and (min-width: 992px) and (orientation: landscape) {
  .media-check::after {
    content: "tablet-landscape";
  }
}
@media only screen and (min-width: 1200px) {
  .media-check::after {
    content: "desktop";
  }
}
body.modal-active {
  overflow: hidden;
}

.modal {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .container {
  max-height: 80%;
  max-width: calc(100% - 80px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #333;
  font-size: 16px;
  background-color: #f4f5f6;
  border-radius: 8px;
  padding: 34px;
  overflow: auto;
}
