@font-face {
  font-family: "KCC-Hanbit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2403-2@1.0/KCC-Hanbit.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-style: normal;
}
:root {
  --primary-color: #8f00ff;
  --secondary-color: #6c757d;
}
/* body {
  overflow-x: hidden;
} */

body::-webkit-scrollbar {
  display: none;
}

* {
  padding: 0;
  margin: 0;
  font-family: KCC-Hanbit;
}

.sib_input {
  padding: 13px 15px;
  font-size: 18px;
  font-style: italic;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}

.loader {
  display: none;
  border: 5px solid #f3f3f3; /* 로더 스핀의 테두리 색상 */
  border-top: 5px solid #3498db; /* 로더 스핀의 윗면 색상 */
  border-radius: 50%; /* 로더 스핀을 원 모양으로 만듭니다. */
  width: 15px; /* 로더 스핀의 가로 크기 */
  height: 15px; /* 로더 스핀의 세로 크기 */
  animation: spin 0.8s linear infinite; /* 로더 스핀의 회전 애니메이션 */
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  } /* 0도에서 회전 시작 */
  100% {
    transform: rotate(360deg);
  } /* 360도까지 회전 완료 */
}

.auto_scroll {
  opacity: 0;
  transition: 0.8s ease;
  transform: translateY(30px);
}

.alarm {
  position: fixed;
  top: -113px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  z-index: 13;
}
.alarm_content {
  width: 90%;
  height: 80px;
  max-width: 450px;
  background-color: rgba(255, 255, 255, 0.967);
  display: flex;
  position: relative;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
}

.alarm_content_img_box {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alarm_content_img_box > img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #bdbdbd;
}

.alarm_content_main {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.alarm_content_main_title {
  font-size: 18px;
}

.alarm_content_main_message {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 라인 수를 제한합니다. */
  -webkit-box-orient: vertical;
  line-height: 1.2; /* 줄 간격을 지정합니다. */
  overflow: hidden;
  font-family: KCC-Hanbit;
  color: rgb(74, 74, 74);
  font-family: Pretendard-Regular;
}

.alarm_content_time {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 13px;
  color: #878787;
}

header {
  max-width: 500px;
  width: 100%;
  height: 44px;
  border-bottom: 1px solid #bdbdbd;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 10;
}

.header_img {
  width: 130px;
  margin-left: 10px;
}

.header_icon {
  width: 20%;
  display: flex;
  justify-content: space-around;
  margin-right: 10px;
}

.header_icon > a > i {
  font-size: 25px;
  color: #310e67;
}

footer {
  max-width: 500px;
  width: 100%;
  height: 59px;
  border-top: 1px solid #bdbdbd;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  z-index: 10;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.footer_content_boxs {
  flex: 0.95;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer_content_boxs:first-child {
  border-top-left-radius: 10px;
}
.footer_content_boxs:last-child {
  border-top-right-radius: 10px;
}

.footer_content_boxs_select {
  border-top: 1px solid black;
}

.footer_content_boxs_center {
  flex: 1.2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.footer_content_boxs_center > p {
  font-size: 12px;
  padding: 0;
  margin: 0;
  margin-top: 40px;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer_content_boxs > p {
  font-size: 13px;
  padding: 0;
  margin: 0;
}

.footer_content_icon {
  color: #bdbdbd;
  margin-bottom: 10px;
  width: 25px;
  fill: #bdbdbd;
  max-height: 25px;
}

.footer_content_icon_news {
  margin-bottom: 10px;
  width: 25px;
  color: #6a6a6a;
  fill: #6e6e6e;
}

.footer_content_icon_center {
  position: absolute;
  font-size: 40px;
  color: #bdbdbd;
  width: 55px;
  top: -30px;
}

.footer_content_icon_ok {
  fill: #000000;
  color: #000000;
}
