@charset "UTF-8";
/* 오버레이 */
/*어드민 디자인*/
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  box-sizing: border-box;
}

.sub_top {
  margin-top: 100px;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #c9c9c9;
}
.sub_top .sub_top_wrap {
  width: 100%;
}
.sub_top .sub_top_wrap .top_wrap_left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
.sub_top .sub_top_wrap .top_wrap_left span {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}
.sub_top .sub_top_wrap .top_wrap_right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #323333;
}

@media screen and (max-width: 768px) {
  .sub_top {
    height: 50px;
  }
  .sub_top .sub_top_wrap .top_wrap_left {
    width: 50%;
    padding-left: 20px;
  }
  .sub_top .sub_top_wrap .top_wrap_left span {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .sub_top .sub_top_wrap .top_wrap_right {
    width: 50%;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
}

/*# sourceMappingURL=sub-top.css.map */
