@charset "UTF-8";
/* Body font Size */
/* .header {
  position: fixed;
  left: 0;
  right: 0;
  height: 72px;
  background: #ffffff;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
  z-index: 80;
} */
.header-wrap {
  height: 72px;
}
.header__inner {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.header .logo {
  width: 40px;
  height: 100%;
  margin: 0 50px 0 0;
}
.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/images/2021/glo_logo_black.svg) 0 50%/contain no-repeat;
  text-indent: -9999px;
}
.header .nav {
  display: flex;
  width: calc(100% - 90px);
}
.header .nav__menu {
  display: flex;
}
.header .nav__item {
  position: relative;
}
.header .nav__item > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 72px;
  padding: 0 40px;
  color: #2a2c2c;
}
.header .nav__item:hover .nav__dropdown {
  display: block;
}
.header .nav__item.alert-logout:hover .nav__dropdown {
  display: none;
}
.header .nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 165px;
  padding: 11px 24px 12px;
  background: #ffffff;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.header .nav__dropdown a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #2a2c2c;
}
.header .nav__aside {
  display: flex;
  margin: 0 0 0 auto;
}
.header .nav__aside .nav__item > a,
.header .nav__aside .nav__item > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  padding: 0;
  margin: 0 12px;
  text-align: center;
}
.header .nav__aside .nav__item:last-child {
  display: none;
}
.header .nav__aside .nav__item:last-child > a, .header .nav__aside .nav__item:last-child > button {
  margin-right: 0;
}
.header .nav__aside .nav__item:last-child svg {
  width: 30px;
  height: auto;
}
.header .nav__aside .nav__dropdown {
  left: -25px;
  width: 100px;
}
.header .nav__aside .nav__dropdown a {
  font-size: 14px;
  line-height: 30px;
  white-space: nowrap;
}
.header .nav__aside svg {
  display: inline-block;
  vertical-align: middle;
}
.header .nav__aside path {
  fill: #2a2c2c;
}

/* mobile snb */
.glo-mobile-bg {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  z-index: -1;
}

.glo-mobile-bg.on {
  opacity: 1;
  z-index: 98;
}

.glo-mobile-aside {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 640px;
  background-color: #ffffff;
  color: #2a2c2c;
  padding: 0 4% min( 10.6666666667vw, 40px );
  z-index: 99;
  transition: right 0.45s;
}
.glo-mobile-aside.on {
  right: 0;
}
.glo-mobile-aside a {
  color: #2a2c2c;
}

.aside-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 57px;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
}

.aside-header .my {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.aside-header .my a {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 24px 0 0;
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/icon-my-aside_bk.png") right 4px no-repeat;
  background-size: 16px 16px;
  vertical-align: middle;
  box-sizing: border-box;
}

.aside-header .btn-close {
  display: inline-flex;
  width: 38px;
  height: 56px;
  text-indent: -99999px;
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/btn-aside-close_bk.png") no-repeat 50% 50%;
  background-size: 14px 14px;
  margin-left: 3px;
}

.aside-header .btn-logout {
  position: relative;
  top: 2px;
  padding: 0 6px;
  height: 24px;
  margin-right: 8px;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 24px;
  font-weight: 600;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  box-sizing: border-box;
  vertical-align: 0;
}

.aside-contents {
  position: relative;
  flex: 1;
}

.aside-contents .lnb {
  position: absolute;
  top: min( 37.3333333333vw, 140px );
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.aside-contents .lnb > ul > li {
  margin: min( 2.6666666667vw, 10px ) 0;
}
.aside-contents .lnb > ul > li:first-child {
  margin-top: 0;
}
.aside-contents .lnb .sub {
  margin: min( 1.3333333333vw, 5px ) 0 0;
}

.aside-contents .lnb a {
  display: block;
}

.aside-contents .lnb > ul > li > a,
.aside-contents .lnb > ul > li > .ttl_menu {
  padding: min( 3.2vw, 12px ) min( 6.4vw, 24px );
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.025em;
}

.aside-contents .lnb .sub > li > a {
  padding: 8px 36px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.025em;
}

.aside-contents .quick-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: min( 5.3333333333vw, 20px );
}

.aside-contents .quick-link ul {
  display: flex;
  height: 88px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-sizing: border-box;
}

.aside-contents .quick-link li {
  flex: 1;
  border-left: 1px solid #eeeeee;
}

.aside-contents .quick-link li:first-child {
  border-left: none;
}

.aside-contents .quick-link a {
  position: relative;
  display: block;
  height: 100%;
  padding-top: 17px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  box-sizing: border-box;
}

.aside-contents .quick-link a:before {
  content: " ";
  display: block;
  height: 26px;
  margin-bottom: 9px;
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/set-icon-quicklink_bk.png") no-repeat;
  background-size: 20px auto;
}

.aside-contents .quick-link .cart a:before {
  background-position: 50% 0;
}

.aside-contents .quick-link .coupon a:before {
  background-position: 50% -30px;
}

.aside-contents .quick-link .free a:before {
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/set-icon-try_bk.png") no-repeat;
  background-size: 24px 24px;
  background-position: 50% 3px;
}

.aside-contents .quick-link a i.count {
  position: absolute;
  left: 50%;
  top: 18px;
  display: inline-flex;
  height: 14px;
  min-width: 14px;
  padding: 1px 4px 0;
  margin-left: 5px;
  font-size: 10px;
  color: #fff;
  line-height: 1;
  background-color: #e35205;
  border-radius: 7px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

.aside-footer {
  flex: none;
  padding: 38px 24px;
}

.aside-footer a {
  display: block;
  font-size: 14px;
  line-height: 24px;
}

.aside-footer a + a {
  margin-top: 14px;
}

.aside-footer a svg {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: -3px;
}

.aside-footer a path {
  fill: #ffffff;
}

/* 2022-03-07 GNB 한글화 */
.glo-header nav li > a, .glo-header nav li > button, .glo-header .btn-navi {
  font-weight: 700;
}

.glo-header nav.snb li > a, .glo-header nav.snb li > button {
  padding: 0 25px;
}

.aside-contents .lnb > ul > li > a, .aside-contents .lnb > ul > li > .ttl_menu {
  font-weight: 700;
}

.aside-contents .lnb .sub > li > a {
  font-family: "Mont", "NotoSans", sans-serif;
  font-weight: 500;
}

.glo-header .sub a {
  font-family: "Mont", "NotoSans", sans-serif;
  line-height: 36px;
  font-weight: 700;
}

.glo-header .group-link-short .sub a {
  font-weight: 500;
}

.sub-h2 h2 {
  font-weight: 700;
}

.glo-header .group-link > button:before,
.glo-header .group-link > button:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 2px;
  background-color: #fff;
  transition: background 0.3s;
}

.glo-header .group-link > button:before {
  right: 9px;
  transform: rotateZ(45deg);
}

.glo-header .group-link > button:after {
  right: 5px;
  transform: rotateZ(-45deg);
}

.glo-header:hover .group-link > button:before, .glo-header:hover .group-link > button:after, .glo-header.fixed .group-link > button:before, .glo-header.fixed .group-link > button:after {
  background: #333;
}

/* 2022-03-07 GNB 한글화 End */
@media screen and (max-width: 1560px) {
  .header__inner {
    max-width: 96%;
  }
}
@media screen and (max-width: 1280px) {
  .header__inner {
    max-width: 92%;
  }
  .header .nav__menu {
    display: none;
  }
  .header .nav__aside .nav__item:last-child {
    display: block;
  }
}
@media (max-width: 767px) {
  .header {
    height: 56px;
  }
  .header-wrap {
    height: 56px;
  }
  .header .nav__item > a {
    line-height: 56px;
  }
  .header .nav__aside .nav__item > a, .header .nav__aside .nav__item > button {
    width: min( 6.4vw, 24px );
    margin: 0 min( 2.1333333333vw, 8px );
  }
  .header .nav__aside .nav__item:last-child > button {
    width: min( 8vw, 30px );
  }
  .header .nav__aside .nav__item:last-child > button svg {
    width: min( 8vw, 30px );
  }
}
.glo-footer {
  position: relative;
  min-height: 304px;
  padding: 72px 4%;
  font-size: 14px;
  background: #2a2c2c;
  color: #999999;
  box-sizing: border-box;
  text-align: left;
}

.glo-footer .glo-restrict {
  position: relative;
  max-width: 1440px;
  text-align: left;
  padding: 0;
  margin: 0 auto;
}

.glo-footer .etc {
  font-size: 0;
  font-weight: 700;
}

.glo-footer .etc li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

.glo-footer .etc li + li:before {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #999;
  display: inline-block;
  margin: 0 14px 0 15px;
  vertical-align: -2px;
}

.glo-footer .etc a {
  color: #999;
}

.glo-footer .info {
  margin-top: 40px;
  overflow: hidden;
  font-size: 14px;
  line-height: 22px;
}

.glo-footer .info ul {
  max-width: 700px;
  font-size: 0;
  margin: 0 320px 0 -17px;
}

.glo-footer .info li {
  display: inline-block;
  font-size: 14px;
  line-height: 1.57;
  white-space: nowrap;
  vertical-align: top;
}

.glo-footer .info li:before {
  content: "";
  width: 1px;
  height: 12px;
  display: inline-block;
  background-color: #999999;
  margin: 0 8px;
  vertical-align: -1px;
}

.glo-footer .info li:first-child {
  display: block;
}

.glo-footer .contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 196px;
  text-align: right;
  line-height: 22px;
}

.glo-footer .contact .direct {
  margin: 0 0 20px auto;
}

.glo-footer .contact .direct > button {
  width: 100%;
  height: 35px;
  border: 1px solid #999999;
  padding: 2px 0 0 12px;
  font-size: 14px;
  line-height: 22px;
  background: url("/images/2019/icon-selectbox-footer.png") right top/20px auto no-repeat;
  letter-spacing: -0.01em;
  color: #999999;
  box-sizing: border-box;
  text-align: left;
}

.glo-footer .contact .direct > button.on {
  background-position: right -33px;
}

.glo-footer .contact .direct > button.on + .extend {
  display: block;
}

.glo-footer .contact .direct .extend {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  padding: 4px 0;
  text-align: left;
  border: 1px solid #e2e2e2;
  background-color: #f7f7f7;
  display: none;
}

.glo-footer .contact .direct .extend a {
  display: block;
  padding: 5px 0 5px 12px;
}

.glo-footer .contact br.m {
  display: none;
}

.glo-footer .social {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(189, 189, 189, 0.2);
  font-weight: 300;
  overflow: hidden;
}

.glo-footer .social .copyright {
  float: left;
}

.glo-footer .social ul {
  float: right;
  font-size: 0;
}

.glo-footer .social li {
  display: inline-block;
  margin-left: 25px;
}

.glo-footer .social li a {
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -5000px;
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/foot_insta.svg") 50% 50%/18px auto no-repeat;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.glo-footer .social li a.kakao {
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/foot_kakao.svg") 50% 50%/18px auto no-repeat;
}
.glo-footer .social li a.youtube {
  background: url("https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/foot_youtube.svg") 50% 50%/20px auto no-repeat;
}
.glo-footer .social li a:hover {
  opacity: 0.6;
}

.glo-footer .modal-mini-wrap {
  color: #333;
}

@media (max-width: 1279px) {
  .glo-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .glo-footer {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .glo-footer {
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }
  .glo-footer .glo-restrict {
    text-align: center;
  }
  .glo-footer .etc li {
    font-size: min( 3.7333333333vw, 14px );
  }
  .glo-footer .info {
    margin-top: min( 8vw, 30px );
  }
  .glo-footer .info ul {
    margin: 0 auto;
  }
  .glo-footer .info li {
    display: block;
    font-size: min( 3.7333333333vw, 14px );
    white-space: normal;
  }
  .glo-footer .info li:before {
    display: none;
  }
  .glo-footer .contact {
    position: static;
    text-align: center;
    margin: 0 auto;
  }
  .glo-footer .contact p.care {
    font-weight: 400;
  }
  .glo-footer .contact p.care br {
    display: none;
  }
  .glo-footer .contact br.m {
    display: inline-block;
  }
  .glo-footer .social {
    overflow: visible;
  }
  .glo-footer .social .copyright {
    float: none;
    line-height: 22px;
  }
  .glo-footer .social .copyright span {
    display: block;
  }
  .glo-footer .contact .direct {
    position: relative;
    margin: 20px auto;
  }
  .glo-footer .social ul {
    float: none;
    margin-top: 16px;
  }
  .glo-footer .social li {
    margin: 0 9px;
  }
}
/* intro */
.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  overflow-y: auto;
}
.intro .bd_3 {
  letter-spacing: -0.04em;
  line-height: 1.5;
}
.intro .bd_3 b {
  font-weight: bold;
}
.intro__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 4%;
  color: #000000;
  text-align: center;
}
.intro__logo {
  display: block;
  width: 200px;
  height: 166.75px;
  margin: 0 auto 40px;
  background: url(/images/2021/glo_logo_black.svg) 50% 0/contain no-repeat;
  /* Try
  background:url(/assets/2021/glo_logo_black.svg) 50% 0/contain no-repeat;
  */
}
.intro__cont p {
  margin: 0 0 40px;
}
.intro__cont .soft {
  margin: 0 0 40px;
}
.intro__cont .btns [class*=btnf] {
  min-width: 185px;
}
.intro__cont .btns .btnf-yes {
  margin-right: 20px;
}
.intro__cont .btn_area {
  max-width: 448px;
  margin: 0 auto;
}
.intro__cont .btns {
  display: flex;
  justify-content: space-between;
  max-width: 448px;
  margin: 0 auto;
}
.intro__cont .btns button {
  width: 214px;
  height: 56px;
  border-radius: 150px;
}
.intro__cont .btnf-kakao {
  margin: 0 0 40px;
  width: 100%;
  position: relative;
  color: rgba(0, 0, 0, 0.85);
  background: #FEE500;
  border: 0;
}
.intro__cont .btnf-kakao:before {
  content: "";
  position: static;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/images/2021/login/kakao_symbol.svg) no-repeat center/contain;
  margin: 0 10px 0 0;
}
.intro__cont .btnf-kakao .kakao {
  margin: 0 4px 0 0;
}
.intro__cont .or-border {
  position: relative;
  display: block;
  margin: 36px 0;
}
.intro__cont .or-border:before, .intro__cont .or-border:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 42%;
  height: 1px;
  background: #fff;
}
.intro__cont .or-border:after {
  left: auto;
  right: 0;
}
.intro__cont .birth input {
  width: 100%;
  height: 50px;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #ffffff;
  text-align: center;
  font-size: 17px;
  color: #ffffff;
  text-indent: 0;
  padding: 0;
}
.intro__cont .birth input::-webkit-outer-spin-button, .intro__cont .birth input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.intro__cont .btnf-login {
  width: 100%;
  margin: 40px 0 0;
}
.intro__cont .join {
  margin: 32px 0 0;
  font-size: 15px;
}
.intro__cont .join a {
  margin: 0 0 0 5px;
  color: #fff;
  text-decoration: underline;
}
.intro__cont {
  width: 100%;
  max-width: 458px;
  margin: 0 auto;
}
.intro__cont .or-border:before, .intro__cont .or-border:after {
  width: 33%;
}
.intro__cont .mont {
  font-weight: 400;
}
.intro__frm {
  margin: 0 auto 40px;
}
.intro__frm__field .input {
  display: block;
  width: 100%;
  height: 52px;
  text-indent: 20px;
  font-size: 18px;
  color: #000000;
  border-width: 0 0 1px;
  border-color: #000000;
}
.intro__frm__field .input::-moz-placeholder {
  color: #999;
}
.intro__frm__field .input:-ms-input-placeholder {
  color: #999;
}
.intro__frm__field .input::placeholder {
  color: #999;
}
.intro__frm__field .input:-webkit-autofill {
  font-size: 18px;
  -webkit-text-fill-color: #000000;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.98) inset;
}
.intro__frm__field .input:-webkit-autofill:hover, .intro__frm__field .input:-webkit-autofill:focus, .intro__frm__field .input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.intro__frm__field .btnf-line-orange {
  width: 100%;
  margin: 30px 0 10px;
}
.intro__frm__find {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__frm__find li:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #000000;
  vertical-align: middle;
  margin: 0 5px 0 4px;
}
.intro__frm__find li:last-child:after {
  content: none;
}
.intro__frm__find button {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  padding: 4px;
  vertical-align: middle;
}
.intro__simple p {
  font-size: 16px;
  margin: 0 0 30px;
}
.intro__simple button {
  color: #E5451C;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02em;
  position: relative;
}
.intro__simple button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E5451C;
}
.intro__join .or-border {
  font-size: 16px;
}
.intro__join__benefit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 30px;
}
.intro__join__benefit li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.57;
  letter-spacing: -0.2px;
  text-align: center;
}
.intro__join__benefit li:first-child:after {
  content: "";
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}
.intro__join .btnf-line-orange {
  width: 214px;
}
.intro__join .reddot_logo {
  display: block;
  width: 187px;
  height: 100px;
  background: url(https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/common/reddot_logo.svg) 50% 50%/contain no-repeat;
  margin: 50px auto 0;
}

@media screen and (min-width: 2400px) {
  .intro__cont .bd_3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1680px) {
  .intro__logo {
    width: 160px;
    height: 132px;
    margin: 0 auto 30px;
  }
  .intro .bd_3 {
    font-size: 20px;
  }
  .intro__cont .or-border {
    margin: 30px 0;
  }
  .intro__cont .soft {
    margin: 0 0 30px;
  }
  .intro__cont .btnf-login {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .intro .bd_3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .intro .soft {
    margin: 0 0 min( 6.9333333333vw, 26px );
  }
  .intro .bd_3 {
    font-size: min( 4vw, 15px );
  }
  .intro__inner {
    padding: min( 13.3333333333vw, 50px ) 4%;
  }
  .intro__logo {
    width: min( 26.6666666667vw, 100px );
    height: min( 22.1333333333vw, 83px );
    margin: 0 auto min( 8vw, 30px );
  }
  .intro__cont .btns {
    max-width: 100%;
  }
  .intro__cont .btns [class*=btnf] {
    min-width: auto;
    width: 49%;
    height: 52px;
    font-size: min( 4.2666666667vw, 16px );
  }
  .intro__cont .or-border {
    margin: min( 8vw, 30px ) 0;
  }
  .intro__cont .btnf-login {
    height: 54px;
  }
  .intro__frm {
    margin: 0 0 min( 8vw, 30px );
  }
  .intro__frm__field .input {
    height: min( 13.3333333333vw, 50px );
    font-size: min( 4.2666666667vw, 16px );
  }
  .intro__frm__field .btnf-fill-orange {
    margin: min( 5.3333333333vw, 20px ) 0 min( 2.6666666667vw, 10px );
  }
  .intro__simple p {
    margin: 0 0 min( 5.3333333333vw, 20px );
  }
  .intro__simple button {
    font-size: 16px;
  }
  .intro__join__benefit {
    margin: 0 0 min( 5.3333333333vw, 20px );
  }
}
/* intro End */
/* layout */
.modal-wrap {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  min-width: 320px;
  max-width: calc(100% - 80px);
  max-height: 90vh;
  margin: 0 auto;
  padding: 60px 60px 0;
  background-color: #fff;
  transform: translateY(-50%);
  z-index: 100;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-wrap::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

.modal-wrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.4);
}

.modal-wrap.is-open {
  display: block;
}

.modal-wrap .modal-close {
  position: absolute;
  right: 25px;
  top: 25px;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -5000px;
  overflow: hidden;
  background: url("/images/2019/icon_close.svg") no-repeat 50% 50%;
  background-size: 23px 23px;
}

.modal-wrap .modal-header {
  position: relative;
}

.modal-wrap .modal-header h3 {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: baseline;
  line-height: 66px;
}

.modal-wrap .modal-header h3.ko {
  font-family: "NotoSans", sans-serif;
  font-size: 48px;
  line-height: 64px;
  font-weight: 700;
}

.modal-wrap .modal-header h4 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.modal-wrap .modal-header h4.ko {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.modal-wrap .modal-contents {
  padding: 60px 0 60px;
}

.modal-wrap .modal-footer {
  padding-bottom: 60px;
}

.modal-wrap .modal-contents [class*=btnf-] {
  min-width: 312px;
}

@media screen and (max-width: 767px) {
  .modal-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto !important;
    max-height: 100%;
    max-width: 100%;
    width: 100% !important;
    padding: 40px 24px 0;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }
  .modal-wrap .modal-header h3 {
    position: relative;
    font-size: 36px;
    line-height: 58px;
    padding-top: 12px;
  }
  .modal-wrap .modal-header h3:before {
    top: 0;
    width: 10px;
    height: 10px;
  }
  .modal-wrap .modal-header h3.ko {
    font-size: 30px;
    line-height: 58px;
  }
  .modal-wrap .modal-header h4 {
    margin-top: 10px;
  }
  .modal-wrap .modal-header h4.ko {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .modal-wrap .modal-contents {
    padding: 40px 0 40px;
  }
  .modal-wrap .modal-contents [class*=btnf-] {
    height: min( 13.3333333333vw, 50px );
    font-size: min( 4.2666666667vw, 16px );
    min-width: initial;
  }
}
.form-flex {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-flex .field {
  flex: 1;
}

.form-flex .dash {
  position: relative;
  flex: none;
  display: block;
  width: 25px;
}

.form-flex .dash:before {
  content: " ";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 5px;
  height: 1px;
  background-color: #333;
}

.form-flex .space {
  position: relative;
  flex: none;
  display: block;
  width: 5px;
}

.form-flex .at {
  position: relative;
  flex: none;
  display: block;
  width: 23px;
}

.form-flex .at:before {
  content: "@";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #bdbdb0;
  transform: translateY(-50%);
  text-align: center;
}

.form-flex input[type=text],
.form-flex input[type=password],
.form-flex input[type=number],
.form-flex select {
  width: 100%;
}

/* 2021-06-24 이메일 중복확인 버튼 추가 */
.form-flex.type-email .btnm-gray {
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .form-flex.type-email {
    flex-wrap: wrap;
  }
  .form-flex.type-email .space {
    display: none;
  }
  .form-flex.type-email .field:last-of-type, .form-flex.type-email .btnm-gray {
    flex: none;
    width: 100%;
    margin-top: 8px;
  }
}
.form-flex.type-address {
  flex-wrap: wrap;
}

.form-flex.type-address .zipcode {
  flex: 1;
  width: calc(100% - 46px);
  max-width: 200px;
}

.form-flex.type-address .auto {
  flex: 1;
  margin-left: 5px;
}

.form-flex.type-address .detail {
  flex: none;
  margin-top: 8px;
}

.form-flex.type-address .btnm-search {
  flex: none;
  margin-left: -1px;
}

@media screen and (max-width: 767px) {
  .form-flex.type-address .zipcode {
    max-width: none;
  }
  .form-flex.type-address .auto {
    flex: none;
    margin: 0;
    width: 100%;
    margin-top: 8px;
  }
}
/* login */
.pp-login,
.pp-find-id,
.pp-find-pwd,
.pp-kakao,
.pp-reset-pwd {
  width: 588px;
  padding: 60px 80px 0;
}

.pop-login-register {
  padding: 0 1px;
  margin-bottom: -20px;
}

.pop-login-register.pop-find {
  margin-top: -5px;
}

.pop-login-register .cell-id input,
.pop-login-register .cell-new input {
  border-color: #333;
}

.pop-login-register li + li {
  margin-top: 36px;
}

.pop-login-register li strong {
  font-size: 20px;
  letter-spacing: -0.028em;
  font-weight: 700;
}

.pop-login-register input,
.pop-login-register select {
  width: 100%;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #eee;
  text-indent: 0;
  padding-left: 0;
}

.pop-login-register .text-guide {
  margin-top: 16px;
  height: 20px;
  font-size: 14px;
  letter-spacing: -0.2px;
  color: #e35205;
}

.pop-login-links {
  font-size: 0;
  text-align: center;
  margin-top: 40px;
}

.pop-login-links a {
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
  color: #333;
  letter-spacing: -0.025em;
}

.pop-login-links a + a:before {
  content: "|";
  display: inline-block;
  margin: 0 7px;
  vertical-align: middle;
}

.pop-kakao-terms {
  position: relative;
  margin-top: 75px;
  margin-bottom: -20px;
}

.pop-kakao-terms .togglebox-terms {
  border: none;
}

.pop-kakao-terms .toggle-tit {
  padding-left: 0;
}

.pop-kakao-terms input[type=checkbox] + label {
  font-size: 18px;
  line-height: 32px;
}

.pop-kakao-terms .toggle-target {
  height: 139px;
  padding: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #bdbdbd;
}

.pp-login .btnarea-foot [class*=btnf] {
  width: 100%;
}
.pp-login .kakaosynk {
  width: 100%;
}
.pp-login .kakaosynk [class*=btnf] {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .pp-login,
.pp-find-id,
.pp-find-pwd {
    max-width: 100%;
    padding: min( 10.6666666667vw, 40px ) min( 6.4vw, 24px ) 0;
  }
  .pop-login-register {
    padding: 0;
    margin-bottom: 0;
  }
  .pop-login-register.pop-find {
    margin-top: -3px;
  }
  .pop-login-register .text-guide {
    font-size: 14px;
    margin-top: 22px;
    margin-top: 10px;
  }
  .pop-kakao-terms {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .pop-kakao-terms .toggle-tit {
    font-weight: 700;
  }
  .pop-kakao-terms input[type=checkbox] + label {
    font-size: 14px;
    line-height: 22px;
  }
}
.pp-result-id {
  width: 588px;
}

.pop-reuslt-id {
  height: 374px;
  padding-top: 154px;
  background-color: #f9f9f9;
  text-align: center;
  box-sizing: border-box;
  line-height: 28px;
}

.pop-reuslt-id strong {
  display: block;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .pop-reuslt-id {
    height: auto;
    padding: 223px 20px;
  }
}
/* join */
.step-join {
  position: absolute;
  right: 0;
  bottom: 9px;
  overflow: hidden;
  counter-reset: item;
}

.step-join li {
  position: relative;
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #dddddd;
  counter-increment: item;
  white-space: nowrap;
}

.step-join li strong {
  display: none;
  height: 24px;
  padding: 0 16px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  vertical-align: top;
}

.step-join li + li {
  margin-left: 30px;
}

.step-join li:before {
  content: counter(item);
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 6px 3px;
  font-size: 16px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  border-radius: 12px;
  vertical-align: top;
}

.step-join li + li:after {
  content: " ";
  position: absolute;
  left: -58px;
  right: 18px;
  top: 50%;
  height: 3px;
  background-color: #dddddd;
  transform: translateY(-50%);
  z-index: -1;
}

.step-join li.current {
  width: auto;
  background-color: #425563;
}

.step-join li.current:before {
  display: none;
}

.step-join li.current strong {
  display: inline-flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .step-join {
    position: static;
    margin-top: 16px;
  }
}
.pp-join-select {
  width: 840px;
  height: 600px;
}

.pop-join-select {
  height: 338px;
  background-color: #f9f9f9;
  text-align: center;
}

.pop-join-select .msg {
  padding-top: 110px;
  letter-spacing: -0.025em;
}

.pop-join-select .btns {
  font-size: 0;
  max-width: 428px;
  margin: 40px auto 0;
}

.pop-join-select .kakaosynk {
  width: 100%;
  max-width: 428px;
}

.pop-join-select .btns [class^=btnf-], .pop-join-select .kakaosynk [class^=btnf-] {
  min-width: auto;
  width: 100%;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .pop-join-select {
    height: auto;
    padding: 158px 20px;
  }
  .pop-join-select .msg {
    display: inline-block;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 28px;
  }
  .pop-join-select .msg strong {
    display: block;
    font-weight: 700;
  }
  .pop-join-select .btns {
    margin-top: 26px;
  }
  .pop-join-select .btns [class^=btnf-], .pop-join-select .kakaosynk [class^=btnf-] {
    display: flex;
    width: 100%;
    height: min( 13.3333333333vw, 50px );
    margin: 14px auto 0;
  }
  .pop-join-select .kakaosynk [class^=btnf-] {
    margin-top: 26px;
  }
}
.pp-join-register {
  width: 840px;
}

.pop-join-basic > ul {
  padding-bottom: 11px;
  border-bottom: 1px solid #eee;
}

.pop-join-basic > ul > li {
  display: flex;
}

.pop-join-basic [class^=cell-] {
  position: relative;
  flex: 1;
  display: flex;
  padding: 13px 0 13px 209px;
  min-height: 72px;
  box-sizing: border-box;
}

.pop-join-basic [class^=cell-] .title-item {
  position: absolute;
  left: 24px;
  top: 20px;
}

/* 2021-06-28 비밀번호 내용 추가 */
.pop-join-basic .cell-password {
  flex-wrap: wrap;
}

.pop-join-basic .cell-password input,
.pop-join-basic .cell-code input {
  width: 270px;
}

.pop-join-basic .cell-password .noti {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.025rem;
  margin: 7px 0 0;
  color: #e35205;
}

.pop-join-basic .cell-sex label {
  line-height: 46px;
  padding-left: 28px;
  margin-right: 20px;
}

.pop-join-basic .cell-smoking label {
  line-height: 46px;
  padding-left: 28px;
  margin-right: 20px;
}

.pop-join-basic .txt-instead {
  height: 46px;
  font-size: 20px;
  line-height: 32px;
  padding-top: 6px;
  box-sizing: border-box;
}

.pop-join-terms {
  position: relative;
  margin-top: 50px;
}

.pop-join-terms .togglebox-terms {
  border: none;
}

.pop-join-terms .toggle-tit {
  padding-left: 0;
}

.pop-join-terms input[type=checkbox] + label {
  font-size: 18px;
  line-height: 32px;
  display: inline-block;
}

.pop-join-terms .toggle-target {
  height: 139px;
  padding: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #bdbdbd;
}

.pop-join-terms .all-check {
  position: absolute;
  right: 0;
  top: 0;
}

.pop-join-terms .all-check label {
  color: #000;
}

@media screen and (max-width: 920px) {
  .pop-join-basic > ul {
    margin-top: 10px;
  }
  .pop-join-basic > ul > li {
    display: block;
  }
  .pop-join-basic [class^=cell-] {
    padding-left: 170px;
  }
  .pop-join-basic [class^=cell-] .title-item {
    left: 2px;
  }
  .pop-join-basic .cell-name,
.pop-join-basic .cell-birth,
.pop-join-basic .cell-tel {
    min-height: 43px;
    padding-top: 0;
  }
  .pop-join-basic .txt-instead {
    height: 43px;
    padding-top: 13px;
  }
  .pop-join-basic .cell-name .title-item,
.pop-join-basic .cell-birth .title-item,
.pop-join-basic .cell-tel .title-item {
    position: absolute;
    top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .pop-join-basic > ul {
    padding-bottom: 5px;
    /*border-bottom: none;*/
  }
  .pop-join-basic > ul > li {
    display: block;
  }
  .pop-join-basic [class^=cell-] {
    padding: 54px 0 0;
    min-height: auto;
  }
  .pop-join-basic [class^=cell-] input {
    width: 100%;
  }
  .pop-join-basic [class^=cell-] .title-item {
    top: 24px;
  }
  .pop-join-basic .cell-email {
    padding-top: 36px;
  }
  .pop-join-basic .cell-email .title-item {
    top: 8px;
  }
  .pop-join-basic .cell-name,
.pop-join-basic .cell-birth,
.pop-join-basic .cell-sex,
.pop-join-basic .cell-smoking,
.pop-join-basic .cell-tel {
    padding: 0 0 0 126px;
  }
  .pop-join-basic .cell-name .title-item,
.pop-join-basic .cell-birth .title-item,
.pop-join-basic .cell-tel .title-item {
    position: absolute;
    top: 8px;
  }
  .pop-join-basic .cell-sex .title-item,
.pop-join-basic .cell-smoking .title-item {
    position: absolute;
    top: 10px;
  }
  .pop-join-basic .cell-sex label {
    font-size: 16px;
  }
  .pop-join-basic .cell-smoking label {
    font-size: 16px;
  }
  .pop-join-basic .cell-smoking {
    margin-top: 24px;
  }
  .pop-join-basic .txt-instead {
    font-size: 16px;
    line-height: 19px;
    padding-top: 10px;
  }
  .pop-join-terms {
    margin-top: 40px;
  }
  .pop-join-terms .toggle-tit {
    font-weight: 700;
  }
  .pop-join-terms input[type=checkbox] + label {
    font-size: 14px;
    line-height: 22px;
  }
  .text-description {
    font-size: 14px;
    color: #999;
    line-height: 22px;
  }
}
.pp-join-end {
  width: 840px;
}

.pop-join-end {
  position: relative;
  min-height: 262px;
  padding: 67px 320px 70px 40px;
  background-color: #f9f9f9;
  letter-spacing: -0.025em;
  box-sizing: border-box;
}

.pop-join-end .msg {
  font-size: 36px;
  line-height: 48px;
}

.pop-join-end .msg > strong {
  font-weight: 700;
}

.pop-join-end .msg > p {
  margin-top: 5px;
  font-size: 16px;
  line-height: 25px;
  color: #bdbdbd;
}

.pop-join-end .coupon {
  position: absolute;
  right: 41px;
  top: 50%;
  width: 268px;
  height: 140px;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  margin-top: -70px;
  overflow: hidden;
  background: url("/images/2019/coupon-special.png") no-repeat; /*background-size:269px 140px;*/
  background-size: cover;
  color: #fff;
}

.pop-join-end .coupon em {
  position: absolute;
  left: 20px;
  bottom: 69px;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.025em;
}

.pop-join-end .coupon strong {
  position: absolute;
  left: 20px;
  bottom: 3px;
  display: block;
  margin-top: 13px;
  font-size: 44px;
  letter-spacing: -0.04em;
  font-weight: 400;
}

@media screen and (max-width: 920px) {
  .pop-join-end {
    position: relative;
    min-height: 262px;
    padding-right: 34px;
    text-align: center;
  }
  .pop-join-end .coupon {
    position: relative;
    right: auto;
    margin: 42px auto 0;
  }
  .pop-join-end .msg strong {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pop-join-end {
    min-height: auto;
    padding: 60px 19px;
  }
  .pop-join-end .msg {
    font-size: 24px;
    line-height: 29px;
  }
  .pop-join-end .msg > p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #bdbdbd;
  }
}
@media screen and (max-width: 360px) {
  .pop-join-end .coupon {
    width: auto;
    height: auto;
    padding-top: 52.2%;
  }
}
/* pwd */
.modal-wrap .modal-contents .btnarea-foot.type-wrap {
  display: flex;
}

.modal-wrap .modal-contents .btnarea-foot.type-wrap [class*=btnf-] {
  width: 100%;
  min-width: auto;
}

@media screen and (max-width: 767px) {
  .modal-wrap .modal-contents .btnarea-foot.type-wrap {
    display: block;
  }
  .modal-wrap .modal-contents .btnarea-foot.type-wrap [class*=btnf-] {
    margin: 0;
  }
  .modal-wrap .modal-contents .btnarea-foot.type-wrap [class*=btnf-] + [class*=btnf-] {
    margin: 12px 0 0;
  }
}
.temp-pwd {
  padding-bottom: 40px;
}

.temp-pwd li {
  position: relative;
}

.temp-pwd li strong {
  font-size: 20px;
  letter-spacing: -0.028em;
  font-weight: 700;
}

.temp-pwd input {
  width: 100%;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #eee;
  text-indent: 0;
  padding-left: 0;
}

.temp-pwd .desc {
  font-size: 14px;
  margin-top: 17px;
}

.temp-pwd .desc button {
  margin-left: 8px;
  font-size: 14px;
  color: #e35205;
  text-decoration: underline;
  vertical-align: 0;
}

.temp-pwd .btn-in-ok {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 64px;
  height: 36px;
  font-size: 16px;
  border: 1px solid #333;
  color: #333;
}

.pp-login-kakao,
.pp-login,
.pp-find-id,
.pp-find-pwd,
.pp-kakao,
.pp-reset-pwd,
.pp-result-id,
.pp-join-select {
  position: fixed;
}

/* for notice popup */
@media screen and (max-width: 767px) {
  #notice .pop-join-select {
    padding: 0 20px 35px 20px;
  }
}
/* 2020-05-07 */
.pop-join-end .coupon.nocoupon {
  position: absolute;
  right: 41px;
  top: 44%;
  width: 202px;
  height: 164px;
  box-shadow: none;
  border-radius: 0;
  margin-top: -70px;
  overflow: hidden;
  background: url("/images/dm-icon-check.png") no-repeat;
  background-size: cover;
  color: #fff;
}

@media screen and (max-width: 920px) {
  .pop-join-end .coupon.nocoupon {
    position: relative;
    right: auto;
    margin: 42px auto 0;
  }
}
@media screen and (max-width: 360px) {
  .pop-join-end .coupon.nocoupon {
    width: 202px;
    height: 164px;
    background-size: auto;
    padding-top: 0;
  }
}
/* intro & 공통 */
.intro-contents .middle .btnf-join {
  width: 360px;
  margin-right: 0;
}

.kakaosynk {
  margin: 20px 0 0;
  width: 360px;
  text-align: center;
}

.kakaosynk .or-border {
  position: relative;
}

.kakaosynk .or-border::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40%;
  height: 1px;
  background: #000;
}

.kakaosynk .or-border::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40%;
  height: 1px;
  background: #000;
}

.kakaosynk .btnf-kakao {
  position: relative;
  margin: 18px 0 0;
  width: 100%;
  color: rgba(0, 0, 0, 0.85);
  background: #FEE500;
  border: 0;
}

.kakaosynk .btnf-kakao::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
  width: 20px;
  height: 20px;
  background: url(/images/2021/login/kakao_symbol.svg) no-repeat center/contain;
}

.kakaosynk .join {
  margin: 10px 0 0;
  font-size: 15px;
}

.kakaosynk .join a {
  margin: 0 0 0 5px;
  color: #000;
  text-decoration: underline;
}

.intro_renewal .kakaosynk {
  margin: 25px auto 0;
}

.intro_renewal .kakaosynk .or-border::before,
.intro_renewal .kakaosynk .or-border::after {
  background: #fff;
}

.intro_renewal .kakaosynk .btnf-kakao {
  margin: 25px 0 0;
}

.intro_renewal .kakaosynk .join a {
  color: #fff;
}

/* modal login */
/* modal Member join setp1 */
.pop-join-select.pop-join-kakaosynk .msg {
  padding: 45px 0 0;
}

/* modal Member registration completed */
.pop-join-end.pop-join-kakaosynk {
  padding: 67px 0 15px;
}

.pop-join-end.pop-join-kakaosynk .coupon.nocoupon {
  top: 128px;
}

.pop-join-kakaosynk .msg {
  padding: 0 320px 0 40px;
}

.pop-join-kakaosynk .join-message {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}

.modal-contents .pop-join-kakaosynk .kakaosynk {
  margin: 30px auto 60px;
}

/* kakao id select */
.pop-join-end.pop-join-kakao-select {
  padding: 40px 0;
}

.kakaosynk-select {
  padding: 0 40px;
}

.kakaosynk-select form {
  display: block;
  margin: 20px 0 0;
}

.kakaosynk-select label {
  display: block;
  padding: 0 10px;
  text-decoration: underline;
}

.kakaosynk-select input[type=radio] {
  position: relative;
  margin: 0 5px 0 0;
  resize: auto;
  -webkit-appearance: auto;
  border-radius: 2px;
  border: 1px solid #333;
  opacity: 1;
}

.kakaosynk-select p {
  margin: 5% 0 0;
  font-size: 16px;
}

.kakaosynk_select .msg {
  padding: 0;
}

/* my my-info */
.my-info-basic li .kakaosynk {
  margin: 10px 0;
  width: 230px;
}

.my-info-basic li .kakaosynk .btnf-kakao {
  margin: 0;
}

/* my-info-kakaosynk */
.modal-wrap.my-info-kakaosynk {
  top: 30%;
  padding: 0;
  width: 400px;
}

.modal-wrap.my-info-kakaosynk p {
  font-size: 20px;
}

.modal-wrap.my-info-kakaosynk .modal-header {
  padding: 5% 8%;
  border-bottom: 2px solid #eee;
}

.modal-wrap.my-info-kakaosynk .modal-close {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.modal-wrap.my-info-kakaosynk .modal-header h3 {
  font-size: 26px;
  line-height: 1.5;
}

.modal-wrap.my-info-kakaosynk .modal-contents {
  padding: 8% 8% 5%;
}

.modal-wrap.my-info-kakaosynk .modal-contents .btns {
  margin: 5% 0 0;
  text-align: center;
}

.modal-wrap.my-info-kakaosynk .modal-contents [class*=btnf-] {
  min-width: 130px;
}

/* my-info-out */
.my-info-out .my-info-out-kakao .btnf-line-black {
  position: relative;
  right: auto;
  top: auto;
  width: 200px;
  transform: inherit;
}

.my-info-out .my-info-out-kakao {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.my-info-out .kakaosynk {
  margin: 0;
  width: 200px;
}

.my-info-out .kakaosynk .btnf-kakao {
  margin: 0;
}

@media screen and (max-width: 920px) {
  .pop-join-end.pop-join-kakaosynk .msg {
    padding: 0;
  }
  .pop-join-end.pop-join-kakaosynk .coupon.nocoupon {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  /* intro & 공통 */
  .kakaosynk {
    width: 100%;
  }
  /* modal login */
  .modal-contents .kakaosynk {
    width: 100%;
  }
  /* modal Member registration completed */
  .pop-join-end.pop-join-kakaosynk {
    padding: 60px 19px 15px;
  }
  .pop-join-kakaosynk .msg {
    padding: 0;
  }
  .pop-join-end.pop-join-kakaosynk .coupon.nocoupon {
    top: auto;
  }
  .modal-contents .pop-join-kakaosynk .kakaosynk {
    margin: 26px auto;
  }
  /* kakao id select */
  .kakaosynk-select {
    padding: 0 15px;
  }
  .kakaosynk-select p {
    margin: 8% 0 0;
    font-size: 14px;
  }
  .my-info-basic .email-kakaosynk {
    flex-wrap: wrap;
  }
  .my-info-basic li .kakaosynk {
    margin: 0 0 12px;
    width: 220px;
  }
  .my-info-basic li .kakaosynk .btnf-kakao {
    height: 35px;
  }
  /* my-info-kakaosynk */
  .modal-wrap.my-info-kakaosynk {
    top: 0;
  }
  .modal-wrap.my-info-kakaosynk .modal-header h3 {
    padding: 0;
    font-size: 20px;
  }
  .modal-wrap.my-info-kakaosynk p {
    font-size: 18px;
  }
  /* my-info-out */
  .my-info-out .my-info-out-kakao .btnf-line-black {
    margin: 0;
  }
  .my-info-out .my-info-out-kakao {
    position: static;
    margin: 20px auto 0;
    transform: none;
  }
  .my-info-out .btnf-line-black + .kakaosynk {
    margin: 15px auto 0;
  }
}
/* 2021-10-13 kakaosynk-카카오연결 완료 */
.kakaosynk-end .pop-join-end .coupon.nocoupon {
  background: url("/images/dm-icon-kakao-check.png") no-repeat;
}

/* //2021-10-13 kakaosynk-카카오연결 완료 */
/* 2022-03-11 회원가입 마케팅 수신동의 */
.pop-join-terms .org_noti {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025rem;
  color: #e35205;
  text-align: center;
  margin: 20px 0 0;
}

.pop-join-end .msg > .coupon_msg {
  display: block;
  color: #666;
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .pop-join-terms .org_noti {
    font-size: 14px;
  }
}
/* 2022-03-11 회원가입 마케팅 수신동의 End */
/* 2022-05-04 PIPA 디자인 변경 건 */
.pop-join-basic .cell-personal .title-item em {
  display: block;
}

.pop-join-basic .cell-personal {
  flex-wrap: wrap;
}

.pop-join-basic .cell-personal label {
  line-height: 46px;
  padding-left: 28px;
  margin-right: 20px;
}

.pop-join-basic .cell-personal .noti {
  width: 100%;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.025rem;
  color: #787878;
  white-space: pre-line;
}

@media screen and (max-width: 767px) {
  .pop-join-basic .cell-personal {
    margin: 0 0 10px;
  }
  .pop-join-basic .cell-personal .title-item {
    top: 18px;
  }
  .pop-join-basic .cell-personal .title-item em {
    display: inline;
  }
  .pop-join-basic .cell-personal label {
    line-height: 32px;
  }
  .pop-join-basic .cell-personal .noti {
    font-size: 13px;
    margin: 7px 0 0;
  }
}
/* 2022-05-04 PIPA 디자인 변경 건 End */
/* layout - sub */
.bg-w {
  background: #FFF;
}

.sub-h2 {
  position: relative;
  height: 27.5vw;
  padding: 0 60px;
  color: #fff;
  text-align: center;
  line-height: 1.555;
  background-color: #f84200;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.sub-h2 > article {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sub-h2 h2 {
  font-family: "Mont", "NotoSans", sans-serif;
  font-size: 3.75vw;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.sub-h2 p {
  display: none;
}

.sub-h2.product {
  background-image: url("/images/2021/title/h2_product_211027.jpg");
}

.sub-h2.mypage {
  background-image: url("/images/2021/title/h2_mypage_211229.jpg");
}

.sub-h2.support {
  background-image: url("/images/2021/title/h2_support_211229.jpg");
}

.sub-h2.event {
  background-image: url("/images/2021/title/h2_event_211229.jpg");
}

.sub-h2.cart {
  background-image: url("/images/2021/title/h2_cart_211229.jpg");
}

.sub-h2.coupon {
  background-image: url("/images/2021/title/h2_coupon_211229.jpg");
}

/* ys 탭메뉴 디자인 기존 css 삭제 및 새로 추가분 */
.sub-lnb {
  width: 100%;
  max-width: 1440px;
  padding-top: 80px;
  border-bottom: 2px solid #E1E1E1;
  margin: 0 auto;
}

.sub-lnb ul {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 64px;
}

.sub-lnb ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 0;
  text-align: center;
  color: #212121;
}

.sub-lnb ul li a:hover {
  color: #000;
}

.sub-lnb ul li.current a {
  font-weight: 700;
}

.sub-lnb ul li.current a::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #E5451C;
  position: absolute;
  bottom: -2px;
}

/* ys 탭메뉴 디자인 기존 css 삭제 및 새로 추가분 끝 */
/* ys 이하 추가 탭메뉴 디자인은 새로 디자인 나오면 거기에 맞춰 다시 수정 예정 */
.sub-lnb li .count {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 12px;
  margin-left: 12px;
  font-size: 14px;
  background-color: #bdbdbd;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
}

.sub-lnb .sub {
  position: relative;
  height: 50px;
}

.sub-lnb .sub:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1600px;
  height: 50px;
  transform: translateX(-50%);
  background: #f7f7f7;
}

.sub-lnb .sub ul {
  white-space: nowrap;
}

.sub-lnb .sub li + li {
  margin-left: 24px;
}

.sub-lnb .sub li a {
  font-size: 16px;
  line-height: 24px;
  color: #999;
  font-weight: 400;
  font-family: "Mont", "NotoSans", sans-serif;
}

.sub-lnb .sub li a:hover {
  color: #333;
}

.sub-lnb .sub li.current a {
  color: #333;
  font-weight: 700;
}

.sub-lnb .sub li.current:before {
  display: none;
}

.sub-contents {
  padding: 80px 0 120px;
}

@media (max-width: 1440px) {
  .sub-lnb ul li a {
    min-width: 10vw;
    width: auto;
  }
}
@media (max-width: 1280px) {
  .sub-h2 {
    height: 33vw;
  }
  .sub-h2 h2 {
    font-size: 4.5vw;
  }
}
@media (max-width: 767px) {
  .sub-h2 {
    height: 69.33vw;
    padding: 0 4%;
  }
  .sub-h2 h2 {
    font-size: min( 10.6666666667vw, 40px );
    line-height: 1.3;
  }
  .sub-h2 p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 28px;
  }
  .sub-lnb {
    padding: 40px 4% 0;
  }
  .sub-lnb ul {
    display: flex;
    height: auto;
    gap: 0 3.33vw;
  }
  .sub-lnb li {
    flex: 1;
    text-align: center;
  }
  .sub-lnb li + li {
    margin-left: 0;
  }
  .sub-lnb ul li a {
    width: 100%;
    font-size: min( 3.7333333333vw, 14px );
    line-height: 18px;
    padding: min( 2.6666666667vw, 10px ) 0;
    white-space: nowrap;
  }
  .sub-lnb li .count {
    position: static;
    height: 24px;
    padding: 0 8px 0 7px;
    margin-left: 8px;
    margin-top: -3px;
    font-size: 12px;
    line-height: 26px;
    border-radius: 12px;
  }
  .sub-lnb li.current .count {
    background-color: #e35205;
  }
  .sub-lnb li.current:before {
    display: none;
  }
  .sub-lnb ul li.current a::after {
    bottom: -2px;
  }
  .sub-lnb li.current a {
    height: auto;
  }
  .sub-lnb .sub {
    margin: 0 -24px;
    overflow: hidden;
  }
  .sub-lnb .sub ul {
    position: relative;
    display: block;
    padding: 0 24px;
    height: 68px;
    overflow: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .sub-lnb .sub li {
    height: 50px;
  }
  .sub-lnb .sub li + li {
    margin-left: 20px;
  }
  .sub-lnb .sub li a {
    font-size: 14px;
    line-height: 17px;
    padding-top: 4px;
    border-bottom: none;
  }
  .sub-lnb ul.support {
    margin-left: -12px;
  }
  .sub-lnb ul.support li {
    flex: 0;
    padding: 0 12px;
  }
  .sub-contents {
    padding: 26px 0 60px;
  }
}
/* card */
.card-coupon {
  position: relative;
  /* padding-top: 56.3%; */
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: 331px;
}

.card-coupon:before {
  content: "";
  position: absolute;
  left: 4%;
  top: 0;
  height: 50%;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  width: 150px;
  background-position: 0 -150px;
}

.card-coupon.cu {
  background-color: #aace37;
}

.card-coupon.cu:before {
  background-image: url("/images/2019/set-bi-cu.png");
}

.card-coupon.gs {
  background-color: #0079c3;
}

.card-coupon.gs:before {
  /* background-image: url('/images/2019/set-bi-gs.png'); */
  background-image: url("/images/2021/set-bi-gs.png");
}

.card-coupon.seven {
  background-color: #088252;
}

.card-coupon.seven:before {
  background-image: url("/images/2019/set-bi-seven.png");
}

.card-coupon.emart {
  background-color: #feae1e;
}

.card-coupon.emart:before {
  background-image: url("/images/2019/set-bi-emart.png");
}

.card-coupon.cspace {
  background-color: #ec7300;
}

.card-coupon.cspace:before {
  background-image: url("/images/2019/set-bi-cspace.png");
}

.card-coupon.ministop {
  background-color: #1762ad;
}

.card-coupon.ministop:before {
  background-image: url("/images/2019/set-bi-ministop.png");
}

.card-coupon.glo {
  border: 1px solid #bdbdbd;
}

.card-coupon.glo:before {
  background-image: url("/images/2019/set-bi-glo.png");
}

.card-coupon.eshop {
  border: 1px solid #bdbdbd;
}

.card-coupon.eshop:before {
  background-image: url("/images/2019/set-bi-eshop.png");
}

/* spinbox */
.spin-box {
  position: relative;
  display: inline-block;
  width: 121px;
  height: 42px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.spin-box input {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 40px;
  height: auto;
  padding-top: 3px;
  border: none;
  text-align: center;
  text-indent: 0;
  font-size: 18px;
  line-height: 30px;
  color: #333;
  font-weight: 700;
}

.spin-box button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  text-indent: -5000em;
  overflow: hidden;
  box-sizing: border-box;
}

.spin-box button:before {
  content: " ";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  background: url("/images/2019/set-icon-spin.png") no-repeat;
  background-size: auto 24px;
}

.spin-box button.minus {
  left: 0;
  border-right: 1px solid #ccc;
  background-position: -22px 0;
}

.spin-box button.minus:before {
  background-position: -24px 0;
}

.spin-box button.plus {
  right: 0;
  border-left: 1px solid #ccc;
}

@media (max-width: 767px) {
  .spin-box {
    width: 84px;
    height: 28px;
    border: none;
  }
  .spin-box input {
    left: 28px;
    width: 28px;
    font-size: 14px;
    line-height: 24px;
  }
  .spin-box button {
    width: 28px;
    border: 1px solid #ccc;
  }
  .spin-box button:before {
    left: 2px;
    top: 2px;
  }
}
/* tooltip style layer */
.tooltip-layer {
  position: absolute;
  box-shadow: inset 0 0 0 1px #333;
  background-color: #fff;
  z-index: 50;
}

.tooltip-layer footer button {
  width: 100%;
  height: 56px;
  background: #4a4d5b;
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
}

.tooltip-layer header {
  padding: 20px 20px 14px;
  margin: 0 1px;
  border-bottom: 1px solid #eee;
}

.tooltip-layer header h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.tooltip-layer main {
  padding: 30px;
}

.tooltip-layer .btn-close {
  position: absolute;
  right: 8px;
  top: 6px;
  width: 48px;
  height: 48px;
  text-indent: -5000px;
  overflow: hidden;
  background: url("/images/2019/btn-aside-close.png") no-repeat 50% 50%;
  background-size: 14px 14px;
}

@media (max-width: 767px) {
  .tooltip-layer footer button {
    height: 48px;
    font-size: 16px;
  }
  .tooltip-layer header {
    padding: 17px 20px 15px;
  }
  .tooltip-layer header h6 {
    font-size: 14px;
    line-height: 17px;
  }
  .tooltip-layer main {
    padding: 24px 20px;
  }
  .tooltip-layer .btn-close {
    right: 4px;
    top: 2px;
  }
}
/* set description */
.foot-description {
  position: relative;
  padding: 95px 60px 120px;
  counter-reset: descnum;
  border-top: 1px solid #d8d8d8;
}

.foot-description dt {
  display: block;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
}

.foot-description dd {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  counter-increment: descnum;
}

.foot-description dd a {
  color: #333;
}

.foot-description.type-dot dd {
  font-family: "Mont", "NotoSans", sans-serif;
  padding-left: 13px;
}

.foot-description.type-dot dd:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 2px;
  background-color: #4a4a4a;
  border-radius: 1px;
}

.foot-description.type-number dd {
  padding-left: 15px;
}

.foot-description.type-number dd:before {
  content: counter(descnum) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.sub-contents + .foot-description {
  margin-top: -20px;
}

@media (max-width: 767px) {
  .foot-description {
    padding: 55px 24px 60px;
  }
  .foot-description dt {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 12px;
  }
  .foot-description dd {
    font-size: 14px;
    line-height: 24px;
  }
  .sub-contents + .foot-description {
    margin-top: 0;
  }
}
/* plugins */
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on:February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 34px auto;
  margin-top: -7px;
}

.swiper-button-prev {
  background-image: url("/images/2019/btn-arrow-prev@2x.png");
}

.swiper-button-prev.black {
  background-image: url("/images/2019/btn-arrow-prev-black@2x.png");
}

.swiper-button-prev.gray {
  background-image: url("/images/2019/btn-arrow-prev-gray@2x.png");
}

.swiper-button-next {
  background-image: url("/images/2019/btn-arrow-next@2x.png");
}

.swiper-button-next.black {
  background-image: url("/images/2019/btn-arrow-next-black@2x.png");
}

.swiper-button-next.gray {
  background-image: url("/images/2019/btn-arrow-next-gray@2x.png");
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 23px;
  font-size: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #fff;
  opacity: 0.4;
  border-radius: 5px;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-indicator {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #fff;
  opacity: 1;
  border-radius: 5px;
}

.swiper-pagination.black .swiper-pagination-bullet {
  background-color: #000;
}

@media (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 17px;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    border-radius: 3px;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-indicator {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    border-radius: 3px;
  }
}
.swiper-container-horizontal > .swiper-scrollbar {
  left: 0;
  right: 0;
  bottom: 0;
  width: 384px;
  margin: 0 auto;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.swiper-container-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  height: 4px;
  background: rgb(0, 0, 0);
  border-radius: 0;
}

/* loading */
.glo-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-image: url(/images/2019/loading-pc.png);
  -webkit-animation: loading 0.8s steps(18) infinite;
          animation: loading 0.8s steps(18) infinite;
}

.glo-loading-mask {
  z-index: 200;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2 ease-in;
}

body.loading .glo-loading-mask {
  display: block;
}

@-webkit-keyframes loading {
  100% {
    background-position: -2160px;
  }
}

@keyframes loading {
  100% {
    background-position: -2160px;
  }
}
@media (max-width: 767px) {
  .glo-loading {
    width: 60px;
    height: 60px;
    background-image: url(/images/2019/loading-mobile.png);
  }
  @-webkit-keyframes loading {
    100% {
      background-position: -1080px;
    }
  }
  @keyframes loading {
    100% {
      background-position: -1080px;
    }
  }
}
.layer_movie {
  display: none;
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
}

.layer_movie.is-open {
  display: block;
}

.layer_movie_wrap {
  position: absolute;
  bottom: 10vh;
  width: 100%;
  height: 80vh;
}

.btn_close-player {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transform: translate(-50%, 0);
  background: transparent;
}

.btn_close-player .bar {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 36px;
  height: 3px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
  text-indent: -9999px;
}

.btn_close-player .bar:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  transform: rotate(-90deg);
  background: #fff;
}

/*
 * coupon pro */
.coupon-mylist_pro .card-coupon {
  background-image: url(/images/2019/card-coupon_pro.png);
}

.coupon-mylist_pro .cu {
  background-color: #aace37;
}

.coupon-mylist_pro .gs {
  background-color: #0079c3;
}

.coupon-mylist_pro .seven {
  background-color: #088252;
}

.coupon-mylist_pro .emart {
  background-color: #feae1e;
}

.coupon-mylist_pro .ministop {
  background-color: #1762ad;
}

.coupon-mylist_pro .cspace {
  background-color: #ec7300;
}

/*
* coupon sens */
.coupon-mylist_sens .card-coupon {
  background-image: url(/images/2019/card-coupon_sens.png);
}

.coupon-mylist_sens .cu {
  background-color: #aace37;
}

.coupon-mylist_sens .gs {
  background-color: #0079c3;
}

.coupon-mylist_sens .seven {
  background-color: #088252;
}

.coupon-mylist_sens .emart {
  background-color: #feae1e;
}

.coupon-mylist_sens .ministop {
  background-color: #1762ad;
}

.coupon-mylist_sens .cspace {
  background-color: #ec7300;
}

/* coupon mini */
.coupon-mylist_mini .card-coupon {
  background-image: none;
}

.glo-logo {
  font-family: "Mont", "NotoSans", sans-serif;
}

.glo-header .gnb > li a {
  padding: 0 16px !important;
}

/* notice */
[class^=togglebox-] li.on .toggle-target b {
  font-weight: bold;
}

[class^=togglebox-] li.on .toggle-target table {
  width: 100%;
}

[class^=togglebox-] li.on .toggle-target table th {
  background-color: #eaeaea;
  border: 1px solid #ccc;
  text-align: center;
  padding: 10px;
}

[class^=togglebox-] li.on .toggle-target table td {
  border: 1px solid #ccc;
  padding: 2%;
  vertical-align: top;
  font-size: 14px;
}

[class^=togglebox-] li.on .toggle-target span.highlight {
  color: #e35205;
}

@media (max-width: 767px) {
  [class^=togglebox-] li.on .toggle-target table td {
    font-size: 12px;
  }
}
/* discoverglo renewal responsive */
@media screen and (max-width: 1560px) {
  /* header */
  .glo-header .in-restrict {
    max-width: 96%;
  }
  .glo-header .logo {
    width: 60px;
  }
}
@media screen and (max-width: 1279px) {
  /* header */
  .glo-header .in-restrict {
    max-width: 94%;
  }
  .glo-header .group-link-short .sub, .glo-header .group-link:hover .sub, .glo-header .group-link-short:hover .sub {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .glo-header .in-restrict {
    max-width: 92%;
  }
  .glo-header .logo {
    margin: 8px 0;
  }
  .body-product .glo-header .logo a, .body-main .glo-header .logo a, .body-sub .glo-header .logo a {
    background-image: url("/images/2021/glo_logo_black.svg");
    background-size: auto 90%;
    background-position: 0 50%;
  }
  .glo-header nav {
    height: 56px;
  }
  .glo-header nav a, .glo-header nav button, .glo-header .btn-navi {
    padding: 0 7px;
    margin-left: 3px;
    color: #333;
  }
  .body-product .glo-header path, .body-main .glo-header path {
    fill: #333;
  }
}
/* 2021-11-29 연말 글로 로고 변경(21-12-01-21-12-31 운영예정) */
/* .body-product .glo-header .logo , .body-main .glo-header .logo, .body-sub .glo-header .logo {height:52px !important; margin:10px 16px 10px 0 !important;}
.body-main .glo-header .logo a {background:url(/images/2021/dec_logo_w.gif) 0 50%/auto 46px no-repeat !important;}
.body-product .glo-header .logo a, .body-main .glo-header:hover .logo a, .body-main .glo-header.fixed .logo a, .body-product .glo-header.fixed .logo a, .body-sub .glo-header:hover .logo a, .body-sub .glo-header .logo a {background:url(/images/2021/dec_logo_b.gif) 0 50%/auto 46px no-repeat !important;}

@media screen and (max-width:767px){
    .body-product .glo-header .logo , .body-main .glo-header .logo, .body-sub .glo-header .logo  {height:46px !important; margin:5px 0 !important;}
    .body-main .glo-header .logo a {background-image:url(/images/2021/dec_logo_w.gif) !important; background-size:auto 46px !important;}
    .body-product .glo-header .logo a, .body-main .glo-header:hover .logo a, .body-main .glo-header.fixed .logo a, .body-product .glo-header.fixed .logo a, .body-sub .glo-header:hover .logo a, .body-sub .glo-header .logo a{background-image:url(/images/2021/dec_logo_b.gif) !important; background-size:auto 46px !important;}
} */
/* 2021-11-29 연말 글로 로고 변경(21-12-01-21-12-31 운영예정) End */
/* 2021-12-29 slim 상단배너 업데이트 */
@media screen and (max-width: 767px) {
  .sub-h2.mypage {
    background-position: 45% 50%;
  }
  .sub-h2.event {
    background-position: 85% 50%;
  }
  .sub-h2.coupon {
    background-position: 35% 50%;
  }
}
@media screen and (max-width: 478px) {
  .sub-h2.cart {
    background-position: 30% 50%;
  }
}
/* //2021-12-29 slim 상단배너 업데이트 */
/* 2022-01-12 GNB 한글메뉴 스타일 추가 */
.glo-header nav .kor, .aside-contents .lnb > ul > li > .kor {
  font-weight: 700;
}

/* 2022-01-12 GNB 한글메뉴 스타일 추가 End */
/* 2022-02-17 쿠폰북 업데이트 */
.glo-header .coupon_tag {
  position: absolute;
  top: 100%;
  left: 13px;
  width: 102px;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.025rem;
  background: #ff4e00;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 2px 7px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  animation: tag_ani 1s linear forwards infinite;
  -webkit-animation: tag_ani 1s linear forwards infinite;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.glo-header .coupon_tag:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #ff4e00;
  margin: 0 0 -1px 10px;
}

.glo-header .group-link-short:hover .coupon_tag {
  opacity: 0;
}

.glo-header .gnb ul li.coupon {
  display: none;
}

.glo-header .gnb ul li.coupon a {
  display: inline-flex;
}

.glo-header .coupon .coupon_tag {
  left: -2px;
  z-index: 10;
}

.glo-header .coupon .coupon_tag:before {
  margin: 0 0 -1px 20px;
}

@-webkit-keyframes tag_ani {
  0% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  50% {
    transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -o-transform: translateY(-45%);
  }
  100% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}

@keyframes tag_ani {
  0% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  50% {
    transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -o-transform: translateY(-45%);
  }
  100% {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
}
@media screen and (max-width: 1280px) {
  .glo-header .gnb ul li.coupon {
    display: inline-block;
  }
  .glo-header .gnb ul li.coupon svg {
    width: 32px;
  }
  .glo-header .gnb ul li.coupon .coupon_tag {
    top: 105%;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .glo-header .coupon_tag {
    width: 86px;
    font-size: 11px;
    line-height: 20px;
  }
  .glo-header .group-link-short:hover .coupon_tag {
    opacity: 1;
  }
}
/* 2022-02-17 쿠폰북 업데이트 End */
/* 2022-06-02 쿠폰,이벤트 상단 배너이미지 변경 */
.sub-h2.coupon {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_coupon_220602.jpg);
}

.sub-h2.event {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_event_220602.jpg);
}

.sub-h2.mypage {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_mypage_220602.jpg);
}

.sub-h2.cart {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_cart_220602.jpg);
}

.sub-h2.support {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_support_220602.jpg);
}

@media screen and (max-width: 768px) {
  .sub-h2.coupon {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_coupon_m_220602.jpg);
    background-position: 80% 50%;
  }
  .sub-h2.event {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_event_m_220602.jpg);
    background-position: 42% 50%;
  }
  .sub-h2.mypage {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_mypage_m_220602.jpg);
    background-position: 80% 50%;
  }
  .sub-h2.cart {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_cart_m_220602.jpg);
    background-position: 80% 50%;
  }
  .sub-h2.support {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2022/title/h2_support_m_220602.jpg);
  }
}
/* 2022-06-02 쿠폰 상단 배너이미지 변경 End */
/* 2022-06-09 뉴스룸 */
.sub-h2.newsroom {
  background-image: url(/images/2022/title/h2_newsroom_220609.jpg);
}

@media screen and (max-width: 768px) {
  .sub-h2.newsroom {
    background-image: url(/images/2022/title/h2_newsroom_m_220620.jpg);
    background-position: 72% 50%;
  }
}
/* 2022-06-09 뉴스룸 End */
/* 2022-07-04 gnb 메뉴 추가 */
.glo-header nav.snb .group-link > .sub {
  width: 150px;
}

/* 2022-07-04 gnb 메뉴 추가 End*/
/* 2022-07-20 17:06:19 기기등록 페이지 이벤트 배너 */
.sub_eventbanner {
  position: relative;
  margin: 44px auto 0;
  max-width: 1200px;
}

@media (max-width: 1023px) {
  .sub_eventbanner img.pc_only {
    display: none;
  }
  .sub_eventbanner img.mb_only {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sub_eventbanner {
    margin: 22px auto;
  }
  .sub-register.sub-contents {
    padding: 0 24px;
  }
}
/* 2022-07-20 17:06:19 기기등록 페이지 이벤트 배너 END*/
/* 2022-08-31 타이틀 배너 변경 */
.sub-h2.coupon {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_coupon_230605.jpg);
}

.sub-h2.event {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_event_230209.jpg);
}

.sub-h2.mypage {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_mypage_230605.jpg);
}

.sub-h2.cart {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_cart_230605.jpg);
}

.sub-h2.support {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_support_230206.jpg);
}

.sub-h2.store {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_store_230605.jpg);
}

@media (max-width: 767px) {
  .sub-h2.coupon {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_coupon_mo_230605.jpg);
    background-position: 37% 50%;
  }
  .sub-h2.event {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_event_mo_230209.jpg);
    background-position: 62% 50%;
  }
  .sub-h2.mypage {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_mypage_mo_230605.jpg);
    background-position: 50% 50%;
  }
  .sub-h2.cart {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_cart_mo_230605.jpg);
    background-position: 48% 50%;
  }
  .sub-h2.support {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_support_230206_mo.jpg);
    background-position: 65% 50%;
  }
  .sub-h2.store {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_store_mo_230605.jpg);
  }
}
/* 2022-08-31 타이틀 배너 변경 end */
/* 2023-02-22 회원정보 버튼 수정 */
.my-info-basic li .kakaosynk .btnf-kakao {
  display: flex;
  align-items: center;
}

.kakaosynk .btnf-kakao::before {
  margin-right: 10px;
  position: relative;
  top: auto;
  left: auto;
}

@media (max-width: 767px) {
  .my-info-basic li .kakaosynk {
    margin: 10px 0 10px auto;
  }
}
/* 2023-09-15 하이퍼 에어 상단배너 업데이트 */
.sub-h2.coupon {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_coupon_230915.jpg);
}

.sub-h2.event {
  background-image: url(/content/dam/glo-jp/korea-images/brand-pages/images/2024/title/h2_event.jpg);
}

.sub-h2.mypage {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_mypage_230915.jpg);
}

.sub-h2.cart {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_cart_230915.jpg);
}

.sub-h2.support {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_support_230915.jpg);
}

.sub-h2.store {
  background-image: url(https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/title/h2_store_230915.jpg);
}

.sub-h2.glotry {
  background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_glotry_230914.jpg);
  background-position: 83% 50%;
}

.sub-h2.product {
  background-image: url(/content/dam/glo-jp/korea-images/brand-pages/images/2024/title/h2_compare.jpg);
}

@media (max-width: 767px) {
  .sub-h2.coupon {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_coupon_mo_230915.jpg);
    background-position: 37% 50%;
  }
  .sub-h2.event {
    background-image: url(/content/dam/glo-jp/korea-images/brand-pages/images/2024/title/h2_event_m.jpg);
    background-position: 62% 50%;
  }
  .sub-h2.mypage {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_mypage_mo_2300915.jpg);
    background-position: 50% 50%;
  }
  .sub-h2.cart {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_cart_mo_2300915.jpg);
    background-position: 48% 50%;
  }
  .sub-h2.support {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_support_mo_2300915.jpg);
    background-position: 65% 50%;
  }
  .sub-h2.store {
    background-image: url(https://discoverglo.s3.ap-northeast-2.amazonaws.com/images/2023/title/h2_store_mo_2300915.jpg);
  }
  .sub-h2.product {
    background-image: url(/content/dam/glo-jp/korea-images/brand-pages/images/2024/title/h2_product_m.jpg);
  }
  .sub-h2.glotry {
    background-image: url(https://d3nsks150m8sxr.cloudfront.net/images/2023/title/h2_glotry_mo_230914.jpg);
  }
}
/* 2023-09-15 하이퍼 에어 상단배너 업데이트 End */
/* 2023-12-12 마이페이지 마케팅 메시지 수신 동의 Start */
.my-info-add .org_noti {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025rem;
  color: #e35205;
  text-align: center;
  margin: 20px 0 0;
}

@media screen and (max-width: 767px) {
  .my-info-add .org_noti {
    font-size: 14px;
  }
}
/* 2023-12-12 마이페이지 마케팅 메시지 수신 동의 End */