/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * ALL
 * HEADER
 * BANNER
 * FOOTER
 * MOBILE
 * MAIN
 * ABOUT
 * NEWS
 * PRODUCTS
 * GUIDE
 * FAQ
 * PRIVACY
 * CONTACT
 * CART
 * LOGIN
 * REGISTER
 * ACCOUNT
 * ORDER
 * PAYME
 **/
/*------------------------------------*\
    ALL
\*------------------------------------*/
html,
body {
  overflow-x: hidden;
  min-height: 1000px;
}

body {
  color: #666666;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 300;
  padding-top: 80px;
}

@media (min-width: 992px) {
  body {
    padding-top: 110px;
  }
}

@media (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
}

a {
  color: #666666;
  display: inline-block;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

a:hover,
a:focus {
  color: #b85140;
  outline: 0;
  text-decoration: none;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(175, 27, 38, 0.2) inset;
  box-shadow: 0 0 0px 1000px rgba(175, 27, 38, 0.2) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #666666;
}

.container {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
    padding: 0;
  }
}

#scrollUp {
  right: 0;
  bottom: 21.5%;
  z-index: 1000 !important;
}

#scrollUp img {
  width: 50px;
}

@media (min-width: 992px) {
  #scrollUp img {
    width: auto;
  }
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0.95);
  height: 80px;
}

@media (min-width: 992px) {
  .header {
    height: 110px;
  }
}

.header .container {
  padding-left: 5px;
  position: relative;
}

.header .container::after {
  content: '';
  background-color: #000000;
  width: 360px;
  height: 110px;
  position: absolute;
  top: 0;
  right: -360px;
  display: none;
}

@media (min-width: 576px) {
  .header .container {
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .header .container {
    padding-left: 0;
    padding-right: 0;
  }

  .header .container::after {
    display: block;
  }
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
}

.navbar-brand img {
  width: 80px;
  position: absolute;
  top: 0.5rem;
  z-index: 3;
}

@media (min-width: 360px) {
  .navbar-brand img {
    width: 110px;
  }
}

@media (min-width: 576px) {
  .navbar-brand img {
    width: 140px;
    top: 0;
  }
}

@media (min-width: 992px) {
  .navbar-brand img {
    position: relative;
    top: 1rem;
  }
}

.navbar-toggler {
  border: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 0;
  position: relative;
  top: 0;
  z-index: 1050;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  display: block;
  background: #ffffff;
  text-align: center;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 10px;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
  top: 15px;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
  top: 33px;
}

.navbar-toggler.open .icon-bar {
  right: 6px;
}

.navbar-toggler.open .icon-bar:nth-of-type(1) {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggler.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.open .icon-bar:nth-of-type(3) {
  top: 32px;
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-collapse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.navbar-nav {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  width: 80%;
  height: 100vh;
  position: fixed;
  top: 80px;
  right: -100%;
  bottom: 0;
  visibility: hidden;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  overflow-y: auto;
}

.navbar-nav.open {
  right: 0;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-nav {
    background-color: transparent;
    padding: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
    visibility: visible;
  }
}

.navbar-nav .nav-item {
  padding: 0.5rem 0;
  position: relative;
}

.navbar-nav .nav-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  width: 1px;
  height: 25px;
  position: absolute;
  top: 3px;
  left: 0;
  display: none;
}

.navbar-nav .nav-item:first-child::before {
  display: none;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item {
    padding: 0 0.75rem;
  }

  .navbar-nav .nav-item::before {
    display: block;
  }
}

@media (min-width: 1200px) {
  .navbar-nav .nav-item {
    padding: 0 1.8rem;
  }
}

@media (min-width: 1880px) {
  .navbar-nav .nav-item:last-child {
    padding-right: 3.25rem;
  }
}

.navbar-nav .nav-link {
  padding: 0 !important;
}

.navbar-nav .nav-link span {
  display: inline-block;
}

.navbar-nav .nav-link span.ch {
  color: #444444;
  font-size: 1.23rem;
  font-weight: 100;
}

.navbar-nav .nav-link span.en {
  color: #b85140;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-left: 0.25rem;
}

.navbar-nav .nav-link:hover span.ch,
.navbar-nav .nav-link:focus span.ch,
.navbar-nav .nav-link.active span.ch {
  color: #000000;
  font-weight: 400;
}

@media (min-width: 992px) {
  .navbar-nav .nav-link {
    text-align: center;
  }

  .navbar-nav .nav-link span {
    display: block;
  }

  .navbar-nav .nav-link span.en {
    margin-left: 0;
    padding-top: 0.25rem;
  }
}

.navbar-nav .dropdown .dropdown-menu {
  border-radius: 0;
  padding: 0 1rem;
  max-width: 300px;
  padding-bottom: 1rem;
  margin-top: 0.5rem;
}

.navbar-nav .dropdown .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}

.navbar-nav .dropdown .dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #000000;
  font-weight: 300;
  padding: 0.9rem;
  padding-left: 0;
  white-space: normal;
  position: relative;
}

.navbar-nav .dropdown .dropdown-item::before {
  content: '';
  border-radius: 50%;
  background-color: #b85140;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: none;
}

.navbar-nav .dropdown .dropdown-item::after {
  content: '\f054';
  color: #9a9a9a;
  font-family: 'Font Awesome 5 Free';
  font-size: 0.75rem;
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.navbar-nav .dropdown .dropdown-item span {
  font-size: 0.875rem;
  letter-spacing: normal;
  text-transform: capitalize;
  margin-left: 0.25rem;
}

.navbar-nav .dropdown .dropdown-item:hover,
.navbar-nav .dropdown .dropdown-item:focus,
.navbar-nav .dropdown .dropdown-item.active {
  background-color: transparent;
  color: #b85140;
  font-weight: normal;
  padding-left: 0.9rem;
}

.navbar-nav .dropdown .dropdown-item:hover::before,
.navbar-nav .dropdown .dropdown-item:focus::before,
.navbar-nav .dropdown .dropdown-item.active::before {
  display: block;
}

.navbar-nav .dropdown .dropdown-item:hover::after,
.navbar-nav .dropdown .dropdown-item:focus::after,
.navbar-nav .dropdown .dropdown-item.active::after {
  color: #b85140;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown .dropdown-toggle::after {
    display: none;
  }
}

.navbar-member {
  background-color: #000000;
  width: auto;
  height: 80px;
  padding-left: 1rem;
  padding-right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

@media (min-width: 576px) {
  .navbar-member {
    padding-right: 1rem;
  }
}

@media (min-width: 992px) {
  .navbar-member {
    height: 110px;
    position: relative;
  }
}

@media (min-width: 1200px) {
  .navbar-member {
    padding-left: 1.75rem;
  }
}

@media (min-width: 1880px) {
  .navbar-member {
    width: 360px;
    position: absolute;
    right: -372px;
  }
}

.navbar-member .nav li {
  margin-right: 0.25rem;
}

.navbar-member .nav li a {
  text-align: center;
  position: relative;
}

.navbar-member .nav li a span.cartnums {
  border-radius: 100%;
  background-color: #b85140;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 3;
}

.navbar-member .nav li a span.text {
  color: #ffffff;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-top: 0.125rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
  -ms-transform: translateX(-50%) translateY(100%);
  transform: translateX(-50%) translateY(100%);
  bottom: -1.25rem;
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navbar-member .nav li a:hover span.text,
.navbar-member .nav li a:focus span.text {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 576px) {
  .navbar-member .nav li {
    margin-right: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .navbar-member .nav li {
    margin-right: 1rem;
  }
}

.navbar-member .dropdown {
  position: static;
}

.navbar-member .dropdown::after {
  content: '';
  background-color: #ffffff;
  width: 360px;
  height: 80px;
  position: absolute;
  top: 110px;
  right: -360px;
  display: none;
}

.navbar-member .dropdown .dropdown-toggle::after {
  display: none;
}

.navbar-member .dropdown .dropdown-menu {
  border-radius: 0;
  border: none;
  height: 80px;
  margin-top: 0;
  padding: 0;
  right: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-member .dropdown.show::after {
  display: block;
}

.navbar-member .dropdown.show .dropdown-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.navbar-member .form {
  margin-left: 1rem;
  margin-right: 0.5rem;
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-member .form .form-control {
  font-size: 0.875rem;
  padding-left: 0;
  height: 35px;
}

.navbar-member .form .form-control::-webkit-input-placeholder {
  color: #aaaaaa;
}

.navbar-member .form .form-control::-moz-placeholder {
  color: #aaaaaa;
}

.navbar-member .form .form-control:-ms-input-placeholder {
  color: #aaaaaa;
}

.navbar-member .form .form-control::-ms-input-placeholder {
  color: #aaaaaa;
}

.navbar-member .form .form-control::placeholder {
  color: #aaaaaa;
}

.navbar-member .form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navbar-member .form .btn {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  line-height: 35px;
  width: auto;
  height: 35px;
}

.navbar-member .form .btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 576px) {
  .navbar-member .form {
    margin-right: 1.5rem;
  }
}

@media (min-width: 992px) {
  .navbar-member .form {
    width: 160px;
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-member .form {
    margin-left: 1.75rem;
  }
}

/*------------------------------------*\
    BANNER
\*------------------------------------*/
.banner > .container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .page-header {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .banner .page-header {
    padding-top: 110px;
  }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0;
}

@media (min-width: 576px) {
  .footer {
    padding-bottom: 3rem;
  }
}

.footer .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .footer .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}

.footer-info .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-info .nav li {
  font-size: 0.875rem;
  text-align: center;
  margin-right: 0;
  margin-bottom: 0.25rem;
}

.footer-info .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  text-align: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer-info .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer-info .nav li {
    text-align: left;
    margin-right: 1rem;
  }

  .footer-info .copy {
    text-align: left;
  }
}

.footer-contact {
  text-align: center;
}

.footer-contact .payme {
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .footer-contact .payme {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

.footer-contact .nav {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer-contact .tel {
  font-size: 1.5rem;
}

.footer-contact .tel svg {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.footer-contact .time {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.footer-contact .follow {
  text-align: center;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-contact .follow::before {
  content: '';
  background-color: #ffffff;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: none;
}

.footer-contact .follow a {
  font-size: 1.125rem;
  margin-right: 1rem;
}

.footer-contact .follow a img {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.footer-contact .follow a:hover img,
.footer-contact .follow a:focus img {
  -webkit-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
  transform: translateY(-15%);
}

.footer-contact .follow span {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }

  .footer-contact .nav {
    text-align: left;
    width: 215px;
  }

  .footer-contact .follow {
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 1.5rem;
    margin-bottom: 0;
  }

  .footer-contact .follow::before {
    display: block;
  }
}

.visitor {
  border-radius: 50%;
  background-color: #b85140;
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  right: 0;
  top: 21.5%;
  z-index: 1000 !important;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.visitor:hover,
.visitor:focus {
  background-color: #000000;
}

.visitor img {
  width: 30px;
}

.visitor span {
  display: none;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .visitor {
    width: 90px;
    height: 90px;
    right: 15px;
  }

  .visitor img {
    width: auto;
  }

  .visitor span {
    display: block;
  }
}

@media (min-width: 992px) {
  .visitor {
    width: 105px;
    height: 105px;
  }
}
/*------------------------------------*\
    MOBILE
\*------------------------------------*/
.mobile {
  background-color: #000000;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1000;
}

.mobile .nav li {
  width: 25%;
}

.mobile .nav li a {
  color: #ffffff;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
}

.mobile .nav li a svg {
  font-size: 1.125rem;
}

.mobile .nav li a span {
  display: block;
  font-size: 0.75rem;
}

@media (min-width: 576px) {
  .mobile {
    display: none;
  }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
main {
  padding: 3rem 0;
}

@media (min-width: 992px) {
  main {
    padding: 4.25rem 0;
  }
}

.main-secondary {
  background: url(../../images/bg.jpg);
  padding-top: 3rem;
}

@media (min-width: 992px) {
  .main-secondary {
    padding-top: 11.5rem;
  }
}

.main-secondary .content {
  border: 1px solid #000000;
  background-color: #ffffff;
  padding: 2rem 1rem;
}

@media (min-width: 992px) {
  .main-secondary .content {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .main-secondary .content {
    padding: 5.5rem 7rem;
  }
}

/* PAGE-HEADER */
.page-header {
  width: 100%;
}

.page-header h1,
.page-header h2 {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: normal;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
}

.page-header h1 strong,
.page-header h2 strong {
  font-weight: normal;
  position: relative;
}

.page-header h1 strong::before,
.page-header h1 strong::after,
.page-header h2 strong::before,
.page-header h2 strong::after {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-header h1 strong::before,
.page-header h2 strong::before {
  background-image: url(../../images/line-left.svg);
  left: -40px;
}

.page-header h1 strong::after,
.page-header h2 strong::after {
  background-image: url(../../images/line-right.svg);
  right: -40px;
}

.page-header h1 span,
.page-header h2 span {
  display: block;
}

.page-header p {
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0;
}

.page-header p b {
  display: inline-block;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .page-header h1,
  .page-header h2 {
    font-size: 2.1875rem;
    line-height: 3.5rem;
  }
}

/* PAGE-TITLE */
.page-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.page-title h2 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: normal;
}

.page-title h2 span {
  letter-spacing: normal;
  margin-left: 0.5rem;
}

@media (min-width: 992px) {
  .page-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.page-title-secondary {
  text-align: center;
  position: relative;
  padding-top: 1rem;
  margin-bottom: 3.5rem;
}

.page-title-secondary::before {
  content: '';
  width: 25px;
  height: 6px;
  background: url(../../images/line.svg);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}

.page-title-secondary h2 {
  color: #000000;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.5rem;
}

.page-title-secondary h2 b {
  color: #b85140;
  font-weight: 300;
}

.page-title-secondary h2 span {
  display: block;
  color: #777777;
  font-size: 1.125rem;
  letter-spacing: 0.25rem;
  margin-top: 0.75rem;
}

/* BREADCRUMB */
.breadcrumb {
  background-color: transparent;
  font-size: 0.875rem;
  padding: 0;
}

.breadcrumb .breadcrumb-item.active {
  color: #666666;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #666666;
}

/* SIDEMENU */
.sidemenu {
  position: relative;
  display: none;
}

.sidemenu::before {
  content: '';
  background: url(../../images/line.svg) center center repeat-x;
  width: 200px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 15px;
  right: 2.5rem;
}

.sidemenu h2 {
  color: #000000;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 1.5rem 0 1rem;
}

.sidemenu h2 span {
  display: block;
  color: #b85140;
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

.sidemenu .nav li a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #000000;
  padding: 0.9rem;
  padding-left: 0;
  position: relative;
}

.sidemenu .nav li a::before {
  content: '';
  border-radius: 50%;
  background-color: #b85140;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: none;
}

.sidemenu .nav li a::after {
  content: '\f054';
  color: #9a9a9a;
  font-family: 'Font Awesome 5 Free';
  font-size: 0.75rem;
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.sidemenu .nav li a span {
  font-size: 0.875rem;
  letter-spacing: normal;
  text-transform: capitalize;
  margin-left: 0.25rem;
}

.sidemenu .nav li a:hover,
.sidemenu .nav li a:focus,
.sidemenu .nav li a.active {
  background-color: transparent;
  color: #b85140;
  font-weight: normal;
  padding-left: 0.9rem;
}

.sidemenu .nav li a:hover::before,
.sidemenu .nav li a:focus::before,
.sidemenu .nav li a.active::before {
  display: block;
}

.sidemenu .nav li a:hover::after,
.sidemenu .nav li a:focus::after,
.sidemenu .nav li a.active::after {
  color: #b85140;
}

@media (min-width: 992px) {
  .sidemenu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .sidemenu {
    padding-right: 2.5rem;
  }
}

/* PICTURE */
.pic a {
  background-color: #b85140;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pic a::before {
  content: '';
  width: 100px;
  height: 100px;
  background: url(../../images/more.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a img {
  width: 100%;
  opacity: 1;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.pic a:hover img,
.pic a:focus img {
  opacity: 0.15;
}

.pic a:hover::before,
.pic a:focus::before {
  opacity: 1;
}

/* PAGINATION */
.pagination-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .pagination-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.pagination {
  margin-bottom: 0;
}

.pagination .page-item {
  padding: 0 0.125rem;
}

.pagination .page-link {
  border-radius: 50%;
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
  padding: 0;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link.active {
  background-color: #000000;
  color: #ffffff;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  background: url(../../images/arrow.svg) center center no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:first-child .page-link:focus,
.pagination .page-item:last-child .page-link:hover,
.pagination .page-item:last-child .page-link:focus {
  background: url(../../images/arrow-active.svg) center center no-repeat;
}

.pagination .page-item:last-child .page-link {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (min-width: 576px) {
  .pagination .page-item {
    padding: 0 0.5rem;
  }

  .pagination .page-item:first-child {
    padding-right: 2rem;
  }

  .pagination .page-item:last-child {
    padding-left: 2rem;
  }
}

.pagination-select {
  display: inline-block;
  width: 100px;
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .pagination-select {
    margin-top: 0;
  }
}

/* BUTTON */
.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 576px) {
  .btn-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.btn {
  border-radius: 0;
  font-weight: 300;
  line-height: 50px;
  width: 240px;
  height: 50px;
  padding: 0;
}

.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-primary {
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000;
  text-align: center;
  padding: 0;
}

.btn-primary span {
  background: url(../../images/cart-arrow-black.svg);
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border: 1px solid #000000 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
}

.btn-primary:hover span,
.btn-primary:focus span,
.btn-primary:active span {
  background: url(../../images/cart-arrow.svg);
}

.btn-secondary {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.btn-secondary span {
  background: url(../../images/cart-arrow.svg);
  width: 15px;
  height: 15px;
  margin-left: 0.5rem;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  border: 1px solid #000000 !important;
  background-color: transparent !important;
  color: #000000 !important;
}

.btn-secondary:hover span,
.btn-secondary:focus span,
.btn-secondary:active span {
  background: url(../../images/cart-arrow-black.svg);
}

.btn-back {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 25px;
  color: #000000;
  text-align: center;
  letter-spacing: 0.25rem;
  line-height: 45px;
  width: 220px;
  height: 45px;
  padding: 0;
}

.btn-back span {
  background: url(../../images/back.svg);
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.btn-back:hover,
.btn-back:focus,
.btn-back:active {
  background-color: #000000;
  color: #ffffff;
}

.btn-back:hover span,
.btn-back:focus span,
.btn-back:active span {
  background: url(../../images/back-white.svg);
}

/* FORM */
.form .form-group {
  margin-bottom: 1rem;
}

.form .col-form-label {
  font-size: 0.9425rem;
  text-align: left;
  padding: 0;
}

.form .col-form-label span {
  color: #b85140;
}

@media (min-width: 576px) {
  .form .col-form-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    height: 45px;
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
  }
}

.form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  font-size: 1.0625rem;
  height: 45px;
}

.form .form-control::-webkit-input-placeholder {
  color: #b3b3b4;
  font-weight: 100;
}

.form .form-control::-moz-placeholder {
  color: #b3b3b4;
  font-weight: 100;
}

.form .form-control:-ms-input-placeholder {
  color: #b3b3b4;
  font-weight: 100;
}

.form .form-control::-ms-input-placeholder {
  color: #b3b3b4;
  font-weight: 100;
}

.form .form-control::placeholder {
  color: #b3b3b4;
  font-weight: 100;
}

.form .form-control:focus {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #b85140;
}

.form .textarea .col-form-label {
  border-bottom: none;
}

.form .textarea .form-control {
  height: auto;
}

.form .form-check {
  margin-bottom: 0.5rem;
}

.form .form-check:last-child {
  margin-bottom: 0;
}

.form .form-check-inline {
  margin-bottom: 0;
}

.form .form-check-label {
  font-size: 1.0625rem;
}

.form input[type='checkbox'] {
  -webkit-appearance: none;
  background: url(../../images/checkbox.svg) center center no-repeat;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.form input[type='checkbox']:checked {
  background: url(../../images/checkbox-checked.svg) center center no-repeat;
}

.form input[type='radio'] {
  -webkit-appearance: none;
  background: url(../../images/radio.svg) center center no-repeat;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

.form input[type='radio']:checked {
  background: url(../../images/radio-checked.svg) center center no-repeat;
}

/*------------------------------------*\
    ABOUT
\*------------------------------------*/
.about {
  padding: 0;
}

.about-profile {
  /* background-attachment: fixed; */
  background-position: center center;
  /* background-size: cover; */
  height: 625px;
  padding-top: 5rem;
}

@media (min-width: 992px) {
  .about-profile {
    padding-top: 13.5rem;
  }
}

.about-profile h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  padding: 1.75rem 0 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-profile h2::before {
  content: '';
  background: url(../../images/line-white.svg) center center repeat-x;
  width: 200px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}

.about-profile h2 span {
  display: block;
  color: #b85140;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  margin-top: 0.75rem;
}

.about-profile .text {
  color: #ffffff;
}

.about-profile .text h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.about-profile .text h3 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 100;
  letter-spacing: 0.3rem;
  margin-top: 0.75rem;
}

.about-profile .text p {
  line-height: 1.8rem;
}

@media (min-width: 576px) {
  .about-profile .text {
    width: 650px;
  }
}

.about-info {
  padding: 5rem 0;
}

.about-info-pic {
  text-align: center;
}

.about-info-txt {
  padding-top: 1.5rem;
}

.about-info-txt h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.about-info-txt p {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .about-info-txt {
    padding-left: 4rem;
  }
}

/*------------------------------------*\
    NEWS
\*------------------------------------*/
.news-date {
  font-size: 0.9375rem;
  text-align: center;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.news-date::before,
.news-date::after {
  content: '';
  background: url(../../images/line.svg) center center repeat-x;
  width: auto;
  height: 6px;
  position: absolute;
  left: 15px;
  right: 15px;
}

.news-date::before {
  top: 0;
}

.news-date::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.news-date span {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #b85140;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  padding-top: 0.25rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .news-date {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .news-date {
    padding-right: 2.5rem;
  }

  .news-date::before {
    right: 2.5rem;
  }

  .news-date::after {
    right: 2.5rem;
  }
}

.news-list-item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.news-list-content {
  padding-bottom: 2rem;
  position: relative;
}

.news-list-content::after {
  content: '';
  background: rgba(0, 0, 0, 0.2);
  width: auto;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.news-list-txt {
  margin-bottom: 2rem;
}

.news-list-txt h3 {
  color: #000000;
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  margin-bottom: 1rem;
  height: 30px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-list-txt p {
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  height: 85px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-list-txt a {
  color: #b85140;
  letter-spacing: 0.125rem;
}

.news-list-txt a:hover,
.news-list-txt a:focus {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .news-list-txt {
    padding-right: 1rem !important;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .news-list-txt p {
    margin-bottom: 4.5rem;
  }
}

@media (min-width: 1200px) {
  .news-list-txt {
    padding-right: 5rem !important;
  }
}

.news-view {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.news-view h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.news-view .text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.news-view .text img {
  margin-bottom: 2.5rem;
}

.news-view .text p {
  line-height: 1.8rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .news-view h2 {
    font-size: 1.875rem;
  }
}

/*------------------------------------*\
    PRODUCTS
\*------------------------------------*/
.products .page-title {
  border-bottom: none;
}

.products-list {
  margin: 0 -5px;
}

.products-list-item {
  padding: 0 5px;
  margin-bottom: 2rem;
}

.products-list-txt {
  margin-top: 0.75rem;
}

.products-list-txt h3 {
  color: #000000;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.products-list-txt h3 b {
  font-weight: normal;
}

.products-list-txt h3 span {
  display: block;
  font-weight: 100;
  letter-spacing: 0.1rem;
}

.products-list-txt p {
  font-size: 1.3125rem;
  text-align: center;
  margin-bottom: 0;
}

.products-list-txt p del {
  color: #7f7f7f;
  margin-right: 0.5rem;
}

.products-list-txt p span {
  color: #b85140;
  font-weight: 400;
}

.products-list-txt p span span {
  font-size: 1.6875rem;
  font-weight: 500;
}

.products-list-txt p span strong {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 400;
}

.products-list-txt p span strong span {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 576px) {
  .products-list {
    margin: 0 -15px;
  }

  .products-list-item {
    padding: 0 15px;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1200px) {
  .products-list {
    margin: 0 -1.5rem;
  }

  .products-list-item {
    padding: 0 1.5rem;
  }
}

.products-list-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products-list-time .title {
  color: #000000;
  font-size: 0.9375rem;
  margin-right: 0.25rem;
}

.products-list-time .time {
  color: #b85140;
  font-size: 1.125rem;
  font-weight: bold;
}

.products-list-time .time span {
  color: #000000;
  font-size: 0.8125rem;
  font-weight: normal;
  margin: 0 0.1rem;
}

@media (min-width: 1200px) {
  .products-list-time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.products-view-pic .gallery-thumbs {
  margin-top: 1rem;
}

.products-view-pic .gallery-thumbs .swiper-slide {
  cursor: pointer;
}

.products-view-pic .gallery-thumbs .swiper-slide-thumb-active {
  border: 1px solid #b85140;
}

@media (min-width: 1200px) {
  .products-view-pic {
    padding-right: 0;
  }
}

.products-view-txt {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .products-view-txt {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .products-view-txt {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 3.5rem;
  }
}

.products-view-txt .title h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 1.5rem;
  font-weight: normal;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.products-view-txt .title h2 span {
  font-size: 1.125rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
}

.products-view-txt .text {
  font-size: 15px;
  line-height: 1.8rem;
  letter-spacing: 0.025rem;
  margin-bottom: 1rem;
}

.products-view-txt .text p {
  margin-bottom: 0;
}

.products-view-txt .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-view-txt .text ul li {
  padding-left: 1.25rem;
  position: relative;
}

.products-view-txt .text ul li::before {
  content: '';
  background: url(../../images/icon-check.svg);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 7px;
  left: 0;
}

.products-view-txt .note {
  font-size: 1.0625rem;
}

.products-view-txt .price {
  font-size: 1.625rem;
  margin-top: 1rem;
}

.products-view-txt .price del {
  display: block;
  color: #000000;
  font-size: 1.25rem;
  text-decoration: none;
  margin-right: 0.5rem;
}

.products-view-txt .price del b {
  font-weight: 300;
  margin-left: 1rem;
}

.products-view-txt .price span {
  display: block;
  color: #b85140;
  font-weight: 400;
}

.products-view-txt .price span b {
  font-size: 2.375rem;
  font-weight: 400;
}

.products-view-txt .quan {
  margin-bottom: 1rem;
}

.products-view-txt .quan .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.products-view-txt .quan .form label {
  font-size: 1.125rem;
  white-space: nowrap;
  margin-right: 1rem;
  margin-bottom: 0;
}

.products-view-txt .quan .form .form-control {
  height: 50px;
}

.products-view-txt .btn-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0.25rem;
}

.products-view-txt .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.products-view-txt .btn:first-child {
  border: 1px solid #b85140;
  background-color: #b85140;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.products-view-txt .btn:first-child span {
  background: url(../../images/cart.svg);
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.products-view-txt .btn:first-child:hover,
.products-view-txt .btn:first-child:focus,
.products-view-txt .btn:first-child:active {
  border: 1px solid #b85140 !important;
  background-color: transparent !important;
  color: #b85140 !important;
}

.products-view-txt .btn:first-child:hover span,
.products-view-txt .btn:first-child:focus span,
.products-view-txt .btn:first-child:active span {
  background: url(../../images/cart-active.svg);
}

.products-view-txt .share span {
  color: #211816;
  margin-right: 1rem;
}

.products-view-txt .share a {
  color: #595959;
  font-size: 1.125rem;
  padding-right: 1rem;
  margin-right: 0.5rem;
  position: relative;
}

.products-view-txt .share a::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.products-view-txt .share a:hover,
.products-view-txt .share a:focus {
  color: #211816;
}

.products-view-txt .share a:last-child::after {
  display: none;
}

.products-view-txt .sale-time {
  background-color: #efefef;
}

.products-view-txt .sale-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .products-view-txt .sale-time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.products-view-txt .sale-time .title {
  color: #b85140;
  font-size: 1.0625rem;
  font-weight: bold;
}

.products-view-txt .sale-time .time {
  color: #b85140;
  font-size: 1.5625rem;
  font-weight: bold;
}

.products-view-txt .sale-time .time span {
  color: #000000;
  font-size: 0.9375rem;
  font-weight: normal;
  margin: 0 0.25rem;
}

.products-view-txt .sale-price {
  color: #b85140;
  font-size: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.products-view-txt .sale-price span {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  display: block;
  width: 100%;
}

.products-view-txt .sale-price b {
  font-size: 2.375rem;
}

@media (min-width: 576px) {
  .products-view-txt .sale-price span {
    display: inline-block;
    width: auto;
  }
}

.products-view-desc {
  margin: 3rem 0 2rem;
}

.products-view-desc h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.products-view-desc h3::before {
  content: '';
  background-color: #211816;
  width: auto;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.products-view-desc h3 span {
  background-color: #ffffff;
  padding-right: 1.5rem;
  position: relative;
  z-index: 2;
  width: 150px;
}

@media (min-width: 1200px) {
  .products-view-desc h3::before {
    right: -15px;
  }
}

.products-view-desc .text {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.products-view-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-view-desc ul li {
  line-height: 1.5rem;
  letter-spacing: 0.025rem;
  padding-left: 1.25rem;
  margin-bottom: 0.25rem;
  position: relative;
}

.products-view-desc ul li::before {
  content: '\f00c';
  color: #b85140;
  font-family: 'Font Awesome 5 Free';
  font-size: 0.75rem;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}

.products-sale {
  border-top: 2px solid #000000;
  background-color: #efefef;
  min-height: 565px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products-sale::before {
  content: '';
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
}

.products-sale .time {
  color: #b85140;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products-sale .time::before {
  content: '';
  background-color: #000000;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 60%;
  left: -50px;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  display: none;
}

.products-sale .time::after {
  content: '';
  background-color: #000000;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 60%;
  right: -50px;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
  display: none;
}

.products-sale .time strong {
  display: block;
  font-size: 1.1875rem;
  font-weight: normal;
  width: 100%;
}

.products-sale .time span {
  color: #000000;
  font-size: 1.1875rem;
  font-weight: normal;
  margin: 0 0.5rem;
}

@media (min-width: 576px) {
  .products-sale .time::before,
  .products-sale .time::after {
    display: block;
  }

  .products-sale .time strong {
    display: inline-block;
    width: auto;
    margin-right: 2rem;
  }
}

.products-sale .text {
  color: #000000;
  font-size: 1.35rem;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0 15px;
}

/*------------------------------------*\
    GUIDE
\*------------------------------------*/
.guide-list {
  background-color: #f2f2f2;
  padding: 3.5rem 1rem 0;
  margin: 0;
  margin-bottom: 2.5rem;
}

@media (min-width: 1200px) {
  .guide-list {
    padding-bottom: 3.5rem;
  }
}

.guide-list-item {
  text-align: center;
  margin-bottom: 3.5rem;
}

.guide-list-item:first-child .guide-list-pic::before {
  display: none;
}

@media (min-width: 576px) {
  .guide-list-item {
    padding-bottom: 0;
  }

  .guide-list-item:nth-child(3) .guide-list-pic::before {
    display: none;
  }
}

@media (min-width: 1200px) {
  .guide-list-item {
    margin-bottom: 0;
  }

  .guide-list-item:nth-child(3) .guide-list-pic::before {
    display: block;
  }
}

.guide-list-pic {
  position: relative;
}

.guide-list-pic::before {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../../images/guide-arrow.svg);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  top: -40px;
}

.guide-list-pic img {
  border-radius: 50%;
  background-color: #3a3a3a;
  width: 135px;
  height: 135px;
}

@media (min-width: 576px) {
  .guide-list-pic::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
  }
}

.guide-list-txt h3 {
  color: #3a3a3a;
  font-size: 1.125rem;
  font-weight: normal;
  text-align: center;
  margin-top: 2rem;
}

.guide-content h3 {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}

.guide-content p {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.guide-content p span {
  color: #b85140;
}

.guide-content ol {
  line-height: 1.8rem;
  padding-left: 1rem;
}

.guide-content ol li {
  margin-bottom: 0.5rem;
}

/*------------------------------------*\
    FAQ
\*------------------------------------*/
.faq .page-title {
  margin-bottom: 0;
}

.faq .card {
  border: none;
}

.faq .card-header {
  border: none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0 !important;
}

.faq .card-header .btn {
  border-bottom: none;
  text-align: left;
  width: 100%;
  height: auto;
  padding: 1rem;
  padding-right: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq .card-header .btn:hover,
.faq .card-header .btn:focus {
  text-decoration: none;
}

.faq .card-header .btn::after {
  content: '';
  width: 25px;
  height: 25px;
  background: url(../../images/faq-arrow.svg) no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  right: 0;
}

.faq .card-header .btn .num {
  background-color: #000000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.125rem;
  text-align: center;
  line-height: 55px;
  width: 55px;
  height: 55px;
  margin-bottom: 1rem;
}

.faq .card-header .btn .tit {
  color: #000000;
  font-size: 1.1875rem;
  line-height: 2rem;
}

.faq .card-header .btn.collapsed {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq .card-header .btn.collapsed::after {
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.faq .card-header .btn.collapsed .tit {
  color: #666666;
}

@media (min-width: 768px) {
  .faq .card-header .btn {
    padding: 1.5rem 2.5rem;
    padding-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .faq .card-header .btn .num {
    margin-right: 2.5rem;
    margin-bottom: 0;
  }

  .faq .card-header .btn.collapsed {
    padding-bottom: 1.5rem;
  }
}

.faq .card-body {
  text-align: left;
  line-height: 1.8rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .faq .card-body {
    padding-left: 8.5rem;
  }
}

.faq .pagination-wrap {
  margin-top: 3rem;
}

/*------------------------------------*\
    PRIVACY
\*------------------------------------*/
.privacy-content h3 {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}

.privacy-content p {
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.privacy-content ol {
  list-style-type: decimal-leading-zero;
  line-height: 1.8rem;
  padding-left: 1.75rem;
}

.privacy-content ol li {
  margin-bottom: 0.5rem;
}

/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact-info {
  display: block;
}

.contact-info > p {
  line-height: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .contact-info > p {
    padding-right: 1.5rem;
  }
}

.contact-info .title {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info .title img {
  margin-right: 1rem;
}

.contact-info .text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info .text ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info .text ul li {
  line-height: 1.8rem;
  letter-spacing: 0.025rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contact-info .text ul li b {
  color: #b85140;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-info .text ul li span {
  white-space: nowrap;
  margin-right: 0.25rem;
}

@media (min-width: 992px) {
  .contact-info .text ul li b {
    margin-bottom: 0;
  }
}

.contact-form {
  padding-top: 1.5rem;
  position: relative;
}

.contact-form::before {
  content: '';
  background: url(../../images/line.svg);
  width: auto;
  height: 6px;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
}

@media (min-width: 992px) {
  .contact-form {
    padding-left: 0;
  }

  .contact-form::before {
    left: 0;
  }
}

.contact-form .form .form-group {
  margin-bottom: 2rem;
}

.contact-form .form .form-control {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.contact-form .form .textarea .col-form-label {
  border-bottom: none;
}

@media (min-width: 576px) {
  .contact-form .form .col-form-label {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

.contact-form .btn-wrap {
  border-top: 2px solid #000000;
  padding-top: 2.5rem;
  margin-top: 3rem;
}

/*------------------------------------*\
    CART
\*------------------------------------*/
.cart .btn-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cart .btn-wrap p {
  text-align: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.cart .btn-wrap p a {
  color: #b85140;
  text-decoration: underline;
}

.cart .btn-wrap p a:hover,
.cart .btn-wrap p a:focus {
  color: #000000;
}

.cart .btn + .btn {
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .cart .btn + .btn {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.cart-step {
  margin-bottom: 3rem;
}

.cart-step .nav {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.cart-step .nav li {
  border: 1px solid #ffffff;
  background: url(../../images/cart-arrow.svg) 90% center no-repeat #9f9f9f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 100;
  line-height: 50px;
  width: 100%;
  height: 50px;
  padding: 0 2rem;
}

.cart-step .nav li.active {
  background: url(../../images/cart-arrow.svg) 90% center no-repeat #b85140;
}

.cart-step .nav li:last-child {
  background: #9f9f9f;
}

.cart-step .nav li:last-child.active {
  background: #b85140;
}

.cart-step .nav li span {
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
}

.cart-step .nav li span::after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media (min-width: 768px) {
  .cart-step .nav li {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .cart-step .nav li {
    width: 25%;
  }
}

.cart-list .table {
  color: #666666;
}

.cart-list .table th,
.cart-list .table td {
  text-align: center;
  vertical-align: middle;
}

.cart-list .table thead th {
  border: 1px solid #ffffff;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 300;
  padding: 0.5rem 0.75rem;
}

.cart-list .table tbody td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.125rem;
  padding: 1rem 0.75rem;
}

.cart-list .table tbody td .form-control {
  border: 1px solid rgba(0, 0, 0, 0.3);
  max-width: 100px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cart-list .table thead {
    display: none;
  }

  .cart-list .table tr {
    border: 1px solid #dddddd;
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .cart-list .table tbody td {
    border-bottom: none;
    text-align: right;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    padding-left: 10rem;
    position: relative;
  }

  .cart-list .table tbody td::before {
    content: attr(data-content);
    color: #666666;
    text-align: left;
    white-space: normal;
    width: 200px;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .cart-list .table tbody td:first-child {
    padding: 0;
  }

  .cart-list .table tbody td:first-child::before {
    display: none;
  }

  .cart-list .table tbody td .form-control {
    margin-right: 0;
  }
}

.cart-list .products {
  text-align: left;
}

.cart-list .products a {
  color: #000000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.cart-list .products a:hover,
.cart-list .products a:focus {
  color: #b85140;
}

.cart-list .products img {
  width: auto;
}

.cart-list .products .text {
  width: 100%;
  padding: 1rem 0.75rem;
}

.cart-list .products .text p {
  width: 100%;
  font-weight: normal;
  word-break: break-all;
  margin-bottom: 0;
}

.cart-list .products .text p > span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.cart-list .products .text > span {
  display: block;
  color: #666666;
  font-size: 0.8125rem;
  letter-spacing: 0.05rem;
  margin-top: 0.5rem;
}

.cart-list .products .text > span strong {
  background-color: #b85140;
  color: #ffffff;
  padding: 0.1rem 0.25rem;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .cart-list .products img {
    width: 90px;
    margin-right: 1.5rem;
  }

  .cart-list .products .text {
    width: auto;
    padding: 0;
    margin-top: 1rem;
  }

  .cart-list .products .text p {
    width: auto;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .cart-list .products a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-list .products .text {
    margin-top: 0;
  }
}

.cart-list .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-list .link a {
  display: block;
  font-size: 0.875rem;
  text-decoration: underline;
}

.cart-list .link a + a {
  margin-top: 0.5rem;
}

.cart-list .link a.red {
  color: #b85140;
}

.cart-list .link a.red:hover,
.cart-list .link a.red:focus {
  color: #666666;
}

.cart-list .total {
  margin-bottom: 3rem;
}

.cart-list .total-item {
  font-size: 1.0625rem;
  width: 100%;
  padding-top: 0.5rem;
  margin-left: auto;
  margin-right: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cart-list .total-item span {
  font-size: 0.75rem;
}

.cart-list .total-item > div {
  padding: 0.25rem 0;
}

.cart-list .total-item > div.price {
  text-align: right;
}

.cart-list .total-item + .total-item {
  border-top: 1px solid #000000;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .cart-list .total-item {
    width: 660px;
  }
}

.cart-form-item {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 2rem 0;
  margin-bottom: 2.5rem;
}

.cart-form-item > div + div {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cart-form-item > div + div {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 3.5rem !important;
    margin-top: 0;
  }
}

.cart-form-tit {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cart-form-tit h3 {
  color: #000000;
  font-size: 1.3125rem;
  font-weight: normal;
  margin-bottom: 0;
}

.cart-form-tit .form-check {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .cart-form-tit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-form-tit .form-check {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.cart-form-txt {
  margin-bottom: 1rem;
}

.cart-form-txt:last-child {
  margin-bottom: 0;
}

.cart-form-txt .textarea {
  margin-bottom: 0;
}

.cart-form-txt p {
  color: #b85140;
  margin-bottom: 1.5rem;
}

.cart-txt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 1.5rem;
}

.cart-txt .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.cart-txt .title h3 {
  color: #000000;
  font-size: 1.3125rem;
  font-weight: normal;
  margin-bottom: 0;
}

.cart-txt .text {
  line-height: 2.25rem;
}

/*------------------------------------*\
    LOGIN
\*------------------------------------*/
.login > .container {
  width: 100%;
}

@media (min-width: 576px) {
  .login > .container {
    padding: 0;
  }
}

.login .page-title-secondary {
  margin-bottom: 2rem;
}

.login-content {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 100%;
}

@media (min-width: 576px) {
  .login-content {
    padding: 0;
    width: 410px;
    margin: 0 auto;
  }
}

.login-content h3 {
  color: #b85140;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 2.5rem;
}

.login-content p {
  text-align: center;
  line-height: 1.8rem;
}

.login-content p span {
  color: #b85140;
}

.login-content .form .form-group {
  margin-bottom: 1rem;
}

.login-content .link {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.login-content .link p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.login-content .link p:first-child a {
  color: #b85140;
  text-decoration: underline;
}

.login-content .link p:first-child a:hover,
.login-content .link p:first-child a:focus {
  color: #000000;
}

.login-content .btn-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.login-content .btn-wrap .btn {
  width: 100%;
}

.login-content .btn-wrap .btn + .btn {
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .login-content .btn-wrap .btn + .btn {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.login-content .btn-wrap-secondary p {
  text-align: center;
  letter-spacing: 0.1rem;
  width: 100%;
  position: relative;
}

.login-content .btn-wrap-secondary p::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  width: auto;
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.login-content .btn-wrap-secondary p span {
  background: url(../../images/bg.jpg);
  color: #a8a8a8;
  width: 50px;
  position: relative;
  z-index: 2;
}

.login-content .btn-wrap-secondary .btn {
  width: 100%;
}

.login-content .btn-wrap-secondary .btn-fb {
  border: 1px solid #415a93;
  background-color: #415a93;
  color: #ffffff;
}

.login-content .btn-wrap-secondary .btn-fb:hover,
.login-content .btn-wrap-secondary .btn-fb:focus {
  background-color: transparent;
  color: #415a93;
}

.login-content .btn-wrap-secondary .btn-google {
  border: 1px solid #b85140;
  background-color: #b85140;
  color: #ffffff;
}

.login-content .btn-wrap-secondary .btn-google:hover,
.login-content .btn-wrap-secondary .btn-google:focus {
  background-color: transparent;
  color: #b85140;
}

@media (min-width: 576px) {
  .login-content .btn-wrap-secondary .btn {
    width: 195px;
  }
}

.finish .page-title-secondary {
  margin-bottom: 3rem;
}

.finish .login-content .btn-wrap {
  margin-top: 2.5rem;
}

.finish .login-content .btn-wrap .btn {
  width: 240px;
}

@media (min-width: 576px) {
  .finish .login-content {
    width: 500px;
  }
}

/*------------------------------------*\
    REGISTER
\*------------------------------------*/
.register .btn-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.register .btn-wrap p {
  text-align: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.register .btn-wrap p a {
  color: #b85140;
  text-decoration: underline;
}

.register .btn-wrap p a:hover,
.register .btn-wrap p a:focus {
  color: #000000;
}

.register .form-check-group {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.register .form-check a {
  color: #b85140;
  text-decoration: underline;
}

.register-tit {
  margin-bottom: 1rem;
}

.register-tit h3 {
  color: #000000;
  font-size: 1.3125rem;
  margin-bottom: 0;
  position: relative;
}

.register-tit h3::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  width: auto;
  height: 0.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.register-tit h3 span {
  background-color: #ffffff;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

.register-txt {
  margin-bottom: 2.5rem;
}

.register-txt:last-child {
  margin-bottom: 0;
}

/*------------------------------------*\
    ACCOUNT
\*------------------------------------*/
.account .btn-wrap {
  margin-top: 3rem;
}

.account .pagination-wrap {
  margin-top: 3rem;
}

.account-menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  margin-bottom: 1rem;
}

.account-menu .nav {
  width: 100%;
}

.account-menu .nav li {
  width: 100%;
  position: relative;
}

.account-menu .nav li + li::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.15);
  width: auto;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.account-menu .nav li a {
  display: block;
  color: #000000;
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.account-menu .nav li a:hover,
.account-menu .nav li a:focus,
.account-menu .nav li a.active {
  background-color: #000000;
  color: #ffffff;
}

@media (min-width: 576px) {
  .account-menu .nav li {
    width: 25%;
  }

  .account-menu .nav li + li::before {
    width: 1px;
    height: 25px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
  }
}

@media (min-width: 768px) {
  .account-menu .nav li a {
    padding: 0.75rem;
  }
}

.account-tit {
  margin-bottom: 1rem;
}

.account-tit h3 {
  color: #000000;
  font-size: 1.3125rem;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
}

.account-tit h3::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  width: auto;
  height: 0.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.account-tit h3 span {
  background-color: #ffffff;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
}

.account-txt {
  margin-bottom: 2.5rem;
}

.account-txt:last-child {
  margin-bottom: 0;
}

/*------------------------------------*\
    ORDER
\*------------------------------------*/
.order .content {
  margin-bottom: 0.5rem;
}

@media (min-width: 1200px) {
  .order .content {
    padding: 4.25rem 7rem;
  }
}

.order .content > h2 {
  color: #565656;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.order .content > h2 a {
  color: #b85140;
}

.order .content > h2 a:hover,
.order .content > h2 a:focus {
  color: #000000;
}

@media (min-width: 1200px) {
  .order .content > h2 {
    padding-left: 2rem;
  }
}

.order .content > .table {
  color: #666666;
  margin-bottom: 0;
}

.order .content > .table th,
.order .content > .table td {
  border: 1px solid #eaeaea;
  padding: 0.75rem;
  vertical-align: middle;
}

.order .content > .table thead th {
  background-color: #eaeaea;
  color: #000000;
  font-weight: 300;
}

.order .content > .table tbody td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.order .content > .table tbody td a {
  color: #000000;
}

.order .content > .table tbody td a:hover,
.order .content > .table tbody td a:focus {
  color: #b85140;
}

@media (min-width: 1200px) {
  .order .content > .table th,
  .order .content > .table td {
    padding: 0.75rem 2.5rem;
  }
}

@media (max-width: 767px) {
  .order .content > .table thead {
    display: none;
  }

  .order .content > .table tr {
    border: 1px solid #eaeaea;
    display: block;
    width: 100%;
  }

  .order .content > .table tbody td {
    border-bottom: none;
    text-align: right;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0.5rem 0.75rem;
    padding-left: 7.5rem;
    position: relative;
  }

  .order .content > .table tbody td::before {
    content: attr(data-content);
    background-color: #eaeaea;
    color: #000000;
    text-align: left;
    white-space: nowrap;
    width: 100px;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.order-title {
  margin-bottom: 1.5rem;
}

.order-title h3 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8rem;
  margin-bottom: 0;
}

.order-title a {
  border: 1px solid #000000;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0.1rem;
  width: 170px;
  height: 40px;
  margin-top: 1rem;
}

.order-title a:hover,
.order-title a:focus {
  background-color: #000000;
  color: #ffffff;
}

@media (min-width: 576px) {
  .order-title a {
    margin-top: 0;
  }
}

.order-list .table th.status,
.order-list .table td.status {
  letter-spacing: 0.1rem;
  position: relative;
}

.order-list .table th.status::after,
.order-list .table td.status::after {
  content: '';
  background-color: #9f9f9f;
  width: 1px;
  height: auto;
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  right: 10px;
}

@media (min-width: 992px) {
  .order-list .table th.status::after,
  .order-list .table td.status::after {
    right: 25px;
  }
}

.order-list .table thead th:first-child {
  border-right: none;
}

.order-list .table thead th:nth-child(2) {
  border-left: none;
}

.order-list .table thead th.status {
  letter-spacing: 0.1rem;
  position: relative;
}

.order-list .table thead th.status::after {
  top: 0;
  bottom: 0;
}

/*------------------------------------*\
    PAYME
\*------------------------------------*/
.payme-part .payme-content {
  text-align: center;
  margin-top: 1rem;
}

.payme-part .payme-content .pay-title {
  margin-bottom: 1rem;
}

.payme-part .payme-content .pay-tip {
  font-size: 0.875rem;
  color: #ababab;
  margin: 1rem 0;
}

.payme-part .payme-bottom {
  margin-top: 2rem;
}

.payme-part .payme-bottom .payway-title {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.payme-part .payme-bottom .step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.payme-part .payme-bottom .step-wrap .step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.payme-part .payme-bottom .step-wrap .step-item .num {
  background: #a9a9a9;
  border-radius: 50%;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  white-space: nowrap;
}

.payme-part .payme-bottom .step-wrap .step-item .txt {
  display: inline-block;
  width: 90%;
}

@media (min-width: 768px) {
  .payme-part .payme-bottom .step-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .payme-part .payme-bottom .step-wrap .step-item {
    width: 33.33%;
    margin-bottom: 0;
  }
}
