.transition {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }

.slide-left.in {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.slide-left.out {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0); }

.theme-black {
  background: #000;
  color: #fff; }
  .theme-black a {
    color: inherit; }

.theme-footer {
  background: #3d3d3d;
  color: #acacac; }
  .theme-footer a {
    color: inherit; }

@media (max-width: 991.98px) {
  .m-px-35 {
    padding-left: 0.46667rem;
    padding-right: 0.46667rem; }
  .m-pt-35 {
    padding-top: 0.46667rem; }
  .m-mb-20 {
    margin-bottom: 0.26667rem; }
  .m-mb-16 {
    margin-bottom: 0.21333rem; }
  .m-mx-0 {
    margin-left: 0;
    margin-right: 0; }
  .m-border {
    border: 1px solid #d6d6d6; }
  .m-spce-gray {
    height: 0.21333rem;
    background: #f6f6f6; } }

.l-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

@media (max-width: 991.98px) {
  .container {
    padding: 0;
    max-width: 100%; } }

.icon {
  width: 0.4rem;
  height: 0.4rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.icon-lg {
  width: 0.53333rem;
  height: 0.53333rem; }

.icon-sm {
  width: 0.26667rem;
  height: 0.26667rem; }

@media (min-width: 992px) {
  .icon {
    width: 20px;
    height: 20px; }
  .icon-lg {
    width: 24px;
    height: 24px; }
  .icon-sm {
    width: 12px;
    height: 12px; } }

.icon-add-sub {
  position: relative;
  display: inline-block;
  width: 0.26667rem;
  height: 0.26667rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.26667rem;
          flex: 0 0 0.26667rem; }
  @media (min-width: 992px) {
    .icon-add-sub {
      width: 12px;
      height: 12px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 12px;
              flex: 0 0 12px; } }
  .icon-add-sub::before, .icon-add-sub::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    height: 1px;
    border-radius: 1px;
    background: #909090;
    width: 100%;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear; }
  .icon-add-sub::after {
    -webkit-transform: rotateZ(-90deg);
            transform: rotateZ(-90deg); }

[aria-expanded="true"] .icon-add-sub::after {
  -webkit-transform: rotateZ(0);
          transform: rotateZ(0); }

.icon-arrow,
.link-arrow,
.dropdown-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .icon-arrow::after,
  .link-arrow::after,
  .dropdown-arrow::after {
    display: block;
    content: '';
    width: 0.21333rem;
    height: 0.21333rem;
    border: 1px solid;
    border-width: 1px 1px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-radius: 2px 0 2px; }
    @media (min-width: 992px) {
      .icon-arrow::after,
      .link-arrow::after,
      .dropdown-arrow::after {
        width: 12px;
        height: 12px; } }

[aria-expanded="true"] .dropdown-arrow,
.dropdown-arrow [aria-expanded="true"] {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.icon-arrow {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.icon-hot {
  color: #ffba00; }

.icon-sale {
  color: #d62938; }

.cell {
  height: 1.33333rem;
  padding: 0 0.32rem;
  text-transform: capitalize; }
  .cell-title .icon {
    width: 0.4rem;
    height: 0.4rem; }
  .cell[aria-expanded="true"] {
    border-bottom: 1px solid #d6d6d6; }
  @media (max-width: 991.98px) {
    .cell {
      font-size: 0.4rem; } }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-clip-rotate,
.la-ball-clip-rotate > div {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-clip-rotate {
  display: block;
  margin: auto;
  font-size: 0;
  color: #fff; }

.la-ball-clip-rotate.la-dark {
  color: #333; }

.la-ball-clip-rotate > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-clip-rotate {
  width: 20px;
  height: 20px; }

.la-ball-clip-rotate > div {
  width: 100%;
  height: 100%;
  background: transparent;
  border-width: 2px;
  border-bottom-color: transparent;
  border-radius: 100%;
  -webkit-animation: ball-clip-rotate .75s linear infinite;
  animation: ball-clip-rotate .75s linear infinite; }

@media (max-width: 991.98px) {
  .la-ball-clip-rotate {
    width: 0.72rem;
    height: 0.72rem; } }

/*
 * Animation
 */
@-webkit-keyframes ball-clip-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes ball-clip-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.goTop {
  position: fixed;
  bottom: 1.6rem;
  right: 0.4rem;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  cursor: pointer; }
  .goTop .icon-top {
    width: 100%;
    height: 100%; }
  @media (min-width: 992px) {
    .goTop {
      bottom: 120px;
      right: 30px;
      width: 35px;
      height: 35px; }
      .goTop .icon-top {
        width: 100%;
        height: 100%; } }

.toast {
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0); }
  .toast.show .toast-wrapper {
    opacity: 1; }
  .toast.failed .icon-error {
    display: block; }
  .toast.loading {
    background: rgba(0, 0, 0, 0.6); }
    .toast.loading .toast-wrapper {
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none;
      padding: 0;
      padding-bottom: 0.13333rem;
      font-size: 0.21333rem;
      display: block;
      background: transparent; }
    .toast.loading .icon-loading {
      display: block; }
  .toast.success .icon-Authentication {
    display: block; }

.icon-error, .icon-Authentication, .icon-loading {
  display: none; }

.toast-wrapper {
  margin: 0.13333rem;
  -ms-flex-item-align: center;
      align-self: center;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  text-align: center;
  opacity: 0;
  border-radius: 0.02667rem;
  border: 1 solid #e6e6e6;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  -webkit-box-shadow: 0rem 0.02667rem 0.06667rem rgba(0, 0, 0, 0.5);
          box-shadow: 0rem 0.02667rem 0.06667rem rgba(0, 0, 0, 0.5);
  font-size: 0.53333rem;
  padding: 0.4rem 0.6rem;
  min-width: 3.46667rem; }
  @media (min-width: 992px) {
    .toast-wrapper {
      min-width: 200px;
      margin: 10px;
      padding: 10px 40px;
      font-size: 26px;
      border-radius: 3px; } }

.swiper-button {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background-image: url("../imgs/arrow-up.png");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center 45%; }
  .swiper-button.circle {
    border-radius: 100%;
    background-color: #fff;
    opacity: .75; }
    .swiper-button.circle:hover, .swiper-button.circle:focus {
      opacity: 1; }
  .swiper-button-right {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .swiper-button-left {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .swiper-button-up {
    top: 0;
    left: 0; }
  .swiper-button-down {
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.card {
  border-radius: 0;
  border: none;
  color: #909090; }

.card-head {
  border-bottom: 1px solid #d6d6d6; }
  .card-head .btn {
    text-transform: capitalize;
    font-size: 16px; }

.collapse-card {
  color: #909090; }
  @media (max-width: 991.98px) {
    .collapse-card > h4 > button[aria-expanded="true"] {
      border-bottom: 1px solid #d6d6d6; } }
  .collapse-card .collapse.show {
    padding: 0; }
  .collapse-card .btn,
  .collapse-card .cell {
    padding-left: 0;
    padding-right: 0;
    color: #606060; }

.collapse-head {
  font-weight: 500; }
  .collapse-head .btn-link {
    height: 1.06667rem;
    font-size: 0.32rem;
    text-transform: capitalize;
    color: #606060; }
    .collapse-head .btn-link:hover {
      text-decoration: none; }
  @media (min-width: 992px) {
    .collapse-head .btn-link {
      height: 42px;
      font-size: 16px; } }

@media (max-width: 991.98px) {
  .px-22 {
    padding-left: 0.29333rem !important;
    padding-right: 0.29333rem !important; }
  .space-mb {
    margin-bottom: 0.4rem; }
  .collapse-card.col-6 {
    padding-left: 0;
    padding-right: 0.2rem; }
    .collapse-card.col-6 + .collapse-card.col-6 {
      padding-left: 0.2rem;
      padding-right: 0; }
    .collapse-card.col-6 .btn {
      position: relative;
      z-index: 2;
      background: #fff; } }

.collapse-body {
  line-height: 1; }
  .collapse-body .item {
    padding: 0.10667rem 0; }
    @media (max-width: 991.98px) {
      .collapse-body .item {
        font-size: 0.32rem; } }

@media (min-width: 992px) {
  .collapse-head {
    border-bottom: 1px solid #d6d6d6; }
  .collapse-body {
    padding-top: 16px;
    line-height: 1; }
    .collapse-body .item {
      padding: 8px 0; } }

.modal-confirm .btn-yes,
.modal-confirm .btn-no {
  width: 2.4rem; }
  @media (min-width: 992px) {
    .modal-confirm .btn-yes,
    .modal-confirm .btn-no {
      width: 180px; } }

.modal-confirm .btn-yes {
  color: #222;
  border-color: #222; }

.modal-confirm .btn + .btn {
  margin-left: 0.26667rem; }
  @media (min-width: 992px) {
    .modal-confirm .btn + .btn {
      margin-left: 20px; } }

@media (min-width: 992px) {
  .modal-confirm .tip-text {
    margin-bottom: 20px;
    font-size: 16px; } }

.modal-alert {
  font-size: 22px; }
  .modal-alert .event-btn {
    margin: 20px; }
  .modal-alert .btn-yes {
    width: 180px;
    height: 60px;
    font-size: 28px;
    text-transform: capitalize; }
  @media (max-width: 991.98px) {
    .modal-alert {
      font-size: 0.29333rem; }
      .modal-alert .modal-dialog {
        max-width: 6.66667rem;
        margin: auto; }
      .modal-alert .modal-header {
        padding: 0.26667rem 0.26667rem 0; }
      .modal-alert .modal-body {
        padding: 0.26667rem; }
      .modal-alert .event-btn {
        margin: 0.34667rem; }
      .modal-alert .btn-yes {
        width: 2.4rem;
        height: 0.8rem;
        font-size: 0.4rem; } }

.view-more {
  display: inline-block;
  width: 4.33333rem;
  line-height: 1.01333rem;
  margin: 0.4rem;
  font-size: 0.4rem;
  color: #888;
  border: 2px solid #d6d6d6;
  cursor: pointer;
  text-transform: capitalize; }
  @media (min-width: 992px) {
    .view-more {
      width: 180px;
      line-height: 38px;
      margin: 50px auto;
      font-size: 16px; } }
  .view-more:hover, .view-more:focus {
    text-decoration: none;
    border-color: #909090; }

.empty {
  text-align: center;
  padding: 0.4rem;
  color: #909090; }
  .empty img {
    width: 3.2rem;
    margin-bottom: 0.26667rem;
    display: inline-block; }
  .empty h3 {
    font-size: 0.48rem;
    color: #606060;
    font-weight: bold;
    margin: 0 0 0.12rem 0; }
  .empty p {
    color: #b5b5b5; }
  .empty .btn {
    min-width: 5.33333rem;
    height: 1.06667rem;
    padding: 0 0.32rem;
    margin: 0.4rem auto 0;
    font-size: 0.4rem; }
  @media (min-width: 992px) {
    .empty {
      padding: 20px; }
      .empty img {
        width: 160px;
        margin-bottom: 12px; }
      .empty h3 {
        font-size: 30px; }
      .empty p {
        font-size: 14px; }
        .empty p .emph {
          font-size: 16px; }
      .empty .btn {
        height: 36px;
        min-width: 160px;
        padding: 0 20px;
        margin-top: 10px;
        font-size: 14px;
        text-transform: capitalize; } }

.stepper-plus,
.stepper-minus {
  background: transparent;
  color: #000;
  width: 20px;
  height: 20px;
  line-height: 17px;
  padding: 0;
  font-size: 14px;
  border-radius: 50% !important; }
  .stepper-plus:hover, .stepper-plus:focus, .stepper-plus:active,
  .stepper-minus:hover,
  .stepper-minus:focus,
  .stepper-minus:active {
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .stepper-plus::disabled,
  .stepper-minus::disabled {
    color: #606060; }

.stepper-input {
  width: 40px;
  text-align: center;
  border-color: transparent;
  background: transparent;
  font-size: 14px; }

/*  checkout */
.form-check {
  padding: 0; }

.form-radio-input,
.form-check-input-circle,
.form-check-input {
  left: -9999px; }
  .form-radio-input + .form-radio-label,
  .form-radio-input + .form-check-label-circle,
  .form-radio-input + .form-check-label,
  .form-check-input-circle + .form-radio-label,
  .form-check-input-circle + .form-check-label-circle,
  .form-check-input-circle + .form-check-label,
  .form-check-input + .form-radio-label,
  .form-check-input + .form-check-label-circle,
  .form-check-input + .form-check-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    .form-radio-input + .form-radio-label::before,
    .form-radio-input + .form-check-label-circle::before,
    .form-radio-input + .form-check-label::before,
    .form-check-input-circle + .form-radio-label::before,
    .form-check-input-circle + .form-check-label-circle::before,
    .form-check-input-circle + .form-check-label::before,
    .form-check-input + .form-radio-label::before,
    .form-check-input + .form-check-label-circle::before,
    .form-check-input + .form-check-label::before {
      display: block;
      content: '';
      width: 0.4rem;
      height: 0.4rem;
      margin-right: 0.29333rem;
      border: 0.02667rem solid; }
      @media (min-width: 992px) {
        .form-radio-input + .form-radio-label::before,
        .form-radio-input + .form-check-label-circle::before,
        .form-radio-input + .form-check-label::before,
        .form-check-input-circle + .form-radio-label::before,
        .form-check-input-circle + .form-check-label-circle::before,
        .form-check-input-circle + .form-check-label::before,
        .form-check-input + .form-radio-label::before,
        .form-check-input + .form-check-label-circle::before,
        .form-check-input + .form-check-label::before {
          width: 12px;
          height: 12px;
          margin-right: 12px;
          border: 1px solid; } }
    .form-radio-input + .form-radio-label .text-link,
    .form-radio-input + .form-check-label-circle .text-link,
    .form-radio-input + .form-check-label .text-link,
    .form-check-input-circle + .form-radio-label .text-link,
    .form-check-input-circle + .form-check-label-circle .text-link,
    .form-check-input-circle + .form-check-label .text-link,
    .form-check-input + .form-radio-label .text-link,
    .form-check-input + .form-check-label-circle .text-link,
    .form-check-input + .form-check-label .text-link {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
  .form-radio-input + .form-radio-label,
  .form-radio-input + .form-check-label-circle,
  .form-check-input-circle + .form-radio-label,
  .form-check-input-circle + .form-check-label-circle,
  .form-check-input + .form-radio-label,
  .form-check-input + .form-check-label-circle {
    cursor: pointer; }
    .form-radio-input + .form-radio-label::before,
    .form-radio-input + .form-check-label-circle::before,
    .form-check-input-circle + .form-radio-label::before,
    .form-check-input-circle + .form-check-label-circle::before,
    .form-check-input + .form-radio-label::before,
    .form-check-input + .form-check-label-circle::before {
      color: #909090;
      width: 0.53333rem;
      height: 0.53333rem;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 0.53333rem;
              flex: 0 0 0.53333rem;
      border-radius: 100%; }
      @media (min-width: 992px) {
        .form-radio-input + .form-radio-label::before,
        .form-radio-input + .form-check-label-circle::before,
        .form-check-input-circle + .form-radio-label::before,
        .form-check-input-circle + .form-check-label-circle::before,
        .form-check-input + .form-radio-label::before,
        .form-check-input + .form-check-label-circle::before {
          width: 20px;
          height: 20px;
          -webkit-box-flex: 0;
              -ms-flex: 0 0 20px;
                  flex: 0 0 20px; } }
  .form-radio-input:checked + .form-check-label::before,
  .form-check-input-circle:checked + .form-check-label::before,
  .form-check-input:checked + .form-check-label::before {
    background: url("../imgs/checked.png") no-repeat;
    background-size: 80%;
    background-position: center; }
  .form-radio-input:checked + .form-check-label-circle::before,
  .form-check-input-circle:checked + .form-check-label-circle::before,
  .form-check-input:checked + .form-check-label-circle::before {
    background: url("../imgs/checked-white.png") no-repeat;
    background-size: 70%;
    background-position: center;
    color: #909090;
    background-color: #909090; }
  .form-radio-input:checked + .form-radio-label::before,
  .form-check-input-circle:checked + .form-radio-label::before,
  .form-check-input:checked + .form-radio-label::before {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb(96,96,96)'/%3e%3c/svg%3e") no-repeat;
    background-size: 92%;
    background-position: center;
    color: #909090; }
  .form-radio-input:hover + .form-radio-label::before,
  .form-radio-input:hover + .form-check-label-circle::before,
  .form-check-input-circle:hover + .form-radio-label::before,
  .form-check-input-circle:hover + .form-check-label-circle::before,
  .form-check-input:hover + .form-radio-label::before,
  .form-check-input:hover + .form-check-label-circle::before {
    color: #606060; }
  .form-radio-input:hover:checked + .form-check-label-circle::before,
  .form-check-input-circle:hover:checked + .form-check-label-circle::before,
  .form-check-input:hover:checked + .form-check-label-circle::before {
    background-color: #606060; }
  .form-radio-input:disabled + .form-radio-label .icon-checked,
  .form-radio-input:disabled + .form-radio-label .icon-not-checked,
  .form-radio-input:disabled + .form-check-label-circle .icon-checked,
  .form-radio-input:disabled + .form-check-label-circle .icon-not-checked,
  .form-radio-input:disabled + .form-check-label .icon-checked,
  .form-radio-input:disabled + .form-check-label .icon-not-checked,
  .form-check-input-circle:disabled + .form-radio-label .icon-checked,
  .form-check-input-circle:disabled + .form-radio-label .icon-not-checked,
  .form-check-input-circle:disabled + .form-check-label-circle .icon-checked,
  .form-check-input-circle:disabled + .form-check-label-circle .icon-not-checked,
  .form-check-input-circle:disabled + .form-check-label .icon-checked,
  .form-check-input-circle:disabled + .form-check-label .icon-not-checked,
  .form-check-input:disabled + .form-radio-label .icon-checked,
  .form-check-input:disabled + .form-radio-label .icon-not-checked,
  .form-check-input:disabled + .form-check-label-circle .icon-checked,
  .form-check-input:disabled + .form-check-label-circle .icon-not-checked,
  .form-check-input:disabled + .form-check-label .icon-checked,
  .form-check-input:disabled + .form-check-label .icon-not-checked {
    cursor: not-allowed; }
  .form-radio-input:disabled + .form-check-label-circle::before,
  .form-check-input-circle:disabled + .form-check-label-circle::before,
  .form-check-input:disabled + .form-check-label-circle::before {
    border-color: #d6d6d6;
    cursor: not-allowed; }

.form-check-label-circle .icon-not-checked,
.form-check-label .icon-not-checked {
  margin-right: 0.13333rem;
  opacity: .6; }

.form-check-label-circle .icon-checked,
.form-check-label .icon-checked {
  margin-right: 0.13333rem; }

.form-check-label-circle:hover .icon-not-checked,
.form-check-label:hover .icon-not-checked {
  opacity: 1; }

.discount-icon {
  position: absolute;
  z-index: 1;
  top: 0;
  padding: 0.13333rem 0;
  line-height: 1.2;
  text-align: center;
  width: 0.8rem;
  background: #d62938;
  color: #fff;
  border-radius: 0.05333rem; }
  .discount-icon-number {
    display: block;
    font-size: 0.24rem;
    font-weight: 700; }
  .discount-icon-off {
    font-size: 0.18667rem;
    text-transform: uppercase; }
  .discount-icon.left {
    left: 0; }
  .discount-icon.right {
    right: 0.13333rem; }
  @media (min-width: 992px) {
    .discount-icon {
      padding: 5px 0;
      width: 50px;
      border-radius: 4px; }
      .discount-icon-number {
        font-size: 18px;
        font-style: normal; }
      .discount-icon-off {
        font-size: 14px; }
      .discount-icon.right {
        right: 10px; } }

.sale-label {
  width: 0.8rem; }
  @media (min-width: 992px) {
    .sale-label {
      width: 50px; } }

.goods {
  font-size: 14px;
  color: #909090; }
  .goods-name {
    font-size: 14px; }
    .goods-name:hover, .goods-name:focus {
      text-decoration: underline; }
    .goods-name > a {
      color: inherit; }
  .goods-price {
    min-height: 30px; }
    .goods-price__current {
      color: #606060;
      font-size: 16px;
      font-family: "FuturaStd-Heavy"; }
      .goods-price__current.promot {
        color: #d62938; }
    .goods-price__old {
      margin-left: 16px;
      font-size: 14px;
      text-decoration: line-through; }
  .goods-discont {
    height: 30px; }
    .goods-discont .icon {
      margin-right: 10px;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 20px;
              flex: 0 0 20px; }

@media (max-width: 991.98px) {
  .goods {
    font-size: 0.32rem; }
    .goods-name {
      height: 0.74667rem;
      font-size: 0.26667rem; }
    .goods-price {
      min-height: 0.8rem; }
      .goods-price .icon {
        width: 0.4rem;
        height: 0.4rem; }
      .goods-price__current {
        font-size: 0.4rem; }
      .goods-price__old {
        margin-left: 0.13333rem;
        font-size: 0.26667rem; }
    .goods-discont {
      height: 0.74667rem; }
      .goods-discont .icon {
        margin-right: 0.13333rem;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 0.57333rem;
                flex: 0 0 0.57333rem; } }

.gcard-group {
  margin: 0 -0.2rem; }
  @media (min-width: 992px) {
    .gcard-group {
      margin: 0 -15px; } }

.gcard {
  position: relative;
  padding-bottom: 0.53333rem;
  color: #b5b5b5;
  word-wrap: break-word;
  cursor: pointer;
  font-size: 0.26667rem; }
  .gcard strong {
    font-weight: 500; }
  .gcard-img {
    width: 100%; }
  .gcard-img-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 0;
    padding-top: 140%; }
    .gcard-img-wrap > a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .gcard-img-wrap .img-fluid {
      width: 100%; }
    .gcard-img-wrap .viewGo {
      display: none;
      position: absolute;
      bottom: 27.31092%;
      right: 0;
      left: 0;
      margin: auto;
      width: 70.58824%;
      line-height: 40px;
      text-align: center;
      background: rgba(255, 255, 255, 0.85);
      color: #606060;
      font-size: 18px; }
      .gcard-img-wrap .viewGo:hover, .gcard-img-wrap .viewGo:focus {
        background: white; }
  .gcard-body {
    position: relative; }
  .gcard .goods-actions {
    margin-top: 0.26667rem; }
    .gcard .goods-actions .btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 0.93333rem;
      font: 0.4rem "FuturaStd-Medium";
      text-transform: capitalize;
      white-space: nowrap;
      outline: none; }
    .gcard .goods-actions .btn-delete {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 1.25333rem;
              flex: 0 1 1.25333rem;
      color: #909090;
      background-color: #f9f9f9; }
    .gcard .goods-actions .btn-primary {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
  .gcard-name {
    font-size: 0.26667rem;
    color: #888; }
    @media (max-width: 991.98px) {
      .gcard-name {
        padding: 0.13333rem 0;
        height: 0.74667rem; } }
    .gcard-name:hover, .gcard-name:focus {
      text-decoration: underline; }
    .gcard-name > a {
      color: inherit; }
  .gcard-price {
    min-height: 0.4rem; }
    .gcard-price .icon {
      margin-bottom: 0.10667rem;
      width: 0.4rem;
      height: 0.4rem; }
    .gcard-price__current {
      color: #606060;
      font-size: 0.32rem;
      font-family: "FuturaStd-Heavy"; }
      .gcard-price__current.promot {
        color: #d62938; }
    .gcard-price__old {
      color: #b5b5b5;
      text-decoration: line-through; }
  .gcard-discont {
    position: absolute;
    top: -0.64rem;
    height: 0.64rem;
    line-height: 0.64rem;
    font-size: 0.34667rem;
    color: #fff;
    text-transform: capitalize; }
    .gcard-discont a {
      color: inherit; }
    .gcard-discont-text.primary-discont {
      width: 100%;
      background: rgba(255, 50, 50, 0.8); }
    .gcard-discont-popup {
      position: absolute;
      bottom: 0.62667rem;
      left: 0;
      right: 0;
      display: none;
      width: 78.76923%;
      margin: 0 auto 0;
      padding-bottom: 0.24rem; }
      .gcard-discont-popup .gcard-discont-text {
        background: rgba(0, 0, 0, 0.5); }
    .gcard-discont:hover a {
      text-decoration: none; }
    .gcard-discont:hover .gcard-discont-popup {
      display: block; }
  .gcard.sold-out {
    color: #b5b5b5; }
    .gcard.sold-out .gcard-img-wrap {
      position: relative;
      overflow: hidden; }
      .gcard.sold-out .gcard-img-wrap::after {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0);
                transform: translate3d(-50%, -50%, 0);
        width: 2.4rem;
        height: 2.4rem;
        content: 'Sold Out';
        border-radius: 100%;
        background: #fff;
        color: #d62938;
        font-weight: 700;
        -webkit-box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.65);
                box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.65); }
    .gcard.sold-out .gcard-body {
      padding-bottom: 0.53333rem; }
    .gcard.sold-out .gcard-name {
      color: #b5b5b5; }
    .gcard.sold-out .gcard-price {
      margin-top: 0.06667rem; }
      .gcard.sold-out .gcard-price__current {
        color: #b5b5b5; }
      .gcard.sold-out .gcard-price__old {
        color: #b5b5b5; }
  .gcard .sku-map {
    min-height: 0.6rem;
    padding: 0.05333rem 0 0.05333rem 0.05333rem;
    margin-top: 0.08rem;
    overflow: hidden; }
  .gcard .sku-map-item {
    margin-right: 0.2rem;
    width: 0.49333rem;
    height: 0.49333rem;
    -webkit-box-shadow: 0 0 0 0.05333rem #eee;
            box-shadow: 0 0 0 0.05333rem #eee;
    outline: 0.02667rem solid #fff; }
    .gcard .sku-map-item:hover, .gcard .sku-map-item:focus {
      -webkit-box-shadow: 0 0 0 0.05333rem #606060;
              box-shadow: 0 0 0 0.05333rem #606060; }
    .gcard .sku-map-item img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
    .gcard .sku-map-item.active {
      -webkit-box-shadow: 0 0 0 0.05333rem #606060;
              box-shadow: 0 0 0 0.05333rem #606060; }
    .gcard .sku-map-item.more {
      margin: 0; }
    @media (max-width: 991.98px) {
      .gcard .sku-map-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 0.53333rem;
                flex: 0 0 0.53333rem; }
        .gcard .sku-map-item.more {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          width: 0.53333rem;
          height: 0.53333rem; } }

@media (min-width: 992px) {
  .gcard {
    font-size: 14px;
    padding-bottom: 44px; }
    .gcard .goods-actions {
      margin-top: 18px; }
      .gcard .goods-actions .btn {
        height: 46px;
        font-size: 20px; }
      .gcard .goods-actions .btn-delete {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 94px;
                flex: 0 1 94px; }
    .gcard-name {
      font-size: 14px;
      height: 35px;
      padding: 8px 0 0; }
    .gcard-img-wrap:hover .viewGo {
      display: block; }
    .gcard-price {
      min-height: 30px; }
      .gcard-price .icon {
        width: 20px;
        height: 20px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 20px;
                flex: 0 0 20px;
        margin-right: 6px;
        margin-bottom: 6px;
        color: #909090; }
      .gcard-price__current {
        font-size: 20px;
        font-family: "FuturaStd-Heavy"; }
      .gcard-price__old {
        font-size: 14px; }
    .gcard-discont {
      top: -30px;
      height: 30px;
      line-height: 30px;
      font-size: 18px; }
      .gcard-discont-popup {
        bottom: 29px;
        padding-bottom: 6px; }
    .gcard.sold-out .gcard-img-wrap::after {
      width: 80px;
      height: 80px; }
    .gcard.sold-out .gcard-price {
      margin-top: 5px; }
    .gcard .sku-map {
      min-height: 34px;
      padding: 3px 0 3px 3px;
      margin-top: 6px; }
    .gcard .sku-map-item {
      position: relative;
      display: inline-block;
      width: 8.82353%;
      height: 0;
      padding-top: 8.82353%;
      margin: 0 4% 0 0;
      margin-right: 3.82353% \9;
      -webkit-box-shadow: 0 0 0 3px #eee;
              box-shadow: 0 0 0 3px #eee;
      outline: 2px solid #fff; }
      .gcard .sku-map-item:hover, .gcard .sku-map-item:focus {
        -webkit-box-shadow: 0 0 0 3px #606060;
                box-shadow: 0 0 0 3px #606060; }
      .gcard .sku-map-item img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto; }
      .gcard .sku-map-item.active {
        -webkit-box-shadow: 0 0 0 3px #606060;
                box-shadow: 0 0 0 3px #606060; }
      .gcard .sku-map-item.more {
        padding-top: 8.23529%;
        margin: 0;
        -webkit-box-shadow: 0 0 0 3px #000;
                box-shadow: 0 0 0 3px #000;
        outline: 2px solid #fff; }
        .gcard .sku-map-item.more .icon-add-sub {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto; }
    .gcard .icon-wish {
      width: 20px;
      height: 18px; } }

.common-banner {
  padding-bottom: 44px; }
  @media (max-width: 991.98px) {
    .common-banner {
      padding-bottom: 0.53333rem; } }

.details-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .details-swiper .swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.25em;
            flex: 0 0 4.25em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 4.25em;
    min-height: 4.25em;
    margin-right: 0.625em; }
    .details-swiper .swiper-nav .swiper-container-thumbs {
      width: 100%; }
    .details-swiper .swiper-nav .swiper-button-next,
    .details-swiper .swiper-nav .swiper-button-prev {
      position: relative;
      margin-top: 0;
      height: 1.25em;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 1.25em;
              flex: 0 0 1.25em; }
    .details-swiper .swiper-nav .swiper-button-disabled {
      display: block !important; }
    .details-swiper .swiper-nav .swiper-slide {
      opacity: .56;
      cursor: pointer;
      text-align: center; }
      .details-swiper .swiper-nav .swiper-slide:hover, .details-swiper .swiper-nav .swiper-slide:focus {
        opacity: .75; }
    .details-swiper .swiper-nav .swiper-slide-thumb-active {
      opacity: 1 !important; }
  .details-swiper .swiper-content {
    width: 25em;
    min-height: 25em; }
    .details-swiper .swiper-content .swiper-button {
      display: none; }
    .details-swiper .swiper-content .swiper-slide {
      text-align: center; }
    .details-swiper .swiper-content:hover .swiper-button:not(.swiper-button-lock), .details-swiper .swiper-content:focus .swiper-button:not(.swiper-button-lock) {
      display: block; }
  .details-swiper .discount-icon.right {
    width: 1.06667rem;
    height: 1.06667rem;
    right: 0.46667rem;
    border-radius: 0.10667rem; }
    @media (min-width: 992px) {
      .details-swiper .discount-icon.right {
        width: 70px;
        height: 70px;
        right: 25px;
        border-radius: 6px; } }
  .details-swiper .discount-icon-number {
    font-size: 0.4rem; }
    @media (min-width: 992px) {
      .details-swiper .discount-icon-number {
        font-size: 26px; } }
  .details-swiper .discount-icon-off {
    font-size: 0.32rem; }
    @media (min-width: 992px) {
      .details-swiper .discount-icon-off {
        font-size: 18px; } }

/*---------------right----------------*/
.datails-content {
  margin-left: 1.25em;
  line-height: 1.2;
  color: #888; }
  .datails-content .btn-add-to-bag {
    height: 56px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
    font-size: 26px; }
    @media (min-width: 768px) and (max-width: 1199.98px) {
      .datails-content .btn-add-to-bag {
        height: 49px;
        font-size: 22px; } }

.goods-detail-name {
  line-height: 1;
  margin-bottom: 1.25em;
  font-size: 1.125em;
  color: #909090; }

.goods-detail-price {
  margin-bottom: 0.75em; }
  @media (max-width: 991.98px) {
    .goods-detail-price {
      margin-bottom: 0.66667rem; } }

.goods-detail-price__current {
  font-size: 1.875em;
  color: #606060;
  font-family: FuturaStd-Heavy;
  margin-right: 0.625em; }

.goods-detail-price__old {
  font-size: 1.125em;
  color: #909090;
  text-decoration: line-through; }

.discount-text {
  margin-left: 0.26667rem; }
  @media (min-width: 992px) {
    .discount-text {
      margin-left: 10px; } }

.goods-detail-discount__item .icon {
  margin-right: 0.625em; }

.goods-detail-discount__item .icon-arrow::after {
  width: 8px;
  height: 8px; }

.goods-detail-discount__item .more {
  margin-left: 1.625em; }

.goods-detail-pro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.625em;
  font-size: 1em; }

.goods-detail-pro__lable {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.75em;
          flex: 0 0 3.75em;
  padding-top: 0.375em; }

.goods-detail-pro__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .goods-detail-pro__value .text-link {
    margin-bottom: 0.625em;
    text-decoration: underline; }
  .goods-detail-pro__value .text {
    margin-bottom: 0.625em; }

.goods-detail-pro__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .goods-detail-pro__thumbs .pro-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 2.5em;
    line-height: 2.5em;
    min-width: 2.5em;
    margin: 0 1.25em 0.625em 0;
    border: 1px  solid transparent;
    outline: 1px  solid transparent;
    cursor: pointer; }
    .goods-detail-pro__thumbs .pro-item.auto {
      width: auto; }
    .goods-detail-pro__thumbs .pro-item.active {
      border-color: #fff;
      outline-color: #606060;
      color: #606060; }
    .goods-detail-pro__thumbs .pro-item.disabled {
      border-color: #fff;
      outline: 1px dotted #606060;
      opacity: .5; }
    .goods-detail-pro__thumbs .pro-item:hover, .goods-detail-pro__thumbs .pro-item:focus {
      border-color: #fff;
      outline-color: #606060; }
    .goods-detail-pro__thumbs .pro-item.active.disabled {
      border: 2px solid #999;
      outline: 0; }
  .goods-detail-pro__thumbs .img-fluid {
    height: 100%; }

.goods-detail-color {
  margin-bottom: 1.25em; }

.goods-detail-size-tips {
  padding: 0.625em 1.25em;
  margin-bottom: 1.25em;
  background: #f6f6f6;
  font-size: 0.875em;
  color: #606060; }

.goods-detail-qty {
  line-height: 1.4;
  margin: 1.25em 0; }

.goods-detail-other-actions {
  font-size: 1.125em; }
  .goods-detail-other-actions .icon {
    margin-right: 0.625em; }
  .goods-detail-other-actions .pr {
    padding-right: 1.25em; }
  .goods-detail-other-actions .pl {
    padding-left: 1.25em; }

.modal-quickview .goods-detail-discount__item {
  margin-bottom: 0.625em; }

.modal-quickview .goods-detail-name.text-truncate {
  max-width: 420px; }

.modal-quickview .ship {
  margin-bottom: 20px !important; }

.modal-quickview .modal-dialog {
  margin-left: 0.46667rem;
  margin-right: 0.46667rem; }

.modal-quickview .modal-dialog-centered {
  max-height: 90%; }

.modal-quickview .modal-content {
  width: 100%; }

.modal-quickview .close {
  padding: 0; }

.modal-quickview.modal-loading .modal-dialog {
  width: 100%;
  height: 100%; }

.modal-quickview.modal-loading .modal-content {
  height: 100%;
  background: transparent;
  border-color: transparent; }

.modal-quickview.modal-loading .modal-header {
  display: none; }

@media (max-width: 767.98px) {
  .modal-quickview .goods-detail-discount {
    margin-bottom: 0.53333rem; }
  .modal-quickview .datails-content {
    width: 100%;
    margin: 0.53333rem 0 0; }
  .modal-quickview .goods-detail-price {
    height: 0.66667rem;
    margin-bottom: 0; }
    .modal-quickview .goods-detail-price .goods-detail-price__current {
      font-size: 0.48rem;
      margin-right: 0.26667rem; }
    .modal-quickview .goods-detail-price .goods-detail-price__old {
      font-size: 0.32rem; }
  .modal-quickview .goods-detail-discount .icon-arrow::after {
    margin-top: 0.05333rem; }
  .modal-quickview .goods-detail-pro {
    padding: 0.26667rem 0 0; }
    .modal-quickview .goods-detail-pro .goods-detail-pro__lable {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 1.06667rem; }
    .modal-quickview .goods-detail-pro .goods-detail-pro__thumbs {
      width: 100%;
      overflow: hidden;
      overflow-x: auto;
      white-space: nowrap; }
      .modal-quickview .goods-detail-pro .goods-detail-pro__thumbs .pro-item {
        margin: 0.05333rem 0.24rem 0.18667rem 0.02667rem;
        min-width: 0.93333rem;
        height: 0.93333rem;
        line-height: 0.93333rem;
        display: inline-block; }
    .modal-quickview .goods-detail-pro.goods-detail-color {
      margin: 0; }
    .modal-quickview .goods-detail-pro .text {
      display: none; }
    .modal-quickview .goods-detail-pro.goods-detail-size {
      position: relative; }
      .modal-quickview .goods-detail-pro.goods-detail-size .text-link {
        margin-top: 0.13333rem; }
  .modal-quickview .modal-header {
    padding: 0; }
  .modal-quickview .modal-body {
    padding: 0.4rem 0.4rem 0; }
  .modal-quickview .swiper-nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.73333rem;
            flex: 0 0 1.73333rem;
    width: 1.73333rem;
    margin-right: 0.26667rem;
    height: 7.52rem;
    max-height: 7.52rem; }
    .modal-quickview .swiper-nav .swiper-button-next,
    .modal-quickview .swiper-nav .swiper-button-prev {
      height: 0.53333rem;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 0.53333rem;
              flex: 0 0 0.53333rem; }
  .modal-quickview .swiper-content {
    width: 5.33333rem;
    min-height: 7.52rem;
    height: 7.52rem;
    margin-right: 0.26667rem;
    max-height: 7.52rem; }
  .modal-quickview .close {
    position: absolute;
    right: 0;
    z-index: 2;
    margin: 0.13333rem;
    padding: 0.26667rem; }
    .modal-quickview .close .icon-close {
      width: 0.61333rem;
      height: 0.61333rem; }
  .modal-quickview .btn-add-to-bag {
    width: calc(100% + 1.6rem);
    max-width: 992px;
    height: 1.33333rem;
    margin: 0.26667rem -0.4rem 0;
    font-size: 0.4rem; } }

@media (min-width: 768px) {
  .modal-quickview {
    font-size: 10px; }
    .modal-quickview .goods-detail-discount {
      min-height: 1.875em;
      padding-bottom: 0.625em; }
    .modal-quickview .goods-detail-discount__item {
      margin-bottom: 0.625em; }
    .modal-quickview .goods-detail-name.text-truncate {
      max-width: 420px; }
    .modal-quickview .ship {
      margin-bottom: 20px !important; }
    .modal-quickview .swiper-nav {
      max-height: 35em; }
    .modal-quickview .swiper-content {
      max-height: 35em; }
    .modal-quickview .modal-header {
      padding-top: 0.625em; }
    .modal-quickview .modal-dialog {
      margin: 2.5em auto; }
    .modal-quickview .modal-content {
      font-size: 14px; } }
    @media (min-width: 768px) and (min-width: 768px) and (max-width: 1199.98px) {
      .modal-quickview .modal-content {
        font-size: 12px;
        padding: 10px; } }

@media (min-width: 768px) {
    .modal-quickview .close {
      padding: 0; }
    .modal-quickview .icon-close {
      width: 2.14286em;
      height: 2.14286em; }
    .modal-quickview.modal-loading .modal-dialog {
      width: 100%;
      height: 100%; }
    .modal-quickview.modal-loading .modal-content {
      background: transparent;
      border-color: transparent; }
    .modal-quickview.modal-loading .modal-header {
      display: none; } }

@media (min-width: 992px) {
  .modal-quickview .modal-content {
    width: 1000px;
    min-height: 550px;
    font-size: 14px; } }

.channel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.33333rem;
  padding: 0 0.46667rem;
  margin: 0;
  font-size: 0.4rem; }
  .channel-header .go-back {
    margin-right: 0.4rem; }

.nav-menu {
  position: relative;
  background: white; }
  .nav-menu .nav-item {
    height: 100%; }
    .nav-menu .nav-item:hover .nav-drowpdown {
      display: block;
      -webkit-box-shadow: 0 100vh 0 100vh rgba(0, 0, 0, 0.4);
              box-shadow: 0 100vh 0 100vh rgba(0, 0, 0, 0.4); }
  .nav-menu .nav-link {
    padding: 0 20px;
    line-height: 40px;
    color: #606060; }
    .nav-menu .nav-link > img {
      max-height: 40px; }
  .nav-menu .link a:hover,
  .nav-menu .nav-link:hover {
    text-decoration: underline;
    color: #606060;
    white-space: nowrap; }
  .nav-menu .nav-drowpdown {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    z-index: 5;
    padding: 40px 0; }
  .nav-menu .links {
    max-height: 300px; }
    @media (min-width: 992px) {
      .nav-menu .links {
        max-height: 380px; } }
    .nav-menu .links .link {
      padding: 0 20px 14px 0;
      display: inline-block;
      line-height: 1;
      color: #909090;
      white-space: nowrap; }
      @media (min-width: 992px) {
        .nav-menu .links .link {
          padding-right: 30px; } }
    .nav-menu .links .link-title.link {
      padding-bottom: 20px;
      white-space: nowrap;
      font-weight: 500;
      color: #606060; }
  .nav-menu .media {
    margin-left: 30px; }
    .nav-menu .media:first-child {
      margin-left: 0; }
    .nav-menu .media .text {
      margin: 16px 0;
      line-height: 1;
      font-size: 16px; }
    .nav-menu .media img {
      width: 260px; }

#m_menu_modal .icon-user {
  width: 0.61333rem;
  height: 0.61333rem;
  margin-right: 0.26667rem; }

.menu-cate {
  font-size: 0.4rem; }
  .menu-cate [aria-expanded="true"] {
    border-bottom: 1px solid #d6d6d6; }

.meun-sub {
  font-size: 0.8em; }
  .meun-sub .list-group-item {
    padding: 0;
    margin-left: 0.46667rem;
    min-height: 1.06667rem; }
    .meun-sub .list-group-item > [data-toggle="collapse"] {
      height: 1.06667rem; }
    .meun-sub .list-group-item a {
      color: #909090;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .meun-sub .list-group-item a:not[data-toggle="collapse"] {
        display: block;
        color: #909090; }

.menu-other-item {
  background: #f8f8f8; }
  .menu-other-item .collapse {
    background: #fff; }
  .menu-other-item .list-group-symbol > span {
    height: 1.06667rem; }

#collapseCurrency {
  padding-left: 0.4rem; }
  #collapseCurrency .meun-sub {
    margin-top: -1px;
    background: #fff linear-gradient(#d6d6d6 1px, transparent 0);
    background-size: 100% 1.06667rem;
    background-position: 100% 0; }
    #collapseCurrency .meun-sub .symbol-item .currency-icon {
      width: 0.64rem;
      height: 0.42667rem; }

.swiper-marqueen {
  height: 0.66667rem;
  line-height: 0.66667rem;
  color: #0a51e9;
  background: #f8f8f8;
  overflow: hidden;
  font-size: 0.32rem; }
  .swiper-marqueen .swiper-slide {
    text-align: center;
    white-space: nowrap; }
  .swiper-marqueen a {
    color: inherit; }

@media (min-width: 992px) {
  .swiper-marqueen {
    height: 26px;
    line-height: 26px;
    margin: 0 10px;
    background: transparent;
    font-size: 14px; }
    .swiper-marqueen .swiper-slide {
      text-align: left; } }

.m_search_pannel {
  padding: 0 0.46667rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .2s ease-out;
  transition: max-height .2s ease-out;
  font-size: 0.4rem; }
  .m_search_pannel.open {
    max-height: 88.88rem;
    -webkit-transition: max-height .2s ease-in;
    transition: max-height .2s ease-in; }
  .m_search_pannel .close-wrap {
    height: 1.33333rem; }
  .m_search_pannel .icon-close {
    width: 0.58667rem;
    height: 0.58667rem; }
  .m_search_pannel .search-input .btn {
    width: 2.26667rem;
    height: 1.33333rem;
    font-size: 0.45333rem; }
  .m_search_pannel .form-control {
    font-size: 0.4rem;
    border-radius: 0; }
  .m_search_pannel .search-title {
    height: 1.38667rem;
    padding-top: 0.13333rem;
    margin: 0;
    line-height: 1.38667rem;
    font-size: 0.4rem; }
  .m_search_pannel .hot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .m_search_pannel .hot-key {
    height: 0.93333rem;
    line-height: 0.93333rem;
    padding: 0 0.33333rem;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    background: #f9f9f9;
    color: #000;
    border: 1px solid #888;
    border-radius: 2px; }

@media (min-width: 992px) {
  .input-group-search {
    z-index: 2;
    width: 184px;
    margin-right: 15px;
    border-bottom: 1px solid #909090;
    border-radius: 0; }
    .input-group-search .form-control {
      display: block;
      padding-left: 0;
      padding-bottom: 0;
      height: 28px;
      margin-top: 10px;
      border: none;
      border-radius: 0;
      font-size: 14px; }
      .input-group-search .form-control:hover, .input-group-search .form-control:focus, .input-group-search .form-control:active {
        outline: none;
        -webkit-box-shadow: none;
                box-shadow: none; }
    .input-group-search .btn {
      line-height: 24px;
      padding-right: 0 !important; }
  .search_pannel {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 184px;
    padding: 5px 0;
    border-top: 1px solid #d5d5d5;
    background: #f9f9f9;
    overflow: hidden; }
    .search_pannel.open {
      display: block; }
  .hot-key {
    display: block;
    padding: 6px 20px; }
    .hot-key:hover {
      color: #606060; } }

.logo {
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "FuturaStd-Heavy", arial, sans-serif;
  font-size: 0.53333rem; }
  .logo .icon-logo {
    width: 2.82667rem;
    height: 0.8rem; }
  @media (min-width: 992px) {
    .logo {
      padding-left: 2px;
      font-size: 30px;
      letter-spacing: 2px; }
      .logo .icon-logo {
        width: 184px;
        height: 52px; } }
  .logo a {
    text-decoration: none; }

.nav-filter .nav-link {
  line-height: 1.17333rem; }

.nav-filter .dropdown-item {
  padding: 0; }
  .nav-filter .dropdown-item:last-child {
    border-bottom-color: transparent; }

.nav-filter .dropdown-menu {
  width: 5.06667rem;
  left: 5px !important; }

.nav-filter .dropdown-cat .dropdown-menu {
  min-width: 10rem; }

.animated {
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.animated.slideDown {
  -webkit-animation-name: slideDown;
          animation-name: slideDown; }

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }

.header {
  position: relative;
  z-index: 99;
  background-color: #292f36; }
  .header--fixed {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%; }
  .header a {
    color: inherit; }
  @media (min-width: 992px) {
    .header {
      border-bottom: 1px solid #d6d6d6; }
      .header .header-main {
        height: 100px; } }
  @media (max-width: 991.98px) {
    .header .header-main {
      height: 1.6rem;
      padding: 0.08rem 0.2rem;
      border-bottom: 1px solid #d6d6d6; } }
  .header .icon-wrap {
    padding: 0 0.26667rem; }
    @media (max-width: 991.98px) {
      .header .icon-wrap-search {
        margin-right: 0.26667rem; } }
    @media (min-width: 992px) {
      .header .icon-wrap {
        padding: 0 15px; } }
  .header .header-r .dropdown-menu {
    right: 0;
    left: auto; }
  .header .dropdown-toggle {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.18667rem 0.26667rem 0.18667rem 0.18667rem;
    white-space: nowrap; }
    .header .dropdown-toggle .icon-shopping-bag {
      height: 0.6rem; }
    @media (min-width: 992px) {
      .header .dropdown-toggle {
        padding: 10px; }
        .header .dropdown-toggle .icon-customer-care {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 20px;
                  flex: 0 0 20px;
          margin-right: 10px; }
        .header .dropdown-toggle .icon-shopping-bag {
          height: 26px; } }
  .header .dropdown-dollor .dropdown-menu {
    width: 230px; }
  .header .badge {
    position: absolute;
    right: 5px;
    bottom: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0;
    font-size: 60%;
    border-radius: 100%; }
    @media (max-width: 991.98px) {
      .header .badge {
        width: 0.45333rem;
        height: 0.45333rem;
        line-height: 0.45333rem;
        right: 0.06667rem;
        bottom: 0.21333rem; } }

.dropdown-shopcart .dropdown-menu {
  padding: 0; }

.dropdown-shopcart .empty {
  width: 258px;
  padding: 20px 10px; }
  .dropdown-shopcart .empty p {
    font-size: 16px; }

.dropdown-shopcart .shoping-list {
  width: 360px;
  background: #f9f9f9; }

.dropdown-shopcart .goods-card {
  max-height: 320px;
  padding: 10px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #909090; }
  .dropdown-shopcart .goods-card .media {
    padding: 10px 0; }

.dropdown-shopcart .img-thumbnail {
  width: 90px;
  height: auto;
  max-height: 127px;
  padding: 0;
  margin-right: 10px;
  border-radius: 0; }

.dropdown-shopcart .goods-name {
  color: #b5b5b5;
  width: 200px; }
  @media (min-width: 992px) {
    .dropdown-shopcart .goods-name {
      margin-bottom: 10px; } }

.dropdown-shopcart .close:hover, .dropdown-shopcart .close:focus {
  opacity: 1; }

.dropdown-shopcart .goods-summary {
  padding: 0 20px;
  color: #606060; }
  .dropdown-shopcart .goods-summary .btn {
    height: 40px;
    font-size: 18px; }
  .dropdown-shopcart .goods-summary .goods-summary-total {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: "FuturaStd-Heavy"; }
  .dropdown-shopcart .goods-summary .actions {
    padding: 20px 0; }

.dropdown-shopcart .discount-msg {
  height: 54px;
  color: #6d6d6d;
  text-transform: capitalize; }

.symbol-item {
  width: 1.46667rem;
  height: 0.42667rem;
  border-color: #d6d6d6; }
  .symbol-item.active {
    border-color: #f41434; }
  @media (min-width: 992px) {
    .symbol-item {
      width: 90px;
      height: 25px; }
      .symbol-item .currency-text {
        margin-left: 8px; }
      .symbol-item .currency-icon {
        width: 24px;
        height: 16px;
        background: url("../imgs/pc-flag.jpg") no-repeat scroll 0 0 transparent;
        overflow: hidden; }
      .symbol-item .currency-CAD {
        background-position: left top; }
      .symbol-item .currency-USD {
        background-position: left -16px; }
      .symbol-item .currency-AUD {
        background-position: left -32px; }
      .symbol-item .currency-EUR {
        background-position: left -48px; }
      .symbol-item .currency-MXN {
        background-position: left -64px; }
      .symbol-item .currency-GBP {
        background-position: left -80px; }
      .symbol-item .currency-HUF {
        background-position: left  -96px; }
      .symbol-item .currency-ARS {
        background-position: left -112px; }
      .symbol-item .currency-HRK {
        background-position: left -128px; }
      .symbol-item .currency-CZK {
        background-position: left -144px; }
      .symbol-item .currency-NOK {
        background-position: left -160px; }
      .symbol-item .currency-PLN {
        background-position: left -176px; }
      .symbol-item .currency-CLP {
        background-position: left -192px; }
      .symbol-item .currency-RON {
        background-position: left -208px; }
      .symbol-item .currency-NZD {
        background-position: left -224px; }
      .symbol-item .currency-CHF {
        background-position: left -240px; } }

.tpadcomm {
  overflow: hidden; }

.tpadpic img {
  height: auto; }

@media (min-width: 992px) {
  .tpadpic img {
    max-width: 1920px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: -960px;
    -webkit-transform: translate3d(480px, 0, 0);
            transform: translate3d(480px, 0, 0); } }

.footer {
  margin-top: 40px; }
  @media (max-width: 991.98px) {
    .footer {
      font-size: 0.32rem;
      margin-top: 0.32rem; } }
  .footer .nav-h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 1.06667rem;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.32rem; }
    @media (min-width: 992px) {
      .footer .nav-h {
        height: auto;
        margin-bottom: 20px;
        font-size: 14px;
        border-bottom: none !important; } }
    .footer .nav-h .icon-add-sub::before,
    .footer .nav-h .icon-add-sub::after {
      background: #fff; }
  .footer .social-item {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.4rem; }
    @media (min-width: 992px) {
      .footer .social-item {
        width: 30px;
        height: 30px;
        margin-right: 20px; } }
    .footer .social-item:last-child {
      margin: 0; }

.footer-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0.66667rem 0; }
  .footer-subscribe .input-group {
    width: 6.96rem;
    margin: 0.13333rem auto; }
  .footer-subscribe .form-control {
    height: 0.8rem;
    width: 5.09333rem;
    background: transparent;
    border: 1px solid #7b7b7b;
    border-radius: 0;
    color: #fff; }
    .footer-subscribe .form-control::-webkit-input-placeholder {
      color: #7b7b7b; }
    .footer-subscribe .form-control:-ms-input-placeholder {
      color: #7b7b7b; }
    .footer-subscribe .form-control::-ms-input-placeholder {
      color: #7b7b7b; }
    .footer-subscribe .form-control::placeholder {
      color: #7b7b7b; }
  .footer-subscribe .btn {
    height: 0.8rem;
    line-height: 1;
    background: #fff;
    color: #3d3d3d;
    font-size: 0.32rem; }
  @media (max-width: 991.98px) {
    .footer-subscribe .nav-h {
      font-size: 0.29333rem; } }
  @media (min-width: 992px) {
    .footer-subscribe {
      padding: 0 0 0 8.0597%;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start; }
      .footer-subscribe .input-group {
        margin: 0;
        width: 100%; }
      .footer-subscribe .form-control {
        height: 30px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
      .footer-subscribe .btn {
        height: 30px;
        width: 100px;
        padding: 0;
        font-size: 14px; } }

@media (min-width: 992px) {
  .footer-nav-item {
    margin-right: 8.0597%; }
    .footer-nav-item .collapse {
      display: block; } }

.footer-nav-item .nav-h {
  padding: 0 0.66667rem;
  white-space: nowrap;
  border-bottom: 1px solid #7b7b7b; }
  @media (min-width: 992px) {
    .footer-nav-item .nav-h {
      padding: 0; } }

.footer-nav-item .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  color: #606060; }
  @media (min-width: 992px) {
    .footer-nav-item .list {
      background: transparent;
      color: #acacac; } }

.footer-nav-item .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.06667rem;
  padding: 0 0.66667rem;
  border-bottom: 1px solid #d6d6d6; }
  .footer-nav-item .list-item::after {
    display: block;
    content: '';
    width: 0.26667rem;
    height: 0.26667rem;
    border: 2px solid #909090;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-radius: 2px 0 2px; }
  @media (min-width: 992px) {
    .footer-nav-item .list-item {
      height: auto;
      padding: 0 0 8px 0;
      border-bottom: none; }
      .footer-nav-item .list-item::after {
        display: none; } }

.footer-nav-social {
  padding: 0.26667rem 0;
  text-align: center; }
  @media (min-width: 992px) {
    .footer-nav-social {
      padding: 0;
      text-align: left; } }

.footer-copyright {
  height: 1.22667rem;
  padding: 0.13333rem 0.26667rem;
  font-size: 0.21333rem;
  border-top: 1px solid #7b7b7b; }
  .footer-copyright .img {
    height: 0.4rem;
    margin: 0.13333rem; }

@media (min-width: 992px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 60px;
    padding-bottom: 60px; }
  .footer-copyright {
    height: 50px;
    font-size: 12px; }
    .footer-copyright .img {
      height: 30px;
      margin: 0; } }

.email_toast_modal .modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 9.06667rem;
  height: 6.66667rem; }
  @media (min-width: 992px) {
    .email_toast_modal .modal-dialog {
      height: 370px;
      width: auto; } }

.email_toast_modal .modal-body h6 {
  font-size: 0.56rem; }
  @media (min-width: 992px) {
    .email_toast_modal .modal-body h6 {
      font-size: 28px; } }

.email_toast_modal .modal-body .tips {
  margin-top: 0.26667rem; }
  @media (min-width: 992px) {
    .email_toast_modal .modal-body .tips {
      margin-top: 24px; } }

.email_toast_modal .modal-body .coupon {
  width: 7.36rem;
  height: 2rem;
  margin: auto; }
  @media (min-width: 992px) {
    .email_toast_modal .modal-body .coupon {
      width: 368px;
      height: 100px; } }
  .email_toast_modal .modal-body .coupon img {
    left: 0;
    top: 0; }
  .email_toast_modal .modal-body .coupon span {
    line-height: 2rem;
    font-size: 0.66667rem; }
    @media (min-width: 992px) {
      .email_toast_modal .modal-body .coupon span {
        line-height: 100px;
        font-size: 36px; } }

.email_toast_modal .modal-body #email_toast_btn {
  min-width: 7.73333rem; }
  @media (min-width: 992px) {
    .email_toast_modal .modal-body #email_toast_btn {
      font-size: 14px;
      min-width: 288px; } }

.index-swiper {
  padding: 0.34667rem 0.2rem; }
  @media (min-width: 992px) {
    .index-swiper {
      margin: 0 8.5%;
      padding: 35px 0 0; } }
  .index-swiper .gcard-group {
    margin: 0; }
  .index-swiper .swiper-slide {
    padding: 0 0.2rem;
    height: auto; }
    @media (min-width: 992px) {
      .index-swiper .swiper-slide {
        padding: 0 10px; } }
  .index-swiper .swiper-pagination {
    bottom: 0;
    min-height: 0.16rem; }
  .index-swiper .swiper-pagination-bullet {
    width: 0.13333rem;
    height: 0.13333rem;
    opacity: 1;
    background: #d6d6d6; }
  .index-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #5e5e5e; }
  .index-swiper .swiper-button {
    width: 34px;
    height: 34px;
    margin-top: -32px; }
  .index-swiper .swiper-button-next {
    right: 15px; }
  .index-swiper .swiper-button-prev {
    left: 15px; }

.cookie-tip-bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0.4rem;
  width: 86%;
  margin: auto;
  padding: 0.26667rem;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #d6d6d6;
  z-index: 99; }
  .cookie-tip-bg .cookie-tip {
    padding: 0.26667rem 0 0; }
  .cookie-tip-bg h3 {
    display: none;
    color: #e83e8c;
    font-size: 0.61333rem;
    text-align: center; }
    @media (min-width: 768px) {
      .cookie-tip-bg h3 {
        font-size: 28px; } }
  .cookie-tip-bg .cookie-tip-btn {
    background: #e83e8c;
    display: block;
    line-height: 0.66667rem;
    width: 3.46667rem;
    text-align: center;
    border-radius: 0.30667rem;
    color: #fff;
    margin: 0.26667rem auto 0;
    font-size: 0.4rem; }
  .cookie-tip-bg a {
    text-decoration: underline; }
  @media (min-width: 992px) {
    .cookie-tip-bg {
      left: 1.42857em;
      bottom: 1.42857em;
      width: 26.85714em;
      margin: 0;
      padding: 10px;
      background: #fff;
      border-radius: 0.57143em;
      border: 1px solid #d6d6d6;
      z-index: 99; }
      .cookie-tip-bg .cookie-tip {
        padding: 1.42857em; }
        .cookie-tip-bg .cookie-tip h3 {
          color: #e83e8c;
          font-size: 0.61333rem;
          text-align: center; }
        .cookie-tip-bg .cookie-tip p {
          font-size: 18px; }
        .cookie-tip-bg .cookie-tip .cookie-tip-btn {
          background: #e83e8c;
          display: block;
          height: 40px;
          width: 150px;
          line-height: 40px;
          text-align: center;
          border-radius: 20px;
          color: #fff;
          margin: 10px auto 0;
          font-size: 24px; } }

.error-404 {
  padding: 0.32rem;
  font-size: 0.32rem; }
  .error-404__gif {
    width: 6.98667rem;
    height: 3.46667rem;
    margin-bottom: 0.26667rem; }
  .error-404__tip {
    margin-bottom: 0.53333rem;
    line-height: 2; }
    .error-404__tip .title {
      font-family: "FuturaStd-Heavy";
      font-size: 0.50667rem; }
  .error-404 .btn-lg {
    width: 4.53333rem; }
  @media (min-width: 992px) {
    .error-404 {
      padding: 24px;
      font-size: 20px; }
      .error-404__gif {
        width: 524px;
        height: 260px;
        margin-bottom: 20px; }
      .error-404__tip {
        margin-bottom: 20px; }
        .error-404__tip .title {
          margin-bottom: 0.13333rem;
          font-size: 40px; }
      .error-404 .btn-lg {
        width: 330px; } }

.subscribing {
  color: #000;
  text-transform: uppercase;
  padding-bottom: 20px; }
  @media (max-width: 991.98px) {
    .subscribing {
      padding-bottom: 0.53333rem; } }
  .subscribing h3 {
    font-size: 36px;
    font-weight: 700; }
    @media (max-width: 991.98px) {
      .subscribing h3 {
        font-size: 0.48rem; } }
  .subscribing p {
    font-size: 24px;
    margin: 20px 0; }
    @media (max-width: 991.98px) {
      .subscribing p {
        margin: 0.53333rem 0;
        font-size: 0.37333rem; } }
  .subscribing a.text-danger {
    display: block;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px; }
    @media (max-width: 991.98px) {
      .subscribing a.text-danger {
        font-size: 0.29333rem;
        margin-bottom: 0.53333rem; } }

.swiper-button-disabled {
  display: none !important; }
