/** Shopify CDN: Minification failed

Line 814:24 Unexpected "'#favorit-list li'"
Line 821:24 Unexpected "'#favorit-list li'"

**/
/*
.hidden {
  display: none;
}
*/

/* THEME MODAL */
.theme-modal {
  position: fixed;
  overflow-x: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;

  /*iOS fix*/
  left: -150%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background-color: var(--white);
  color: var(--color-base);
}

.theme-modal.product-image-zoom .modal-close {
  position: fixed;
  top: 15px;
  left: 13px;
  font-size: 31px;
  width: 44px;
  height: 44px;
  text-align: center;
  display: none;
  color: var(--black);
  border-radius: 50%;
  background-color: var(--white);
  line-height: 40px;
  font-family: Tahoma;
}

body:not(.user-is-tabbing) .theme-modal.product-image-zoom .modal-close {
  outline: none;
}

body.modal-active.nav-inline:not(.modal-closing) .theme-modal.product-image-zoom .modal-close {
  display: block;
}

@media (max-width: 767px) {
  .theme-modal .theme-modal {
    background-color: var(--white);
  }
}

.theme-modal #added-to-cart-title {
  display: flex;
}

.theme-modal a {
  color: var(--color-base);
}

.theme-modal.theme-modal--small {
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -50px, 0);
  transition: opacity .4s, visibility .4s, transform .5s;
  height: calc(100% + 100px);
}

.theme-modal.theme-modal--small.reveal {
  animation: none;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.theme-modal.theme-modal--small.unreveal {
  animation: none;
}

.theme-modal.theme-modal--small > .inner {
  position: absolute;
  height: auto;
  display: inline-block;
  min-height: auto;
  top: 75px;
  right: 0;
  background-color: var(--white);
  padding: 24px !important;
  border-top: 1px solid var(--color-base);
  left: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .theme-modal.theme-modal--small > .inner {
    left: auto;
    right: 25px;
    width: 420px;
  }
}

.theme-modal.theme-modal--small > .inner h4, .theme-modal.theme-modal--small > .inner blockquote, .theme-modal.theme-modal--small > .inner .under-cart .subtotal, .under-cart .theme-modal.theme-modal--small > .inner .subtotal {
  padding-right: 50px;
  font-size: 14px;
  text-align: left;
}

.theme-modal.theme-modal--small > .inner h4 svg, .theme-modal.theme-modal--small > .inner blockquote svg, .theme-modal.theme-modal--small > .inner .under-cart .subtotal svg, .under-cart .theme-modal.theme-modal--small > .inner .subtotal svg {
  height: 20px;
  width: 20px;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

.theme-modal.theme-modal--small > .inner .cart-product {
  display: flex;
  margin: 24px 0 12px;
}

.theme-modal.theme-modal--small > .inner .cart-product .cart-product__image {
  width: 84px;
}

.theme-modal.theme-modal--small > .inner .cart-product .cart-product__content {
  padding: 0 24px;
  flex: 1;
}

.theme-modal.theme-modal--small > .inner .cart-product .cart-product__content p {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.25em;
}

.theme-modal.theme-modal--small > .inner .cart-product .cart-product__content p.cart-product__content__title {
  font-weight: 500;
  font-size: 1.1em;
}

.theme-modal.theme-modal--small > .inner .cart-product .cart-product__content p.cart-product__content__meta {
  opacity: 0.5;
}

.theme-modal.theme-modal--small > .inner .links {
  margin-bottom: 0;
  display: flex;
}

.theme-modal.theme-modal--small > .inner .links .button {
  text-align: center;
  word-break: break-word;
  background-color: var(--base-button-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: background-color var(--duration) var(--ease);
}

.theme-modal.theme-modal--small > .inner .links .button.button--checkout {
  background-color: var(--dark);
}

@media only screen and (min-width: 768px) {
  .theme-modal.theme-modal--small > .inner .links .button:hover {
    border-color: var(--base-button-color);
    color: var(--base-button-color);
    background-color: transparent;
  }
}

.theme-modal.theme-modal--small > .inner .links.links--no-checkout .button--checkout {
  display: none;
}

.theme-modal.theme-modal--small > .inner .links.links--no-checkout .button {
  width: 100%;
}

.theme-modal.theme-modal--small > .inner .links:not(.links--no-checkout) {
  margin-left: -5px;
  margin-right: -5px;
}

.theme-modal.theme-modal--small > .inner .links:not(.links--no-checkout) .button {
  margin: 0 5px;
  width: calc(50% - 10px);
}

@media (max-width: 450px) {
  .theme-modal.theme-modal--small > .inner .links:not(.links--no-checkout) .button {
    width: calc(100% - 10px);
  }
  .theme-modal.theme-modal--small > .inner .links:not(.links--no-checkout) .button.button--checkout {
    margin-top: 10px;
  }
}

.theme-modal.theme-modal--small > .inner .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: 44px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-base);
}

.theme-modal.theme-modal--small > .inner .modal-close:active, .theme-modal.theme-modal--small > .inner .modal-close:focus {
  outline: none;
}

.user-is-tabbing .theme-modal.theme-modal--small > .inner .modal-close:active, .user-is-tabbing .theme-modal.theme-modal--small > .inner .modal-close:focus {
  border: 2px solid var(--color-base);
}

.theme-modal:active, .theme-modal:focus {
  outline: none;
}

.theme-modal svg {
  fill: var(--color-base);
}

.theme-modal.-light {
  background-color: var(--white);
}

.theme-modal > .inner-scroller {
  position: relative;
  transition: opacity 1s, visibility 1s;
}

.theme-modal > .inner-scroller.-out {
  opacity: 0;
  visibility: hidden;
}

.theme-modal > .inner {
  min-height: 100%;
  padding: 70px 0 50px;
}

.theme-modal > .inner, .theme-modal > .inner .growth-area {
  display: flex;
  flex-direction: column;
}

.theme-modal > .inner .growth-area {
  flex-grow: 1;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
}

.theme-modal > .inner .growth-area .growth-area {
  padding: 0 20px;
}

.theme-modal h1, .theme-modal h2, .theme-modal h3, .theme-modal h4, .theme-modal blockquote, .theme-modal .under-cart .subtotal, .under-cart .theme-modal .subtotal, .theme-modal h5, .theme-modal h6 {
  color: var(--color-base);
}

.theme-modal .container {
  cursor: initial;
}

.theme-modal.reveal {
  left: 0;
  -webkit-animation: reveal 300ms ease-out;
  animation: reveal 300ms ease-out;
}

.theme-modal.unreveal {
  -webkit-animation: unreveal 250ms ease-out;
  animation: unreveal 250ms ease-out;
}

.theme-modal.top-padded > .inner {
  padding-top: 200px;
}



@media (max-width: 767px) {
  .product-detail__form__options--with-quantity .quantity-wrapper,
  .product-detail__form__options--with-quantity .option-selectors {
    float: none;
    text-align: center;
    margin: 0 0 10px 0;
    clear: both;
  }
  .product-detail__form__options--with-quantity .option-selectors {
    width: auto;
    margin: 0 auto 20px;
  }
  .product-detail__form__options--with-quantity .selector-wrapper.single-option {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .product-detail__form__options--with-quantity .quantity-wrapper {
    width: 180px;
    margin-bottom: 0;
    margin-right: 10px;
    flex-basis: 130px;
  }
  .product-detail__form__options--with-quantity > button {
    flex: 1;
  }
  .product-detail__form__options--with-quantity .shopify-payment-button {
    width: 100%;
  }
}


@media (max-width: 960px) {
  .product-detail__form__options--no-options .quantity-wrapper {
    float: none;
    margin: 0 auto 20px;
  }
}

.quantity-wrapper {
  position: relative;
  width: 120px;
  border: 1px solid #bbb;
  color: ;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 10px 0;
}

.quantity-wrapper a {
  z-index: 1;
  line-height: 44px;
  width: 44px;
  height: 44px;
  font-weight: 500;
  text-align: center;
  left: 3px;
  padding: 0 0 0 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: ;
  font-size: 17px;
  font-family: Tahoma;
}

.quantity-wrapper a[data-quantity="up"] {
  margin-top: -1px;
  left: auto;
  right: 0;
  padding: 0 5px 0 0;
}

.quantity-wrapper a[data-quantity="down"] {
  margin-top: -2px;
  font-size: 1.3em;
}

.quantity-wrapper input {
  border: none;
  background-color: none;
  padding: 18px 30px;
  padding-left: 0;
  padding-right: 0;
  width: 32px;
  text-align: center;
  font-size: inherit;
  line-height: 1.25em;
  letter-spacing: 0.05em;
  color: ;
  position: relative;
  font-weight: 400;
}

@media (min-width: 768px) {
  .quantity-wrapper input {
    padding: 18px 30px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .quantity-wrapper input {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
}

.product-detail__form__action .quantity-text {
  font-size: 12px;
}

.product-area__details__title {
  font-family: var(--font-karla);
  font-size: 24px;
}

.product-area__tags {
  margin-bottom: 10px;
}

/* CART PAGE */
.cart-list {
  margin: 0;
  padding: 0;
}

.cart-list > .item {
  list-style: none;
  margin: 2em 0;
  display: flex;
}

.cart-list .col-image {
  flex: 0 0 auto;
  width: 66px;
  margin-right: 24px;
}

.cart-list .col-notimage {
  display: flex;
  flex-grow: 1;
  text-align: right;
}

.cart-list .desc {
  flex-grow: 1;
  text-align: left;
  margin-right: 24px;
}

.cart-list .desc .product-title {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5em;
}

.cart-list .item-price {
  width: 160px;
}

.cart-list .quantity-and-remove {
  margin: 0 24px;
  text-align: center;
  width: 128px;
}

.cart-list .quantity {
  flex: 0 0 auto;
  display: inline-block;
  position: relative;
  padding: 3px 44px;
  border: 1px solid var(--color-base);
  overflow: hidden;
  width: 128px;
}

@media (min-width: 768px) {
  .cart-list .quantity {
    width: 100%;
  }
}

.cart-list .quantity .plus,
.cart-list .quantity .minus {
  position: absolute;
  top: 0;
  height: 100%;
  text-align: center;
  width: 44px;
}

.cart-list .quantity .plus span,
.cart-list .quantity .minus span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  line-height: 1em;
  margin-top: calc(-0.5em - 1px);
  font-weight: 500;
  color: #6b6b6b;
  font-size: 17px;
  font-family: Tahoma;
}

.cart-list .quantity .minus {
  left: 0;
}

.cart-list .quantity .plus {
  right: 0;
}

.cart-list .quantity .plus span {
  margin-top: calc(-0.5em - 1px);
}

.cart-list .quantity input {
  text-align: center;
  color: var(--color-base);
  border: none;
  color: inherit;
  padding: 0.7em 0.5em;
  width: 55px;
}

@media (min-width: 768px) {
  .cart-list .quantity input {
    width: auto;
  }
}

.cart-list .remove {
  display: inline-block;
  border-bottom: 1px solid;
  line-height: 1.2em;
  opacity: 0.6;
  font-size: 80%;
}

.cart-list .remove:hover {
  opacity: 1;
}

.cart-list .line-total {
  flex: 0 0 auto;
  width: 100px;
}

@media (max-width: 767px) {
  .cart-list .cart-list-header {
    display: none;
  }
  .cart-list .col-notimage {
    display: block;
  }
  .cart-list .desc,
  .cart-list .item-price,
  .cart-list .quantity-and-remove {
    width: auto;
    margin: 0;
    text-align: left;
  }
  .cart-list .item-price {
    margin-top: 0.5em;
  }
  .cart-list .quantity-and-remove {
    margin-top: 1em;
  }
  .cart-list .quantity {
    vertical-align: middle;
  }
  .cart-list .remove {
    margin-left: 1em;
    vertical-align: middle;
  }
  .cart-list .line-total {
    display: none;
  }
}

.cart-list-header {
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-base);
}

.update-continue {
  margin: 1em 0;
  text-align: center;
}

.update-continue input {
  vertical-align: baseline;
}

.update-continue span {
  margin: 0 0.2em;
}

.under-cart,
.under-cart .rte,
.under-cart #template,
.under-cart #address_tables,
.under-cart #comments {
  text-align: center;
}

.under-cart .terms label, .under-cart .terms .sharing-label {
  display: inline;
}

.under-cart .subtotal-row {
  padding: 1em 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.under-cart .subtotal {
  display: flex;
  justify-content: space-between;
}

.under-cart .checkout-btn {
  margin: 1.4em 0;
}

.cart-discount-list {
  margin: 1em 0;
  padding: 0;
}

.cart-discount-list:first-child {
  margin-top: 0;
}

.cart-discount-list:last-child {
  margin-bottom: 0;
}

.cart-discount {
  list-style: none;
}

.cart-discount:not(:last-child) {
  margin-bottom: 0.5em;
}

.cart-discount--inline .cart-discount__label {
  margin-right: 1em;
}


 



















.shopify-challenge__button {
  width: 200px;
  margin: 0 auto;
}




.address .myaccount-view_address {
  align-items: center;
  background-color: #7b7b7b;
  border-radius: 5px;
  color: var(--white);
  display: flex;
  height: 60px;
  justify-content: center;
  margin: 50px auto 0;
  max-width: 300px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

.address .myaccount-view_address:hover {
  background-color: var(--base-button-color);
}



#order_address {
  display: flex;
  margin-top: 35px;
  width: 100%;
  align-items: flex-start;
}



.feature-header-order {
  font-size: 18px;
  font-weight: bold;
}

.feature-header-desc {
  margin-top: 30px;
  font-size: 16px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .feature-header-desc {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 2.2;
  }
}

.order_date {
  text-align: center;
}

#order_address .order_section_title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
}

#order_payment,
#order_shipping {
  padding: 0 10px 0 0;
  width: calc(100% / 2);
}

#order_payment .order_section_title + p,
#order_shipping .order_section_title + p {
  margin-bottom: 10px;
}









#customer_detail .name,
#customer_orders p {
  text-align: center;
}

#customer_orders h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #customer_orders h2 {
    font-size: 18px;
  }
}

#customer_detail .address {
  margin: 20px auto 0;
  padding: 20px;
  width: 100%;
  text-align: left;
  background-color: var(--white);
  border: 1px solid #c7c7c7;
}

#customer_detail .name {
  font-size: 18px;
  font-weight: bold;
}

#customer_detail .email.note {
  text-align: center;
}


#address_form_new .action_bottom,
.edit_address .action_bottom {
  margin-top: 35px;
}












.page-content ul li:not(.shopping-icons li),
.page-content ul li:not('#favorit-list li') {
  position: relative;
  display: block;
  text-indent: 25px;
}

.page-content ul li:not(.shopping-icons li):before,
.page-content ul li:not('#favorit-list li'):before {
  content: "";
  width: 3px;
  height: 3px;
  left: 6px;
  top: 13px;
  border-radius: 100%;
  background-color: var(--color-base);
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .page-content ul li:before {
    left: 5px;
    top: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .page-content ul li:before {
    left: 5px;
    top: 11px;
  }
}

#page-content .content ol {
  counter-reset: section;
  margin-top: 25px;
}

#page-content .content ol li {
  margin-bottom: 15px;
  text-indent: unset;
}

#page-content .content ol li li {
  padding-left: 15px;
}

#page-content .content li li {
  margin-left: 18px;
}

#page-content .content li li li {
  padding-left: 25px;
  margin-left: 0;
}

#page-content .content li li li:before {
  content: "- ";
  background: 0 0;
  top: 3px;
  width: auto;
  height: auto;
}

#page-content .content ol li:not(#page-content .content ol li li):before {
  counter-increment: section;
  content: counter(section) ". ";
}

.page-content a {
  color: var(--color-base);
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .page-content a:hover {
    text-decoration: none;
  }
}

.page-content a.button-link-content {
  margin-top: 52px;
  text-decoration: none;
  background-color: var(--darker);
  color: var(--white);
  border-color: transparent;
}

@media only screen and (min-width: 768px) {
  .page-content a.button-link-content:hover {
    border-color: var(--darker);
    color: var(--darker);
    background-color: transparent;
  }
}

@media only screen and (max-width: 767px) {
  .page-content a.button-link-content {
    margin-top: 35px;
    height: 50px;
    font-size: 16px;
  }
}
                                    
.page-content .shopping-icons-wrap {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid var(--gray);
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons-wrap {
    margin-top: 0;
  }
}

.page-content .shopping-icons-wrap:last-of-type {
  margin-top: 87px;
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons-wrap:last-of-type {
    margin-top: 44px;
  }
}

.page-content .shopping-icons {
  display: flex;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons {
    flex-wrap: wrap;
  }
}

.page-content .shopping-icons li {
  flex: 1;
  position: relative;
  margin: 0 -1px -1px 0;
  border: 1px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons li {
    width: calc(100% / 2);  
    flex: none;
    font-size: 12px;
  }
}

.page-content .shopping-icons li div {
  padding: 15px 0;
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons li div {
    padding: 10px 0 5px;
  }
}

.page-content .shopping-icons img {
  margin: 0 auto 8px;
  display: block;
  height: 30px;
}

@media only screen and (max-width: 767px) {
  .page-content .shopping-icons img {
    margin-bottom: 2px;
    height: 25px;
  }
}

/* LOGIN RECOMMENDATION */
#template .recommendation-register-title h2 {
  font-family: var(--font-hiragino-w6);
  font-size: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #template .recommendation-register-title h2 {
    font-size: 20px;
  }
}

#template .recommendation-register-title span {
  font-family: var(--font-hiragino-w6);
  text-align: center;
  display: block;
  position: relative;
}

@media only screen and (min-width: 768px) {
  #template .recommendation-register-title span::before,
  #template .recommendation-register-title span::after {
    background: var(--darkerGray);
    bottom: 0;
    content: '';
    height: 1px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100px;
  }

  #template .recommendation-register-title span::before {
    left: 35px;
  }
  
  #template .recommendation-register-title span::after {
    right: 35px;
  }
}

.recommendation-register-list .recommendation-register-item {
  position: relative;
  margin-left: 35px;
}

.recommendation-register-list .recommendation-register-item::before {
  background: var(--white);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: -35px;
  top: -4px;
  padding: 7px 8px;
}

.recommendation-register-list .recommendation-register-item ul {
  margin-left: -30px;
  margin-top: 15px;
}

.recommendation-register-list .recommendation-register-item ul li {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.recommendation-register-list .recommendation-register-item ul li::before {
  content: '※';
  color: var(--red);
}

.recommendation-register-button {
  position: relative;
  max-width: 400px;
  margin: 0 auto 60px;
}

@media only screen and (max-width: 767px) {
  .recommendation-register-button {
    margin-bottom: 30px;
  }
}

.recommendation-register-button a {
  width: 100%;
  align-items: center;
  font-size: 20px;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none !important;
  min-height: 70px;
  text-align: center;
  border: 1px solid #7b7b7b;
  transition: all 0.25s ease-in-out;
  padding: 10px;
}

.recommendation-register-button a:hover {
  border-color: var(--base-button-color);
  background-color: var(--base-button-color);
  color: var(--white) !important;
}

@media only screen and (max-width: 767px) {
  .recommendation-register-button a {
    min-height: 45px;
    font-size: 16px !important;
    padding: 5px;
  }
}

/* PRODUCT PAGE */
.product-area__details .pretty-select {
  width: 100%;
  position: relative;
}

.product-area__details .pretty-select select {
  display: block;
  width: 100%;
  padding: 8px 15px;
  border: 1px solid var(--color-base);
}

.product-area__details .pretty-select svg {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 9px;
  top: 11px;
}













.product-status-new {
  color: #A4A4A4;
  border-color: #A4A4A4;
}

.product-status-new {
  margin-right: 5px;
}



.shopify-payment-button__button.shopify-payment-button__button--unbranded {
  margin-top: 10px;
  text-align: center;
  word-break: break-word;
  background-color: var(--base-button-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid transparent;
  transition: background-color var(--duration) var(--ease);
}

@media only screen and (min-width: 768px) {
  .shopify-payment-button__button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
    border-color: var(--base-button-color);
    color: var(--base-button-color);
    background-color: transparent;
  }
}

@media only screen and (max-width: 768px) {
  .shopify-payment-button__button.shopify-payment-button__button--unbranded {
    font-size: 14px;
  }
}

.product-price-wrap {
  display: flex;
  align-items: center;
}

.product-tax-included {
  margin-left: 12px;
  font-family: var(--font-hiragino-w3);
  font-size: 17px;
}






















/* PRODUCT SLIDER */

















