@charset "UTF-8";
/*     반응형 화면 크기     */
/*     폰트 모음     */
@font-face {
  font-family: "KimjungchulGothic-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/*     때깔 모음     */
/*     기본 디자인     */
html, body {
  margin: 0;
  padding: 0;
  min-width: 800px;
  min-height: 600px;
}

body {
  background: #f4f5f5;
}

* {
  font-family: "Pretendard";
  font-weight: 400;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: black;
}

#mobile {
  display: none;
}
@media (max-width: 767px) {
  #mobile {
    position: fixed;
    flex-direction: column;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: white;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #mobile div {
    padding: 20px;
    width: 70%;
    background: #f9f9f9;
    border-radius: 10px;
  }
  #mobile div p {
    margin: 5px 0;
  }
}

.swal2-popup.swal2-toast {
  display: flex !important;
  align-items: center;
}

.swal2-image {
  margin: 0;
}

.swal2-popup.swal2-toast .swal2-actions {
  margin: 0;
}

/* fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  position: relative;
  animation: fadeInUp 1s;
}

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