@charset "UTF-8";
/*반응형 화면 크기*/
/*반응형, 브라우저 크기가 767px 이하일때*/
/*반응형, 브라우저 크기가 1024px 이상일때*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header.scrolling {
  background-color: white;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header.scrolling .download button {
  background-color: #F20C36;
  border-radius: 30px;
}

header .header_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .header_inner .left h1 {
  width: 158px;
  height: 60px;
  display: inline-block;
}

header .header_inner .left h1 a {
  display: block;
  width: 158px;
  height: 60px;
  background: center/158px 60px no-repeat url("../../../img/common/logo.svg");
}

header .header_inner .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_inner .right .qrcode {
    position: relative;
  margin-right: 30px;
}

header .header_inner .right .qrcode  .qr_download_btn{
    display:table;
    cursor: pointer;
}

header .header_inner .right .qrcode  .qr_download_btn > span{
    display:table-cell;
    vertical-align: middle;
    color:white;
    padding-right:10px;
    font-size: 20px;
}

header .header_inner .right .qrcode  .qr_download_btn > img{
    display:table-cell;
    vertical-align: middle;
}


header .header_inner .right .qr_imgbox{
    display:none;
    position: absolute;
    top:60px;
    background:white;
    padding:10px;
    text-align: center;
}

header .header_inner .right .qr_imgbox.active{
    display:block;
    border:1px solid #d8d8d8;
}

header .header_inner .right .qr_imgbox img{
    width:140px;
    height:140px;
}

header .header_inner .right .qr_imgbox span{
    font-size: 14px;
}

header .header_inner .right .download button {
  color: #ffffff;
  font-size: 20px;
  font-family: "NSG B";
  padding: 14px 26px;
}

header .header_inner .right .download button i {
  font-size: 30px;
  vertical-align: top;
  margin-left: 16px;
}

@media (max-width: 1199px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  header.scrolling {
    background-color: white;
    -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header.scrolling .download button {
    background-color: #F20C36;
    border-radius: 30px;
  }
  header .header_inner {
    padding: 16px;
  }
  header .header_inner .left h1 {
    width: 105px;
    height: 40px;
  }
  header .header_inner .left h1 a {
    width: 105px;
    height: 40px;
    background: center/105px 40px no-repeat url("../../../img/common/logo.svg");
  }
  header .header_inner .right .qrcode{
    display: none;
  }

  header .header_inner .right .download button{
    font-size: 18px;
    padding: 8px 16px;
  }

  header .header_inner .right .download button i{
    margin-left: 8px;
    font-size: 24px;
    vertical-align: text-bottom;
  }
}

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