@charset "UTF-8";
.header_wrap {
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #ddd;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9998;
  background-color: #fff;
}

.header_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.header_wrap ul li a {
  color: #999;
  font-size: 16px;
  padding: 12px 16px 16px;
  display: block;
}

.header_wrap ul li .default_menu:hover {
  color: #4499D2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

.header_wrap ul li .active_menu {
  color: #4499D2;
  font-weight: 700;
  border-bottom: 2px solid #4499D2;
}

.header_wrap .logout_btn {
  border: 1px solid #ddd;
  color: #999;
  font-size: 14px;
  padding: 4px 12px 6px;
  width: 32px;
  height: 32px;
  position: relative;
  margin-right: 16px;
}

.header_wrap .logout_btn::after {
  content: '';
  background: url(../img/icon_logout.svg) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header_wrap .logout_btn:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

@media all and (min-width: 768px) {
  .header_wrap {
    height: 56px;
  }
  .header_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_wrap ul li a {
    font-size: 18px;
    padding: 12px 32px 16px;
  }
  .header_wrap .logout_btn {
    position: absolute;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 72px;
    margin: 0;
  }
  .header_wrap .logout_btn::after {
    content: '로그아웃';
    background: none;
    position: static;
  }
}
