@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 60px;
          perspective: 60px;
}
.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(45deg);
          transform: translate3d(0, -8px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(135deg);
          transform: translate3d(0, 8px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
          transform: translate3d(0, -16px, 0) rotate(-270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-135deg);
          transform: translate3d(0, 8px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(270deg);
          transform: translate3d(0, -16px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  -webkit-transform: translate3d(60px, 60px, 0) rotate(45deg);
          transform: translate3d(60px, 60px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  -webkit-transform: translate3d(-60px, 60px, 0) rotate(-45deg);
          transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  -webkit-transform: translate3d(60px, -60px, 0) rotate(-45deg);
          transform: translate3d(60px, -60px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  -webkit-transform: translate3d(-60px, -60px, 0) rotate(45deg);
          transform: translate3d(-60px, -60px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
          transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
          transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
          transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(90deg);
          transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
      -ms-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
      -ms-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

::-moz-selection {
  background-color: #E87475;
  color: #FFF;
}

::selection {
  background-color: #E87475;
  color: #FFF;
}

html {
  font-size: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 1199.98px) {
  html {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 0.95rem;
  }
}

body {
  position: relative;
  background: #FFF;
  line-height: 1.8;
  color: #4E4E4E;
}
body#video, body#download {
  background: url(../_img/page/bg-icon-0.png);
  position: relative;
  z-index: 9;
}
body .bg-icon {
  background: url(../_img/page/bg-icon-0.png);
  position: relative;
  z-index: 9;
  overflow: hidden;
}
body .bg-icon:before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 268px;
  height: 263px;
  background: url(../_img/page/bg-icon-r.png) center no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  body .bg-icon:before {
    opacity: 0.5;
    width: 134px;
    height: 131.5px;
  }
}
body .bg-icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 159px;
  height: 679px;
  background: url(../_img/page/bg-icon-l.png) center no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  body .bg-icon:after {
    opacity: 0.5;
    width: 79.5px;
    height: 339.5px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.navbar-toggler {
  padding: 0;
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1-8 {
  line-height: 1.8;
}

.line-height-2 {
  line-height: 2;
}

.overflow-x-h {
  overflow-x: hidden;
}

.overflow-y-h {
  overflow-y: hidden;
}

.overflow-h {
  overflow: hidden;
}

section {
  padding: 60px 0;
}
@media (min-width: 992px) {
  section {
    padding: 80px 0;
  }
}

.g-recaptcha {
  text-align: center;
  display: inline-block;
}

button {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}

select:focus {
  outline: 1px solid #E87475;
}

.loader-mesk {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 9998;
}
.loader-mesk.finish {
  visibility: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background: #fff;
  opacity: 1;
  z-index: 9999;
  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;
}
.preloader .preloader_inner {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.preloader .mesk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
}

.font-B {
  font-family: "Lato";
}

.fs-12 {
  font-size: 0.75rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-35 {
  font-size: 2.1875rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

.fs-50 {
  font-size: 3.125rem !important;
}

.fs-55 {
  font-size: 3.4375rem !important;
}

.fs-60 {
  font-size: 3.75rem !important;
}

.fw-900 {
  font-weight: 900;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-300 {
  font-weight: 300;
}

.line-height-1 {
  line-height: 1;
}

.line-height-2-5 {
  line-height: 2.5;
}

.letter-spacing-8 {
  letter-spacing: 8px;
}
@media (max-width: 575.98px) {
  .letter-spacing-8 {
    letter-spacing: 4px;
  }
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.py-30 {
  padding: 30px 0;
}

.px-30 {
  padding: 0 30px;
}

.p-30 {
  padding: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.my-30 {
  margin: 30px 0;
}

.mx-30 {
  margin: 0 30px;
}

.m-30 {
  margin: 30px;
}

.px-50 {
  padding: 0 50px;
}

.text-underline {
  text-decoration: underline;
}

.navbar {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 9000;
}
.navbar > .container {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .navbar > .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.navbar-toggler {
  margin-right: 10px;
  margin-top: 21px;
}

.navbar-nav .dropdown-toggle:after,
.mm-menu .dropdown-toggle:after {
  display: none;
}

.nav-item.dropdown .dropdown-menu {
  margin-top: 0;
}
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.nav-item.rwd-nodropdown .mm-btn {
  display: none;
}
@media (max-width: 991.98px) {
  .nav-item.lang i {
    display: none;
  }
  .nav-item.lang .mm-listitem__text {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.pic {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.pic span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  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;
}
.pic span img {
  max-width: 100%;
  max-height: 100%;
}
.pic.pic-4by3 {
  padding-bottom: 75%;
}
.pic.pic-16by9 {
  padding-bottom: 56.25%;
}
.pic.pic-8by11 {
  padding-bottom: 137.5%;
}
.pic.cover span img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.pic.contain span img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-cover {
  background-size: cover;
}

.img-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  top: 0;
  right: 0;
  z-index: 99;
}

.swiper-pagination {
  margin-bottom: 0px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #F9FAFF;
  opacity: 1;
  outline: none;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E87475;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  cursor: pointer;
  z-index: 1000;
  margin: 0;
  margin-bottom: 10px;
  outline: none;
  background: #FFF;
  font-size: 2.5rem;
  font-weight: lighter;
  text-align: center;
  color: #E87475;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
  top: calc(50% - 22px);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  display: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #E87475;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (max-width: 991.98px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-next {
  right: -55px;
}
@media (max-width: 1199.98px) {
  .swiper-button-next {
    right: 0px;
  }
}

.swiper-button-prev {
  left: -55px;
}
@media (max-width: 1199.98px) {
  .swiper-button-prev {
    left: 0px;
  }
}

.slider-big .pic {
  padding-bottom: 100%;
}

.slider-small .bg-img {
  width: 100%;
  padding-bottom: 100%;
}

#back-to-top {
  z-index: 8000;
  text-align: center;
  right: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
}
#back-to-top .item {
  width: 40px;
  height: 40px;
  color: #FFF;
  border-radius: 100px;
  background-color: #E87475;
}
#back-to-top .item:hover {
  background-color: #F9FAFF;
}
#back-to-top i {
  font-size: 20px;
  line-height: 40px;
}

.breadcrumb-container {
  padding: 5px 0;
  background-color: #FDECEA;
}
.breadcrumb-container .breadcrumb {
  padding-left: 0;
  padding: 0;
  margin: 0;
  background: none;
}
.breadcrumb-container .breadcrumb > li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #838383;
}
.breadcrumb-container .breadcrumb > li:nth-last-child(1) {
  color: #E87475;
}
.breadcrumb-container .breadcrumb > li + li:before {
  padding: 0 5px;
  content: ">";
  font-family: "Font Awesome 5 Pro";
  font-weight: lighter;
  line-height: normal;
  color: #838383;
}
.breadcrumb-container .breadcrumb i {
  margin-right: 2px;
}
.breadcrumb-container .breadcrumb a {
  display: inline-block;
  color: #838383;
}
.breadcrumb-container .breadcrumb a:hover {
  color: #F9A9AA;
}

.pages {
  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;
  margin-bottom: 0;
}
.pages select {
  padding: 3px 5px;
  border: 1px #5E6467 solid;
  border-radius: 4px;
}
.pages .page {
  width: 20px;
  height: 29px;
  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;
  overflow: hidden;
  text-align: center;
  background-color: transparent;
  margin: 0px 8px;
}
.pages .page a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding-left: 1px;
  padding-top: 2px;
}
.pages .page.arrow i {
  font-size: 0.875rem;
  margin-top: 1px;
}
.pages .page.active {
  color: #F9A9AA;
  border-bottom: 1px #F9A9AA solid;
}
.pages .page:hover {
  color: #F9A9AA;
  border-bottom: 1px #F9A9AA solid;
}

.page-bg-img {
  position: fixed;
  left: -50px;
}
@media (max-width: 767.98px) {
  .page-bg-img {
    width: 350px;
  }
}

.main-title .en {
  font-size: 49px;
  font-family: "Lato";
  line-height: 1;
  font-weight: 900;
  color: #F9A9AA;
  text-align: center;
  letter-spacing: 8px;
}
.main-title .ch {
  color: #4E4E4E;
  text-align: center;
  padding-top: 5px;
}

.main-btn {
  display: inline-block;
  position: relative;
  padding: 13px;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 200px;
  cursor: pointer;
  color: #E87475;
  border: 1px #E87475 solid;
  text-align: center;
}
.main-btn span {
  color: #E87475;
  z-index: 1;
  position: relative;
}
.main-btn::before {
  content: "";
  width: 0px;
  height: 100%;
  background-color: #FDECEA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.main-btn:hover::before {
  content: "";
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.main-btn.order {
  width: 314px;
  border-radius: 10px;
  background-color: #FDECEA;
  border: none;
}
.main-btn.order span {
  color: #4E4E4E;
}
.main-btn.order::before {
  background-color: #E87475;
  border-radius: 10px;
}
.main-btn.order:hover span {
  color: #FFF;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.opa8 {
  opacity: 0.8;
}

.opa5 {
  opacity: 0.5;
}

.hover-opa1:hover {
  opacity: 1;
}

.hover-opa8:hover {
  opacity: 0.8;
}

.hover-opa5:hover {
  opacity: 0.5;
}

.hover-underline:hover {
  text-decoration: underline;
}

.pointer {
  cursor: pointer;
}

.editor {
  word-break: break-word;
}
.editor ol {
  list-style: decimal;
  padding-left: 25px;
}
.editor ul {
  list-style: inherit;
  padding-left: 25px;
}
.editor iframe.active {
  position: absolute;
  top: 0;
  left: 0;
}
.editor .iframe-cube {
  width: 100%;
  height: 100%;
  position: relative;
}

.embed-responsive {
  display: inline-block;
}

.sort-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
.sort-box li {
  border: 1px solid #DFDFDF;
  margin: 5px 7px;
  margin-bottom: 10px;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  border-radius: 4px;
}
.sort-box li:hover, .sort-box li.active {
  background: #F9A9AA;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.sort-box li a {
  display: block;
  padding: 7px 15px;
}
@media (max-width: 1199.98px) {
  .sort-box li {
    margin: 3px;
  }
  .sort-box li a {
    padding: 5px 10px;
  }
}

.page-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-banner .pic {
  position: relative;
  padding-bottom: 400px;
}
@media (max-width: 991.98px) {
  .page-banner .pic {
    padding-bottom: 250px;
  }
}
.page-banner .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(253, 236, 234, 0);
  width: 100%;
  height: 100%;
}
.page-banner img {
  margin: auto;
}
.page-banner .title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 150px;
  text-align: center;
  color: #FFF;
}
@media (max-width: 991.98px) {
  .page-banner .title {
    top: 75px;
  }
}
.page-banner .title .ch {
  font-size: 40px;
  display: inline-block;
  border-bottom: 2px #FFF solid;
}
.page-banner .title .en {
  font-size: 20px;
  font-family: "Lato";
  margin-top: 10px;
}
.page-banner .title .en.en-style {
  display: none;
}

.light-box {
  display: none;
  max-width: 550px;
  width: 100%;
  border-radius: 0;
  max-height: 90vh;
  padding: 40px 25px 45px;
  border-radius: 20px;
  max-width: 800px;
}
.light-box.small-box {
  max-width: 450px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .light-box {
    padding: 40px 20px;
  }
}

.ani {
  visibility: hidden;
}
.ani.animate__animated {
  visibility: visible;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
            transform: translate3d(0, -10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
            transform: translate3d(-5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
            transform: translate3d(-5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
            transform: translate3d(5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
            transform: translate3d(5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 0.8, 0.8);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 0.8, 0.8);
  }
}
.animate__growLeft {
  -webkit-animation-name: growLeft;
          animation-name: growLeft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes growLeft {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes growLeft {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
          animation-name: fadeInUpSmall;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
.animate__delay-01s {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animate__delay-02s {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.animate__delay-03s {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.animate__delay-04s {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.animate__delay-05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.animate__delay-06s {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.animate__delay-07s {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.animate__delay-08s {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.animate__delay-09s {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.share-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  background: #fff;
  padding: 12px 15px;
  border-radius: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-box .title {
  font-size: 0.9rem;
  color: #000;
  padding-right: 15px;
  margin-right: 5px;
  border-right: 1px #707070 solid;
  font-size: 16px;
}
.share-box i {
  font-size: 20px;
  margin-left: 10px;
}
.share-box .facebook {
  color: #3b5998;
}
.share-box .line {
  color: #00c300;
}

.bg-mountain {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.bg-mountain .people {
  position: absolute;
  right: 10px;
  top: -30px;
}
@media (max-width: 767.98px) {
  .bg-mountain .people {
    opacity: 0.3;
    width: 150px;
  }
}
.bg-mountain .mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.bg-page-white {
  position: relative;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 6px #ccc;
          box-shadow: 0 0 6px #ccc;
  padding: 60px 40px 50px;
}
.bg-page-white .share-box {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media (max-width: 1199.98px) {
  .bg-page-white {
    padding: 65px 15px 40px;
  }
}

.mask {
  border-radius: 10px;
  background: #E87475;
  padding: 20px;
  position: relative;
}
.mask .icon {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 9;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  .mask .icon {
    width: 110px;
  }
}
.mask .bg-page-white {
  -webkit-box-shadow: 0;
          box-shadow: 0;
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 992px) {
  #index header {
    margin-bottom: 0;
  }
}

.mm-menu_theme-dark {
  --mm-color-background: #F9A9AA;
  --mm-color-border: #FFB7B8;
}

@media (max-width: 991.98px) {
  .mm-line {
    border-top: 1px solid #F1F4F9;
    margin-top: 10px;
    padding-top: 10px;
  }
}

.mm-listitem__btn {
  position: absolute;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
}

header {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #FFF;
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1199.98px) {
  header {
    height: 60px;
  }
}
header .navbar-nav {
  width: 100%;
  height: 80px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-left: 30px;
}
header .navbar-nav .nav-item {
  position: relative;
  margin: 0 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E87475;
}
header .navbar-nav .nav-item::before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #E87475;
  position: absolute;
  left: 20px;
  bottom: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .navbar-nav .nav-item:hover::before, header .navbar-nav .nav-item.active::before {
  width: calc(100% - 40px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .navbar-nav .nav-link {
  padding: 20px 0px;
  margin: 0 5px;
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .navbar-nav .right-box {
  color: #FFF;
  margin: 10px 0;
}
header .navbar-nav .right-box .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  width: 126px;
  height: 60px;
}
header .navbar-nav .right-box::before {
  content: "";
  width: 0px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
header .navbar-nav .right-box:hover::before, header .navbar-nav .right-box.active::before {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .navbar-nav .right-box span {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  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;
}
header .navbar-nav .color1 {
  background-color: #A8AEB6;
}
header .navbar-nav .color1::before {
  background-color: #B2B9C3;
}
header .navbar-nav .color2 {
  background-color: #F9A9AA;
}
header .navbar-nav .color2::before {
  background-color: #FFB7B8;
}
header .navbar-brand {
  padding: 5px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
}
header .navbar-brand img {
  height: 50px;
}
@media (max-width: 1199.98px) {
  header .navbar-brand {
    padding: 0;
    margin-left: 10px;
  }
  header .navbar-brand img {
    max-width: 250px;
    padding: 5px 0;
  }
}
@media (max-width: 575.98px) {
  header .navbar-brand {
    padding: 0;
  }
  header .navbar-brand img {
    max-width: 200px;
    padding: 5px 0;
  }
}
header .dropdown-menu {
  border-radius: 0px;
  width: 180px;
  margin-left: -40px;
  border: none;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0;
}
header .dropdown-item {
  text-align: center;
  white-space: normal;
  line-height: 1.2;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px #F9A9AA solid;
  color: #E87475;
}
header .dropdown-item:hover, header .dropdown-item.active {
  color: #FFF;
  background-color: #E87475;
  -webkit-transition: 0s ease;
  transition: 0s ease;
}
header .dropdown-item:nth-last-child(1) {
  border-bottom: none;
}
header .dropdown2 {
  position: relative;
}
header .dropdown2:hover .dropdown-menu {
  display: block;
}
header .dropdown-menu2 {
  position: absolute;
  top: 0;
  left: 221px;
}
header .shopping-car {
  background-color: #F9A9AA;
  width: 126px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F4F4F4;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199.98px) {
  header .shopping-car {
    background-color: #FFF;
    color: #F9A9AA;
    padding-right: 10px;
    width: unset;
  }
}
header .shopping-car .icon {
  padding: 5px 0;
  margin: 0 12px;
  height: 60px;
  position: relative;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.875rem;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  header .shopping-car .icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 10px;
  }
}
@media (max-width: 575.98px) {
  header .shopping-car .icon {
    margin: 0 7px;
  }
}
header .shopping-car .icon:hover i {
  color: #FFF;
}
@media (max-width: 1199.98px) {
  header .shopping-car .icon:hover i {
    color: #E87475;
  }
}
header .shopping-car .icon:hover small {
  background-color: #E87475;
}
header .shopping-car .icon span {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
header .shopping-car .icon span:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 1px;
  background-color: #E87475;
}
header .shopping-car .icon small {
  position: absolute;
  left: 15px;
  top: 5px;
  background: #E87475;
  color: #FFF;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  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;
  font-size: 12px;
}
@media (max-width: 991.98px) {
  header .shopping-car .icon small {
    left: 12px;
  }
}

.cart-close-btn {
  display: none;
}

#cart-close-btn {
  position: fixed;
  right: 15px;
  top: 10px;
  opacity: 0;
  z-index: 9999;
  visibility: hidden;
}
#cart-close-btn:hover {
  color: #F9A9AA;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  #cart-close-btn {
    right: unset;
    left: 610px;
  }
}
#cart-close-btn.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (max-width: 575.98px) {
  #cart-close-btn.active {
    left: 10px;
  }
}

footer {
  position: relative;
  background-color: #5E6467;
  color: #FFF;
}
footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  font-weight: 300;
}
footer .item {
  display: block;
}
footer .item:hover {
  color: #E87475;
}

#copyright {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 30px;
  width: 180px;
  color: #C7CCD3;
  font-weight: 300;
}
#copyright a {
  display: inline-block;
}
@media (max-width: 1199.98px) {
  #copyright {
    text-align: center;
    margin-top: 30px;
    width: 100%;
  }
}

#banner {
  position: relative;
  overflow: hidden;
}
#banner .swiper-pagination {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  left: unset;
  right: 10px;
  bottom: 10px;
  text-align: end;
  width: auto;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  padding: 20px 12px;
  background-color: rgba(249, 169, 170, 0.7);
}
#banner .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: transparent;
  opacity: 1;
  outline: none;
  margin: 10px 0px;
  color: #F9FAFF;
}
@media (max-width: 767.98px) {
  #banner .swiper-pagination-bullet {
    margin: 5px 0px;
  }
}
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  padding-bottom: 80px;
  position: relative;
}
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  right: -7px;
  top: 20px;
  width: 1px;
  height: 70px;
  background-color: #F9FAFF;
  position: absolute;
}
@media (max-width: 767.98px) {
  #banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    padding-bottom: 25px;
  }
  #banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    content: "";
    right: -4px;
    top: 15px;
    height: 10px;
  }
}
#banner .swiper-pagination-bullet:hover {
  color: #FFF;
}

.idx-about .about-bg {
  background-image: url(../_img/index/about-bg.jpg);
  background-size: cover;
  padding: 80px;
}
@media (max-width: 767.98px) {
  .idx-about .about-bg {
    padding: 60px 30px;
  }
}
.idx-about .word-cube {
  max-width: 515px;
  padding: 40px 60px;
  background-color: rgba(255, 255, 255, 0.9);
}
.idx-about .main-title {
  padding-bottom: 35px;
  margin-top: -60px;
}

.idx-service .item {
  padding: 0 20px;
  margin-bottom: 80px;
}
.idx-service .title {
  color: #FFF;
  text-align: center;
  padding: 19px;
  margin-bottom: 10px;
  font-weight: 900;
  background-color: #F9A9AA;
}
.idx-service .title.title2 {
  background-color: #E87475;
}
.idx-service .describe {
  margin-top: 24px;
}

.idx-product .product-content .item {
  margin-bottom: 0;
}
.idx-product .swiper-pagination {
  position: absolute;
  bottom: 0;
  top: unset;
  height: 2px;
  overflow: hidden;
}
.idx-product .swiper-pagination-progressbar-fill {
  background-color: #F9A9AA;
}

.idx-contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(50%), color-stop(50%, #5E6467), to(#5E6467));
  background: linear-gradient(#FFF 0%, 50%, #5E6467 50%, #5E6467 100%);
}
.idx-contact .item {
  width: 33.33%;
  padding: 60px 20px;
  position: relative;
  color: #FFF;
  text-align: center;
  display: block;
}
.idx-contact .item::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px #FFF solid;
  position: absolute;
  left: 10px;
  top: 10px;
  opacity: 0;
}
.idx-contact .item .pic {
  height: 80px;
  padding-bottom: unset;
}
.idx-contact .item .pic img {
  margin-top: 16px;
}
.idx-contact .item:nth-child(1) {
  background-color: #E87475;
}
.idx-contact .item:nth-child(2) {
  background-color: #F9A9AA;
}
.idx-contact .item:nth-child(3) {
  background-color: #FDECEA;
  color: #E87475;
}
.idx-contact .item:hover::before {
  opacity: 1;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.idx-contact .en {
  font-family: "Lato";
  line-height: 1;
  font-weight: 900;
  font-size: 49px;
}
@media (max-width: 991.98px) {
  .idx-contact .en {
    font-size: 35px;
  }
}

.qa-page .qa-menu .qa-menu-mobile-title {
  display: none;
}
.qa-page .qa-menu .qa-list-group {
  border-right: 1px solid #F9A9AA;
}
.qa-page .qa-menu .qa-list-title-item {
  display: block;
  margin-bottom: 24px;
}
.qa-page .qa-menu .qa-list-title-item.active {
  color: #E87475;
}
.qa-page .qa-menu .qa-list-title-item.active span, .qa-page .qa-menu .qa-list-title-item.active h1 {
  position: relative;
}
.qa-page .qa-menu .qa-list-title-item.active span::before, .qa-page .qa-menu .qa-list-title-item.active h1::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F9A9AA;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.qa-page .qa-menu .qa-list-title-item:hover {
  color: #E87475;
}
@media (max-width: 991.98px) {
  .qa-page .qa-menu {
    margin-bottom: 30px;
  }
  .qa-page .qa-menu .qa-list-title-item {
    display: inline-block;
    padding: 10px 15px;
    margin-bottom: 10px;
  }
  .qa-page .qa-menu .qa-list-title-item.active {
    color: #E87475;
    border: 1px #F9A9AA solid;
  }
  .qa-page .qa-menu .qa-list-title-item.active span::before {
    display: none;
  }
  .qa-page .qa-menu .qa-list-group {
    border-right: none;
  }
}
.qa-page .qa-content .qa-content-item {
  width: 100%;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px dashed #C7CCD3;
}
.qa-page .qa-content .qa-content-item:nth-child(1) {
  border-top: 1px dashed #C7CCD3;
}
.qa-page .qa-content .qa-content-item::before {
  content: "\f067";
  font-weight: 300;
  position: absolute;
  color: #E87475;
  right: 0px;
  top: 20px;
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
}
.qa-page .qa-content .qa-content-item.active::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.qa-page .qa-content .qa-content-item.active .qa-content-title {
  color: #E87475;
}
.qa-page .qa-content .qa-content-item:hover .qa-content-title {
  color: #E87475;
}
.qa-page .qa-content .qa-content-title {
  font-weight: 600;
  cursor: pointer;
}
.qa-page .qa-content .qa-content-title span {
  display: inline-block;
  padding-right: 40px;
}
.qa-page .qa-content .qa-content-answer {
  display: none;
  margin-top: 20px;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .qa-page .qa-content {
    padding: 0 30px;
  }
}

.pro-menu {
  max-width: 225px;
}
.pro-menu .pro-menu-mobile-title {
  display: none;
}
.pro-menu .pro-list-group:nth-last-child(1) .pro-list-title-item {
  margin-bottom: 0;
}
.pro-menu .pro-list-group.active .pro-list-title {
  background-color: #F9A9AA;
  color: #FFF;
}
.pro-menu .pro-list-group.active .pro-list-subtitle-menu {
  display: block;
}
.pro-menu .pro-list-title-item {
  padding: 12px;
  background-color: #FDECEA;
  text-align: center;
  margin-bottom: 5px;
  line-height: 1.5;
  cursor: pointer;
}
.pro-menu .pro-list-subtitle-menu {
  margin-top: 15px;
  margin-bottom: 28px;
  display: none;
}
.pro-menu .pro-list-subtitle-item {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.pro-menu .pro-list-subtitle-item.active {
  color: #E87475;
}
.pro-menu .pro-list-subtitle-item.active::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: #F9A9AA;
}
.pro-menu .pro-list-subtitle-item:hover {
  color: #E87475;
}
@media (max-width: 991.98px) {
  .pro-menu {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .pro-menu .pro-menu-mobile-title {
    display: block;
    background-color: #F9A9AA;
    color: #FFF;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    position: relative;
  }
  .pro-menu .pro-menu-mobile-title::before {
    content: "\f067";
    position: absolute;
    color: #FFF;
    right: 15px;
    top: 8px;
    font-size: 20px;
    font-family: "Font Awesome 5 Pro";
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .pro-menu .pro-menu-mobile-title.active::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .pro-menu .pro-list {
    display: none;
    border: 1px #F9A9AA solid;
    padding-top: 5px;
  }
  .pro-menu .pro-list-subtitle-menu {
    margin: 0;
  }
  .pro-menu .pro-list-subtitle-item {
    border-bottom: 1px solid #FDECEA;
    padding: 12px 10px;
    text-align: center;
    padding-left: 10px;
  }
  .pro-menu .pro-list-subtitle-item::before {
    display: none;
  }
}

.product-content .item {
  padding: 20px;
  background-color: #FDECEA;
  padding-bottom: 30px;
  display: block;
  margin-bottom: 20px;
  height: calc(100% - 20px);
}
.product-content .item .pic {
  overflow: hidden;
}
.product-content .item:hover {
  background-color: #F9A9AA;
  color: #FFF;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
.product-content .item:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.product-content .item:hover .sort {
  color: #FFF;
}
.product-content .item:hover .sort span {
  border-right: 1px #FFF solid;
}
@media (max-width: 575.98px) {
  .product-content .item {
    padding: 10px;
  }
}
.product-content .sort {
  color: #E87475;
}
.product-content .sort span {
  border-right: 1px #E87475 solid;
  margin: 0 8px;
}
.product-content .sort {
  margin-top: 25px;
}

.product-detail .slider-big {
  border: 1px #F9A9AA solid;
}
.product-detail .slider-small .swiper-slide {
  border: 1px #C7CCD3 solid;
}
.product-detail .slider-small .swiper-slide-thumb-active {
  border: 1px #F9A9AA solid;
}
.product-detail .word-content {
  padding-left: 35px;
}
@media (max-width: 991.98px) {
  .product-detail .word-content {
    padding-left: 0px;
    margin-top: 50px;
  }
}
.product-detail .title {
  line-height: 1.5;
  margin-bottom: 10px;
}
.product-detail .sort {
  color: #E87475;
  font-weight: 600;
}
.product-detail .sort span {
  border-right: 1px #E87475 solid;
  margin: 0 8px;
}
.product-detail .spec-btn {
  border: 1px #C7CCD3 solid;
}
.product-detail .spec-btn:hover, .product-detail .spec-btn.active {
  border: 1px #E87475 solid;
  background-color: #E87475;
  color: #FFF;
  cursor: pointer;
}
.product-detail .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-detail .amount .input-row input {
  max-width: 80px;
  height: 28px;
  text-align: center;
  border: 1px #C7CCD3 solid;
  border-radius: 4px;
  margin: 0 16px;
}
.product-detail .shopping-btn {
  width: 100%;
  text-align: center;
  color: #FFF;
  background-color: #F9A9AA;
  display: block;
  padding: 10px;
  margin-top: 24px;
  cursor: pointer;
}
.product-detail .shopping-btn:hover {
  background-color: #E87475;
}
.product-detail hr {
  border-top: 1px solid #F9A9AA;
}

.about-page .line {
  margin: 25px 0;
  width: 36px;
  height: 1px;
  background-color: #F9A9AA;
}
.about-page .certification-content .item {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  padding: 60px 28px;
  position: relative;
  height: 100%;
}
.about-page .certification-content .item::before {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  top: 8px;
  left: 8px;
  position: absolute;
  border: 1px #E87475 solid;
}
.about-page .professional-content .item {
  border-bottom: 1px solid #F9A9AA;
  padding-top: 25px;
}
.about-page .professional-content .item img {
  padding-bottom: 25px;
}
.about-page .professional-content .item:nth-last-child(1) {
  border: none;
}
.about-page .professional-content .title {
  padding-left: 30px;
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-page .professional-content .title::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background-color: #F9A9AA;
  left: 0;
  top: 12px;
  position: absolute;
}
.about-page .professional-content .sort {
  padding-left: 30px;
  margin-bottom: 3px;
}

.news-page .item {
  display: block;
  padding: 25px 0;
  border-bottom: 1px solid #C7CCD3;
}
.news-page .item .pic {
  padding-bottom: 66.66%;
}
.news-page .item .describe {
  margin-top: 15px;
}
.news-page .item:hover .title {
  color: #E87475;
}
.news-page .item:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.news-detail {
  background-color: #F9FAFF;
}
.news-detail .content {
  border: 1px solid #C7CCD3;
  background-color: #fff;
  padding: 40px 45px;
}
@media (max-width: 767.98px) {
  .news-detail .content {
    padding: 20px 25px;
  }
}
.news-detail .content hr {
  border-top: 1px solid #C7CCD3;
}

.contact {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .contact {
    margin-top: 0px;
  }
}
.contact .bg {
  position: absolute;
  width: 83%;
  background-color: #F9FAFF;
  height: 690px;
  margin-top: -60px;
  right: 0;
}
@media (max-width: 991.98px) {
  .contact .bg {
    display: none;
  }
}
.contact .info {
  background-color: #F9A9AA;
  padding: 48px 40px;
  color: #FFF;
}
.contact .info .main-title .en {
  color: #FFF;
  text-align: left;
}
.contact .info .main-title .ch {
  color: #FFF;
  text-align: left;
}
.contact .info .line {
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin: 28px 0;
}
@media (max-width: 1199.98px) {
  .contact .info {
    padding: 30px 20px;
  }
}
.contact .info .item {
  margin-bottom: 10px;
  display: block;
}
.contact .info .item i {
  margin-right: 15px;
}
@media (max-width: 1199.98px) {
  .contact .info .item i {
    margin-right: 10px;
  }
}
@media (max-width: 991.98px) {
  .contact .form {
    background-color: #F9FAFF;
    padding: 40px 20px;
    margin-top: 15px;
  }
}
.contact .form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .contact .form .form-group {
    display: block;
  }
}
.contact .form .form-group.required {
  position: relative;
}
.contact .form .form-group.required::before {
  content: "*";
  position: absolute;
  left: 195px;
  top: 5px;
  color: red;
}
@media (max-width: 1199.98px) {
  .contact .form .form-group.required::before {
    left: 95px;
  }
}
@media (max-width: 767.98px) {
  .contact .form .form-group.required::before {
    left: -7px;
  }
}
.contact .form label {
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  text-align: right;
}
@media (max-width: 1199.98px) {
  .contact .form label {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .contact .form label {
    text-align: left;
  }
}
.contact .form select, .contact .form input {
  background: #FFF;
  border-radius: 0px;
  width: 100%;
  border: none;
  height: 48px;
  padding: 5px 10px;
}
.contact .form select:focus, .contact .form input:focus {
  border: 2px #E87475 solid;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0);
}
.contact .form .left-m {
  margin-left: 300px;
}
@media (max-width: 767.98px) {
  .contact .form .left-m {
    margin-left: 0px;
  }
}
.contact .form textarea {
  height: 145px;
}
.contact .main-btn {
  font-size: 1rem;
}

#header-cart {
  position: fixed;
  top: 0px;
  z-index: 9998;
  height: 100vh;
  background-color: #FDECEA;
  padding: 0px 30px;
  border-top: 40px solid #FDECEA;
  overflow-y: auto;
  -webkit-box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
  right: -600px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  max-width: 100vw;
}
#header-cart.active {
  right: 0px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
#header-cart .top-title {
  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;
  position: sticky;
  top: 0px;
  background-color: #FDECEA;
  padding-bottom: 20px;
  z-index: 1;
}
#header-cart .top-title span {
  font-size: 24px;
  color: #E87475;
  position: relative;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
}
#header-cart .top-title span::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 1px;
  background-color: #E87475;
  bottom: 0;
}
#header-cart .img-box {
  width: 125px;
  display: block;
  border: 1px #C1C1C1 solid;
}
#header-cart .info-box {
  display: block;
  width: 359px;
  margin-left: 15px;
}
#header-cart .info-box .title {
  font-weight: 600;
}
#header-cart .item hr {
  border-top: 1px solid #C7CCD3;
}
#header-cart .item:nth-last-child(1) hr {
  border-top: 1px solid #FDECEA;
}
#header-cart .gotoshop-btn {
  display: block;
  padding: 13px;
  text-align: center;
  color: #FFF;
  margin-top: 30px;
}
#header-cart .gotoshop-btn:hover {
  background-color: #E87475;
}

.step-page {
  margin-top: 20px;
}
.step-page .main-title .ch {
  margin-top: 20px;
}
.step-page .main-title .ch span {
  padding-bottom: 10px;
  position: relative;
}
.step-page .main-title .ch span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E87475;
  bottom: 0;
}
.step-page .cart-box .top-list {
  background-color: #F9A9AA;
  color: #FFF;
  font-family: 500;
  padding: 10px 0;
}
.step-page .cart-box .phone-name-height {
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.step-page .cart-box .product-img {
  width: 94px;
  text-align: center;
}
.step-page .cart-box .item {
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #C7CCD3;
}
@media (max-width: 991.98px) {
  .step-page .cart-box .item {
    padding: 0;
    border-bottom: none;
    margin-bottom: 30px;
  }
}
.step-page .cart-box .phone-title {
  display: none;
  background-color: #FDECEA;
  padding: 10px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .step-page .cart-box .phone-title {
    display: inline;
    background-color: unset;
    color: #F9A9AA;
    padding: 0 10px;
  }
}
.step-page .cart-box .img-box {
  width: 94px;
  display: block;
  border: 1px #C7CCD3 solid;
}
@media (max-width: 991.98px) {
  .step-page .cart-box .img-box {
    width: 100%;
    margin-bottom: 15px;
  }
}
.step-page .cart-box .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.step-page .cart-box .amount .input-row input {
  max-width: 50px;
  height: 28px;
  text-align: center;
  border: none;
  margin: 0 8px;
}
.step-page .cart-box .amount i {
  color: #F9A9AA;
}
.step-page .cart-box .info-box {
  color: #FDECEA;
  display: block;
  width: 359px;
  margin-left: 15px;
}
.step-page .cart-box .info-box .title {
  font-weight: 600;
}
.step-page .cart-box .info-box .price {
  margin-top: -5px;
}
.step-page .cart-box .info-box span {
  font-size: 1.25rem;
  font-weight: 600;
  margin-left: 5px;
}
.step-page .cart-box .del-box {
  position: absolute;
  right: 10px;
}
@media (max-width: 991.98px) {
  .step-page .cart-box .del-box {
    position: relative;
    right: unset;
    display: block;
    background-color: #F9A9AA;
    text-align: center;
    padding: 10px;
    color: #FFF;
    margin-top: 10px;
  }
}
.step-page .tax-content {
  background-color: #F9FAFF;
  border: 1px #C7CCD3 solid;
  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;
  margin-top: 20px;
}
.step-page .tax-content .form-group {
  margin: 10px 0;
}
.step-page .pay-content {
  margin-top: 20px;
}
.step-page .pay-content .cube-border {
  border: 1px #C7CCD3 solid;
}
.step-page .pay-content .title {
  background-color: #F9FAFF;
  padding: 16px 20px;
  color: #000;
}
.step-page .pay-content .title2 {
  background-color: #F9FAFF;
  padding: 9px 20px;
  color: #000;
}
.step-page .pay-content .bottom-content {
  padding: 20px;
}
.step-page .pay-content #delivery-text-2, .step-page .pay-content #delivery-text-3 {
  display: none;
}
.step-page .pay-content select {
  width: 100%;
  height: 40px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 10px;
  margin-left: 50px;
}
.step-page .pay-content hr {
  border-top: 1px solid #FDECEA;
}
.step-page .pay-content .total-content {
  background-color: #F9FAFF;
  border: 1px solid #C7CCD3;
  padding: 20px 30px;
}
.step-page .pay-content .total-group {
  border-bottom: 1px solid #C7CCD3;
  margin-bottom: 16px;
}
.step-page .pay-content .total-group:nth-last-child(1) {
  margin-bottom: 0;
  border-bottom: none;
}
.step-page .pay-content .small-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
}
.step-page .pay-content .small-list .name {
  padding-left: 8px;
  padding-bottom: 2px;
}
.step-page .pay-content .big-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  margin-top: 8px;
  margin-bottom: 8px;
}
.step-page .pay-content .total {
  border-left: 1px solid #FDECEA;
  padding: 24px 0;
  padding-left: 40px;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .step-page .pay-content .total {
    border-left: none;
    border-top: 1px solid #FFF;
    padding-left: 20px;
  }
}
.step-page .pay-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.2;
}
.step-page .pay-content .select-content {
  padding: 30px 20px;
  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;
  height: 100%;
}
@media (max-width: 991.98px) {
  .step-page .pay-content .select-content {
    padding-bottom: 0;
  }
}
.step-page .type-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  margin-bottom: 30px;
}
.step-page .type-title span {
  color: #FFF;
  padding: 6px 16px;
  border-radius: 4px;
}
.step-page .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .step-page .form-group {
    display: block;
  }
}
.step-page .form-label {
  width: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
@media (max-width: 767.98px) {
  .step-page .form-label {
    margin-bottom: 5px;
  }
}
.step-page .row-form {
  width: calc(100% + 20px);
}
.step-page .ok-icon {
  color: #E87475;
  text-align: center;
}
.step-page .ok-icon i {
  font-size: 70px;
  margin-bottom: 10px;
}
.step-page .atm-bg {
  background-color: #FDECEA;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}
.step-page .under-line {
  text-decoration: underline;
  display: inline-block;
  margin: 0 5px;
}
.step-page .under-line:hover {
  color: #E87475;
}

#notice, #notice2 {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.87);
  top: 0;
  left: 0;
  z-index: 9999;
  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;
}
#notice .cube, #notice2 .cube {
  max-width: 980px;
  max-height: 500px;
  position: relative;
}
@media (max-width: 991.98px) {
  #notice .cube, #notice2 .cube {
    width: 90vw;
  }
}
#notice .content, #notice2 .content {
  max-width: 980px;
  max-height: 500px;
  background-color: #fff;
  padding: 30px 40px;
  overflow-y: auto;
  position: relative;
  border-radius: 10px;
}
#notice .notice-close-btn, #notice2 .notice-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #FFF;
  cursor: pointer;
}

.login-page {
  min-height: calc(100vh - 150px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .login-page {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: unset;
    margin-left: 30px;
  }
}
.login-page .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .login-page .form-group {
    display: block;
  }
}
.login-page label {
  width: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  text-align: right;
}
@media (max-width: 991.98px) {
  .login-page label {
    width: 80px;
  }
}
@media (max-width: 575.98px) {
  .login-page label {
    text-align: left;
    padding-bottom: 3px;
  }
}
.login-page input {
  width: 100%;
}
@media (max-width: 991.98px) {
  .login-page input {
    margin-right: 80px;
  }
}
@media (max-width: 575.98px) {
  .login-page input {
    margin-right: 0px;
  }
}
.login-page input::-webkit-input-placeholder {
  color: #A2A2A2;
}
.login-page input::-moz-placeholder {
  color: #A2A2A2;
}
.login-page input:-ms-input-placeholder {
  color: #A2A2A2;
}
.login-page input::-ms-input-placeholder {
  color: #A2A2A2;
}
.login-page input::placeholder {
  color: #A2A2A2;
}

.member-page {
  min-height: calc(100vh - 311px);
  width: 100vw;
  overflow: hidden;
}
.member-page .member-list {
  position: relative;
  background-color: #FDECEA;
  height: 100%;
  padding: 80px 0;
}
.member-page .member-list::before {
  content: "";
  width: 3000px;
  min-height: 100vh;
  height: calc(100% + 600px);
  background-color: #FDECEA;
  right: 0;
  top: -80px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .member-page .member-list {
    background-color: unset;
  }
  .member-page .member-list::before {
    background-color: #FDECEA;
    height: 200px;
    min-height: unset;
    top: 0;
    right: -300px;
  }
}
.member-page .member-info-title {
  color: #E87475;
}
@media (max-width: 991.98px) {
  .member-page .member-info-title {
    color: #4E4E4E;
  }
}
.member-page .member-list-item {
  display: block;
  margin-bottom: 20px;
  color: #848484;
}
.member-page .member-list-item:hover span {
  border-bottom: 1px solid #4E4E4E;
  padding-bottom: 5px;
}
.member-page .member-list-item.active span {
  border-bottom: 1px solid #E87475;
  padding-bottom: 5px;
  color: #E87475;
}
@media (max-width: 1199.98px) {
  .member-page .member-list-item {
    margin: 0 10px;
  }
}
.member-page .member-info-content {
  padding: 80px 0;
}
@media (max-width: 1199.98px) {
  .member-page .member-info-content {
    padding: 0 0 80px 0;
  }
}
.member-page .line-fix-height {
  min-height: 57.6px;
}
.member-page .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 575.98px) {
  .member-page .form-group {
    display: block;
  }
}
.member-page label {
  width: 115px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 10px;
}
.member-page input {
  width: 100%;
}
.member-page .edit-password {
  padding: 5px 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  margin-left: 20px;
  display: block;
  background-color: #FDECEA;
}
.member-page .edit-password:hover {
  background-color: #E87475;
  color: #FFF;
}
.member-page .width-fix {
  width: 130px;
}
@media (max-width: 1199.98px) {
  .member-page .width-fix {
    width: 140px;
  }
}
.member-page .top-content {
  background-color: #F9A9AA;
  padding: 10px;
  margin-top: 50px;
  color: #FFF;
  font-size: 0.875rem;
}
@media (max-width: 991.98px) {
  .member-page .top-content {
    display: none;
  }
}
.member-page .item-content {
  padding: 15px 10px;
  border-bottom: 1px solid #C1C1C1;
  display: block;
}
@media (max-width: 991.98px) {
  .member-page .item-content {
    padding-top: 30px;
    border-top: 1px solid #C1C1C1;
    border-bottom: unset;
  }
}
.member-page .item-content.detail {
  margin-bottom: 30px;
  border-bottom: unset;
  border-top: unset;
}
.member-page .item-content .phone-title {
  display: none;
  padding-right: 20px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #F9A9AA;
  margin: 4px 0;
}
@media (max-width: 991.98px) {
  .member-page .item-content .phone-title {
    display: inline;
  }
}
.member-page .item-content .atm-btn {
  background-color: #F9FAFF;
  border: 1px solid #C7CCD3;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
}
.member-page .item-content .atm-btn:hover {
  background-color: #FDECEA;
}
.member-page .item-content .more {
  display: block;
  text-align: right;
}
.member-page .item-content .more:hover {
  color: #E87475;
}
@media (max-width: 991.98px) {
  .member-page .item-content .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;
    color: #E87475;
    margin-top: 10px;
    text-align: center;
  }
}
.member-page .item-content .cancel {
  display: block;
  padding-left: 28px;
}
.member-page .item-content .cancel:hover {
  color: #E87475;
}
@media (max-width: 991.98px) {
  .member-page .item-content .cancel {
    color: #E87475;
    padding-left: 0px;
    position: absolute;
    top: 0px;
    right: -20px;
    width: 100%;
    text-align: right;
  }
}
.member-page .item-content .order-name {
  text-decoration: underline;
}
.member-page .item-content .order-name:hover {
  color: #E87475;
}
.member-page .cart-box .top-list {
  background-color: #F9A9AA;
  color: #FFF;
  font-family: 500;
  padding: 10px 0;
  font-size: 0.875rem;
}
.member-page .cart-box .phone-name-height {
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.member-page .cart-box .product-img {
  width: 94px;
  text-align: center;
}
.member-page .cart-box .item {
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #C7CCD3;
}
@media (max-width: 991.98px) {
  .member-page .cart-box .item {
    padding: 0;
    border-bottom: none;
    margin-bottom: 30px;
  }
}
.member-page .cart-box .phone-title {
  display: none;
  background-color: #FDECEA;
  padding: 10px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .member-page .cart-box .phone-title {
    display: inline-block;
    margin-bottom: 3px;
    background-color: unset;
    color: #F9A9AA;
    padding: 3px 10px;
  }
}
.member-page .cart-box .width-fix {
  width: 130px;
}
@media (max-width: 991.98px) {
  .member-page .cart-box .width-fix {
    width: unset;
  }
}
.member-page .cart-box .img-box {
  width: 94px;
  display: block;
  border: 1px #C7CCD3 solid;
}
@media (max-width: 991.98px) {
  .member-page .cart-box .img-box {
    width: 100%;
    margin-bottom: 10px;
  }
}
.member-page .cart-box .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.member-page .cart-box .amount .input-row input {
  max-width: 50px;
  height: 28px;
  text-align: center;
  border: none;
  margin: 0 8px;
}
.member-page .cart-box .info-box {
  color: #FDECEA;
  display: block;
  width: 359px;
  margin-left: 15px;
}
.member-page .cart-box .info-box .title {
  font-weight: 600;
}
.member-page .cart-box .info-box .price {
  margin-top: -5px;
}
.member-page .cart-box .info-box span {
  font-size: 1.25rem;
  font-weight: 600;
  margin-left: 5px;
}
.member-page .cart-box .del-box {
  position: absolute;
  right: 10px;
}
@media (max-width: 991.98px) {
  .member-page .cart-box .del-box {
    position: relative;
    right: unset;
    display: block;
    background-color: #F9A9AA;
    text-align: center;
    padding: 10px;
    color: #FFF;
    margin-top: 10px;
  }
}
.member-page .pay-content {
  margin-top: 20px;
}
.member-page .pay-content .cube-border {
  border: 1px #C7CCD3 solid;
}
.member-page .pay-content .title {
  background-color: #F9FAFF;
  padding: 16px 20px;
  color: #000;
}
.member-page .pay-content .bottom-content {
  padding: 20px;
}
.member-page .pay-content #delivery-text-2, .member-page .pay-content #delivery-text-3 {
  display: none;
}
.member-page .pay-content select {
  width: 100%;
  height: 40px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 10px;
  margin-left: 50px;
}
.member-page .pay-content hr {
  border-top: 1px solid #FDECEA;
}
.member-page .pay-content .total-content {
  background-color: #F9FAFF;
  border: 1px solid #C7CCD3;
  padding: 20px 30px;
}
.member-page .pay-content .total-group {
  border-bottom: 1px solid #C7CCD3;
  margin-bottom: 16px;
}
.member-page .pay-content .total-group:nth-last-child(1) {
  margin-bottom: 0;
  border-bottom: none;
}
.member-page .pay-content .small-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
}
.member-page .pay-content .small-list .name {
  padding-left: 8px;
  padding-bottom: 2px;
}
.member-page .pay-content .big-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  margin-top: 8px;
  margin-bottom: 8px;
}
.member-page .pay-content .total {
  border-left: 1px solid #FDECEA;
  padding: 24px 0;
  padding-left: 40px;
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .member-page .pay-content .total {
    border-left: none;
    border-top: 1px solid #FFF;
    padding-left: 20px;
  }
}
.member-page .pay-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.2;
}
.member-page .pay-content .select-content {
  padding: 30px 20px;
  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;
  height: 100%;
}
@media (max-width: 991.98px) {
  .member-page .pay-content .select-content {
    padding-bottom: 0;
  }
}
.member-page .info-content {
  padding-bottom: 25px;
}
.member-page .info-content .cube {
  border-radius: 4px;
  color: #FFF;
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .member-page .info-content .cube {
    margin-top: 30px;
  }
}
.member-page .info-content .title {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#atm-cube {
  border-radius: 10px;
  padding: 40px 60px;
}
#atm-cube .title {
  width: 90px;
}
#atm-cube select {
  border-radius: 4px;
  border: 1px #C7CCD3 solid;
  padding: 0.375rem 0.75rem;
}

.delivery-page {
  padding: 20px 0;
  width: 990px;
  font-family: "新細明體", "Noto Sans TC";
  color: #000;
}
.delivery-page .cube {
  border: 2px solid #000;
  padding: 10px;
}
.delivery-page .big-title {
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.delivery-page .width-fix {
  width: 70px;
}
.delivery-page table {
  width: 100%;
}
.delivery-page table td {
  border: 1px solid #000;
  padding: 0 10px;
  white-space: nowrap;
}
.delivery-page table td:nth-child(2) {
  width: 600px;
  white-space: break-word;
}

.point-cube {
  background-color: #F0F0F0;
  padding: 16px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.point-total-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E87475;
}
@media (max-width: 767.98px) {
  .point-total-box {
    display: block;
  }
}
.point-total-box {
  margin-bottom: 30px;
}