@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

:root {
  --bs-font-sans-serif: "Pretendard Variable", sans-serif;
  --bs-body-font-size: 12px;
}

/* * {padding:0;margin:0;font-size:12px} */
a,
a:visited,
a:link {
  text-decoration: none;
  color: #444;
  font-weight: 400
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #f3f6fe;
}

.sticky-top-bar a {
  font-size: 14px
}

.sticky-top-bar {
  position: sticky;
  top: 0;
  background: white;
  /* 배경색 */
  padding: 15px 15px 18px 15px;
  z-index: 1000;
}

.sticky-top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  /* 보더 높이 */
  background: linear-gradient(to bottom, rgba(160, 160, 160, 0.5), rgba(241, 244, 252, .8));
  /* 위쪽은 진한 빨강, 아래쪽은 투명 */
}

.sticky-top-bar .flex-container {
  display: flex;
  justify-content: space-between;
  /* width:100%; */
}

.sticky-top-bar .flex-container .logo_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-top-bar .flex-container .menu {
  display: flex;
  align-items: center;
}

.sticky-top-bar .flex-container select {
  border: 1px solid #ddd;
  margin-left: 10px;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px;
}

.sticky-top-bar .flex-container .logout {
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
}

.sticky-top-bar .logo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.sticky-top-bar ul {
  flex: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #f3f6fe;
  border-radius: 5px;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.sticky-top-bar ul li {
  flex: 1 1 auto;
  margin: 0 10px;
  padding: 6px 20px 6px 20px;
}

.sticky-top-bar ul li a:link {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px
}

.sticky-top-bar ul li.active {
  background-color: #dfe5f9;
  border-radius: 10px;
}

.sticky-top-bar .logout a {
  margin-left: 50px;
  font-weight: 500;
}

.sticky-top-bar label {
  font-size: 20px;
  font-family: PretendardVariable;
  letter-spacing: -2px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .sticky-top-bar label {
    display: none;
  }
}

.sticky-top-bar i {
  padding-right: 3px;
}

.sticky-top-bar img {
  vertical-align: top;
  margin-right: 20px;
}

h3 {
  padding: 12px 12px 12px 22px;
  background: #e7edff;
  border: 1px solid #dfe5f9;
  border-radius: 10px;
  margin-top: 45px;
  margin-bottom: 50px;
  /* margin-left:10px;margin-right: 10px; */
  color: #000;
  font-size: 20px;
}

h3 span{
  font-size:16px;
}
h3 .fa-solid {
  color: #FFB52D;
  font-size: 20px !important;
}

.content {
  margin-top: 60px;
  /* 스티키 바 아래 여백 */
  padding: 20px;
  height: 200vh;
  /* 스크롤 테스트용 긴 내용 */
  background-color: #f8f9fa;
}

ul,
ol {
  list-style: none;
}

.footer {
  position: relative;
  width: 100%;
  height: 90px;
  margin-top: 30px;
  background: #4e4e4e;
}


.footer .logo {
  text-align: center;
  color: #fff;
  padding-top: 35px;
  font-size: 14px;
  font-family: PretendardVariable;
  letter-spacing: -1px;
}

.footer .logo img {
  margin-top: -6px;
}

.footer .logout {
  position: absolute;
  top: 0;
  right: 0;
}

.footer2 {
  position: relative;
  width: 100%;
  padding: 30px 0;
  margin-top: 30px;
  bottom: 0;
  background: #4e4e4e;
}

.footer2>div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer2 .address {
  color: #fff;
  font-size: 14px;
  font-family: PretendardVariable;
  letter-spacing: -1px;
}

.footer2 .address span {
  color: #fff;
  font-size: 14px;
  font-family: PretendardVariable;
  letter-spacing: -1px;
}

.footer2 .copy {
  color: #fff;
  font-size: 14px;
  font-family: PretendardVariable;
  letter-spacing: -1px;
}

@media screen and (max-width: 1250px) {
  .footer2>div {
    justify-content: center;
    gap: 10px;
  }

}