@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap);
@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes horizontal-shaking {
  0% { transform: translateX(0) }
  40% { transform: translateX(0px) }
  43% { transform: translateX(5px) }
  46% { transform: translateX(-5px) }
  49% { transform: translateX(5px) }
  52% { transform: translateX(-5px) }
  55% { transform: translateX(5px) }
  58% { transform: translateX(-5px) }
  61% { transform: translateX(0px) }
  100% { transform: translateX(0) }
 }

@keyframes rattling {
  0% { transform: rotate(0) }
  40% { transform: rotate(0) }
  43% { transform: rotate(10deg) }
  46% { transform: rotate(-10deg) }
  49% { transform: rotate(10deg) }
  52% { transform: rotate(-10deg) }
  55% { transform: rotate(10deg) }
  58% { transform: rotate(-10deg) }
  61% { transform: rotate(0) }
  100% { transform: rotate(0) }
 }

 @keyframes hide-and-show {
  0% { opacity: 1;}
  50% { opacity: 1;}
  50.1% { opacity: 0;}
  100% { opacity: 0;}
 }

 @keyframes show-and-hide {
  0% { opacity: 0;}
  50% { opacity: 0;}
  50.1% { opacity: 1;}
  100% { opacity: 1;}
 }

.fade-in {
  animation: fade-in 1s ease-in;
}

.fade-out { 
  animation: fade-out 1s ease-in;
}

.shake {
  animation: 5s linear 0s infinite horizontal-shaking;
}

.rattle {
  animation: 5s linear 0s infinite rattling;
}

.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.hideUp {
transform: translateY(-1000px);
}

.hide-and-show {
  animation: 3s linear 0s infinite hide-and-show;
}

.show-and-hide {
  animation: 3s linear 0s infinite show-and-hide;
}



/* 예시파일 */

:root {
  --layout-color: #fff;
}


.l-panel {
  box-shadow: none;
  margin-bottom: 20px;
}

.product-section.best {
  margin-top: 30px;
}

.best .product-section__header {
  background-color: #f6f6f6;
  padding: 30px;
}

.promotion .product-section__header {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
}

.product-section__title {
  padding: 2px 10px 0px 10px;
}

.promotion .product-section__title_description {
  padding-top: 10px;
}

.product-section__main__more {
  flex-grow: 2;
  text-align: end;
  padding-top: 10px;
  margin-right: 10px;
}

.product-section__main__more img {
  margin-top: -4px;
  margin-left: 5px;
}

.product-section__more {
  margin: 0 auto;
  color: var(--point-color);
  border: 1px solid var(--point-color);
  width: 150px;
  padding: 10px;
  font-weight: 700;
  /* margin: 0px; */
  
}

.product-section__more .btn {
  border: none;
  width: 100px;
  background-color: var(--point-color);
  color: #fff;
  vertical-align: middle;
  padding: 10px 0;
  border-radius: 2em;
  
}

.product-section__header {
  padding: 10px;
  /* margin-bottom: 20px; */
}

.l-panel {
  border: none;
}

.l-panel .product-section__title {
  display: flex;
  justify-content: center;
  font-size: 1.5em;
  flex-direction: column;
}

.l-panel .product-section__title h2{
  font-size: 1.0em;
  font-weight: 800;
  color:#505050;
  width: min-content;
  padding: 0px;
}

.l-panel .product-section__title_description {
  text-align: left;
  font-size: 0.8em;
}

.thumb-item__img img {
  border: 1px solid #ddd;
  border-radius: 0.4rem;
}

.product-thumb-unit {
  margin-left: 2px;
}

.product-thumb-price-info {
  margin-top: 15px;
}

.product-thumb-price {
  color:#0366B4;
  letter-spacing: 0.01rem;
  font-weight: 600;
}

.product-thumb-price-info .discount-amt .product-thumb-price, 
.product-thumb-price-info .discount-amt .product-thumb-unit {
  vertical-align: bottom;
  font-weight: 500;
  color:#94B5DC;
  text-decoration: line-through;
  margin-top: 3px;
  font-size: 0.8em;
}

.product-thumb-price-info .discount-rate {
  margin-top: 5px;
  font-size: 0.8em;
  border-radius: 0.4rem;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  padding: 3px;
  width: 40px;
}

.main-category-icons {
  margin-top: 45px;
}

.main-category-icons ul {
  /* columns: 4; */
  /* gap: 0px; */
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;

}

.main-category-icons ul li {
  text-align: center;
  margin-bottom: 10px;
  width: 80px;
}


.main-category-icons ul .main-category-icons-img {
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

.main-category-icons ul .main-category-icons-img .icon {
  border-radius: 0.5rem;
  border: 0.05rem solid var(--gray-color);
  width: 60px;
  height: 60px;
}

.main-category-icons ul .main-category-icons-img img {
  
  border-radius: 0.5rem;
  border: 0.1rem solid #bbb;
  width: 60px;
  height: 60px;
}

.main-category-icons ul .main-category-icons-title {
  font-size: 0.7rem;
  font-weight: 600;
}

.main-boards {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 20px 60px 20px;
}

.main-boards-items {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  background-color: #f6f6f6;
  border: 1px solid #ddd;

}

.mid-banner {
  margin-top: 50px;
}

.mid-banner .banner-item {
  margin: 10px 20px;
}

.mid-banner .banner-item img{
  border-radius: 0.3em;
}

.main-gallery .category-products {
  width: 100%;
}

.main-gallery {
  margin-bottom: 40px;
}

.order_selector {
  margin: 30px 20px 15px 0px;
}

.order_selector_banner {
  margin : 16px auto auto 20px
}

.stickers {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.stickers .sticker {
  color: var(--whole-color);
  background-color: var(--point-color);
  padding: 5px 0px;
  width: 70px;
}

.product-section {
  margin-top: 30px;
}

.product-thumb-title {
  font-weight: 600;
  font-size: 1rem;
  text-overflow: inherit;
  white-space: inherit;
  line-height: 1.2em;
}

@media (min-width: 800px) {


  .product-section--slide .swiper-slide {
    width: 220px !important;
  }
  .product-section--slide .swiper {
    margin: 0;
  }

  :where(:where(.thumb-CART).PC) .thumb-item {
    width: calc(100% - 5px)
  }
  .main-gallery :where(.thumb-GALLERY,.thumb-CART,.thumb-SIMPLE_IMAGE) {
    transform: translateX(-2px);
    padding: 0px; 
   }

  .main-body {
    display: flex;
    gap: 10px;
    width: 1230px;
    margin: 0 auto;
  }

  .left-category {
    width: 245px;
  }

  .main-body-right {
    width: 975px;
  }


  .l-panel {
    margin-left: auto;
    margin-right: auto;;
    max-width: 100%;
  }
  .best {
    max-width: none;
  }
  .best .thumb-LIST,
  .best .thumb-GALLERY {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .main-category-icons {
    padding: 30px 0;
  }

  .best .product-section__header {
    padding: 50px;
  }

  .main-boards {
    margin-left: auto;
    margin-right: auto;;
    max-width: 100%;
  }

  .main-boards-items {
    flex: 1 1 20%;
  }
  
  .bottom-nav {
    display: none;
  }

  .mid-banner {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .mid-banner .banner-item {
    margin: 0;
  }
  
  .page .fab-top-down {
    right: calc(50% - 640px - 93px);
    bottom: 30px;
  }

  .order_selector {
    margin-right: 3px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
  }

  .l-panel .product-section__title {
    font-size: 1.5em;
  }
  
  .l-panel .product-section__title h2{
    font-size: 1.2em;
    font-weight: 800;
    color:#505050;
    width: min-content;
    padding: 0px;
  }

  .l-panel .product-section__title_description {
    font-size: 1em;
  }
  
}
.product-thumb-promotion-text {
  overflow: hidden;
  display: block;
  /* text-overflow: ellipsis; */
  /* white-space: nowrap; */
  word-wrap: break-word;
  padding-right: 5px;
  padding-top: 1px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #8A8A8A;
}

.individual_image_product_name {
  position: absolute;
  top: 70%;
  left: 12%;
  color: white;
  font-weight: bolder;
  font-size: small;
}

.product_image_discount {
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--main-color);
  /* font-weight: bolder; */
  /* font-size: small; */
  text-align: center;
  border-top-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
  color: #fff;
  padding: 5px;
}

.product-detail .individual_image_product_name {
  font-size: large;
}

.product-detail-categories {
  margin: 5px 10px 5px auto;
  text-align: right;

}

.product-content-inquiry,
.product-content-review {
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 800px) {
  .category-products {
    width: 1230px;
    margin: 50px auto 0px auto;
  }

  .product-detail .product-detail-top {
    display: flex;
    gap: 30px;
    width: 1230px;
    margin: 5px auto 0px auto;
  }

  .product-content {
    width: 1230px;
    margin: 20px auto 0px auto;
  }

  .product-detail .tabs,
  .total-sort {
    position: relative;
    top: auto;
    z-index: 3;
  }

  .product-detail .product-detail-top .product-detail-top-left {
    width: 600px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .product-detail .product-detail-top .product-detail-top-right {
    width: 600px;
  }

  .product-detail.purchase {
    position: relative;
    max-width: 600px;
    z-index: 1;
  }

  .purchase__opener {
    display: none;
  }

  
  .product-detail-categories {
    width: 1240px;
    margin: 5px auto 0px auto;
    text-align: right;

  }
}

.header .search-field {
  display: none;
}

.header_content .right_control {
  display: none;
}

.header .popular-search {
  display: none;;
}

.header__title {
  max-width: 250px;
  /* transform: translateX(-27px); */
}

.like_btn {
  position: relative;;
}

.like_btn__count {
  position: absolute;
  transform: translate(20px, -19px);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--point-color);
  border-radius: 50%;
  vertical-align: top;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

.header__like-btn {
  transform: translate(-65px, 0px);
}

.nav .swiper-wrapper  {
  font-weight: bolder;
  gap: 5px;
}

.nav__link {
  color: var(--point-color);
  border-radius: 1.2em;
  padding: 3px 10px;
  margin-left: 7px;
  color: var(--whole-color);
  background-color: var(--point-color);
  font-weight:bolder;
  padding: 2px 0px;
  width: 100px;
  text-align: center;
}

.nav .best,
.nav .new {
  
}

.nav__link.company {
  color: var(--whole-color);
  background-color: var(--point-color-secondary);
  /* width: 71px; */
}

.float_recent_keyword_background {
  position: absolute;
  width: 100%;
  height: 1000px;
  top: 0px;
  left: 0px;
  z-index: 10;
}

.float_recent_keyword {
  position: absolute;
  width: 300px;
  background-color: #fff;
  margin: 0 auto;
  left: calc(50% - 175px);
  top: 90px;
  z-index: 11;
}

.back-btn-area {
  display: flex;
  gap: 15px;
}

.back-btn-area .header__left-btn {
  position: relative;
  transform: none;
}

.header__cart-btn, .header__cancel-btn {
  position: relative;
  transform: none;
  right: 10px;
}

.header__like-btn {
  width: 60px;
  transform: none;
}

.header__left-btn {
  transform: none;
  position: relative;
}


.home_image a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hamburger-menu .left_bottom_title {
  transform: translateY(-5px);
}

.left_bottom_title {
  font-size: 0.8em;
}

.nav {
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  margin-top: 10px;
}



@media (min-width: 800px) {
  .header {
    position: relative;
    top: 0px;
    margin-top: 50px;
    height: 122px;
    /* justify-content: left; */
  }
  .nav {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  
  .nav .swiper-wrapper  {
    font-weight: bolder;
    gap: 5px;
  }
  .header_content {
    display: flex;
    width: 1230px;
  }
  .header__title {
    width: 300px;
    transform: none;
    position: relative;
    /* align-content: center; */
    margin-left: 0px;
    margin-right: 0px;
  }
  .header_content .right_control {
    width: 300px;
    margin-top: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
  }

  .header_content .right_control .right_control_left{
    width: 50px;
    margin-top: 3px;
  }

  .header_content .right_control .right_control_right{
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .header_content .right_control .right_control_right_up{
    display: flex;
    justify-content: center;
  }

  .header_nav {
    display: flex;
    justify-content: center;
    position: sticky;
    position: -webkit-sticky;
    top: 50px;
    z-index: 4;
    border-top: 3px solid var(--point-color);
    border-bottom: 0.01rem solid var(--light-gray-border-color);
    background-color: #F7F8F8;
    margin-bottom: 35px;
  }

  .header_second_row {
    width: 1230px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .header_second_row {
    
  }
  
  .header__left-btn {
    position: relative;
    transform: none;
  }
  .header .search-field-wrap {
    width: 400px;
    margin: 0 auto;
    z-index: 11;
  }
  .header .popular-search {
    display: flex;
    justify-content: center;;
    width: 400px;
    gap: 5px;
    text-align: center;
    margin-top: 8px;
    font-weight: 500;
  }

  .header .popular-search .popular-search-title {
    color: red;
    margin-right: 2px;
  }

  .header .search-field {
    width: 400px;
    display: flex;
    margin: 0 auto;
    z-index: 11;
  }
  .header .text-field {
    border: none;
  }
  .header .search-wrapper {
    margin: 0 auto;
  }
  .header .best-keyword {
    font-size: smaller;
    padding: 8px 0 0 15px;
  }
  .header .search-field__input input {
    width: 400px;
    height: 44px;
    padding: 0 50px 0 30px;
    border: 1px solid var(--main-color);
    border-radius: 28px;
    font-size: 15px;
  }
  .header .search-field__clear-btn {
    display: none;
  }
  .header .search-field__submit-btn {
    transform: translateX(-50px);
  }

  .header__left-btn {
    top: 0px;
    left: 0px;
    /* border: 1px solid var(--default-color); */
  }

  .category-menu {
    width: 1230px;
    margin: 0 auto;
  }

  .header_second_right {
    width: 255px;
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .header_second_left {
    width: 255px;
    padding: 5px 0;
  }

  .header_second_row .header_second_left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }

  .header_second_row .header_second_left .home_image{
    transform: translateY(-2px);
  }
  
  .nav__link.company {
    width: 79px;
    height: 30px;
    font-size: 16px;
    margin-right: 100px;
  }


  .main-logo {
    width: 250px;
    height: 70px;
  }
  .main-logo div {
    position: absolute;
    width: 100%;  
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: 0.5s cubic-bezier(0, 0, 0, 1);
  }

  .scrolled .header_second_left .home_image {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease-in;
  }

  .fixed .header_second_left .home_image {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s 0.3s ease-in;
  }

  .scrolled .hamburger-menu {
    transform: translateX(-50px);
    transition: all 0.3s 0.3s ease-in;
  }

  .fixed .hamburger-menu {
    transform: translateX(0px);
    transition: all 0.3s ease-in;
  }

}

.bottom-nav__link:last-child::before,
.bottom-nav__link--north::before {
  background: none;
  content: none;
}

.bottom-nav__link:last-child svg {
  transform: translateY(-5px);
}

@media (min-width: 800px) {
  .cart__fixed-order-btn {
    display: none;
  }
  .cart {
    max-width: 600px;
    margin: 30px auto 60px auto;
  }
}

.sign-in {
  max-width: 409px;
  font-weight: 800;
}

.find-password .text-field,
.find-id-form select,
.find-id-form .text-field,
.normal-sign-in .text-field {
  border: 0.05rem solid var(--point-color);
  border-radius: 0.2857142857em;
}

.normal-sign-in__input-wrap input {
  background-color: white;
}

.open-id-sign-in__item.type-kakao button,
.open-id-sign-in__item.type-naver button {
  background-color: white;
}

.open-id-sign-in__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0px;
}

.sign-in-open-id {
  margin-top: 10px;
}

.open-id-sign-in {
  margin: 0px;
}


.sign-in-link {
  margin-top: 20px;
  margin-bottom: 10px;
}

.sign-in-link__item {
  color: #58595B;
}

.normal-sign-in button {
  background: var(--point-color);
  border: 1px solid var(--point-color);
  color: var(--whole-color);
}

.open-id-sign-in__item button {
  border: none;
}

.open-id-sign-in__item {
  margin-top: 0px;
}

.guest-order {
  border-top: 1px solid #ccc;
  margin-top: 60px;
  padding-top: 30px;
}


.find-password-form__btn-wrap button,
.find-password-form__btn-wrap a {
  width: 48%;
}

@media (min-width: 800px) {
  .sign-in {
    margin: 30px auto 60px auto;
    /* border: 0.05rem solid var(--gray-color); */
    /* border-radius: 0.4rem; */
  }

  .title {
    margin-top: 60px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bolder;
  }
  
  .find-id,
  .find-password {
    max-width: 480px;
    margin: 0 auto;
  };
}
.open-id-agreement-form {
  padding: 0;
}

.sign-up-menu__link-normal a {
  background-color: #E8E9EA;
  border: none;
  border-radius: 0.2857142857em;
}

.sign-up-menu__link-open-id {
  margin-top: 60px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.open-id-title {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bolder;
  font-size: 1.2em;
}

.sign-up-form__input-wrap .checked_input {
  display: flex;
  gap: 5px;
}

.sign-up-form__input-wrap .checked_input .check_btn {
  width: 300px;
}

.sign-up-form__input-wrap .checked_input .check_btn button{
  height: 100%
}

@media (min-width: 800px) {
  .sign-up-menu {
    margin: 40px auto 0px auto;
    max-width: 409px;
  }

  .sign-up-form {
    max-width: 600px;
    margin: 30px auto 60px auto;
    /* border: 0.05rem solid var(--gray-color); */
    border-radius: 0.4rem;
  }

  .sign-up-menu__link-open-id,
  .open-id-agreement-form {
    max-width: 600px;
    margin: 70px auto 10px auto;
  }


  .open-id-sign-in  {

  }
  
  .member-withdrawal {
    max-width: 600px;
    margin: 90px auto 90px auto;
  }

}
@media (min-width: 800px) {
  .order-sheet {
    max-width: 1230px;
    margin: 60px auto 80px auto;
  }
  .accordion__title {
    border-bottom: 1px solid var(--gray-color);
  }
  .order-sheet__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--default-color);
    padding-bottom: 14px;
    
  }
  .order-sheet__item-subject {
    width: 180px;
    margin-bottom: 0px;
  }
  .order-sheet .text-field { 
    max-width: 300px;
  }
  .order-sheet .select-box {
    max-width: 300px;
  }
  .order-sheet__domain-select {
    margin-top: 0px;
    margin-left: 5px;
  }
  .phone-number-input__first-serial,
  .phone-number-input__second-serial {
    max-width: 70px;
  }
  .order-sheet__domain-select {
    max-width: 200px;
  }
  .order-sheet .check-radio {
    margin-top: 0px;
    margin-left: 10px;
  }
  .order-sheet__custom-memo {
    margin-top: 0px;
    margin-left: 10px;
  }
  .order-sheet__payment-info {
    max-width: 600px;
  }
  .order-sheet__pay-btn {
    display: block;
    margin: 20px auto;
    max-width: 300px;
  }
}
.sign-up-menu__btn {
  margin: 10px 0;
}

@media (min-width: 800px) {
  .profile-shipping-address,
  .my-page-accumulation,
  .personal-inquiry,
  .my-info-content,
  .my_info_body {
    max-width: 1230px;
    margin: 0 auto;
  }
  .my-page-coupon__wrap,
  .profile-like,
  .empty-list,
  .orders,
  .claims__content,
  .profile-list,
  .customer-center > div {
    width: 1230px;
    margin: 30px auto 0px auto;
  }
  
  .my-membership {
    max-width: 600px;
    margin: 0 auto;
  }
  .customer-center .customer-center__information {
    width: 100%
  }
  .member-modification {
    max-width: 600px;
    margin: 30px auto 30px auto;
    border: 0.05rem solid var(--gray-color);
    border-radius: 0.4rem;
  }
  .member-modification-name {
    background: none;
  }

  .phone-number-input {
    justify-content: start;
  }
  .phone-number-input .select-box {
    max-width: 80px;
  }
}


.category-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  align-items: center;
}

.category-footer .banner-item{
  width: 200px;
}

.category-footer>div {
  margin-bottom: 15px;
  
}

.category-nav-links__item {
  padding: 12px 0 12px 20px;
}


@media (min-width: 800px) {
  .breadcrumb {
    max-width: 1230px;
    margin: 0 auto;
  }

  
}
.footer__link,
.footer__link--bold,
.footer__link--,
.footer__about {
  font-size: medium;
}

.copyright {
  font-size: small;
}

.footer {
  padding: 0px;
  width: 100%;
  font-weight: 500;
}

.footer .footer_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 25px 0 100px 0;
}

.footer .footer_left .item{
  display: flex;
  width: 350px;
  font-size: 1.2em;
  gap: 5px;
  height: 22px;
}

.footer .footer_left .item .item_title {
  width: 80px;
  text-align: justify;
}

.footer .footer_left .item .item_title.adjust-text {
  letter-spacing: 0.5px;
}

.footer .footer_left .item .item_title:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.title_row {
  width: 100%;
}

.title_row_content {
  display: flex;
  flex-direction: column;
  
}

.title_row_content .title_left {
  display: flex;
  font-size: 1.2em;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--default-color);
  padding: 10px 0;
}

.title_row_content .title_right {
  display: flex;
  font-size: 1.2em;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--default-color);
  padding: 10px 0;
}

.title_row_content .title_right .account{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #414042;
  font-weight: bolder;
  margin-top: 2px;
}




@media (min-width: 800px) {
  .footer .footer_content {
    width: 1230px;
    margin: 0 auto;
    display: flex;
  }
  .footer .footer_left {
    width: 800px;
    border-right: 1px solid var(--default-color);
    padding: 25px 0 25px 0;
  }

  .copyright { 
    width: 1230px;
    margin: 0 auto;
  }

  .footer .footer_right {
    width: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer .footer_right img{
    width: 350px;
  }

  .title_row_content {
    flex-direction: row;
    width: 1230px;
    margin: 0 auto;
  }

  .title_row_content .title_left,
  .title_row_content .title_right {
    border-bottom: none;
  }

  .title_row {
    border-bottom: 1px solid var(--default-color);
  }

  .title_row_content .title_left {
    width: 800px;
    border-right: 1px solid var(--default-color);
  }
  .title_row_content .title_right {
    width: 430px;
  }
  .title_row_content .title_right .account {
    flex-direction: row;
    gap: 5px;
  }
}

.product-highlight {
  margin-top: 150px;
  background-color: #f6f6f6;
  
}

.product-highlight .highlight-slider {
  width: 80%;
  margin: 0 auto;
  transform: translateY(-100px);
}

.product-highlight .highlight-slider img {
  border: 1px solid #ddd;
  border-radius: 0.4rem;
}

.product-highlight .highlight-info {
  transform: translateY(-80px);
  text-align: center;
  margin: 0 auto;
}

.product-highlight .highlight-promotion {
  font-weight: 800;
}

.product-highlight .highlight-product-info {
  padding-top: 50px;
}

.product-highlight .product-thumb-title {
  font-size: 1.8rem;
}

.product-highlight .swiper-button-next, 
.product-highlight .swiper-button-prev {
  display: none;
}

.product-highlight .discount-rate {
  margin: 10px auto 0 auto;
}


@media (min-width: 800px) {
  .breadcrumb {
    max-width: 1230px;
    margin: 0 auto;
  }

  .product-highlight {
    width: 100%;
    margin: 30px 0px 0px auto;
    background-color: #fff;
  
    /* padding: 10px 0px; */
  }

  .product-highlight .product-highlight-content {
    width: 1230px;
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
  }

  .product-highlight .product-highlight-background {
    border-radius: 0.8rem 0 0 0.8rem;
    background-color: #f6f6f6;
    width: 80%;
    left: 20%;
    height: 700px;
    
    position: absolute;
    z-index: 1;
  }

  .product-highlight .highlight-slider {
    width: 500px;
    margin: 100px auto;
    transform: none;
  }

  .product-highlight .highlight-slider img {
    width: 100%;
  }

  .product-highlight .highlight-info {
    width: 600px;
    transform: none;
    text-align: center;
    margin: 220px auto 0 auto;
    transform: none;
  }

  .product-highlight .highlight-product-info {
    padding-top: 80px;
  }
  

  .product-highlight .highlight-promotion {
    font-weight: 400;
    font-size: 1.2rem;
  }

}

.category-footer {
  color: #3E4E5A;
  font-size: 1.4em;
}
.fax,
.call-center {
  display: flex;
  gap: 10px;
}

.call-center .call-center-icon {
  width: 50px;
}

.fax .text,
.call-center .text {
  font-weight: bolder;
  align-self: center;
  /* padding: 12px 0 0 0; */
}

.fax .text div,
.call-center .text div{
  margin: 5px 0px;
}

.fax .phone,
.call-center .phone {
  font-size: 1.0em;
  color: #0068B7; 

}

.header_content .call-center .call-center-icon {
  width: 60px;
}
.header_content .call-center .text,
.header_content .call-center .phone {
  font-size: large;
}

.email {
  width: 200px;
}

.email-top {
  display: flex;
  gap: 10px;
  font-weight: bolder;
}

.email-top div:last-child {
  width: 100%;
  align-self: center;
}

.email-bottom {
  font-weight: bolder;
  color: #0068B7;
  font-size: 0.8em;
}

.delivery {
  width: 200px;
}

.delivery div {
  display: flex;
  gap: 10px;
  font-weight: bolder;
}

.delivery div:last-child {
  width: 100%;
  align-self: center;
}

.no-price .quantity__content em {
  display: none;
}

.tabs {
  font-size: 12px;
}
.scrolled.page .right__side {
  position: absolute;
  top: 282px;
}

.fixed.page .right__side {
  position: fixed;
  top: 152px;
}


.right__side {
  left: calc(50% + 615px + 30px);
  z-index: 5;
  width: 122px;
  border: 0.1px solid #F4E3D7;
  display: flex;
  flex-direction: column;
  background-color: white;
  color: #542505;
  font-weight: 900;
}

.right__side .right__side_item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 0.1px solid #F4E3D7;
}

.right__side .right__side_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.right__side .shopping-basket {
  background-image: none;
  width: auto;
  height: auto;
}

.right__side .shopping-basket__count {
  position: relative;
  left: 0px;
  top: 0px;
}

.recent-products {
  width: 75%;
  margin: 10px auto;
  padding: 10px 0px;
}

.recent-products .recent-products-title {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.recent-products .recent-products-item {
  border: 0.1px solid #F4E3D7;
  margin-bottom: 10px;
}

.recent-products .recent-products-page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8em;
  margin-top: 40px;
}

.recent-products .recent-products-page-btn {
  margin: 0 auto;
  border: 0.1px solid #F4E3D7;
  padding: 5px 7px;
}

.recent-products .recent-products-empty {
  font-size: 0.8em;
  padding: 30px 0px;
  text-align: center;
}

.fab-btn {
  box-shadow: none;
}

.selector {
  display: flex;
  gap: 5px;
  margin: 10px 0 0 18px;
}

.selector li {
  display: flex;
  width: 50px;
}

@media (min-width: 800px) {

  .selector {
    margin: 0px;
  }

  .selector li {
    width: auto;
  }
}
@media (min-width: 800px) {
  .article,
  .notice__list {
    width: 1230px;
    margin: 0 auto;
  }
}
.product-content__box {
  padding: 0
}

.product-content__content_box_detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.product-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-notice div {
  margin: 30px 0px;
}

.product-content__content_box_detail .line {
  text-decoration: underline;
  font-weight: bold;
}

.product-content-product-image {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}

.related-products {
  margin: 50px 0;
}

.related-products .related-body {
  background-color: #F7F8F8;
  border-radius: 1rem;
  padding: 20px;
}

.related-products .related-product-images {
  background-color: white;
  margin-top: 20px;
  padding: 10px;
}

.related-products .related-title {
  margin: 20px 0;
}

.related-products .thumb-item {
  width: calc(50% - 10px);
  margin: 5px;
}

.related-products .thumb-item .thumb-item__img img {
  border-radius: 0;
}

.related-products .thumb-item .thumb-item__info {
  background-color: rgba(0, 0, 0, .5);
}

.thumb-item__info a {
  text-align: center;
}

.related-products .thumb-item .thumb-item__info a {
  color: white;
  text-decoration: none;
}

.product-detail .tabs li {
  font-weight: bolder;
  font-size: 1.1em;
}

@media (min-width: 800px) {

  .related-product {
    width: 1280px;
  }
  
  .related-products .related-body {
    padding: 40px;
  }

  .related-products .related-product-images {
    margin-top: 40px;
    padding: 40px;
  }

  .related-products .related-title {
    margin: 50px 0;
  }
  
  .product-content-product-title {
    padding: 80px 0;
  }
 
  .product-content-product-title-name {
    font-size: 4em;
  }
  
  .product-content-product-title-code {
    font-size: 2.5em;
  }  
}
.order-detail-info .delivery_info span {
  margin-right: 5px;
}

.order-detail-info .delivery_info a {
  color:var(--point-color-secondary);
}

@media (min-width: 800px) {
  .order-detail,
  .order-confirm,
  .claim {
    width: 1230px;
    margin: 0 auto;
  }
}
.top-line {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 0.01rem solid var(--light-gray-border-color);
  height: 50px;
  font-size: 0.9em;
  top: 0px;
  z-index: 7;
  background-color: white;
}

.top-line .top-line-inner {
  width: 100%;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
}

.top-line .left-area,
.top-line .right-area {
  display: flex;
  font-weight: 700;
  gap: 5px;
}

.top-line .right-area {
  transform: translateX(9px);;
  
}

.top-line .item,
.top-line .item a, 
.top-line .item button  {
  display: flex;
  align-items: center;
  gap: 3px;
}

.top-line .top_cart {
  margin-right: 5px;
  transform: translateX(-9px);
}

.top-line .top-mypage a {
  gap: 0px;
  transform: translateX(-9px);
}

.top-line .top-mypage img {
  margin-left: 5px;
  transition: transform 0.25s cubic-bezier(0, 0, 0, 1);
}

.top-line .top-mypage img.flip {
  transform: rotate(180deg)
}

.top-line-inner .shopping-basket {
  transform: scale(0.4) translateX(8px);
}

.top-line-inner .mypage-btn,
.top-line-inner .signup-btn {
  transform: scale(0.45);
}

.top-line-inner .shopping-basket .shopping-basket__count {
  transform: scale(2);
  right: -38px;
  bottom: 8px;
}

.my-page-menus {
  position: absolute;
  z-index: 100;
  top: 40px;
  right: calc(50% - 640px + 16px);
  background-color: var(--light-gray-border-color);
}

.my-page-menus .my-page-menus-item {
  padding: 15px 20px;
  
}

.my-page-menus .my-page-menus-item-line {
  border-bottom: 0.01rem solid #CCC;
}



@media (min-width: 800px) {
  .top-line {
    position: fixed;
  }
  .top-line .top-line-inner {
    width: 1230px;
    padding: 0px 0px;
  }

  .top-line-inner .shopping-basket .shopping-basket__count { 
    right: -180px;
  }
  .top-line .top_cart {
    margin-right: 11px;
  }

  .top-line .left-area {
    transform: translateX(-27px);
  }

  .top-line .right-area {
    transform: translateX(4px);
  }
  
}
.product-summary .product-summary__discounted-price span,
.product-summary .product-summary__discounted-price {
  /* font-size: 1rem; */
  /* font-weight: 100; */
  line-height:inherit;
  /* color: inherit; */
}

.product-summary dd {
  padding-left: 0px;
}

.product-summary {
  border-top: 1px solid var(--default-color);
  padding: 10px 10px 0px 10px;
}

.product-summary__title {
  color: #727171;
  font-weight: 700;
}


.product-summary__spec_item {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  margin: 25px 0;
  align-items: center;
}

.product-summary__spec_title {
  width: 100px;
}

.product-summary .product-summary__discounted-price .product-summary__price span.money,
.product-summary__spec_item .product_code {
  color: var(--point-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.product-summary .product-summary__discounted-price .product-summary__original-price {
  color: var(--point-color);
  margin-left: 3px;
}

.product-summary .product-summary__discounted-price .need-login {
  font-size: 1rem;
  margin-left: 0px;
}

.product-summary .product-summary__discounted-price .product-summary__price span.won {
  color: var(--point-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.product-summary__price .before-tax {
  color: var(--point-color);
  font-weight: 800;
  font-size: 1.0rem;
}

.product-summary__off-percent {
  font-size: 1.3rem;
}

.purchase__total {
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.purchase__total span {
  font-size: 1.1em;
  font-weight: 800;
}

.purchase__total em {
  font-size: 1.8em;
}

.product-summary__discounted-price {
  display: flex;
}

.product-summary__price-detail {
  align-items: baseline;
}

.product-summary dd {
  font-size: 1rem;
}
.purchase__quantity-box {
  max-height: inherit;
  overflow-y: inherit;
}

.purchase__option .options {
  display: flex;
  gap: 10px;
  align-items: center;
}

.purchase .text-option__label,
.purchase__option .options_title {
  width: 100px;
  font-size: 1rem;
  max-width: 100px;
  text-align: start;
}

.purchase .select-box {
  margin-bottom: 0px;
}

.purchase .text-option {
  gap: 10px;
  margin-top: 15px;
}

.purchase .select-box {
  height: inherit;
}

.purchase .text-option__input {
  margin-left: 0px;
}
.purchase .select-box,
.purchase .character-counter {
  width: 240px;
}

.purchase__like-btn {
  width: 100%;
}

.sc-like-button.is-active {
  font-size: 1.2em;
}

.purchase__button-wrap button {
  height: 48px;
}

.options .option_selector {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.purchase__total .need-login {
  font-size: 0.6em;
}

.purchase__btns .btn {
  font-weight: 900;
}

.purchase .quantity {
  padding-bottom: 15px;
}

.quantity__content em {
  display: none;
}

.quantity-price {
  position: absolute;
  right: 10px;
  width: 50%;
  text-align: right;
  transform: translateY(-15px);
  font-weight: bolder;
  
}

.quantity {
  padding-bottom: 0px;
  padding-top: 12px;
}


@media (min-width: 800px) {
  .product-detail.purchase {
    padding: 0px 10px;
    border-top: none;
  }

  .purchase .select-box,
  .purchase .character-counter {
    width: 400px;
  }
}
.pc-category {
  width: 975px;
  height: 532px;
  position: absolute;
  top: 0px;
  left: calc(50% - 360px);
  background-color: #f6f6f6;
  z-index: 10;
  border: 0.01rem solid #999;
  font-weight: 700;
  transition: 1s cubic-bezier(0, 0, 0, 1);
}

.pc-category-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 0.01rem solid #999;
  height: 72px;
  font-size: 1.2em;
}

.pc-category-empty-row {
  height:34px;
}

.pc-category-title-area {
  background-color: white;
  height: 3px;
}

.pc-category-body {
  display: flex;
  flex-wrap: nowrap;
}

.column1 {
  flex-grow: 3;
  /* height: 460px; */
}

.column2,
.column3,
.column4 {
  height: 418px;
  flex-grow: 1;
  border-left: 0.01rem solid #999;
}

.main-category {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  height: 53px;
  font-size: 1.2em;
}

.sub-category {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 355px;
  margin-top: 15px;
}

.sub-category .category-item {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offcanvas .background {
  width: 100%;
  height: 100%;
}

@media (min-width: 800px) {
  .offcanvas {
    max-width: inherit;
    background-color: #0000;
  }
}
.scrolled.page .banner--left {
  position: absolute;
  top: 281px;
}

.fixed.page .banner--left {
  position: fixed;
  top: 154px;
}

.page .banner--left {
  left: calc(50% - 615px - 200px);
  width: 200px;
  min-width: auto;
  z-index: 6;
}

.page .banner--left img {
  width: inherit;
}

.left-side-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 0.1px solid #F4E3D7;
  border-right: 0.1px solid #F4E3D7;
  border-top: 0.1px solid #F4E3D7;
  padding: 10px;
  background-color: #FFF;
}

.arrow-banner {
  padding: 0px;
  position: relative;
}

.arrow-banner div {
  position: absolute;
  top: 0px;
}

.left-side-banner-item:last-child {
  border-bottom: 0.1px solid #F4E3D7;
}

.call-banner-img {
  margin-bottom: 5px;
}
.line-banner {
  width: 100%;
  height: 220px;
  position: relative;
  display: flex;
  align-items: end;
}

.line-banner .line-banner-background-grid {
  top: 65px;
  position: absolute;
  width: 100%;
  height: 155px;
  background-color: #F5FAFF;
  background-image: linear-gradient(to right, #888C8F33 1px, transparent 1px),
    linear-gradient(to bottom, #888C8F33 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  border-bottom: 0.1rem solid var(--light-gray-border-color);
  border-top: 0.1rem solid var(--light-gray-border-color);
}

.line-banner .line-banner-background {
  top: 65px;
  position: absolute;
  width: 100%;
  height: 155px;
  background-color: #F4F2F2;
  z-index: 1;
  border-bottom: 0.1rem solid var(--light-gray-border-color);
  border-top: 0.1rem solid var(--light-gray-border-color);
}

.line-banner .line-banner-content {
  position: absolute;
  width: 100%;
  height: 220px;
  z-index: 2;
  display: flex;
}

.line-banner .line-banner-controller-area {
  width: 30px;
  display: flex;
  align-items: start;
}

.line-banner .line-banner-controller {
    width: 80px;
    height: 220px;
    padding-top: 86px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.line-banner .line-banner-items {
  
}

.line-banner .line-banner-items a {
  position: absolute;
  bottom: 0px;
  transition: 0.5s cubic-bezier(0, 0, 0, 1);

}

.line-banner .line-banner-controller-dot {
  display: flex;
  gap: 3px;
}

@media (min-width: 800px) {
  .line-banner .line-banner-controller-area {
    width: 120px;
  }
}
@media (min-width: 800px) {
  .event-hero-content {
    width: 1230px;
    margin: 0 auto 30px auto;
  }

  .event-nav-content {
    width: 1230px;
    margin: 0 auto;
  }
}

.notice__title {
  font-weight: bold;
}

.gallery .gallery__list {
  margin: 24px auto;
}

.gallery__list {
  margin-top: 12px;
  display: flex;;
  flex-wrap: wrap;
  gap: 24px;
}

.gallery__item {
  width: calc(50% - 24px);
}

.gallery_selected {
  position: absolute;
  top: 400px;
  left: calc(50% - 200px);
  width: 400px;
  box-shadow: 5px 5px 10px;
}

.gallery_selected>div {
  position: relative;
}

.gallery_selected img {
  width: 100%;
}

.gallery_selected_title {
  padding: 10px 0px;
  background-color: white;
  text-align: center;
}

.gallery_selected_left_btn,
.gallery_selected_right_btn,
.gallery_selected_close_btn {
  position: absolute;
  background-color: #FFFFFF30;
  padding: 3px;
  border-radius: 3px;
}


.gallery_selected_left_btn {
  top: 50%;
  left: 5px;
}

.gallery_selected_right_btn {
  top: 50%;
  right: 5px;
}

.gallery_selected_close_btn {
  top: 5px;
  right: 5px;
}

.gallery_selected_close_btn img,
.gallery_selected_left_btn img,
.gallery_selected_right_btn img {
  width: 32px;
  opacity: 0.5;
}

@media (min-width: 800px) {
  .gallery .gallery__list {
    width: 1230px;
    margin: 24px auto;
  }
  .gallery__item {
    width: calc(25% - 24px);
  }
  .gallery_selected {
    position: absolute;
    top: 400px;
    left: calc(50% - 400px);
    width: 800px;
    box-shadow: 5px 5px 10px;
  }
}



.gallery__item__title {
  padding: 4px 0px;
  vertical-align:middle;
  text-align: center;
}
@charset 'utf-8';
@font-face {
  font-family: "Youn320";
  src: url(https://storefront.cdn-nhncommerce.com/copy/mall-77773/junghyunshop-4433/5595feb34728707b3069.woff)  format("truetype")
}
@font-face {
  font-family: "RixHeadM";
  src: url(https://storefront.cdn-nhncommerce.com/copy/mall-77773/junghyunshop-4433/4d96cf717df66c4f4420.woff)  format("truetype")
}

body {
  /* font-family: 'Open Sans', sans-serif !important; */
  font-family: "Youn320", "Montserrat", "Noto Sans KR", sans-serif
}

:root {
  --whole-color: #fff;
  --background-color: #fff;
  --point-color: #f92626;
  --point-color-secondary: #2869f7;
  --black-color: #111;
  --dark-gray-color: #262626;

  --empty-color: #f5f6f8;
  --default-color: #ddd;
  --blue-gray-color: #3f434c;
  --gray-color: #999;
  --gray-font-color: #828282;
  --tooltip-bg-color: #f7f7f7;

  --default-font-color: #181818;

  --main-color: #F24B0F;
  --sub1-color: #F29F05;
  --sub2-color: #F2B705;
  --etc1-color: #78B39C;
  --etc2-color: #0A487E;
  
  --font-title-color: #145D9F;
  --font-normal-color: #585A5C;
}

.page__content.site {
  width: 100%;
  max-width: none;
}

.page-inner {
  /* max-width: 1230px; */
  max-width: none;
}

.page .site {
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

.only_pc {
  display: none;
}

.tooltip {
  background-color: #828282;
}

.count_circle {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--point-color);
    border-radius: 50%;
    vertical-align: top;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.hide {
  display: none;
}

.l-content {
  min-height: 1200px;
}

.page__content {
  min-width: auto;
}


@media (min-width: 800px) {
  .only_pc {
    display: inherit;
  }
  .only_mobile {
    display: none;
  }

  .hamburger-menu.header__left-btn {
    /* display: none; */
  }
  :where(.product-section .thumb-GALLERY,.product-section .thumb-CART) {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: var(--point-color);
}


