@charset "UTF-8";
@import url("font/font.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+KR:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Lato", "Noto Sans KR", sans-serif;
  line-height: 1.6;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  all: unset;
  cursor: pointer;
}

html, body {
  height: 100%;
}

body {
  font-size: 16px;
  background: #efefef;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.loader.hide {
  display: none;
}

.loader::after {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-bg);
  --_m:
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  pointer-events: none; /* 아이콘 클릭 방지 */
  display: none !important; /* 아이콘 완전히 숨기기 */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.message {
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.link {
  color: #29b5e8;
  text-decoration: underline;
}

.modal-open {
  overflow: hidden;
}

.small-9 {
  font-size: 0.9em;
}

.small-6 {
  font-size: 0.6em;
}

.big-10 {
  font-size: 1.1em;
}

.big-20 {
  font-size: 1.2em;
}

hr {
  margin-top: 10px;
}

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

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

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

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

.strong {
  font-weight: 600;
}

.strong-800 {
  font-weight: 800 !important;
}

.c-grey {
  color: #787878;
}

.c-grey2 {
  color: #CBCBCB;
}

.c-purple {
  color: #7d44cf;
}

.c-skyblue {
  color: var(--color-bg);
}

.c-black {
  color: #000;
}

.bg-grey {
  background-color: #efefef;
}

.bg-purple {
  background: #7d44cf !important;
  color: #fff;
}

.bg-skyblue {
  background: var(--color-bg) !important;
  color: #fff;
}

.c-deepgreen {
  color: #11567f;
}

.c-mint {
  color: #43D5DD;
}

.c-orange {
  color: #FF9C3A;
}

.c-pink {
  color: #E45190;
}

.bg-orange {
  background: #FF9C3A !important;
  color: #fff;
}

.bg-deepgreen {
  background: #11567f !important;
  color: #fff;
}

.bg-white {
  background: #fff !important;
}

.bg-deepgreen {
  background: #11567f !important;
  color: #fff;
}

.align-c {
  text-align: center;
}

i.icon-user {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-user.svg) no-repeat center;
  background-size: 70%;
}

i.icon-barcode {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-barcode.svg) no-repeat center;
  background-size: 100%;
}

i.icon-email {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-email.svg) no-repeat center;
  background-size: 70%;
}

i.icon-phone {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-phone.svg) no-repeat center;
  background-size: 70%;
}

.bold-600 {
  font-weight: 600;
}

.bold-800 {
  font-weight: 800;
}

.bold-900 {
  font-weight: 900;
}

:root {
  --color-bg: #29B5E8;
  --color-blue: #8ed1fc;
  --color-deepblue: #0693e3;
  --color-orange: #FF9C3A;
  --color-pink: #E45190;
}