:root {
  /*	--color-primary: #78909c;
	--color-p-light: #a7c0cd;
	--color-p-dark: #4b636e;   */

  --color-primary: #f0b84f;
  --color-p-light: #fdab29;
  --color-p-dark: #464646;

  /* size */
  --padding: 5px; /* calc(var(--padding) * 3) = 15px */
  --margin: 5px;
}

/* 폰트 - 구글 나눔고딕 */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", "Noto Sans KR", sans-serif;
}

/* 편집 버튼 */
.btn-edit-admin {
  position: fixed;
  top: 230px;
  right: -1px;
  width: 130px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
  z-index: 1100;
}
.btn-edit-mode-wrap {
  position: relative;
  width: 100%;
}
.btn-edit-mode {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 5;
}
.btn-edit-mode a {
  display: inline-block !important;
  width: auto;
  padding: 1px 8px !important;
  color: #fff !important;
}
.shop-list-nav .btn-edit-mode,
.shop-product .btn-edit-mode {
  position: relative;
  width: auto;
}

/* ::: common ::: */
body.modal-open {
  padding: 0 !important;
}
.clear-after:after {
  content: "";
  display: block;
  clear: both;
}
p,
li {
  word-break: keep-all;
}
ul {
  margin: 0;
  padding: 0;
}
.transition-03 {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.color-primary {
  color: var(--color-primary);
}
/* shop badge */
.shop-rgba-dark {
  background: #79616f !important;
}
.shop-rgba-yellow {
  background: #eab595 !important;
}
.shop-rgba-red {
  background: #d87f81 !important;
}
.shop-rgba-green {
  background: #7e9680 !important;
}
.shop-rgba-purple {
  background: #ae6378 !important;
}

/* 버튼 스타일 */
.btn-more a {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  padding: 8px 25px;
  color: #333;
  border-width: 0 2px 2px 2px;
  border-style: solid;
  border-color: #333;
}
.btn-more a:before,
.btn-more a:after {
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  background: #333;
}
.btn-more a:before {
  left: 0;
  width: 7%;
}
.btn-more a:after {
  right: 0;
  width: 83%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-more a:hover:after {
  width: 100%;
}
.btn-more.btn-wht a {
  border-color: #fff;
  color: #fff;
}
.btn-more.btn-wht a:before,
.btn-more.btn-wht a:after {
  background: #fff;
}
@media (max-width: 767px) {
  .btn-more a {
    padding: 5px 20px;
    font-size: 11px;
  }
}

/* 마우스오버 애니메이션 */
.hvr-act > a {
  display: block;
  position: relative;
}
.hvr-act > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
.hvr-act > a:hover:after {
  animation: hovereffect 1s;
}
@keyframes hovereffect {
  0% {
    opacity: 0;
    width: 80%;
    height: 80%;
  }
  50% {
    opacity: 0.2;
    width: 100%;
    height: 100%;
  }
  100% {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
}

/* shop skin custom */
.shop-list-sort-wrap {
  overflow: hidden;
}
.shop-list .shop-list-navcate-wrap {
  margin-bottom: 0;
}

.wrapper {
  position: relative;
  overflow: hidden;
  background-color: #eee;
}
.wrapper-inner {
  background-color: #fff;
}
.wrapper-inner.wrapper-boxed {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

/* :: header :: */
/* top-bar */
.header .top-bar .top-bar-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.header .top-bar .top-bar-left li {
  position: relative;
  padding: 0 8px;
}
.header .top-bar .top-bar-left li:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  margin-top: -5px;
  background-color: #ddd;
}
.header .top-bar .top-bar-left li:last-child:before {
  display: none;
}
.header .top-bar .top-bar-left li a {
  display: block;
  line-height: 20px;
  font-size: 11px;
  color: #707070;
}
.header .top-bar .top-bar-left li a span {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  margin-left: 3px;
  font-size: 9px;
  text-align: center;
  color: #fff;
  background-color: var(--color-p-light);
  border-radius: 5px !important;
}
@media (min-width: 992px) {
  .header .top-bar .top-bar-left {
    justify-content: flex-start;
    margin: 11px 0;
  }
  .header .top-bar .top-bar-left li a {
    font-size: 11px;
  }
}
.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 6px 0;
}
.top-bar-right form .input input[type="text"] {
  width: 180px;
  padding: 3px 35px 4px 10px;
  color: #fff;
  font-size: 11px;
  border: 0 none;
  background-color: var(--color-p-light);
  border-radius: 2px !important;
  transition: 0.3s;
}
.top-bar-right form .input input[type="text"]:focus {
  border: 0 none !important;
  background-color: var(--color-primary);
}
.top-bar-right form .input input[type="text"]::placeholder {
  color: #fff;
}
.top-bar-right form .input .button {
  padding: 0 10px;
  border: 0 none;
  background: none;
}
.top-bar-right form .input .button input[type="submit"] {
  height: 28px;
  border: 0 none;
}
.top-bar-right form .input .button i {
  font-size: 14px;
  color: #fff;
}
.top-bar-right .btn-icon {
  margin-left: 5px;
}
.top-bar-right .btn-icon a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: var(--color-p-light);
  border-radius: 2px !important;
  transition: 0.3s;
}
.top-bar-right .btn-icon a:hover {
  background-color: var(--color-primary);
}

/* :: header-title :: */
.header .header-title {
   padding: 15px 0;
  border-top: 1px solid #ddd;
}
.header .header-title .f-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .header .header-title .f-container {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .header .header-title {
   /* padding: 20px 0; */
  }
  .header .header-title .f-container {
    justify-content: space-between;
  }
}

/* header banner */
@media (max-width: 991px) {
  .header-title .header-banner {
    display: none;
  }
}

/* logo header */
.header .header-title .logo-header {
  display: flex;
  align-items: center;
  position: relative;
}
.header .header-title .logo-header h1 {
  margin: 0;
}
.header .header-title .logo-header h1 a {
  display: flex;
  justify-content: center;
}
.header .header-title .logo-header h1 a img {
  display: block;
  xmax-height: 45px;
}
@media (max-width: 991px) {
  .header .header-title .logo-header h1 a img {
    xwidth: 80%;
	max-height: 50px;
  }
}

@media (min-width: 992px) {
  .header .header-title .logo-header {
    height: 100px;
  }
  .header .header-title .logo-header h1 a img {
    max-height: 100px;
  }
}

/* :: gnb 네비게이션 :: */
/* 992px 미만 메뉴 - 모바일 */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  .header-nav {
    position: relative;
    top: 100%;
    left: 0 !important;
    bottom: 0;
    width: 100%;
    overflow-y: unset;
    z-index: 99;
    padding-bottom: 0px;
    background: #fff;
    transition: 0.3s ease;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
  }
  .header-nav.mega-menu {
    padding-right: unset;
    background: rgba(255, 255, 255, 0.75);
    overflow: unset;
    border: 0;
  }
  .header-nav.pc-only {
    display: none;
  }
  .header-nav.active {
    top: 0;
  }
  .header-nav .navbar {
    min-height: auto;
    width: 100%;
    height: auto;
    padding: 0.75rem;
    margin-bottom: 0px;
    overflow-x: auto;
    -ms-overflow-style: none; /* Edge */
    scrollbar-width: none; /* Firefox */
    border: 0;
  }
  .header-nav .navbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
  }
  .header-nav.mega-menu .navbar {
    height: fit-content;
    overflow: unset;
    padding: 0;
  }
  .header-nav .mega-menu-arrow {
    position: absolute;
    width: 5rem;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.9) 30%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .header-nav .mega-menu-arrow svg {
    stroke-width: 1;
    stroke-linecap: round;
    fill: none;
    stroke: black;
    transition: all 0.3s ease;
  }
  .header-nav .mega-menu-arrow.open svg {
    transform: rotate(180deg);
  }
  .header-nav .mega-menu-arrow svg path {
    vector-effect: non-scaling-stroke;
  }
  .header-nav .navbar-nav::before,
  .header-nav .navbar-nav::after {
    display: none;
  }
  .header-nav .navbar h5 {
    margin: 0;
    padding: 0 15px;
    line-height: 40px;
    color: #fff;
    background: #333;
    display: none;
  }
  /* Nav 1차 */
  .header-nav .navbar-nav {
    position: relative;
    margin: 0;
    float: unset;
    display: flex;
    gap: 1rem;
    width: fit-content;
  }
  .header-nav.mega-menu .navbar-nav {
    display: grid;
    visibility: hidden;
    gap: 0;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    transition: all 0.3s ease-in-out, max-height 1s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .header-nav.mega-menu .navbar-nav.open {
    visibility: visible;
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
  }

  /* 모바일 상단 메뉴 출력 */
  .header-nav .navbar-nav > li {
    float: unset;
    width: 100%;
    flex: 1;
    padding: 0.75rem;
    &.dummy {
      width: 5rem;
    }
  }
  .header-nav.mega-menu .navbar-nav > li {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    &:nth-child(4n + 1) {
      border-left: 0;
    }
  }
  .header-nav .navbar-nav > li > a {
    padding: 0;
    font-size: 10px;
    color: #000;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    display: block;
  }
  .header-nav .navbar-nav > li > a > .nav-cate-icon {
    width: 20px;
    text-align: center;
  }
  .header-nav .navbar-nav > li a {
    border-bottom: none;
    border-bottom: 0px solid #e5e5e5;
  }
  .header-nav .navbar-nav > li a:hover {
    border-bottom: 0px solid #e5e5e5;
  }
  /* nav 2차 */
  .header-nav .navbar-nav > .dropdown > .cate-dropdown-open {
    position: absolute;
    top: 0;
    right: 0;
    width: 0px;
    height: 0px;
    line-height: 43px;
    margin: 0;
    padding: 0;
    text-align: center;
    border: 0;
    border-left: 0px solid #e5e5e5;
    border-bottom: 0px solid #e5e5e5;
  }
  .header-nav .navbar-nav > .dropdown > .cate-dropdown-open:before {
    content: "\f067";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    color: #b5b5b5;
    display: none;
  }
  .header-nav .navbar-nav > .dropdown.open > .cate-dropdown-open:before {
    content: "\f068";
    font-family: "Font Awesome\ 5 Free";
    font-weight: 900;
    color: #ff4948;
  }
  /* Nav 3차 */
  .header-nav .navbar-nav .dropdown > .dropdown-menu {
    border: 0;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    position: static;
    box-shadow: none;
    background-color: transparent;
  }
  .header-nav .navbar-nav > .dropdown .dropdown-menu {
    border: 0;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    background-color: transparent;
  }
  .header-nav .navbar-nav > .dropdown.open .dropdown-menu {
    display: block !important;
  }
  .header-nav .navbar-nav > .dropdown .dropdown-menu .submenu-marker {
    display: inline-block;
    width: 7px;
    height: 9px;
    border-left: 1px dotted #959595;
    border-bottom: 1px dotted #959595;
    margin-right: 8px;
  }
  .header-nav .navbar-nav > .dropdown .dropdown-menu .dropdown-submenu a {
    position: relative;
    color: #757575;
    line-height: 38px;
    padding: 0 15px;
    background: #fff;
    font-size: 12px;
  }
  .header-nav
    .navbar-nav
    > .dropdown
    .dropdown-menu
    .dropdown-submenu.active
    > a {
    font-weight: 700;
  }
  .header-nav
    .navbar-nav
    > .dropdown
    .dropdown-menu
    .dropdown-submenu
    a
    .sub-caret {
    position: absolute;
    top: 12px;
    right: 5px;
  }
  .header-nav .navbar-nav > .dropdown > .dropdown-menu > .dropdown-submenu > a {
    color: #656565;
    padding: 0 15px;
    background: #fafafa;
  }
  .header-nav
    .navbar-nav
    > .dropdown
    > .dropdown-menu
    > .dropdown-submenu.active
    > a {
    color: #ff4848;
  }
  .header-nav
    .navbar-nav
    > .dropdown
    > .dropdown-menu
    > .dropdown-submenu
    > .dropdown-menu
    > .dropdown-submenu
    > a {
    padding: 0 15px 0 30px;
    background: #fafafa;
  }
}
#mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  background: white;
  width: 75vw;
  height: 100%;
  top: 0;
  transform: translateX(-100%);
  flex-direction: column;
  gap: 1rem;
  z-index: 99999;
  transition: all 0.5s ease-in-out;
  padding: 2rem 1rem;
  max-width: 36rem;
}
#mobile-nav * {
  list-style: none;
}
#mobile-nav.active {
  transform: translateX(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
#mobile-nav > li {
  padding: 0 1rem;
}
#mobile-nav .is-dropdown-menu {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 2rem;
}
#mobile-nav > li > a {
  font-weight: 700;
}
#mobile-nav .is-dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2px;
  background: black;
}
#mobile-nav .is-dropdown-menu > * {
  font-size: 0.875em;
}
#mobile-nav .is-dropdown-menu .dropdown-menu1 {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
#mobile-nav .is-dropdown-menu .dropdown-toggle {
  display: none;
}
#mobile-nav .mobile-login {
  width: 100%;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#mobile-nav .mobile-login .default-button {
  border: 1px solid #666;
  color: #666;
  text-align: center;
}
#mobile-nav .mobile-login .solid-button {
  border: 1px solid #333;
  background: #333;
  text-align: center;
}
#mobile-nav .mobile-login .solid-button a {
  color: white;
  display: block;
  padding: 1rem;
}
#mobile-nav .mobile-login .default-button a {
  color: #333;
  display: block;
  padding: 1rem;
}
#mobile-nav .welcome-message {
  padding: 1rem;
}
#mobile-nav .close-button {
  position: absolute;
  right: -48px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  pointer-events: none;
}
#mobile-nav.active .close-button {
  opacity: 1;
  transition: 0.3s all 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: unset;
}

/* 992px 이상 메뉴 - pc */
@media (min-width: 992px) {
  .header-nav {
    position: relative;
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
  .header-nav.mobile-only {
    display: none;
  }
  .header-nav.fixed-trans {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .wrapper-boxed .header-nav.fixed-trans {
    max-width: 1400px;
  }
  .header-sticky-space.fixed-trans {
    height: 52px;
  }
  .header-nav .navbar {
    margin: 0 auto;
    padding: 0;
    min-height: inherit;
  }
  .header-nav h5 {
    display: none;
  }
  /* 메인메뉴 */
  .header-nav .navbar-nav {
    display: flex;
    justify-content: center;
    float: none;
  }
  .header-nav .navbar-nav > li {
    padding: 0;
  }
  .header-nav .navbar-nav > li > a {
    position: relative;
    padding: 0 20px;
    line-height: 48px;
    font-size: 12px;
    color: #333;
  }
  .header-nav .navbar-nav > li > a:hover,
  .header-nav .navbar-nav > li > a:focus,
  .header-nav .navbar-nav > li.open > a {
    color: var(--color-primary);
    background: none;
  }
  .header-nav .navbar-nav > li > a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: #ddd;
  }
  .header-nav .navbar-nav > li:last-child > a:after {
    display: none;
  }
  .header-nav .navbar-nav > li > ul {
    display: block;
    left: -1px;
    opacity: 0;
    visibility: hidden;
    min-width: 200px;
    padding: 0;
    border: 1px solid var(--color-primary);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .header-nav .navbar-nav > li.open > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .header-nav .navbar-nav > li > ul > li {
    position: relative;
    border-bottom: 1px solid #ddd;
  }
  .header-nav .navbar-nav > li > ul > li:last-child {
    border-bottom: 0 none;
  }
  .header-nav .navbar-nav > li > ul > li > a {
    padding: 12px 30px;
    font-weight: 400;
    font-size: 11px;
    color: #6b7a7f;
    background: none;
  }
  .header-nav .navbar-nav > li > ul > li.active > a {
    font-weight: 400;
  }
  .header-nav .navbar-nav > li > ul > li:last-child > a {
    border: 0 none;
  }
  .header-nav .navbar-nav > li > ul > li > a:hover,
  .header-nav .navbar-nav > li > ul > li.active > a {
    color: #293844;
    background: none;
  }
  .header-nav .navbar-nav > li > ul > li > a .sub-caret {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #909090;
  }
  .header-nav .navbar-nav > li > ul > li > ul {
    display: block !important;
    position: relative;
    top: inherit;
    left: inherit;
    float: none;
    min-width: 100%;
    padding: 0 30px 15px;
    margin: -5px 0 0;
    border: 0 none;
    box-shadow: 0 0 0 #fff;
  }
  .header-nav .navbar-nav > li > ul > li > ul > li > a {
    display: block;
    padding: 2px 2px 2px 10px;
    font-weight: 300;
    font-size: 13px;
    color: #6b7a7f;
    border-left: 1px solid #ddd;
    background: none;
  }
  .header-nav .navbar-nav > li > ul > li > ul > li.active > a {
    font-weight: 400;
    color: #333;
  }
  .header-nav .navbar-nav > li > ul > li > ul > li:last-child > a {
    border-bottom: 0 none;
  }
  .header-nav .navbar-nav > li > ul > li > ul > li > a:hover,
  .header-nav .navbar-nav > li > ul > li > ul > li.active > a {
    background: none;
    color: #293844;
  }
}
@media (min-width: 1200px) {
  .header-nav .navbar-nav > li > a {
    padding: 0 30px;
  }
}

/* 고정 메뉴 */
.fix-wrap {
  display: block;
  position: fixed;
  z-index: 9;
}
.fix-navi {
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fix-navi ul li a em {
  display: block;
  position: absolute;
  left: 55%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 9px;
  text-align: center;
  font-style: normal;
  color: #fff;
  background: var(--color-p-light);
  border-radius: 50% !important;
}
/* 고정 메뉴 - pc 좌측 배너 / 우측 네비 */
@media (min-width: 992px) {
  .fix-wrap {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  /* 네비 */
  .fix-navi ul li {
    border-bottom: 1px solid #ddd;
  }
  .fix-navi ul li a {
    display: block;
    position: relative;
    width: 49px;
    height: 49px;
    line-height: 49px;
    text-align: center;
    transition: 0.3s;
  }
  .fix-navi ul li a:hover {
    background: #eee;
  }
  .fix-navi ul li a img {
    max-width: 25px;
    height: auto;
  }
  .fix-navi ul li a em {
    top: 10px;
  }
  .fix-navi ul li a span {
    display: none;
  }
  .fix-navi ul li.go-to-top,
  .fix-navi ul li.go-to-bottom {
    border: 0 none;
  }
  .fix-navi ul li.go-to-top a,
  .fix-navi ul li.go-to-bottom a {
    height: 35px;
    line-height: 35px;
  }
  .fix-navi ul li.go-to-top a {
    background: var(--color-p-light);
  }
  .fix-navi ul li.go-to-bottom a {
    background: var(--color-primary);
  }
  .fix-navi ul li.go-to-top a:hover,
  .fix-navi ul li.go-to-bottom a:hover {
    background: var(--color-p-dark);
  }
  .fix-navi ul li.go-to-top a i,
  .fix-navi ul li.go-to-bottom a i {
    font-size: 20px;
    color: #fff;
  }
  .fix-navi ul li.go-to-top a span,
  .fix-navi ul li.go-to-bottom a span {
    margin-top: 0;
    color: #fff;
  }
}
/* 고정 메뉴 - 모바일 하단 */
@media (max-width: 991px) {
  .fix-wrap {
    top: inherit;
    bottom: 0;
    z-index: 99;
    width: 100%;
  }
  .fix-wrap .container {
    width: 100%;
    padding: 0;
  }
  .fix-navi {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .fix-navi {
    padding: 5.4px 0 4px;
  }
  .fix-navi h3 {
    display: none;
  }
  .fix-navi ul {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .fix-navi ul li {
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
    width: 25%;
    text-align: center;
  }
  .fix-navi ul li a img {
    max-width: 25px;
  }
  .fix-navi ul li a span {
    display: block;
    padding-top: 3px;
    font-size: 11px;
    font-weight: 400;
    color: #000;
  }
  .fix-navi ul li a em {
    top: 0;
  }
}

/* 최근본상품  */
.latest-goods {
  position: fixed;
  z-index: 5;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.latest-goods.active {
  right: 0;
}
@media (min-width: 992px) {
  .latest-goods.active {
    right: 50px;
  }
}

/* 모달창 */
.shop-contents-modal .modal-content {
  width: 100%;
  height: 100vh;
  border: 0 none;
}
.shop-contents-modal .modal-content button.btn-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 20px;
  background: none;
  border: 0 none;
}
.shop-contents-modal .modal-content .modal-body {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  margin: 0 auto;
}
/* 검색 모달 */
.search-contents-modal .modal-content .modal-body input[type="text"] {
  width: 100%;
  height: 60px;
  padding: 6px 12px;
  font-size: 20px;
  border: 0 none !important;
  border-bottom: 1px solid #ddd !important;
  color: #434a54;
  box-shadow: 0 0 0 #fff;
}
.search-contents-modal .modal-content .modal-body input[type="text"]:focus {
  border-bottom: 1px solid #909090 !important;
}
.search-contents-modal .modal-content .modal-body .button {
  position: absolute;
  right: 1px;
  top: 0;
  padding: 0 20px;
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  background: none;
  border: 0 none;
}
.search-contents-modal .modal-content .modal-body .button input {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  font-size: 12px;
  line-height: 40px;
  opacity: 0;
  cursor: pointer;
}

/* :: basic body :: */
.basic-body.sub-basic-body {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .basic-body.sub-basic-body {
    padding-top: 20px;
  }
}
/* Page Title */
.page-title-wrap {
  position: relative;
  padding: 15px 5px;
  margin: 0 0 15px;
  background: #f8f8f8;
  border: 1px solid #eee;
}
.page-title-wrap h2 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
}
.page-title-wrap .breadcrumb {
  margin: 3px 0 0;
  padding: 0;
  background: none;
  font-size: 11px;
  color: #656565;
}
.page-title-wrap .breadcrumb li {
  color: #656565;
}
.page-title-wrap .breadcrumb li a {
  color: #656565;
}
@media (min-width: 992px) {
  .page-title-wrap {
    padding: 15px;
  }
  .page-title-wrap h2 {
    font-size: 17px;
  }
}

/* :: footer :: */
.footer {
  margin-bottom: 43px;
}
.footer-top .f-container {
  padding: 0;
}
.footer-top .footer-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-top .footer-sns li {
  margin: 0 3px;
}
.footer-top .footer-sns li a {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background-color: var(--color-p-dark);
  transition: 0.3s;
  border-radius: 50% !important;
}
.footer-top .footer-sns li:nth-child(1) a {
  color: #fff;
  background: #00c73c;
}
.footer-top .footer-sns li:nth-child(1) a:before {
  content: "N";
  font-family: Arial;
  font-weight: 900;
}
.footer-top .footer-sns li:nth-child(2) a {
  color: #fff;
  font-size: 17px;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.footer-top .footer-sns li:nth-child(3) a {
  color: #fff;
  background: #c4302b;
}
.footer-top .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.footer-top .footer-menu li {
  margin: 0 3px;
}
.footer-top .footer-menu li a {
  font-size: 11px;
  color: #707070;
  transition: 0.3s;
}

.footer-mid .footer-box {
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.footer-mid .footer-box h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}
.footer-mid .footer-customer .footer-tel {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #353535;
}
.footer-mid .footer-customer .footer-tel small {
  display: block;
  font-size: 11px;
  font-weight: 400;
}
.footer-mid .footer-customer .footer-email {
  margin: 5px 0 10px;
  font-size: 12px;
}
.footer-mid .footer-customer .footer-email a {
  color: var(--color-primary);
}
.footer-mid .footer-customer .footer-cc-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-mid .footer-customer .footer-cc-link li {
  flex: 1 1 1;
  width: 100%;
  margin-bottom: 5px;
}
.footer-mid .footer-customer .footer-cc-link li a {
  display: block;
  padding: 5px;
  font-size: 11px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  transition: 0.3s;
}

.footer-board-btn {
  display: block;
  border: 1px solid #000;
  padding: 5px;
  width: 60%;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  margin: 0 20% 6px;
}

/* 하단 카카오 버튼 추가 */
.footer-mid .footer-customer .footer-cc2-link {
  padding: 0 5px;
}

.footer-mid .footer-customer .footer-cc2-link .kakao {
  width: 60%;
  background-color: #000;
  margin-bottom: 10px;
}

.footer-mid .footer-customer .footer-cc2-link .kakao a {
  padding: 5px;
  color: #fff;
  font-size: 12px;
  display: block;
}

.footer-mid .footer-bank ul {
  margin-top: 15px;
}
.footer-mid .footer-bank ul li {
  color: #707070;
}
.footer-mid .footer-bank ul li strong {
  color: #000;
}
.footer-mid .footer-bank h6 {
  margin: 5px 0 0;
  color: #707070;
}
.footer-mid .footer-bank h6 strong {
  color: var(--color-primary);
}
.footer-mid .footer-info {
  position: relative;
  border-bottom: 0 none;
}
.footer-mid .footer-info address {
  margin: 15px 0 5px;
  line-height: 20px;
  font-size: 11px;
  color: #707070;
}
.footer-mid .footer-info address span {
  margin: 0 3px;
}

.footer-btm .copyright {
  padding: 10px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 11px;
}
@media (min-width: 570px) and (max-width: 991px) {
  .footer-top .f-container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .footer {
    margin-bottom: 0;
  }
  .footer-top {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .footer-top .ord-1 {
    order: -1;
  }
  .footer-top .footer-sns {
    justify-content: flex-end;
    margin-top: 10px;
  }
  .footer-top .footer-sns li a:hover {
    background-color: var(--color-primary);
  }
  .footer-top .footer-menu {
    justify-content: flex-start;
    padding-top: 12px;
    border: 0 none;
    background: none;
  }
  .footer-top .footer-menu li a {
    font-size: 13px;
  }
  .footer-top .footer-menu li a:hover {
    color: var(--color-primary);
  }

  .footer-mid .footer-box {
    padding: 30px 0 10px 0;
    border-bottom: 0 none;
  }
  .footer-customer {
    padding: 10px 0 20px 0;
  }
  .footer-mid .footer-customer .footer-cc-link {
    justify-content: center;
  }
  .footer-mid .footer-customer .footer-cc-link li {
    flex: 1 1 1;
    max-width: 70%;
  }
  .footer-mid .footer-customer .footer-cc-link li a:hover {
    color: #fff;
    background-color: var(--color-primary);
  }
  .footer-mid .footer-bank ul li {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 300;
  }
  .footer-mid .footer-info address {
    font-size: 13px;
    font-weight: 300;
  }
  .footer-mid .footer-info address span.add {
    display: block;
    font-size: 15px;
  }
}

/* back to top */
@media (min-width: 992px) {
  .bw-top-btm {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .bw-top-btm {
    display: block;
    z-index: 99;
    position: fixed;
    bottom: 85px;
    right: 10px;
    transition: 0.3s;
  }
  .bw-top-btm.show {
    bottom: -100px;
  }
  .bw-top-btm ul {
    list-style: none;
  }
  .bw-top-btm ul li.go-to-top {
    margin-bottom: 5px;
  }
  .bw-top-btm ul li a {
    display: block;
    position: relative;
    padding: 0 5px;
    width: 35px;
    line-height: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 2px !important;
  }
  .bw-top-btm ul li.go-to-top a {
    background: var(--color-p-light);
  }
  .bw-top-btm ul li.go-to-bottom a {
    background: var(--color-primary);
  }
  .bw-top-btm ul li.go-to-top a i,
  .bw-top-btm ul li.go-to-bottom a i {
    font-size: 15px;
    color: #fff;
  }
}

/* :: index :: */
.section {
  margin: 20px 0;
}
@media (min-width: 992px) {
  .section {
    margin: 40px 0;
  }
}
/* 페이지 로더 */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
}
.page-loader .logo-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-loader .logo-loader img {
  max-height: 40px;
  width: auto;
}

/* 샵 탭 네비 */
.shop-tabs-nav {
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 30px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
}
.shop-tabs-nav li {
  position: relative;
  padding: 0 5px;
}
.shop-tabs-nav li a {
  display: block;
  position: relative;
  line-height: 20px;
  font-size: 13px;
  color: #bbb;
  transition: 0.3s;
}
.shop-tabs-nav li.active a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 3px;
  background: var(--color-p-light);
}
.shop-tabs-nav li.active a {
  color: var(--color-p-dark);
}
@media (min-width: 992px) {
  .shop-tabs-nav li {
    padding: 0 15px;
  }
  .shop-tabs-nav li a {
    font-size: 15px;
    transition: 0.3s;
  }
  .shop-tabs-nav li a:hover {
    color: #555;
  }
}

/* shop title */
.shop-main-title {
  margin-bottom: 15px;
  text-align: center;
}
.shop-main-title h2 {
  margin: 0 0 4px;
  font-size: 16px;
}
.shop-main-title p {
  margin: 0;
  font-size: 13px;
  color: #909090;
}
@media (min-width: 992px) {
  .shop-main-title {
    margin-bottom: 30px;
  }
  .shop-main-title h2 {
    margin: 0 0 7px;
    font-size: 21px;
  }
  .shop-main-title p {
    font-size: 15px;
  }
}

/* 사용자후기 */
.review-slider-inner {
  margin: 0 -5px;
}
.review-slider-inner .item {
  padding: 0 5px;
}
.review-slider-inner .item-in {
  position: relative;
}
.review-slider-inner .item-image a {
  display: block;
}
.review-slider-inner .item-image a img {
  display: block;
  max-width: 100%;
  height: auto;
}
.review-slider-inner .item-content {
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.review-slider-inner .item-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: #f8f8f8;
  border-radius: 0 0 50% 50% !important;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.review-slider-inner .item-in:hover .item-content:before {
  height: 190%;
}
.review-slider-inner .item-content-in {
  position: relative;
  z-index: 1;
}
.review-slider-inner .item-content .product-info {
  display: block;
  line-height: 11px;
  font-size: 11px;
  color: var(--color-primary);
}
.review-slider-inner .item-content h5 {
  margin: 10px 0 5px;
}
.review-slider-inner .item-content h5 a {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.review-slider-inner .item-content h5 a:hover {
  text-decoration: underline;
}
.review-slider-inner .item-content p {
  overflow: hidden;
  height: 20px;
  line-height: 20px;
  color: #707070;
}
/* 컨트롤 좌우 */
.review-slider-inner .slick-next,
.review-slider-inner .slick-prev {
  top: inherit;
  bottom: -53px;
  width: 30px;
  height: 30px;
  background: none;
  border: 2px solid #333;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.review-slider-inner .slick-next {
  right: 5px;
  z-index: 1;
}
.review-slider-inner .slick-prev {
  left: 5px;
  z-index: 1;
}
.review-slider-inner .slick-next:hover,
.review-slider-inner .slick-prev:hover {
  background: #333;
}
.review-slider-inner .slick-next:before,
.review-slider-inner .slick-prev:before {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}
.review-slider-inner .slick-next:before {
  right: 10px;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
}
.review-slider-inner .slick-prev:before {
  left: 10px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
}
.review-slider-inner .slick-next:hover:before,
.review-slider-inner .slick-prev:hover:before {
  border-color: #fff;
}




.one-slider-header {
    position: relative;
	/*margin:10px 0;*/
	background:#000;
	height:30px;
    overflow: hidden;
}
.one-slider-inner {
    position: relative;
    overflow: hidden;
    display: none
}
.one-slider-header .one-slider-list {
    margin-bottom: 0
}
.one-slider-header .item {
    position: relative;
    outline: none;
    overflow: hidden;
}
.one-slider-header .item > a {
    display: block;
    width: 100%;
    height: 100%;
}
/* 이미지 */
.one-slider-header .one-slider-image {
    position: relative;
}
.one-slider-header .one-slider-image span {
    position: relative; display:block; text-align:center; font-size:14px; font-weight:bold; color:#fff; line-height:30px; width:100%;
}
	.one-slider-header .one-slider-image span i { font-size:16px; }
/* 컨트롤 점 - 숫자 */
.one-slider-header .slick-dots {
    bottom: 20px;
    padding: 0 100px;
    text-align: center;
	display:none !important;
}
.one-slider-header .slick-dots li {
    display: inline-block;
    margin: 0 1px;
    width: 30px;
    height: 3px;
    background: var(--color-p-light);
}
.one-slider-header .slick-dots li button:before {
    content: "";
    width: 100%;
    height: 3px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear
}
.one-slider-header .slick-dots li.slick-active button:before {
    background: var(--color-p-dark)
}
/* 컨트롤 좌우 */
.one-slider-header .slick-next,
.one-slider-header .slick-prev {
	display:none !important;
    opacity: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,.6);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 50% !important;
}
.one-slider-header .slick-next:hover,
.one-slider-header .slick-prev:hover {
    background: rgba(0,0,0,.8);
}
.one-slider-header .slick-next {
    right: 15px;
    z-index: 1
}
.one-slider-header .slick-prev {
    left: 15px;
    z-index: 1
}
.one-slider-header :hover .slick-next {
    right: 25px;
    opacity: 1;
}
.one-slider-header :hover .slick-prev {
    left: 25px;
    opacity: 1;
}
.one-slider-header .slick-next:before,
.one-slider-header .slick-prev:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.3s linear;
}
.one-slider-header .slick-next:before {
    right: 15px;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee
}
.one-slider-header .slick-prev:before {
    left: 15px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee
}

@media(max-width:767px) {
	.one-slider-header {
		position: sticky;
		top:0;
		z-index:100;
		/*margin:10px 0;*/
		background:#000;
		height:30px;
		overflow: hidden;
	}
}
