@charset "UTF-8";
/* ======================== 
Variables
======================== */
/* 
Global Variables
-------------------------- */
/* Microsoft Jhenghei 400, 700 */
/* tab */
/* Column */
/* Microsoft Jhenghei 400, 700 */
/* 
Theme Variables & mixin
-------------------------- */
/* Import
----------------------------- */
/* font-family: 'Kite One', sans-serif;
----------------------------------------------- */
/* font-family: 'Tangerine', serif;
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Tangerine:400,700");
/* font-family: 'Titillium Web', sans-serif;
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap");
/* font-family: "Rounded Mplus 1c"; (Japanese, Early)
----------------------------------------------- */
/* Microsoft Jhenghei 400, 700
----------------------------------------------- */
/* tab */
/* Column */
/* ======================== 
Components
======================== */
/*  
Global SCSS
1. Common Use Components
2. Common Use Classes
-------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* ======================== 
Update
======================== */
/* 
2018.09.05
- change font size variables into common variables(can be cover by theme)



 */
/* ======================== 
Prevent Sass Unreadable
======================== */
/* ======================== 
Functions & Mixins  
======================== */
/*no transiton*/
.bgi_16x9 {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.bgi_4x3 {
  width: 100%;
  padding: 0;
  padding-top: 75%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  https://github.com/matthieua/sass-css3-mixins

------------------------------------------------------------- */
/*   
  For example:
  @include col(xs,  7); 
  @include col($m-xs-min, 7);
  @include col('(min-width: 1400px)', 7);
  @include col(md, calc(100% - 20px));
*/
@keyframes owlPrev {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(-8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes owlNext {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* --------------------------
2018.11.07 - Edit scrollbar
-------------------------- */
/* Button Mixins */
/* Arrow Right */
.btn_arrow_r {
  display: block;
  position: relative;
  color: white;
  text-align: right;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
}
.btn_arrow_r:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 1.5em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  color: white;
  top: calc(50% - 0.5em);
  right: 0.25em;
}
@media screen and (min-width: 0) and (min-resolution: 72dpi) {
  .btn_arrow_r:before {
    font-size: 20px;
  }
}
.btn_arrow_r:hover, .btn_arrow_r:focus {
  color: white;
}
.btn_arrow_r:hover:before, .btn_arrow_r:focus:before {
  -webkit-animation: arrowR 1s both infinite;
  -khtml-animation: arrowR 1s both infinite;
  -moz-animation: arrowR 1s both infinite;
  -ms-animation: arrowR 1s both infinite;
  -o-animation: arrowR 1s both infinite;
  animation: arrowR 1s both infinite;
}

@keyframes arrowR {
  from {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
  50% {
    -webkit-transform: translateX(0.1em);
    -khtml-transform: translateX(0.1em);
    -moz-transform: translateX(0.1em);
    -ms-transform: translateX(0.1em);
    -o-transform: translateX(0.1em);
    transform: translateX(0.1em);
  }
  to {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
}
.btn_arrow_btm {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
.btn_arrow_btm:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #4b6d7c;
  bottom: 0;
  left: calc(50% - 6px);
}
.btn_arrow_btm:hover {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
}
.btn_arrow_btm:hover:before {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
  animation-name: arrowBtm;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes arrowBtm {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* Button Cornoer Right Bottom */
.btn_corner_rbtm {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 70px;
  border-color: transparent transparent #4b6d7c transparent;
  margin: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
  position: absolute;
  right: 0px;
  top: 2.5em;
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #666666;
  width: 50px;
  font-size: 12px;
  font-weight: 700;
}
.btn_corner_rbtm:hover {
  border-color: transparent transparent #5e899c transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #4b6d7c;
  border-bottom: 1px dotted #4b6d7c;
}
.btn_dashed:hover, .btn_icon_dashed:hover {
  color: #2b0066;
  border-bottom-style: dashed;
}

.btn_icon_dashed {
  margin: 60px 10px;
}
.btn_icon_dashed:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/common/icon_btn_id.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 50px);
  left: -20px;
  z-index: -1;
  color: #4b6d7c;
}

.btn_ghost {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 0.5em;
  border: 1px solid;
  padding-right: 40px;
}
.btn_ghost:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
.btn_ghost {
  border-color: #4b6d7c;
  background-color: transparent;
  color: #4b6d7c;
}
.btn_ghost:before {
  color: #4b6d7c;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #4b6d7c;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #232323;
  background-color: transparent;
  color: #232323;
}
.btn_ghost.main-text:before {
  color: #232323;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #232323;
}
.btn_ghost.main-text:hover:before {
  color: #fff;
}
.btn_ghost.reverse {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn_ghost.reverse:before {
  color: #fff;
}
.btn_ghost.reverse:hover {
  color: #232323;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #232323;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #4b6d7c;
  margin: 0 10px;
}
.btn_tilt_arrow:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 0.5em);
  right: 10px;
  color: #4b6d7c;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #4b6d7c;
  background-color: transparent;
  -webkit-transform: skew(20deg);
  -khtml-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
  z-index: -1;
}
.btn_tilt_arrow:hover {
  color: #fff;
}
.btn_tilt_arrow:hover:after {
  border-color: transparent;
  background-color: #4b6d7c;
}
.btn_tilt_arrow:hover:before {
  color: #fff;
}

/* Button Action */
.btn_action {
  display: inline-block;
  padding: 3px 5px;
  margin: 2px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1em;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  border: 1px solid #4b6d7c;
  background-color: #4b6d7c;
}
.btn_action:hover, .btn_action:focus {
  background-color: #38515c;
  border-color: #38515c;
}
.btn_action:hover, .btn_action:focus {
  color: #fff;
}
.btn_action.full {
  border: 1px solid #4b6d7c;
  background-color: #4b6d7c;
}
.btn_action.full:hover, .btn_action.full:focus {
  background-color: #38515c;
  border-color: #38515c;
}
.btn_action i {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.btn_action.warning {
  border: 1px solid rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.btn_action.warning:hover, .btn_action.warning:focus {
  background-color: rgba(160, 114, 0, 0.65);
  border-color: rgba(160, 114, 0, 0.65);
}
.btn_action.danger {
  border: 1px solid rgba(245, 105, 84, 0.5);
  background-color: rgba(245, 105, 84, 0.5);
}
.btn_action.danger:hover, .btn_action.danger:focus {
  background-color: rgba(242, 63, 36, 0.5);
  border-color: rgba(242, 63, 36, 0.5);
}
.btn_action.outline {
  border: 1px solid #4b6d7c;
  background-color: transparent;
  color: #4b6d7c;
}
.btn_action.outline:hover {
  background-color: #4b6d7c;
  color: white;
}

/* ======================== 
CSS Resourse
======================== */
/* ======================== 
Setting
======================== */
body {
  -webkit-font-smoothing: antialiased;
  color: #232323;
  font-family: "Microsoft Jhenghei", "Kite One", sans-serif;
}
body.lang-2nd {
  font-family: "Kite One", "Meiryo", sans-serif;
}

button {
  line-height: 1em;
  background-color: transparent;
  border: 0;
  padding: 0;
}

button:hover,
button:active,
button:focus {
  outline: unset;
}

img {
  -webkit-backface-visibility: hidden;
  max-width: 100%;
  height: auto;
}

video {
  background-size: mask;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

ul {
  margin: 0px;
  padding: 0px;
}

input[type=submit] {
  width: auto;
}

input[type=button],
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
textarea,
input[type=submit] {
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

iframe {
  border: 0;
}

.sound iframe {
  width: 100%;
}

a, a:before, a:after,
a *, a *:before, a *:after {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/* Highlight
------------------------ */
::selection {
  color: #4b6d7c;
  background: rgba(0, 0, 0, 0.05);
}

::-moz-selection {
  color: #4b6d7c;
  background: rgba(0, 0, 0, 0.05);
}

body {
  line-height: 1.5em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  text-transform: unset;
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

h1, .h1,
h2, .h2 {
  font-weight: 700;
}

p, .p {
  margin: 0em 0;
  line-height: 1.8em;
}

code, kbd, pre, samp {
  font-family: inherit;
}

/* Desktop Font Size
--------------------- */
body {
  font-size: 16px;
  line-height: 1.5em;
}

h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 16.8px;
}

h6, .h6 {
  font-size: 13.6px;
}

p, .p {
  font-size: 16px;
}

a {
  font-size: 16px;
}

li {
  font-size: 16px;
}

code, kbd, pre, samp {
  font-size: 16px;
}

input,
textarea,
select,
option,
.btn {
  font-size: 16px;
}

/* Input
------------ */
/* Mobile Font Size
--------------------- */
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5em;
  }

  h1, .h1 {
    font-size: 24.5px;
  }

  h2, .h2 {
    font-size: 22.96875px;
  }

  h3, .h3 {
    font-size: 21px;
  }

  h4, .h4 {
    font-size: 17.5px;
  }

  h5, .h5 {
    font-size: 14.7px;
  }

  h6, .h6 {
    font-size: 11.9px;
  }

  p, .p {
    font-size: 14px;
  }

  a {
    font-size: 14px;
  }

  li {
    font-size: 14px;
  }

  code, kbd, pre, samp {
    font-size: 14px;
  }

  input,
textarea,
select,
option,
.btn {
    font-size: 14px;
  }

  /* Input
  ------------ */
}
/* ======================== 
Plugin Fix
======================== */
a, a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* Grid System
----------------- */
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.container {
  padding: 0 8px;
}
.container.wide {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1199px ) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1200px ) {
  .container {
    width: 1200px;
  }
  .container.wide {
    width: 1400px;
  }
}

[class*=col-lg], [class*=col-md], [class*=col-sm], [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}

.row {
  margin: 0;
}

/* Components
-------------------- */
/* nav-tabs
------------- */
.nav-tabs > li > a {
  line-height: 1em;
  padding: 12px;
}

/* breadcrumb
------------- */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb:after, .breadcrumb:before {
  content: "";
  display: block;
  clear: both;
}
.breadcrumb li, .breadcrumb a {
  font-size: 1em;
  line-height: 1em;
  color: #4b6d7c;
}
.breadcrumb li {
  display: block;
  float: left;
  position: relative;
}
.breadcrumb > li + li {
  padding-left: 20px;
}
.breadcrumb > li + li:before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.breadcrumb a {
  display: block;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* alert
------------- */
.alert {
  padding: 5px;
  margin-bottom: 10px;
}

/* Button
------------- */
.btn:hover, .btn:hover:hover, .btn:active, .btn:active:hover, .btn:focus, .btn:focus:hover {
  outline: none;
  box-shadow: none;
}

/* Custom Float Class
-------------------- */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

@media (max-width: 767px) {
  .xs-pull-right {
    float: right;
  }

  .xs-pull-left {
    float: left;
  }

  .xs-pull-none {
    float: none !important;
  }
}
@media (max-width: 575px) {
  .xxs-pull-right {
    float: right;
  }

  .xxs-pull-left {
    float: left;
  }

  .xxs-pull-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .sm-pull-right {
    float: right;
  }

  .sm-pull-left {
    float: left;
  }

  .sm-float-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .md-pull-right {
    float: right;
  }

  .md-pull-left {
    float: left;
  }

  .md-float-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .lg-pull-right {
    float: right;
  }

  .lg-pull-left {
    float: left;
  }

  .lg-float-none {
    float: none !important;
  }
}
/* Custom Column Width
------------------- */
@media (max-width: 575px ) {
  .col-xxs-3 {
    width: 25%;
  }

  .col-xxs-4 {
    width: 33.3333333333%;
  }

  .col-xxs-6 {
    width: 50%;
  }

  .col-xxs-9 {
    width: 75%;
  }

  .col-xxs-12 {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-only-w-100 {
    width: 100%;
  }
}
/*-- Responsive Robot --*/
@media screen and (max-height: 575px) {
  #rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
.fb-page blockquote {
  border: 0;
  display: none;
}

.modal-dialog.custom {
  max-width: 400px;
  margin: 30px auto;
}
@media (max-width: 575px) {
  .modal-dialog.custom {
    max-width: unset;
  }
}

.modal-body .row {
  margin: 0;
}
.modal-body [class*=col-lg],
.modal-body [class*=col-md],
.modal-body [class*=col-sm],
.modal-body [class*=col-xs] {
  padding: 8px;
}

/* ======================== 
Components
======================== */
/* Owl Carousel Default
--------------- */
.owl-carousel .owl-item:hover {
  z-index: 2;
}
.owl-carousel .content {
  display: block;
  text-align: left;
  position: relative;
}
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #4b6d7c;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #4b6d7c;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.owl-carousel .owl-nav [class*=owl-] {
  position: relative;
  color: #fff;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 50px;
  top: 0;
  background: #000;
  color: #fff;
  opacity: 1;
}
.owl-carousel .owl-nav [class*=owl-] i {
  line-height: 50px;
}
.owl-carousel .owl-nav [class*=owl-].disabled, .owl-carousel .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.owl-carousel .owl-nav .owl-prev {
  left: -25px;
}
.owl-carousel .owl-nav .owl-prev i {
  margin-right: 5px;
}
.owl-carousel .owl-nav .owl-next {
  right: -25px;
}
.owl-carousel .owl-nav .owl-next i {
  margin-left: 5px;
}
.owl-carousel .owl-nav {
  opacity: 0;
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-dots {
  position: absolute;
}

.big-images {
  margin-bottom: 4px;
}

/* Row Wrapper
------------------- */
.row_wrapper {
  overflow: hidden;
}

/* Forms
--------------- */
/* tag */
.tag {
  display: inline-block;
  padding: 5px;
  margin: 2px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  border-radius: 4px;
  border: 1px;
  border-style: solid;
  color: #fff !important;
  text-align: center;
  white-space: nowrap;
  text-indent: 0;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
.tag {
  border-color: rgba(92, 109, 127, 0.8);
  background-color: rgba(92, 109, 127, 0.8);
}
.tag.tc1 {
  border-color: #DF8C89;
  background-color: #DF8C89;
}
.tag.tc2 {
  border-color: #A1D6DC;
  background-color: #A1D6DC;
}
.tag.success {
  border-color: rgba(110, 196, 80, 0.65);
  background-color: rgba(110, 196, 80, 0.65);
}
.tag.info {
  border-color: rgba(42, 178, 183, 0.65);
  background-color: rgba(42, 178, 183, 0.65);
}
.tag.warning {
  border-color: rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.tag.danger {
  border-color: rgba(242, 63, 36, 0.6);
  background-color: rgba(242, 63, 36, 0.6);
}
.tag[disabled=true] {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.disabled {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.outline.white {
  border-color: white;
  background-color: transparent;
  color: white;
}

a.tag:hover, button.tag:hover {
  opacity: 0.6;
  color: #fff;
}

.tag_icon {
  margin: 0;
  padding: 0;
  font-size: 11px;
  display: inline-block;
  padding-right: 8px;
  text-align: left;
  color: #666666;
}
.tag_icon:before {
  content: "";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  color: #4b6d7c;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 8px;
}
.tag_icon:hover {
  text-decoration: underline;
  color: #666666;
}

/*--- pagination ---*/
.pagination {
  justify-content: center;
}
.pagination li a {
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 15px !important;
  min-width: 29px;
  display: inline-block;
  border: none;
  margin: 0 2px;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  background-color: transparent;
  color: #232323;
}
.pagination li a:hover, .pagination li a:focus {
  background-color: rgba(75, 109, 124, 0.05);
  color: #232323;
}
.pagination li.active a, .pagination li.active a:hover, .pagination li.active a:focus, .pagination li.active a.active {
  background-color: #4b6d7c;
  color: #fff;
}

/*Theme Style*/
.pagination {
  padding: 30px 0px 60px;
  margin: 0 60px;
  border-top: 1px solid #727171;
  border-radius: 0;
}
.pagination li a {
  font-size: 26px;
  padding: 4px 8px;
  border-radius: 20px !important;
  min-width: 26px;
  color: #4b6d7c;
}
@media (max-width: 575px ) {
  .pagination li a {
    font-size: 20px;
  }
}
.pagination li.active a {
  background-color: #232323;
  color: white;
}
@media (max-width: 1199px ) {
  .pagination {
    padding-bottom: 30px;
  }
}

a {
  color: #4b6d7c;
}

a:hover, a:focus {
  color: #2b0066;
}

a.underline {
  color: #4b6d7c;
  text-decoration: underline;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}
a.underline:hover {
  color: #2b0066;
  text-decoration: underline;
  opacity: 1;
}

a.hover_underline {
  color: inherit;
  text-decoration: none;
}
a.hover_underline:hover {
  color: inherit;
  text-decoration: underline;
}

a.underline_blue {
  color: #0275d8;
  text-decoration: underline;
}
a.underline_blue:hover {
  color: inherit;
  text-decoration: underline;
}

a.hover_underline_blue {
  color: #0275d8;
  text-decoration: none;
}
a.hover_underline_blue:hover {
  color: inherit;
  text-decoration: underline;
}

/* Bootstrap Button
-------------- */
.btn-theme {
  background-color: #4b6d7c;
  border-color: #415f6c;
  color: white;
}
.btn-theme:hover, .btn-theme:hover:hover, .btn-theme:hover:active, .btn-theme:hover:focus, .btn-theme:active, .btn-theme:active:hover, .btn-theme:active:active, .btn-theme:active:focus, .btn-theme:focus, .btn-theme:focus:hover, .btn-theme:focus:active, .btn-theme:focus:focus {
  color: white;
  background-color: #415f6c;
  border-color: #38515c;
}

/* Button Mixins */
/* Arrow Right */
.btn_arrow_r {
  display: block;
  position: relative;
  color: white;
  text-align: right;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
}
.btn_arrow_r:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 1.5em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  color: white;
  top: calc(50% - 0.5em);
  right: 0.25em;
}
@media screen and (min-width: 0) and (min-resolution: 72dpi) {
  .btn_arrow_r:before {
    font-size: 20px;
  }
}
.btn_arrow_r:hover {
  color: white;
}
.btn_arrow_r:hover:before {
  -webkit-animation: arrowR 1s both infinite;
  -khtml-animation: arrowR 1s both infinite;
  -moz-animation: arrowR 1s both infinite;
  -ms-animation: arrowR 1s both infinite;
  -o-animation: arrowR 1s both infinite;
  animation: arrowR 1s both infinite;
}

@keyframes arrowR {
  from {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
  50% {
    -webkit-transform: translateX(0.1em);
    -khtml-transform: translateX(0.1em);
    -moz-transform: translateX(0.1em);
    -ms-transform: translateX(0.1em);
    -o-transform: translateX(0.1em);
    transform: translateX(0.1em);
  }
  to {
    -webkit-transform: translateX(-0.1em);
    -khtml-transform: translateX(-0.1em);
    -moz-transform: translateX(-0.1em);
    -ms-transform: translateX(-0.1em);
    -o-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
}
.btn_arrow_btm {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}
.btn_arrow_btm:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #4b6d7c;
  top: 30px;
  left: calc(50% - 6px);
}
.btn_arrow_btm:hover {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
}
.btn_arrow_btm:hover:before {
  text-shadow: 0 3px 12px rgba(255, 255, 255, 0.7);
  animation-name: arrowBtm;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes arrowBtm {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* Button Cornoer Right Bottom */
.btn_corner_rbtm {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 70px;
  border-color: transparent transparent #4b6d7c transparent;
  margin: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
  position: absolute;
  right: 0px;
  top: 2.5em;
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #666666;
  width: 50px;
  font-size: 12px;
  font-weight: 700;
}
.btn_corner_rbtm:hover {
  border-color: transparent transparent #5e899c transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #4b6d7c;
  border-bottom: 1px dotted #4b6d7c;
}
.btn_dashed:hover, .btn_icon_dashed:hover {
  color: #2b0066;
  border-bottom-style: dashed;
}

.btn_icon_dashed {
  margin: 60px 10px;
}
.btn_icon_dashed:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url(../images/common/icon_btn_id.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 50px);
  left: -20px;
  z-index: -1;
  color: #4b6d7c;
}

.btn_ghost {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 0.5em;
  border: 1px solid;
  padding-right: 40px;
}
.btn_ghost:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
.btn_ghost {
  border-color: #4b6d7c;
  background-color: transparent;
  color: #4b6d7c;
}
.btn_ghost:before {
  color: #4b6d7c;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #4b6d7c;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #232323;
  background-color: transparent;
  color: #232323;
}
.btn_ghost.main-text:before {
  color: #232323;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #232323;
}
.btn_ghost.main-text:hover:before {
  color: #fff;
}
.btn_ghost.reverse {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.btn_ghost.reverse:before {
  color: #fff;
}
.btn_ghost.reverse:hover {
  color: #232323;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #232323;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #4b6d7c;
  margin: 0 10px;
}
.btn_tilt_arrow:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 0.5em);
  right: 10px;
  color: #4b6d7c;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #4b6d7c;
  background-color: transparent;
  -webkit-transform: skew(20deg);
  -khtml-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
  z-index: -1;
}
.btn_tilt_arrow:hover {
  color: #fff;
}
.btn_tilt_arrow:hover:after {
  border-color: transparent;
  background-color: #4b6d7c;
}
.btn_tilt_arrow:hover:before {
  color: #fff;
}

/* Button Action */
.btn_action {
  display: inline-block;
  padding: 3px 5px;
  margin: 2px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  border: 1px solid #4b6d7c;
  background-color: #4b6d7c;
}
.btn_action:hover {
  background-color: #38515c;
  border-color: #38515c;
}
.btn_action:hover {
  color: #fff;
}
.btn_action.full {
  border: 1px solid #4b6d7c;
  background-color: #4b6d7c;
}
.btn_action.full:hover {
  background-color: #38515c;
  border-color: #38515c;
}
.btn_action i {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.btn_action.warning {
  border: 1px solid rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.btn_action.warning:hover {
  background-color: rgba(160, 114, 0, 0.65);
  border-color: rgba(160, 114, 0, 0.65);
}
.btn_action.danger {
  border: 1px solid rgba(245, 105, 84, 0.5);
  background-color: rgba(245, 105, 84, 0.5);
}
.btn_action.danger:hover {
  background-color: rgba(242, 63, 36, 0.5);
  border-color: rgba(242, 63, 36, 0.5);
}
.btn_action.reverse {
  border: 1px solid #fcfdfd;
  background-color: #fcfdfd;
  color: #4b6d7c;
}
.btn_action.reverse:hover {
  background-color: #dce6ea;
  border-color: #dce6ea;
}

/* Button Main */
.btn_main {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 35px;
  background-color: #4b6d7c;
  color: #fff;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.btn_main:hover {
  color: #fff;
  background-color: #415f6c;
}
.btn_main.move_left:hover {
  -webkit-transform: translate(-5px, 0);
  -khtml-transform: translate(-5px, 0);
  -moz-transform: translate(-5px, 0);
  -ms-transform: translate(-5px, 0);
  -o-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}
.btn_main.move_right:hover {
  -webkit-transform: translate(5px, 0);
  -khtml-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
.btn_main.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_main.outline {
  background-color: transparent;
  border: 1px solid #4b6d7c;
  color: #4b6d7c;
}
.btn_main.outline:hover {
  background-color: rgba(75, 109, 124, 0.1);
}
.btn_main.cl2 {
  background-color: #C79529;
}
.btn_main.cl2:hover {
  background-color: #b28525;
}

/* Btn Wrapper
-------------- */
.btn_wr .btn_special, .btn_wr .btn_main {
  display: inline-block;
}

.video_frame {
  padding-top: 56.25%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.video_frame > iframe {
  position: absolute;
  top: 0;
  left: 0;
}

/* Basic Block
----------------- */
/* 2018.10.11 */
.blocky_container {
  padding: 8px;
}
.blocky_container > [class*=col-lg], .blocky_container > [class*=col-md], .blocky_container > [class*=col-sm], .blocky_container > [class*=col-xs] {
  padding: 8px;
}

.blocky {
  border-radius: 4px;
  background-color: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
}
.blocky.highlight {
  border: 2px dotted #4b6d7c;
}
.blocky .blocky_body {
  padding: 8px;
}
.blocky .blocky_body:after, .blocky .blocky_body:before {
  content: "";
  display: block;
  clear: both;
}
.blocky .blocky_body.article {
  padding: 8px 16px 16px;
}
.blocky .blocky_body.min-medium {
  min-height: 300px;
}
.blocky .blocky_body.padding-large {
  padding: 16px;
}
.blocky .blocky_footer {
  padding: 16px;
  text-align: right;
  border-top: 1px solid #e1e1e1;
}
.blocky .blocky_footer.padding-small {
  padding: 8px;
}
.blocky .date {
  margin: 0;
  line-height: 24px;
}
.blocky .thumb {
  width: 80px;
}
.blocky .dv_line {
  position: relative;
  border-top: 1px solid #e1e1e1;
}
.blocky .dv_line.m-tb {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* margin */
.blocky {
  margin-bottom: 15px;
}

/* no border */
.blocky.no-border {
  border: 0;
}

.blocky .blocky_body.form_table {
  padding: 0;
  border: 0;
}

/* blocky_header */
.blocky_header {
  padding: 8px 8px;
  border-bottom: 1px solid #4b6d7c;
  color: #4b6d7c;
  background-color: rgba(75, 109, 124, 0.15);
}

.blocky_header {
  border-top: 1px solid #e1e1e1;
}
.blocky_header:nth-child(1) {
  border-top: 0;
}

/* blocky_header Component */
.blocky_header:after, .blocky_header:before {
  content: "";
  display: block;
  clear: both;
}
.blocky_header h1, .blocky_header h2, .blocky_header h3, .blocky_header h4, .blocky_header .title {
  float: left;
}
.blocky_header .align-center {
  width: 100%;
}
.blocky_header .title ~ .input_simple {
  margin: -6px 0;
}
.blocky_header .title + .input_simple {
  margin-right: -14px;
}
.blocky_header .input-daterange {
  float: right;
  max-width: 300px;
  margin: -3px 0;
  margin-right: -5px;
}
@media (max-width: 575px) {
  .blocky_header .input-daterange {
    width: calc(100% + 8px);
    max-width: none;
    margin: 5px -5px -3px;
  }
}
.blocky_header .nav-tabs {
  border-bottom: 0px;
  margin-bottom: -10px;
  margin-top: -3px;
  margin-left: -7px;
  margin-right: -7px;
}
.blocky_header .nav-tabs.justify {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blocky_header .nav-tabs.justify li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blocky_header .nav-tabs li a {
  color: #4b6d7c;
  background-color: transparent;
  border: 1px solid #4b6d7c;
  border-bottom-color: transparent;
  text-align: center;
}
.blocky_header .nav-tabs li a:hover, .blocky_header .nav-tabs li a:focus {
  color: #fff;
  background-color: #4b6d7c;
  border: 1px solid #4b6d7c;
}
.blocky_header .nav-tabs li.active a, .blocky_header .nav-tabs li.active a:hover, .blocky_header .nav-tabs li.active a:focus {
  color: #fff;
  background-color: #4b6d7c;
  border: 1px solid #4b6d7c;
}

/* Block Border Top
-------------- */
.blocky > .blocky_body + .blocky_body {
  border-top: 1px solid #e1e1e1;
}

.action_bar .alert {
  padding: 8px;
}
.action_bar .alert, .action_bar .btn_action {
  margin-bottom: 8px;
}
.action_bar .alert:nth-last-child(1), .action_bar .btn_action:nth-last-child(1) {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

.blocky .row {
  margin: 0;
}
.blocky .row > [class*=col-lg],
.blocky .row > [class*=col-md],
.blocky .row > [class*=col-sm],
.blocky .row > [class*=col-xs] {
  padding: 0 8px;
}

/* Narrow */
.blocky.narrow .blocky_footer, .blocky .blocky_footer.narrow {
  padding: 4px;
}

/* Pagination */
.blocky .pagination {
  padding: 30px 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.blocky .pagination li {
  display: inline-block;
}

/* Stepper */
.stepper {
  justify-content: center;
  padding: 4px;
  margin-bottom: 16px;
}
.stepper > li {
  text-align: center;
  padding: 5px;
  padding-top: 1em;
  margin: 4px 8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(75, 109, 124, 0.1);
}
.stepper > li:nth-last-child(1) {
  border-right: 0px;
}
.stepper > li p {
  margin: 0;
  font-weight: 700;
}
.stepper > li p.step {
  font-size: 22px;
  line-height: 1.2em;
}
.stepper > li.active {
  background-color: #4b6d7c;
  border: 0;
}
.stepper > li.active p, .stepper > li.active .step {
  color: white;
}
@media (max-width: 767px ) {
  .stepper > li {
    width: 80px;
    height: 80px;
    padding-top: 1.2em;
  }
  .stepper > li p.step {
    font-size: 16px;
  }
}

/* Tab */
.blocky_tab a {
  padding: 10px 15px;
  border-radius: 4px 4px 0 0;
  color: #232323;
  background-color: transparent;
}
.blocky_tab a:hover {
  background-color: #e4e4e4;
}
.blocky_tab > li.active a {
  background-color: #4b6d7c;
  color: white;
}
@media (min-width: 768px ) {
  .blocky_tab {
    border-bottom: 2px solid #4b6d7c;
    background-color: #f1f1f1;
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 767px ) {
  .blocky_tab {
    border-bottom: 2px solid #4b6d7c;
  }
  .blocky_tab a {
    padding: 10px;
    border-radius: 4px;
    background-color: #f1f1f1;
  }
}

/* Form
-------------------- */
.form_table {
  width: 100%;
}
.form_table tr th, .form_table tr td {
  padding: 8px;
}
.form_table thead th, .form_table thead td, .form_table tfoot th, .form_table tfoot td {
  padding: 4px 8px;
  font-size: 14px;
}
.form_table p {
  margin: 0px;
}
@media (min-width: 576px ) {
  .form_table.xxs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xxs-responsive th, .form_table.xxs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xxs-responsive th.w-1, .form_table.xxs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xxs-responsive th.w-2, .form_table.xxs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xxs-responsive th.w-3, .form_table.xxs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xxs-responsive th.w-4, .form_table.xxs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xxs-responsive th.w-5, .form_table.xxs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xxs-responsive th.w-6, .form_table.xxs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xxs-responsive th.w-7, .form_table.xxs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xxs-responsive th.w-8, .form_table.xxs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xxs-responsive th.w-9, .form_table.xxs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xxs-responsive th.w-f-1, .form_table.xxs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xxs-responsive th.w-f-2, .form_table.xxs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xxs-responsive th.w-f-3, .form_table.xxs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xxs-responsive th.w-f-4, .form_table.xxs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xxs-responsive th.w-f-5, .form_table.xxs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xxs-responsive tbody tr:nth-last-child(1) th, .form_table.xxs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td, .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xxs-responsive thead th, .form_table.xxs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xxs-responsive tfoot th, .form_table.xxs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-middle th, .form_table.xxs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xxs-responsive.vertical-top th, .form_table.xxs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xxs-responsive.vertical-bottom th, .form_table.xxs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xxs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xxs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xxs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xxs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xxs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xxs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xxs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xxs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xxs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xxs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xxs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xxs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xxs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xxs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xxs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xxs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xxs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xxs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xxs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xxs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xxs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 575px ) {
  .form_table.xxs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xxs-responsive {
    table-layout: fixed;
  }
  .form_table.xxs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xxs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xxs-responsive tr th, .form_table.xxs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xxs-responsive tr th {
    display: none;
  }
  .form_table.xxs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xxs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #232323;
  }
  .form_table.xxs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xxs-responsive thead {
    display: none;
  }
  .form_table.xxs-responsive .align-left, .form_table.xxs-responsive .align-center, .form_table.xxs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xxs-responsive tbody, .form_table.xxs-responsive tfoot, .form_table.xxs-responsive thead, .form_table.xxs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 768px ) {
  .form_table.xs-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.xs-responsive th, .form_table.xs-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.xs-responsive th.w-1, .form_table.xs-responsive td.w-1 {
    width: 10%;
  }
  .form_table.xs-responsive th.w-2, .form_table.xs-responsive td.w-2 {
    width: 20%;
  }
  .form_table.xs-responsive th.w-3, .form_table.xs-responsive td.w-3 {
    width: 30%;
  }
  .form_table.xs-responsive th.w-4, .form_table.xs-responsive td.w-4 {
    width: 40%;
  }
  .form_table.xs-responsive th.w-5, .form_table.xs-responsive td.w-5 {
    width: 50%;
  }
  .form_table.xs-responsive th.w-6, .form_table.xs-responsive td.w-6 {
    width: 60%;
  }
  .form_table.xs-responsive th.w-7, .form_table.xs-responsive td.w-7 {
    width: 70%;
  }
  .form_table.xs-responsive th.w-8, .form_table.xs-responsive td.w-8 {
    width: 80%;
  }
  .form_table.xs-responsive th.w-9, .form_table.xs-responsive td.w-9 {
    width: 90%;
  }
  .form_table.xs-responsive th.w-f-1, .form_table.xs-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.xs-responsive th.w-f-2, .form_table.xs-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.xs-responsive th.w-f-3, .form_table.xs-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.xs-responsive th.w-f-4, .form_table.xs-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.xs-responsive th.w-f-5, .form_table.xs-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.xs-responsive tbody tr:nth-last-child(1) th, .form_table.xs-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td, .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.xs-responsive thead th, .form_table.xs-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.xs-responsive tfoot th, .form_table.xs-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-middle th, .form_table.xs-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.xs-responsive.vertical-top th, .form_table.xs-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.xs-responsive.vertical-bottom th, .form_table.xs-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.xs-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.xs-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.xs-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.xs-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.xs-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.xs-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.xs-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.xs-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.xs-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.xs-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.xs-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.xs-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.xs-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.xs-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.xs-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.xs-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.xs-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.xs-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.xs-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.xs-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.xs-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 767px ) {
  .form_table.xs-responsive {
    /* 2018.10.09 */
  }
  .form_table.xs-responsive {
    table-layout: fixed;
  }
  .form_table.xs-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.xs-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.xs-responsive tr th, .form_table.xs-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.xs-responsive tr th {
    display: none;
  }
  .form_table.xs-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.xs-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #232323;
  }
  .form_table.xs-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.xs-responsive thead {
    display: none;
  }
  .form_table.xs-responsive .align-left, .form_table.xs-responsive .align-center, .form_table.xs-responsive .align-right {
    text-align: left !important;
  }
  .form_table.xs-responsive tbody, .form_table.xs-responsive tfoot, .form_table.xs-responsive thead, .form_table.xs-responsive tr {
    vertical-align: top;
  }
}
@media (min-width: 992px ) {
  .form_table.sm-responsive {
    /* Desktop */
    /* 2018.10.04 */
    /* Vertical Align
    ----------------- */
    /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
    ------------- */
  }
  .form_table.sm-responsive th, .form_table.sm-responsive td {
    border-bottom: 1px solid #e1e1e1;
  }
  .form_table.sm-responsive th.w-1, .form_table.sm-responsive td.w-1 {
    width: 10%;
  }
  .form_table.sm-responsive th.w-2, .form_table.sm-responsive td.w-2 {
    width: 20%;
  }
  .form_table.sm-responsive th.w-3, .form_table.sm-responsive td.w-3 {
    width: 30%;
  }
  .form_table.sm-responsive th.w-4, .form_table.sm-responsive td.w-4 {
    width: 40%;
  }
  .form_table.sm-responsive th.w-5, .form_table.sm-responsive td.w-5 {
    width: 50%;
  }
  .form_table.sm-responsive th.w-6, .form_table.sm-responsive td.w-6 {
    width: 60%;
  }
  .form_table.sm-responsive th.w-7, .form_table.sm-responsive td.w-7 {
    width: 70%;
  }
  .form_table.sm-responsive th.w-8, .form_table.sm-responsive td.w-8 {
    width: 80%;
  }
  .form_table.sm-responsive th.w-9, .form_table.sm-responsive td.w-9 {
    width: 90%;
  }
  .form_table.sm-responsive th.w-f-1, .form_table.sm-responsive td.w-f-1 {
    width: 45px;
  }
  .form_table.sm-responsive th.w-f-2, .form_table.sm-responsive td.w-f-2 {
    width: 90px;
  }
  .form_table.sm-responsive th.w-f-3, .form_table.sm-responsive td.w-f-3 {
    width: 135px;
  }
  .form_table.sm-responsive th.w-f-4, .form_table.sm-responsive td.w-f-4 {
    width: 180px;
  }
  .form_table.sm-responsive th.w-f-5, .form_table.sm-responsive td.w-f-5 {
    width: 225px;
  }
  .form_table.sm-responsive tbody tr:nth-last-child(1) th, .form_table.sm-responsive tbody tr:nth-last-child(1) td {
    border-bottom: 0px;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td, .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    background-color: #fcfcfc;
    border-style: solid;
    border-color: #e1e1e1;
    border-width: 0;
    margin: 0;
  }
  .form_table.sm-responsive thead th, .form_table.sm-responsive thead td {
    border-bottom-width: 1px;
  }
  .form_table.sm-responsive tfoot th, .form_table.sm-responsive tfoot td {
    border-top-width: 1px;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-middle th, .form_table.sm-responsive.vertical-middle td {
    vertical-align: middle;
  }
  .form_table.sm-responsive.vertical-top th, .form_table.sm-responsive.vertical-top td {
    vertical-align: top;
  }
  .form_table.sm-responsive.vertical-bottom th, .form_table.sm-responsive.vertical-bottom td {
    vertical-align: bottom;
  }
  .form_table.sm-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.sm-responsive tr:nth-last-child(2) th[rowspan="2"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.sm-responsive tr:nth-last-child(3) th[rowspan="3"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.sm-responsive tr:nth-last-child(4) th[rowspan="4"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.sm-responsive tr:nth-last-child(5) th[rowspan="5"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.sm-responsive tr:nth-last-child(6) th[rowspan="6"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.sm-responsive tr:nth-last-child(7) th[rowspan="7"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.sm-responsive tr:nth-last-child(8) th[rowspan="8"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.sm-responsive tr:nth-last-child(9) th[rowspan="9"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.sm-responsive tr:nth-last-child(10) th[rowspan="10"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.sm-responsive tr:nth-last-child(11) th[rowspan="11"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.sm-responsive tr:nth-last-child(12) th[rowspan="12"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.sm-responsive tr:nth-last-child(13) th[rowspan="13"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.sm-responsive tr:nth-last-child(14) th[rowspan="14"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.sm-responsive tr:nth-last-child(15) th[rowspan="15"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.sm-responsive tr:nth-last-child(16) th[rowspan="16"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.sm-responsive tr:nth-last-child(17) th[rowspan="17"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.sm-responsive tr:nth-last-child(18) th[rowspan="18"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.sm-responsive tr:nth-last-child(19) th[rowspan="19"] {
    border-bottom: 0;
  }
  .form_table.sm-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.sm-responsive tr:nth-last-child(20) th[rowspan="20"] {
    border-bottom: 0;
  }
}
@media (max-width: 991px ) {
  .form_table.sm-responsive {
    /* 2018.10.09 */
  }
  .form_table.sm-responsive {
    table-layout: fixed;
  }
  .form_table.sm-responsive tr {
    border-bottom: 3px double #e1e1e1;
  }
  .form_table.sm-responsive tr:nth-last-child(1) {
    border-bottom: 0px;
  }
  .form_table.sm-responsive tr th, .form_table.sm-responsive tr td {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .form_table.sm-responsive tr th {
    display: none;
  }
  .form_table.sm-responsive tr td {
    display: block;
    border-bottom: 1px dotted rgba(225, 225, 225, 0.7);
    padding-left: 80px;
    position: relative;
    min-height: calc(1em + 8px);
  }
  .form_table.sm-responsive tr td:before {
    content: attr(data-head) "";
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    line-height: 1em;
    left: 8px;
    top: calc(50% - 0.5em);
    color: #232323;
  }
  .form_table.sm-responsive tr td:nth-last-child(1) {
    border-bottom: 0;
  }
  .form_table.sm-responsive thead {
    display: none;
  }
  .form_table.sm-responsive .align-left, .form_table.sm-responsive .align-center, .form_table.sm-responsive .align-right {
    text-align: left !important;
  }
  .form_table.sm-responsive tbody, .form_table.sm-responsive tfoot, .form_table.sm-responsive thead, .form_table.sm-responsive tr {
    vertical-align: top;
  }
}
.form_table.no-responsive {
  /* Desktop */
  /* 2018.10.04 */
  /* Vertical Align
  ----------------- */
  /* Eliminate Bottom Line When ROWSPAN (simple rowspan)
  ------------- */
}
.form_table.no-responsive th, .form_table.no-responsive td {
  border-bottom: 1px solid #e1e1e1;
}
.form_table.no-responsive th.w-1, .form_table.no-responsive td.w-1 {
  width: 10%;
}
.form_table.no-responsive th.w-2, .form_table.no-responsive td.w-2 {
  width: 20%;
}
.form_table.no-responsive th.w-3, .form_table.no-responsive td.w-3 {
  width: 30%;
}
.form_table.no-responsive th.w-4, .form_table.no-responsive td.w-4 {
  width: 40%;
}
.form_table.no-responsive th.w-5, .form_table.no-responsive td.w-5 {
  width: 50%;
}
.form_table.no-responsive th.w-6, .form_table.no-responsive td.w-6 {
  width: 60%;
}
.form_table.no-responsive th.w-7, .form_table.no-responsive td.w-7 {
  width: 70%;
}
.form_table.no-responsive th.w-8, .form_table.no-responsive td.w-8 {
  width: 80%;
}
.form_table.no-responsive th.w-9, .form_table.no-responsive td.w-9 {
  width: 90%;
}
.form_table.no-responsive th.w-f-1, .form_table.no-responsive td.w-f-1 {
  width: 45px;
}
.form_table.no-responsive th.w-f-2, .form_table.no-responsive td.w-f-2 {
  width: 90px;
}
.form_table.no-responsive th.w-f-3, .form_table.no-responsive td.w-f-3 {
  width: 135px;
}
.form_table.no-responsive th.w-f-4, .form_table.no-responsive td.w-f-4 {
  width: 180px;
}
.form_table.no-responsive th.w-f-5, .form_table.no-responsive td.w-f-5 {
  width: 225px;
}
.form_table.no-responsive tbody tr:nth-last-child(1) th, .form_table.no-responsive tbody tr:nth-last-child(1) td {
  border-bottom: 0px;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td, .form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  background-color: #fcfcfc;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0;
  margin: 0;
}
.form_table.no-responsive thead th, .form_table.no-responsive thead td {
  border-bottom-width: 1px;
}
.form_table.no-responsive tfoot th, .form_table.no-responsive tfoot td {
  border-top-width: 1px;
}
.form_table.no-responsive tbody, .form_table.no-responsive tfoot, .form_table.no-responsive thead, .form_table.no-responsive tr {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-middle th, .form_table.no-responsive.vertical-middle td {
  vertical-align: middle;
}
.form_table.no-responsive.vertical-top th, .form_table.no-responsive.vertical-top td {
  vertical-align: top;
}
.form_table.no-responsive.vertical-bottom th, .form_table.no-responsive.vertical-bottom td {
  vertical-align: bottom;
}
.form_table.no-responsive tr:nth-last-child(2) td[rowspan="2"], .form_table.no-responsive tr:nth-last-child(2) th[rowspan="2"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(3) td[rowspan="3"], .form_table.no-responsive tr:nth-last-child(3) th[rowspan="3"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(4) td[rowspan="4"], .form_table.no-responsive tr:nth-last-child(4) th[rowspan="4"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(5) td[rowspan="5"], .form_table.no-responsive tr:nth-last-child(5) th[rowspan="5"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(6) td[rowspan="6"], .form_table.no-responsive tr:nth-last-child(6) th[rowspan="6"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(7) td[rowspan="7"], .form_table.no-responsive tr:nth-last-child(7) th[rowspan="7"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(8) td[rowspan="8"], .form_table.no-responsive tr:nth-last-child(8) th[rowspan="8"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(9) td[rowspan="9"], .form_table.no-responsive tr:nth-last-child(9) th[rowspan="9"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(10) td[rowspan="10"], .form_table.no-responsive tr:nth-last-child(10) th[rowspan="10"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(11) td[rowspan="11"], .form_table.no-responsive tr:nth-last-child(11) th[rowspan="11"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(12) td[rowspan="12"], .form_table.no-responsive tr:nth-last-child(12) th[rowspan="12"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(13) td[rowspan="13"], .form_table.no-responsive tr:nth-last-child(13) th[rowspan="13"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(14) td[rowspan="14"], .form_table.no-responsive tr:nth-last-child(14) th[rowspan="14"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(15) td[rowspan="15"], .form_table.no-responsive tr:nth-last-child(15) th[rowspan="15"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(16) td[rowspan="16"], .form_table.no-responsive tr:nth-last-child(16) th[rowspan="16"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(17) td[rowspan="17"], .form_table.no-responsive tr:nth-last-child(17) th[rowspan="17"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(18) td[rowspan="18"], .form_table.no-responsive tr:nth-last-child(18) th[rowspan="18"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(19) td[rowspan="19"], .form_table.no-responsive tr:nth-last-child(19) th[rowspan="19"] {
  border-bottom: 0;
}
.form_table.no-responsive tr:nth-last-child(20) td[rowspan="20"], .form_table.no-responsive tr:nth-last-child(20) th[rowspan="20"] {
  border-bottom: 0;
}

table.form_table {
  border: 1px solid #e1e1e1;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.blocky_header + table.form_table {
  border-top: 0;
}
table.form_table:nth-child(1) {
  border: 0;
}

/* -----------------------
Compatible with Basic Block
----------------------- */
/*--- nav_side_solid ---*/
.nav_side_solid {
  padding-right: 0px;
}
.nav_side_solid > li.divide {
  border-top: 1px solid #dfdfdf;
}
.nav_side_solid > li + li {
  margin-top: 0;
}
.nav_side_solid > li a {
  display: block;
  position: relative;
  line-height: 1em;
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  padding: 8px;
  background-color: transparent;
  color: #232323;
  border-left: 2px solid transparent;
}
.nav_side_solid > li a:hover, .nav_side_solid > li a:focus {
  background-color: rgba(75, 109, 124, 0.05);
}
.nav_side_solid > li h1, .nav_side_solid > li h2, .nav_side_solid > li h3, .nav_side_solid > li h4 {
  margin: 0;
  padding-left: 0px;
}
.nav_side_solid > li.active a, .nav_side_solid > li.active a:hover, .nav_side_solid > li.active a:focus {
  font-weight: 700;
}
.nav_side_solid > li a i {
  width: 1.2em;
  text-align: center;
}
.nav_side_solid ul.layer_1st > li > a {
  padding-left: 34px;
}
.nav_side_solid ul.layer_1st > li > a:before {
  content: "";
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  left: 20px;
  top: calc(50% - 7px);
  width: 14px;
  text-align: center;
  color: #4b6d7c;
}
.nav_side_solid ul.layer_1st > li.active > a:before, .nav_side_solid ul.layer_1st > li > a:hover:before {
  content: "";
}
.nav_side_solid ul.layer_2nd > li > a {
  padding-left: 54px;
}

/* Border inset */
.nav_side_solid > li + li > a {
  border-top: 1px solid #dfdfdf;
}
.nav_side_solid ul.layer_1st > li > a {
  border-top: 1px solid #dfdfdf;
}
.nav_side_solid ul.layer_2nd > li > a {
  border-top: 0px solid #dfdfdf;
}

/* Selected Show */
.nav_side_solid > li > ul.layer_1st {
  display: none;
}
.nav_side_solid > li.selected > a {
  background-color: transparent;
}
.nav_side_solid > li.selected > ul.layer_1st {
  display: block;
}
.nav_side_solid > li > ul.layer_1st > li > ul.layer_2nd {
  display: none;
}
.nav_side_solid > li > ul.layer_1st > li.selected > ul.layer_2nd {
  display: block;
}

/* Attachment List
------------------ */
.attach_list {
  text-align: left !important;
  padding: 8px/2 !important;
}
.attach_list .item {
  padding: 4px 8px;
  border-top-style: solid;
  border-top-color: #e1e1e1;
}
.attach_list .item + .item {
  border-top-width: 1px;
}

.attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
  position: relative;
  text-align: left;
  display: inline-block;
  padding: 4px 0;
  padding-left: 40px;
}
.attach_other:before,
.attach_doc:before,
.attach_pdf:before,
.attach_ppt:before,
.attach_img:before {
  content: "";
  width: 24px;
  height: 30px;
  background-size: contain;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-image: url(../images/common/ic/ic_file_other.png);
  position: absolute;
  left: 8px;
  top: calc(50% - 15px);
}
@media (max-width: 767px ) {
  .attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
    padding-left: 30px;
  }
  .attach_other:before,
.attach_doc:before,
.attach_pdf:before,
.attach_ppt:before,
.attach_img:before {
    width: 18px;
    height: 22.5px;
    left: 4px;
    top: 3px;
  }
}

.attach_doc:before {
  background-image: url(../images/common/ic/ic_file_doc.png);
}

.attach_pdf:before {
  background-image: url(../images/common/ic/ic_file_pdf.png);
}

.attach_ppt:before {
  background-image: url(../images/common/ic/ic_file_ppt.png);
}

.attach_img:before {
  background-image: url(../images/common/ic/ic_file_img.png);
}

/* Form Column, List in Basic Block */
.blocky .form_column > .item {
  padding: 8px 0;
}
.blocky .form_column {
  padding: 8px 16px;
}
.blocky .form_column > .item > .title {
  vertical-align: top;
}
@media (max-width: 991px) {
  .blocky .form_column.sm_style {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item {
    padding: 0;
  }
  .blocky .form_column.sm_style > .item .title {
    padding-bottom: 0;
  }
  .blocky .form_column.sm_style > .item .content {
    padding: 8px;
  }
  .blocky .form_column.sm_style > .item + .item {
    border-top: 3px double #e1e1e1;
  }
}

/* Cols in Basic Block
Use or Not?
------------------------- */
/* 2018.10.11 */
.cube-row {
  margin: 0 0px !important;
  padding: 8px;
}
.cube-row:after, .cube-row:before {
  content: "";
  display: block;
  clear: both;
}
.cube-row [class*=col-lg], .cube-row [class*=col-md], .cube-row [class*=col-sm], .cube-row [class*=col-xs] {
  padding-left: 8px;
  padding-right: 8px;
}
.cube-row .cube {
  float: left;
  width: 100%;
}
@media (min-width: 768px ) {
  .cube-row .cube.ww-50 {
    width: 50%;
  }
}

/* Cube
------------------ */
.cube {
  padding: 8px 8px;
}
.cube.shadow:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cube-header {
  padding: 4px 8px;
  background: #eee;
  border-radius: 4px;
}

.cube-body {
  padding: 2px 0;
}

/* Form in Cube
--------------- */
.cube input, .cube textarea, .cube select {
  display: block;
  width: 100%;
}
.cube .caret_select {
  display: block;
}
.cube input, .cube textarea, .cube .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.cube .checkbox-inline, .cube .radio-inline {
  margin-top: 2px;
}
.cube .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.cube .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* 

Modify: 
. basic_container        > . blocky_container
. basic_block            > . blocky
. basic_block . header   > . blocky_header
. basic_block . block    > . blocky_body
. basic_block . footer   > . blocky_footer

. basic_block_tab        > . blocky_tab

 */
/* Column
----------------- */
/* Form Column
--------------- */
.form_column {
  padding: 4px 0;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column > .item, .form_column > .divide_text {
  float: left;
  width: 100%;
}
.form_column > .item {
  padding-top: 4px;
  padding-bottom: 4px;
  padding: 4px;
}

.form_column {
  font-size: 14px;
}
.form_column:after, .form_column:before {
  content: "";
  display: block;
  clear: both;
}
.form_column .title, .form_column .content {
  display: block;
  float: left;
}
.form_column .title {
  vertical-align: top;
  color: #4b6d7c;
}
.form_column .content {
  vertical-align: middle;
}
.form_column p {
  margin: 0;
}
@media (max-width: 991px) {
  .form_column .title {
    text-align: left;
  }
}

/* Content: Pure Txt
----------------- */
.pure_text {
  padding: 8px 8px 8px 0px;
}

/* Input in Form Column */
.form_column input, .form_column textarea, .form_column select {
  display: block;
  width: 100%;
  background-color: rgba(75, 109, 124, 0.1);
}
.form_column .caret_select {
  display: block;
}
.form_column input, .form_column textarea, .form_column .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}

/* Style
------------- */
.form_column.border > .item + .item {
  border-top: 1px solid #e1e1e1;
}

.form_column.narrow {
  padding: 4px;
}
.form_column.narrow > .item {
  padding: 4px 0;
}

/* RWD
------------------ */
.form_column .divide_text {
  text-align: left;
}
@media (min-width: 992px) {
  .form_column {
    /* Column Desktop */
    /* Item Width */
  }
  .form_column .title {
    width: calc((6em + 8px * 2));
    padding: 8px 8px 0;
  }
  .form_column .content {
    width: calc(100% - (6em + 8px * 2));
  }
  .form_column .divide_text {
    padding-left: "(6em + 8px * 2)";
  }
  .form_column .item.title-w-2 .title {
    width: calc(1em * 2 + 16px);
  }
  .form_column .item.title-w-2 .content {
    width: calc(100% - (1em * 2 + 16px));
  }
  .form_column .item.title-w-3 .title {
    width: calc(1em * 3 + 16px);
  }
  .form_column .item.title-w-3 .content {
    width: calc(100% - (1em * 3 + 16px));
  }
  .form_column .item.title-w-4 .title {
    width: calc(1em * 4 + 16px);
  }
  .form_column .item.title-w-4 .content {
    width: calc(100% - (1em * 4 + 16px));
  }
  .form_column .item.title-w-5 .title {
    width: calc(1em * 5 + 16px);
  }
  .form_column .item.title-w-5 .content {
    width: calc(100% - (1em * 5 + 16px));
  }
  .form_column .item.title-w-6 .title {
    width: calc(1em * 6 + 16px);
  }
  .form_column .item.title-w-6 .content {
    width: calc(100% - (1em * 6 + 16px));
  }
  .form_column .item.title-w-7 .title {
    width: calc(1em * 7 + 16px);
  }
  .form_column .item.title-w-7 .content {
    width: calc(100% - (1em * 7 + 16px));
  }
  .form_column .item.title-w-8 .title {
    width: calc(1em * 8 + 16px);
  }
  .form_column .item.title-w-8 .content {
    width: calc(100% - (1em * 8 + 16px));
  }
  .form_column .item.title-w-9 .title {
    width: calc(1em * 9 + 16px);
  }
  .form_column .item.title-w-9 .content {
    width: calc(100% - (1em * 9 + 16px));
  }
  .form_column .item.title-w-10 .title {
    width: calc(1em * 10 + 16px);
  }
  .form_column .item.title-w-10 .content {
    width: calc(100% - (1em * 10 + 16px));
  }
  .form_column > .item.w-50 {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .form_column {
    /* Column Mobile
    ----------------- */
  }
  .form_column .title, .form_column .content, .form_column .item.w-50 {
    width: 100%;
  }
  .form_column .title {
    padding: 4px 0px 4px;
  }
}
.form_column.no-responsive {
  /* Column Desktop */
  /* Item Width */
}
.form_column.no-responsive .title {
  width: calc((6em + 8px * 2));
  padding: 8px 8px 0;
}
.form_column.no-responsive .content {
  width: calc(100% - (6em + 8px * 2));
}
.form_column.no-responsive .divide_text {
  padding-left: "(6em + 8px * 2)";
}
.form_column.no-responsive .item.title-w-2 .title {
  width: calc(1em * 2 + 16px);
}
.form_column.no-responsive .item.title-w-2 .content {
  width: calc(100% - (1em * 2 + 16px));
}
.form_column.no-responsive .item.title-w-3 .title {
  width: calc(1em * 3 + 16px);
}
.form_column.no-responsive .item.title-w-3 .content {
  width: calc(100% - (1em * 3 + 16px));
}
.form_column.no-responsive .item.title-w-4 .title {
  width: calc(1em * 4 + 16px);
}
.form_column.no-responsive .item.title-w-4 .content {
  width: calc(100% - (1em * 4 + 16px));
}
.form_column.no-responsive .item.title-w-5 .title {
  width: calc(1em * 5 + 16px);
}
.form_column.no-responsive .item.title-w-5 .content {
  width: calc(100% - (1em * 5 + 16px));
}
.form_column.no-responsive .item.title-w-6 .title {
  width: calc(1em * 6 + 16px);
}
.form_column.no-responsive .item.title-w-6 .content {
  width: calc(100% - (1em * 6 + 16px));
}
.form_column.no-responsive .item.title-w-7 .title {
  width: calc(1em * 7 + 16px);
}
.form_column.no-responsive .item.title-w-7 .content {
  width: calc(100% - (1em * 7 + 16px));
}
.form_column.no-responsive .item.title-w-8 .title {
  width: calc(1em * 8 + 16px);
}
.form_column.no-responsive .item.title-w-8 .content {
  width: calc(100% - (1em * 8 + 16px));
}
.form_column.no-responsive .item.title-w-9 .title {
  width: calc(1em * 9 + 16px);
}
.form_column.no-responsive .item.title-w-9 .content {
  width: calc(100% - (1em * 9 + 16px));
}
.form_column.no-responsive .item.title-w-10 .title {
  width: calc(1em * 10 + 16px);
}
.form_column.no-responsive .item.title-w-10 .content {
  width: calc(100% - (1em * 10 + 16px));
}
.form_column.no-responsive > .item.w-50 {
  width: 50%;
}

/* Q & A 
---------------------*/
@media (min-width: 992px) {
  .form_column.column_qa > .item.item_border + .item,
.form_column.column_qa .item.item_border {
    border-top: 0;
  }
  .form_column.column_qa > .item.item_border {
    padding: 4px;
    border: 1px dotted #e1e1e1;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 0 0;
  }
  .form_column.column_qa > .item.item_border:nth-child(1) {
    margin-top: 0;
    border-top-width: 1px;
  }
}

/* Forms
----------------- */
input,
textarea,
select {
  display: inline-block;
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #dfdfdf;
}
@media (max-width: 767px) {
  input,
textarea,
select {
    padding: 10px 8px;
    height: calc(1.8em + 20px);
  }
}

input,
textarea,
select,
.btn-input {
  padding: 6px 8px;
  margin: 0px 0;
  border-radius: 2px;
  line-height: 1.5em;
  height: calc(1.5em + 12px);
}
select {
  background-color: transparent;
}

option {
  color: #232323;
  background-color: white;
  border-width: 1px;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgba(75, 109, 124, 0.5);
  outline: none;
}

textarea {
  height: unset;
}

/* Placeholder
------------------------ */
::-webkit-input-placeholder {
  color: #bbb;
  text-overflow: ellipsis;
}

:-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

::-moz-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #bbb !important;
  text-overflow: ellipsis;
  opacity: 1;
}

/* caret
----------------------- */
.caret_select {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.caret_select::after {
  content: "";
  display: block;
  position: absolute;
  font-family: "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  z-index: 0;
  pointer-events: none;
  right: 12px;
  top: calc(50% - 10px);
  line-height: 20px;
}
.caret_select select {
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.caret_select select[disabled=disabled] {
  cursor: auto;
}

/* Datepicker Range */
.input-daterange {
  float: right;
  width: 100%;
  max-width: 300px;
  margin: 2px;
}
.input-daterange .form-control, .input-daterange .input-group-addon, .input-daterange .btn {
  float: left;
}
.input-daterange .input-group-addon {
  width: 40px;
  border-width: 1px;
  margin: 0 -1px;
}
.input-daterange .btn {
  width: 60px;
  height: 30px;
  padding: 2px;
  border-radius: 0 2px 2px 0;
}
.input-daterange .form-control {
  width: calc( (100% - 40px - 60px)/2) !important;
  padding: 0;
}
.input-daterange .form-control:nth-last-child(2) {
  border-radius: 0;
}
@media (max-width: 767px) {
  .input-daterange {
    max-width: 280px;
  }
}

/*--- Custom Checkbox ---*/
.checkbox-primary, .radio-primary {
  display: block;
  position: relative;
  width: 33px;
  min-height: 33px;
  padding-left: 33px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px 0;
  /* Disabled
  ----------------- */
  /* Hover
  -------------- */
  /* Checked
  ----------------- */
}
.checkbox-primary .checkmark, .radio-primary .checkmark {
  position: absolute;
  top: calc(33px / 2 - 20px / 2);
  left: 6.5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  cursor: pointer;
}
.checkbox-primary .checkmark:after, .radio-primary .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-primary input, .radio-primary input {
  position: absolute;
  opacity: 0;
  margin: 0;
  height: 0;
  width: 0;
}
.checkbox-primary input:disabled ~ .checkmark, .radio-primary input:disabled ~ .checkmark {
  cursor: not-allowed;
  border-color: #ccc;
}
.checkbox-primary input:disabled:checked ~ .checkmark, .radio-primary input:disabled:checked ~ .checkmark {
  border-color: #ccc;
}
.checkbox-primary input:disabled:checked ~ .checkmark:after, .radio-primary input:disabled:checked ~ .checkmark:after {
  display: block;
  background-color: #ccc;
}
.checkbox-primary:hover input ~ .checkmark, .radio-primary:hover input ~ .checkmark {
  background-color: #fcfcfc;
}
.checkbox-primary input:checked ~ .checkmark, .checkbox-primary input:checked:hover ~ .checkmark, .radio-primary input:checked ~ .checkmark, .radio-primary input:checked:hover ~ .checkmark {
  background-color: #4b6d7c;
  border-color: #4b6d7c;
}
.checkbox-primary input:checked ~ .checkmark:after, .checkbox-primary input:checked:hover ~ .checkmark:after, .radio-primary input:checked ~ .checkmark:after, .radio-primary input:checked:hover ~ .checkmark:after {
  display: block;
}

/* radio */
.radio-primary .checkmark {
  border-radius: 20px;
}
.radio-primary .checkmark:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  border-radius: 50%;
  background-color: #4b6d7c;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

/*--- Checkbox inline item ---*/
.checkbox-inline, .radio-inline {
  max-height: 80vh;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  width: 100%;
  padding-left: 0;
  /* a tag */
}
.checkbox-inline.no-border, .radio-inline.no-border {
  border: 0px;
}
.checkbox-inline > .item, .radio-inline > .item {
  display: inline-block;
}
.checkbox-inline > .item > label, .radio-inline > .item > label {
  display: block;
  width: auto;
  line-height: 1.5em;
  padding: calc((33px - 1.5em) / 2) 8px;
  border-radius: 4px;
}
.checkbox-inline a, .radio-inline a {
  font-size: inherit;
  color: #0275d8;
}
.checkbox-inline a:hover, .radio-inline a:hover {
  color: #0275d8;
  text-decoration: underline;
}

/*--- Checkbox list ---*/
.checkbox-list {
  /*max-height: 80vh;*/
  overflow: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  margin-bottom: 0;
}

.checkbox-list > .item > label {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding: 8px;
}

.checkbox-list > .item:nth-last-child(1) > label {
  border-bottom: 0px;
}

.checkbox-list > .item:hover > label {
  background-color: #fcfcfc;
}

/* Width */
.checkbox-inline > .item.w-100, .radio-inline > .item.w-100 {
  width: 100%;
}

/* checkbox in table
--------------------- */
table td > .checkbox-primary, table td > .radio-primary, table th > .checkbox-primary, table th > .radio-primary {
  display: inline;
}
table td > .checkbox-primary .checkmark, table td > .radio-primary .checkmark, table th > .checkbox-primary .checkmark, table th > .radio-primary .checkmark {
  top: calc(50% - 20px / 2);
}

/* Unit Input
------------- */
.unit_input {
  position: relative;
}
.unit_input > input {
  padding-right: 18px;
}
.unit_input > span {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
}

span.required {
  position: relative;
}
span.required:before {
  content: "*";
  color: #f56954;
  position: absolute;
  left: -10px;
  top: calc(50% - 5px);
  width: 10px;
  line-height: 10px;
  font-weight: 700;
}

/* Search Group
-------------- */
.search_group:after, .search_group:before {
  content: "";
  display: block;
  clear: both;
}
.search_group > input, .search_group > button {
  float: left;
}
.search_group > input {
  width: calc(100% - 50px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search_group > button {
  width: 51px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

/* divide text */
.divide_text {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}
.divide_text span {
  color: #666;
  padding: 0 8px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  display: inline-block;
  background: #eee;
  border-radius: 520px;
}
.divide_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  border-top: 1px solid #eee;
}
.divide_text + .item {
  border-top: 0;
}
@media (max-width: 991px) {
  .divide_text {
    padding-left: 0 !important;
    text-align: center !important;
  }
}

/* Width 100
-------------- */
.form_column .divide_text.dt-100 {
  padding-left: 0;
}
.form_column .divide_text.dt-100 span {
  width: 100%;
}

/* 
inline input (maybe filter bar)
------------------ */
.input_inline:after, .input_inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_inline li {
  display: inline-block;
  margin: 2px 0;
  padding-left: 8px;
  vertical-align: middle;
}
.input_inline li > span,
.input_inline li > .search_group {
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 575px ) {
  .input_inline.xxs-responsive li {
    display: block;
  }
  .input_inline.xxs-responsive li:after, .input_inline.xxs-responsive li:before {
    content: "";
    display: block;
    clear: both;
  }
  .input_inline.xxs-responsive li > span {
    width: 80px;
    text-align: right;
    padding-right: 8px;
    margin-top: calc(1em);
  }
  .input_inline.xxs-responsive li > input,
.input_inline.xxs-responsive li > textarea,
.input_inline.xxs-responsive li > .caret_select,
.input_inline.xxs-responsive li > .search_group {
    width: calc(100% - 80px - 5px);
    float: right;
  }
  .input_inline.xxs-responsive li .caret_select select {
    width: 100%;
  }
}

.input_simple {
  position: relative;
  padding: 1px !important;
}
.input_simple > label {
  height: 24px;
  width: 100%;
}
.input_simple > label:only-child {
  margin-top: 8px;
}
.input_simple > label .lock {
  color: #539c49;
  font-size: 12px;
  font-weight: 400;
}
.input_simple > label, .input_simple > p {
  margin: 4px 0;
}
.input_simple.closet {
  padding: 0 !important;
}
.input_simple.inline {
  padding: 4px 0 !important;
}
.input_simple.inline > label, .input_simple.inline > input, .input_simple.inline > p {
  float: left;
  margin: 0;
}
.input_simple.inline > label {
  width: 80px;
  height: unset;
}
.input_simple.inline > input, .input_simple.inline > p {
  width: calc(100% - 80px);
  padding-left: 8px;
}
.input_simple.inline:after, .input_simple.inline:before {
  content: "";
  display: block;
  clear: both;
}
.input_simple.notation {
  padding-top: 10px;
}

/* ====== Input in... input_row ====== */
.input_row {
  margin: 0 -2px !important;
}
.input_row > [class*=col],
.input_row > [class*=col-lg],
.input_row > [class*=col-md],
.input_row > [class*=col-sm],
.input_row > [class*=col-xs] {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.input_row input,
.input_row textarea,
.input_row select {
  width: 100%;
}
.input_row .caret_select {
  display: block;
}

/* Line */
hr {
  width: 100%;
  margin: 15px 0;
  border-color: #eee;
}

.df_clps {
  margin: 30px 0;
  background-color: #fcfcfc;
  padding: 10px 10px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.df_clps .btn_wrapper {
  padding: 10px 4px;
}

.tab > li {
  display: inline-block;
}
.tab > li.active a {
  background-color: #eee;
}
.tab a {
  display: block;
  line-height: 1em;
  padding: 6px;
}
@media (max-width: 767px ) {
  .tab li {
    display: inline-block;
    margin: 0 0 3px;
    width: calc(100% / 3 - 5px);
  }
  .tab a {
    overflow: hidden;
    line-height: 1;
    max-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }
}
@media (max-width: 575px ) {
  .tab li {
    width: calc(100% / 2 - 5px);
  }
}

.img_preview {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.img_preview.border {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
}
.img_preview .imageWrapper {
  overflow: hidden;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  margin-right: 15px;
}
.img_preview .imageWrapper .image {
  height: 105%;
  width: initial;
  max-height: 100%;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_preview .file-upload {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
  max-width: 150px;
  text-align: center;
}
.img_preview .file-upload input.file-input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 100%;
}

/* ======================== 
Common Use Classes & Pages
======================== */
.section_complete_form {
  position: relative;
  min-height: calc(100vh - 220px);
  border-top: 1px solid transparent !important;
  text-align: center;
}
.section_complete_form .container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 60px 30px;
}
.section_complete_form .container, .section_complete_form h2, .section_complete_form p, .section_complete_form a {
  text-align: center;
  max-width: 100%;
}
.section_complete_form h2 {
  color: #6ec450;
}
.section_complete_form .check {
  font-size: 120px;
  color: #6ec450;
  margin-bottom: 10px;
}
.section_complete_form .btn_main {
  margin-top: 20px;
}
.section_complete_form.min-height-none {
  min-height: unset;
}

.editor {
  padding: 8px;
  position: relative;
  /* ul */
  /* ol */
}
.editor * {
  max-width: 100% !important;
}
.editor img {
  width: auto !important;
  height: auto !important;
}
.editor h1, .editor h2, .editor h3, .editor h4 {
  color: #4b6d7c;
  margin-top: 10px;
  line-height: 1.8em;
  font-weight: 700;
}
.editor h1:nth-child(1), .editor h2:nth-child(1), .editor h3:nth-child(1), .editor h4:nth-child(1) {
  margin-top: 0;
}
.editor h1 {
  font-size: 30px;
}
.editor h2 {
  font-size: 24px;
}
.editor h3 {
  font-size: 20px;
}
.editor h4 {
  font-size: 18px;
  font-weight: 700;
}
.editor ul, .editor ol {
  margin: 8px 0;
  padding: 0;
}
.editor ul > li, .editor ol > li {
  line-height: 1.6em;
  position: relative;
  margin-bottom: 5px;
  font-size: inherit;
}
.editor ul {
  margin: 8px 0;
  font-size: inherit;
  list-style: none;
}
.editor ul > li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.4em;
}
.editor ul > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #4b6d7c;
  left: 0.7em;
  top: 0.6em;
  border-radius: 0.2em;
}
.editor ol {
  padding: 0 20px;
  padding-left: 1.8em;
  list-style-type: decimal;
}
.editor ol > li {
  position: relative;
}
.editor .tbl_wrapper {
  overflow-x: auto;
}
.editor table {
  border-color: #e1e1e1;
  border-style: solid;
  overflow: auto;
  width: 100%;
}
.editor table th, .editor table td {
  border-color: #e1e1e1;
  padding: 8px;
  border-width: 1px;
}
.editor table th {
  background-color: rgba(75, 109, 124, 0.1);
  color: #4b6d7c;
}
.editor table h1,
.editor table h2,
.editor table h3,
.editor table h4 {
  margin: 0;
}
.editor blockquote p {
  margin: 0;
}
.editor a {
  color: #3C37C7;
}
.editor a:hover {
  color: #3C37C7;
  text-decoration: underline;
}
.editor input[type=button] {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 35px;
  background-color: #4b6d7c;
  color: #fff;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-color: transparent;
  width: 100%;
}
.editor input[type=button]:hover {
  color: #fff;
  background-color: #415f6c;
}
.editor input[type=button].move_left:hover {
  -webkit-transform: translate(-5px, 0);
  -khtml-transform: translate(-5px, 0);
  -moz-transform: translate(-5px, 0);
  -ms-transform: translate(-5px, 0);
  -o-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}
.editor input[type=button].move_right:hover {
  -webkit-transform: translate(5px, 0);
  -khtml-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
.editor input[type=button].large {
  font-size: 20px;
  padding: 18px 24px;
}
.editor input[type=button].outline {
  background-color: transparent;
  border: 1px solid #4b6d7c;
  color: #4b6d7c;
}
.editor input[type=button].outline:hover {
  background-color: rgba(75, 109, 124, 0.1);
}
.editor input[type=button].cl2 {
  background-color: #C79529;
}
.editor input[type=button].cl2:hover {
  background-color: #b28525;
}
@media (max-width: 767px) {
  .editor h1 {
    font-size: 26px;
  }
  .editor h2 {
    font-size: 20px;
  }
  .editor h3 {
    font-size: 18px;
  }
  .editor h4 {
    font-size: 16px;
    font-weight: 700;
  }
}

.editor:empty {
  display: none;
}

.container.section_simple > .editor {
  padding-left: 20px;
  padding-right: 20px;
}

body {
  padding-top: 1px;
  margin-top: -1px;
  position: relative;
}

.section_main {
  padding: 15px 0;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px ) {
  .section_main {
    padding: 10px 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* Title */
.title_main:empty, .title_special:empty {
  display: none !important;
}

.title_special {
  display: inline-block;
  position: relative;
  text-align: left;
  z-index: 1;
  line-height: 1;
  margin: 10px 0;
}

.tt_wr > .title_special, .tt_wr .title_main {
  display: inline-block;
}

/* Contact Info List */
ul.ci_list {
  padding: 0 15px 10px;
  padding-left: 0;
  position: relative;
  text-align: left;
}
ul.ci_list li {
  display: block;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  padding-left: 20px;
  line-height: 1.5em;
}
ul.ci_list li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  color: inherit;
  font-size: 1em;
  line-height: inherit;
  width: 1em;
  text-align: center;
  left: 0;
}
ul.ci_list li.map-marker:before {
  content: "\f041";
  background-image: none;
}
ul.ci_list li.phone:before {
  content: "\f095";
  background-image: none;
}
ul.ci_list li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
ul.ci_list li.fax:before {
  content: "\f1ac";
  background-image: none;
}
ul.ci_list li.envelope:before {
  content: "\f003";
  background-image: none;
}
ul.ci_list li.link:before {
  content: "\f0c1";
  background-image: none;
}
ul.ci_list li.calendar:before {
  content: "\f274";
  background-image: none;
}
ul.ci_list li:empty {
  display: none;
}
ul.ci_list li:before {
  left: 0;
  top: 0;
}
ul.ci_list a:hover {
  text-decoration: underline;
}

/* Not Use
-------------- */
.article h1, .article h2, .article h3, .article h4 {
  color: #4b6d7c;
  margin-top: 20px;
}
.article .center {
  text-align: center;
}

/* Layout */
.layout_main .col_img {
  margin-bottom: 15px;
}
.layout_main .col_content .btn_wrapper {
  margin-top: 20px;
}

/* Footer Default Setting
---------------------- */
/* Footer Common
------------------ */
footer a {
  color: inherit;
}
footer a:hover {
  text-decoration: underline;
}
footer [class*=col-lg], footer [class*=col-md], footer [class*=col-sm], footer [class*=col-xs] {
  padding-right: 0;
  padding-left: 0;
}

/* Footer Logo
------------------ */
.f_logo {
  position: relative;
  overflow: hidden;
}
.f_logo img {
  position: relative;
  display: block;
  z-index: 1;
  padding: 0;
}

/* Footer Info
------------------ */
.f_info_ul {
  position: relative;
  text-align: left;
  padding: 0;
  font-size: 14px;
}
.f_info_ul li {
  display: inline-block;
  position: relative;
}

/* Footer Copyright
------------------ */
.f_copyright {
  position: relative;
  overflow: hidden;
}
.f_copyright p {
  display: block;
  z-index: 1;
  position: relative;
  line-height: 1.8em;
  padding: 5px 8px;
  font-size: 12px;
  margin: 0;
}

/* Footer Fix
------------------ */
.footer_fix {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-style: inset;
}

/* Product
---------------------- */
/* Cart
---------------------- */
/* ======================== 
Custom Classes
======================== */
/* ====== Custom Class ====== */
/* Color */
.white {
  color: #fff;
}

.red {
  color: #f56954;
}

.green {
  color: #4fc47f;
}

.light-gray {
  color: #666666;
}

.main-color {
  color: #4b6d7c;
}

.second-color {
  color: #C79529;
}

/* Font Size */
.font-size-xxs, i.font-size-xxs:before {
  font-size: 12px;
}
@media (max-width: 767px ) {
  .font-size-xxs, i.font-size-xxs:before {
    font-size: 12px;
  }
}

.font-size-xs, i.font-size-xs:before {
  font-size: 14px;
}
@media (max-width: 767px ) {
  .font-size-xs, i.font-size-xs:before {
    font-size: 14px;
  }
}

.font-size-sm, i.font-size-sm:before {
  font-size: 16px;
}
@media (max-width: 767px ) {
  .font-size-sm, i.font-size-sm:before {
    font-size: 14px;
  }
}

.font-size-md, i.font-size-md:before {
  font-size: 20px;
}
@media (max-width: 767px ) {
  .font-size-md, i.font-size-md:before {
    font-size: 18px;
  }
}

.font-size-lg, i.font-size-lg:before {
  font-size: 24px;
}
@media (max-width: 767px ) {
  .font-size-lg, i.font-size-lg:before {
    font-size: 20px;
  }
}

.font-size-xl, i.font-size-xl:before {
  font-size: 40px;
}
@media (max-width: 767px ) {
  .font-size-xl, i.font-size-xl:before {
    font-size: 30px;
  }
}

/* letter spacing */
.no-letter-s {
  letter-spacing: 0px !important;
}

.letter-s125 {
  letter-spacing: 0.125em !important;
}

.letter-s25 {
  letter-spacing: 0.25em !important;
}

.letter-s50 {
  letter-spacing: 0.5em !important;
}

.letter-s75 {
  letter-spacing: 0.75em !important;
}

.letter-s100 {
  letter-spacing: 1em !important;
}

/* font weight */
.font-w400 {
  font-weight: 400 !important;
}

.font-w700 {
  font-weight: 700 !important;
}

/* text property */
.text-transform-unset {
  text-transform: unset !important;
}

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

.word-wrap {
  word-wrap: break-word;
}

.text-transform-none {
  text-transform: none !important;
}

.text-transform-uppercase {
  text-transform: uppercase !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.align-left {
  text-align: left !important;
}

/* background */
.bg-full,
.opacity-light,
.opacity-medium,
.opacity-full {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.opacity-light {
  opacity: 0.5;
}

.opacity-medium {
  opacity: 0.7;
}

.opacity-full {
  opacity: 0.8;
}

.fix-background {
  background-size: cover !important;
}
@media (min-width: 1200px ) {
  .fix-background {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.cover-background {
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
}

/*center-col*/
.center-col {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* margin */
.no-margin {
  margin: 0 !important;
}

.no-margin-lr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.margin-bottom {
  margin-bottom: 60px;
}

.m-bottom5 {
  margin-bottom: 5px !important;
}

.m-bottom10 {
  margin-bottom: 10px !important;
}

.m-bottom15 {
  margin-bottom: 15px !important;
}

.m-bottom20 {
  margin-bottom: 20px !important;
}

.m-bottom30 {
  margin-bottom: 30px !important;
}

.m-bottom40 {
  margin-bottom: 40px !important;
}

.m-bottom50 {
  margin-bottom: 50px !important;
}

.m-bottom60 {
  margin-bottom: 60px !important;
}

.m-bottom70 {
  margin-bottom: 70px !important;
}

.m-bottom80 {
  margin-bottom: 80px !important;
}

.m-bottom90 {
  margin-bottom: 90px !important;
}

.m-bottom100 {
  margin-bottom: 100px !important;
}

.m-bottom110 {
  margin-bottom: 110px !important;
}

.m-bottom120 {
  margin-bottom: 120px !important;
}

.m-bottom150 {
  margin-bottom: 150px !important;
}

.m-bottom180 {
  margin-bottom: 180px !important;
}

.m-bottom200 {
  margin-bottom: 200px !important;
}

.m-top5 {
  margin-top: 5px !important;
}

.m-top10 {
  margin-top: 10px !important;
}

.m-top15 {
  margin-top: 15px !important;
}

.m-top20 {
  margin-top: 20px !important;
}

.m-top30 {
  margin-top: 30px !important;
}

/* padding-custom */
.padding-lr8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.padding-lr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.padding-lr30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.padding-tb8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.padding-tb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.padding-tb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.padding-tb30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.padding-tb40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.padding-tb50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.padding-tb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.padding-tb70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.padding-tb80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.padding-left-right-px {
  padding: 0 15px;
}

.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding-section {
  padding: 0px !important;
}

.no-padding-right {
  padding-right: 0px !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0px !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-tb {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.section-padding-inner {
  padding: 140px 0;
}

/* float */
.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.no-float {
  float: none !important;
}

/* display */
.display-block {
  display: block !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-hidden-mobile {
  position: fixed !important;
  overflow: hidden !important;
}

.display-inline-block {
  display: inline-block !important;
}

.display-inline {
  display: inline !important;
}

.display-none, .hidden {
  display: none !important;
}

.display-table {
  display: table !important;
}

/* position */
.position-relative {
  position: relative !important;
  z-index: 5;
}

.position-absolute {
  position: absolute !important;
}

.position-right {
  right: 0 !important;
}

.position-left {
  left: 0 !important;
}

.position-top {
  top: 0 !important;
}

/* width */
.width {
  display: inline-block;
  position: relative;
  width: 90%;
}

.width-20 {
  width: 20% !important;
}

.width-30 {
  width: 30% !important;
}

.width-40 {
  width: 40% !important;
}

.width-50 {
  width: 50% !important;
}

.width-60 {
  width: 60% !important;
}

.width-70 {
  width: 70% !important;
}

.width-80 {
  width: 80% !important;
}

.width-90 {
  width: 90% !important;
}

.width-100 {
  width: 100% !important;
}

.width-auto {
  width: auto !important;
}

/* height */
.height-100 {
  height: 100% !important;
}

.height-auto {
  height: auto !important;
}

.clear-both {
  clear: both;
}

.roundedimage {
  border-radius: 100%;
}

.vertical-align-middle {
  vertical-align: middle !important;
}

.vertical-align-bottom {
  vertical-align: bottom !important;
}

.no-box-shadow {
  box-shadow: none !important;
}

p.uppercase {
  text-transform: uppercase !important;
}

p.uppercase a {
  text-decoration: underline !important;
}

p.uppercase a:hover {
  text-decoration: none;
}

.line-break {
  display: block !important;
}

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

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

/*animate & transiton*/
.animated {
  -moz-transition-duration: 0s !important;
}

/*##*/
.transition2s, .transition2s * {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.transition1s, .transition1s * {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

/*no transiton*/
.no-transition, .no-transition * {
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

/* ====== //Custom Class ====== */
/* Pure Cover */
.editor {
  /* font size */
  font-size: 14px;
  /* ul */
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  color: #C79529;
  font-weight: 700;
}
.editor h1 {
  font-size: 28px;
}
.editor h2 {
  font-size: 24.5px;
}
.editor h3 {
  font-size: 21px;
}
.editor h4 {
  font-size: 16px;
}
.editor h5 {
  font-size: 15px;
}
.editor h6 {
  font-size: 14px;
}
.editor p {
  font-size: 14px;
}
.editor ul {
  margin: 8px 0;
  font-size: inherit;
}
.editor ul > li {
  line-height: 1.6em;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.4em;
  font-size: inherit;
}
.editor ul > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #4b6d7c;
  left: 10px;
  top: 10px;
  border-radius: 0.2em;
}
@media (max-width: 767px) {
  .editor {
    /* font size */
    font-size: 14px;
  }
  .editor h1 {
    font-size: 28px;
  }
  .editor h2 {
    font-size: 24.5px;
  }
  .editor h3 {
    font-size: 21px;
  }
  .editor h4 {
    font-size: 16px;
  }
  .editor h5 {
    font-size: 15px;
  }
  .editor h6 {
    font-size: 14px;
  }
  .editor p {
    font-size: 14px;
  }
}

/*--- Custom Checkbox ---*/
.checkbox-primary, .radio-primary {
  /* Checked
  ----------------- */
}
.checkbox-primary input:checked ~ .checkmark, .checkbox-primary input:checked:hover ~ .checkmark, .radio-primary input:checked ~ .checkmark, .radio-primary input:checked:hover ~ .checkmark {
  background-color: #2fc6cc;
  border-color: #2fc6cc;
}

/* radio */
.radio-primary .checkmark:after {
  background-color: #2fc6cc;
}

.section_main {
  margin-bottom: 45px;
}

/* Independent Comp */
a {
  color: #232323;
}

a:hover, a:focus {
  color: #232323;
}

/* Other Custom A Tag */
.a_hover_dotted {
  display: inline-block;
  border-bottom: 1px dotted transparent;
}
.a_hover_dotted:hover {
  border-bottom: 1px dotted #666666;
}

/* Button Main Style */
.btn_special {
  position: relative;
  z-index: 1;
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.lang-2nd .btn_special {
  font-family: "Tangerine", "Meiryo", sans-serif;
}

.btn_special:before {
  content: "";
  position: absolute;
  height: 2em;
  width: 2em;
  border-radius: 4em;
  left: -1em;
  top: calc(50% - 1em);
  z-index: -1;
  background-color: white;
}
@media (max-width: 767px ) {
  .btn_special {
    font-size: 16px;
  }
}

/* Wrapper */
.btn_wrapper {
  margin-top: 10px;
}

.main_title {
  position: relative;
  padding-left: calc(52px + 8px);
  color: #5C6D7F;
  font-weight: 500;
  display: inline-block;
}
.main_title:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  content: "";
  background-image: url(../images/icons.png);
  background-repeat: no-repeat;
}
.main_title span {
  font-weight: bold;
}
@media (max-width: 767px ) {
  .main_title {
    padding-left: calc(48px + 8px);
  }
  .main_title:before {
    top: -4px;
  }
}

.title_special {
  font-weight: 700;
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-weight: 600;
  color: #232323;
}
.lang-2nd .title_special {
  font-family: "Tangerine", "Meiryo", sans-serif;
}

.title_special.with_icon .before, .title_special.with_icon .after {
  position: absolute;
  width: 225px;
  height: 24px;
  bottom: calc(50% - 24px / 2);
  background-image: url(../images/common/ic_title.png);
}
.title_special.with_icon .before {
  left: -240px;
  background-position: left;
}
.title_special.with_icon .after {
  right: -240px;
  background-position: right;
}
@media (max-width: 767px ) {
  .title_special.with_icon .before, .title_special.with_icon .after {
    width: 112.5px;
    height: 12px;
    bottom: calc(50% - 12px / 2);
  }
  .title_special.with_icon .before {
    left: -127.5px;
  }
  .title_special.with_icon .after {
    right: -127.5px;
  }
}

/*  Animate
----------------------- */
@media (min-width: 768px ) {
  @-webkit-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-moz-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-ms-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-o-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
}
@media (max-width: 767px ) {
  @-webkit-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-moz-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-ms-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-o-keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @keyframes drawTitleLTR {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
}
@media (min-width: 768px ) {
  @-webkit-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-moz-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-ms-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @-o-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
}
@media (max-width: 767px ) {
  @-webkit-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-moz-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-ms-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @-o-keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
  @keyframes drawTitleRTL {
    from {
      width: 0;
    }
    to {
      width: 112.5px;
    }
  }
}
@-webkit-keyframes drawTitleLTR {}
@-moz-keyframes drawTitleLTR {}
@-ms-keyframes drawTitleLTR {}
@-o-keyframes drawTitleLTR {}
@keyframes drawTitleLTR {}
.drawTitleLTR {
  animation-name: drawTitleLTR;
}

.drawTitleRTL {
  animation-name: drawTitleRTL;
}

.caret_select.special select {
  color: white;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
  font-size: 14px;
  border-radius: 4px;
  background-color: #333;
  border: none;
  height: 2em;
}
.caret_select.special:after {
  color: white;
}

/* Album Date Note
---------------- */
.divide_note {
  margin: 0 0 5px;
  text-align: left;
  font-size: 11px;
  color: rgba(35, 35, 35, 0.3);
}
.divide_note > li {
  display: inline-block;
}
.divide_note > span, .divide_note > li + li, .divide_note.display-block > li {
  padding-left: 20px;
  position: relative;
}
.divide_note > span:before, .divide_note > li + li:before, .divide_note.display-block > li:before {
  content: "";
  position: absolute;
  background-color: rgba(35, 35, 35, 0.3);
  width: 4px;
  height: 4px;
  left: calc((20px - 4px) / 2);
  top: calc(50% - 4px / 2);
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.divide_note.display-block > li {
  display: block;
}

/* Theme Tag */
.tag.theme {
  border-color: #333;
  background-color: #333;
}

.bg_fix {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -2;
  top: 0;
  left: 0;
  background-size: cover !important;
  background-image: url(../images/common/bg_003.jpg);
}
@media (min-width: 1200px ) {
  .bg_fix {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -2;
  }
}

/* Momdal Effect
---------------- */
.pure-fade {
  opacity: 0;
  -webkit-transform: none;
  -khtml-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: rgba(0, 0, 0, 0.5);
}
.pure-fade.in {
  opacity: 1;
  -webkit-transform: none;
  -khtml-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* Video Modal
--------------- */
.modal_video {
  overflow: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.modal_video::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* mask
------------- */
.video_mask {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

/* Video
------------- */
/* close */
.mvideo_top_action {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  padding: 10px;
  text-align: right;
  -webkit-transition: all 0.1s linear;
  -khtml-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
@media (min-width: 1200px ) {
  .mvideo_top_action {
    /* hover */
    -webkit-animation: mvideo_top_action 3s;
    -khtml-animation: mvideo_top_action 3s;
    -moz-animation: mvideo_top_action 3s;
    -ms-animation: mvideo_top_action 3s;
    -o-animation: mvideo_top_action 3s;
    animation: mvideo_top_action 3s;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .mvideo_top_action:hover {
    opacity: 1;
    -webkit-transform: none;
    -khtml-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes mvideo_top_action {
  from, 90% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -khtml-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.mvideo_close {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  z-index: 1050;
  text-align: center;
  width: 60px;
  height: 60px;
  font-size: 42px;
  line-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px ) {
  .mvideo_close {
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
  }
}

/* Video Size */
video.size-full-screen {
  width: 100%;
  height: 100%;
}

.page_nav {
  z-index: 1;
  padding: 10px 45px 10px 30px;
  border-top: 1px dotted #4b6d7c;
}
.page_nav:after, .page_nav:before {
  content: "";
  display: block;
  clear: both;
}
.page_nav [class*=page_] {
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-weight: 600;
  font-size: 150%;
  border-radius: 50px;
}
.lang-2nd .page_nav [class*=page_] {
  font-family: "Tangerine", "Meiryo", sans-serif;
}

.page_nav [class*=page_]:hover {
  background-color: rgba(75, 109, 124, 0.3);
}
.page_nav .page_prev {
  float: left;
}
.page_nav .page_next {
  float: right;
}

/* Comp Basic Setting */
/* Grid Basic
======================= */
/* Grid
-------------- */
.grid_basic {
  padding: 0;
}
.grid_basic:after, .grid_basic:before {
  content: "";
  display: block;
  clear: both;
}
.grid_basic .item {
  padding: 8px;
}
@media (max-width: 575px ) {
  .grid_basic .item.col-xxs-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-xxs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .grid_basic .item.col-xs-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-xs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .grid_basic .item.col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-sm-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .grid_basic .item.col-md-6:nth-child(2n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-4:nth-child(3n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-3:nth-child(4n+1) {
    clear: left;
  }
  .grid_basic .item.col-md-2:nth-child(6n+1) {
    clear: left;
  }
}
.grid_basic .inner {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: white;
}
.grid_basic a, .grid_basic a:hover, .grid_basic a:focus {
  color: inherit;
}
.grid_basic .img_wrapper {
  overflow: hidden;
  position: relative;
}
.grid_basic .img {
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.grid_basic .item:hover .img {
  -webkit-transform: scale(1.05, 1.05);
  -khtml-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.grid_basic .content {
  padding: 8px 16px;
}
.grid_basic .title {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.grid_basic .dsc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
  white-space: normal;
  text-overflow: initial;
  height: auto;
  max-height: 4.5em;
}

/* Comps Grid Basic
------------------ */
/* bg_film */
.bg_film {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.bg_film i, .bg_film i:before, .bg_film p, .bg_film span {
  color: white;
}

@media (min-width: 768px ) {
  .item:hover .bg_film {
    opacity: 1;
  }
}

/* Film Button */
.bg_film .vam_td {
  text-align: center;
}

.read_btn {
  display: inline-block;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  letter-spacing: 5px;
  color: rgba(35, 35, 35, 0.5) !important;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  transition-delay: 0.1s;
}
.read_btn:before, .read_btn:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(35, 35, 35, 0.5);
}
.read_btn:before {
  top: 0;
}
.read_btn:after {
  bottom: 0;
}

.read_btn {
  line-height: 0px;
  height: 0px;
}

.item:hover .read_btn {
  line-height: 40px;
  height: 40px;
}

.crsl_basic {
  /* IMG */
}
.crsl_basic .item {
  display: block;
  padding: 0;
}
.crsl_basic .item:after, .crsl_basic .item:before {
  content: "";
  display: block;
  clear: both;
}
.crsl_basic [class*=col-lg], .crsl_basic [class*=col-md], .crsl_basic [class*=col-sm], .crsl_basic [class*=col-xs] {
  padding: 0;
}
.crsl_basic .inner {
  display: block;
  overflow: hidden;
  border-radius: 0px;
}
.crsl_basic .img_wrapper {
  position: relative;
  overflow: hidden;
}
.crsl_basic .img {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.crsl_basic .content {
  padding: 15px;
}
.crsl_basic .title {
  color: #232323;
  font-weight: 700;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  white-space: normal;
  text-overflow: initial;
}
.crsl_basic .dsc {
  color: #666666;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
  white-space: normal;
  text-overflow: initial;
}
.crsl_basic .date {
  position: relative;
  color: #ccc;
  font-size: 0.6em;
}
.crsl_basic .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.crsl_basic .owl-nav [class*=owl-] {
  position: relative;
  color: white;
  background-color: transparent;
  font-size: 32px;
  margin: 0px;
  padding: 0;
  width: 40px;
  text-align: center;
  position: absolute;
  border-radius: 20px;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  opacity: 1;
}
.crsl_basic .owl-nav [class*=owl-] i {
  line-height: 40px;
}
.crsl_basic .owl-nav [class*=owl-].disabled, .crsl_basic .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.crsl_basic .owl-nav .owl-prev {
  left: 10px;
}
.crsl_basic .owl-nav .owl-prev i {
  margin-right: 5px;
}
.crsl_basic .owl-nav .owl-next {
  right: 10px;
}
.crsl_basic .owl-nav .owl-next i {
  margin-left: 5px;
}
.crsl_basic .owl-nav {
  opacity: 0;
}
.crsl_basic:hover .owl-nav {
  opacity: 1;
}
.crsl_basic .owl-dots {
  position: relative;
}
/* Vertical Align Middle
--------------- */
.vam_full {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.vam_table {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  display: table;
  position: relative;
}
.vam_table .vam_td {
  display: table-cell;
  vertical-align: middle;
}

.vam_wrapper {
  height: 1px;
  position: relative;
}

/* in wrapper
------------ */
.vam_wrapper .vam_table, .vam_full .vam_table {
  position: absolute;
}

/* 
-------------- */
.vam_h_100 {
  height: 100%;
}

/*  there are some repeat use class, 
    need fix
------------------- */
/* nav basic style 
--------------------*/
.navbar [class*=col-lg],
.navbar [class*=col-md],
.navbar [class*=col-sm],
.navbar [class*=col-xs] {
  padding: 0;
}
.navbar .container-fluid {
  padding: 0;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .container {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .navbar .container {
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .navbar .container {
    max-width: unset;
  }
}

.navbar-collapse {
  padding: 0;
}
@media (max-width: 767px ) {
  .navbar-collapse {
    padding: 0;
    margin: 0 !important;
    max-height: calc(100vh - 120px);
  }
}

.navbar {
  border-bottom: 0;
  padding: 0px 0;
}
.navbar.add_class {
  padding: 0;
}
.navbar > .container-fluid, .navbar .container {
  padding: 0;
}
.navbar .navbar-header {
  margin: 0;
}
.navbar .navbar-nav {
  padding: 0;
}

.navbar,
.dsk_menu {
  z-index: 1030;
  width: 100%;
  position: relative;
}

.navbar {
  z-index: 1030;
}
@media (max-width: 767px ) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

.navbar-header {
  float: unset;
}

@media (max-width: 767px ) {
  .navbar-collapse {
    z-index: 1030;
    position: fixed;
    left: 0;
    top: 49px !important;
    width: 100%;
  }
}

@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar .navbar-nav {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-header {
    border-bottom: 0px;
  }
}
/* Mobile Nav Scroll Bar
----------------------- */
.navbar-collapse::-webkit-scrollbar,
.js-offcanvas::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Nav Brand Header Layout
---------------- */
.navbar-header {
  text-align: center;
}
.navbar-header .navbar-brand {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 0;
}
@media (min-width: 768px ) {
  .navbar-header .navbar-brand {
    padding: 6px 12px;
  }
}
@media (max-width: 767px ) {
  .navbar-header .navbar-brand {
    height: 50px;
    padding: 8px 10px;
  }
}
.navbar-header .navbar-brand .brand_logo {
  width: auto;
  content: "";
  background-image: url(../images/icons.png);
  width: 172px;
  height: 100px;
  background-position: 0 0;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .navbar-header .navbar-brand .brand_logo {
    width: 137.6px;
    height: 80px;
    background-position: 0 0;
    background-size: 960px auto;
  }
}
@media (max-width: 991px ) {
  .navbar-header .navbar-brand .brand_logo {
    width: 112.8px;
    height: 63px;
    background-position: 0 -150px;
    background-size: 720px auto;
  }
}
@media (max-width: 767px ) {
  .navbar-header .navbar-brand .brand_logo {
    width: 65.8px;
    height: 36.75px;
    background-position: 0 -87.5px;
    background-size: 420px auto;
  }
}
.navbar-header .navbar-brand .brand_logo_pages {
  width: auto;
  content: "";
  background-image: url(../images/icons.png);
  width: 188px;
  height: 105px;
  background-position: 0 -250px;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .navbar-header .navbar-brand .brand_logo_pages {
    width: 150.4px;
    height: 84px;
    background-position: 0 -200px;
    background-size: 960px auto;
  }
}
@media (max-width: 991px ) {
  .navbar-header .navbar-brand .brand_logo_pages {
    width: 112.8px;
    height: 63px;
    background-position: 0 -150px;
    background-size: 720px auto;
  }
}
@media (max-width: 767px ) {
  .navbar-header .navbar-brand .brand_logo_pages {
    width: 65.8px;
    height: 36.75px;
    background-position: 0 -87.5px;
    background-size: 420px auto;
  }
}
.navbar-header .navbar-brand .brand_logo_cn {
  content: "";
  background-image: url(../images/icons_cn.png);
  background-size: 800px auto;
  width: 177px;
  height: 90px;
  background-position: 0 0;
  background-size: 800px auto;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar-header .navbar-brand .brand_logo_cn {
    width: 141.6px;
    height: 72px;
    background-position: 0 0;
    background-size: 640px auto;
  }
}
@media (max-width: 767px ) {
  .navbar-header .navbar-brand .brand_logo_cn {
    width: 70.8px;
    height: 36px;
    background-position: 0 0;
    background-size: 320px auto;
  }
}
.navbar-header .navbar-brand h3 {
  padding-left: 8px;
}

@media (max-width: 767px ) {
  .navbar-header {
    text-align: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .navbar-header {
    text-align: center;
  }
}
@media (min-width: 1200px ) {
  .navbar-header {
    text-align: center;
  }
}

/* --------------------------------------------
Desktop Menu & Mobile Bootstrap Menu Style
--------------------------------------------
import files:
- _menuColor


-------------------------------------------- */
/* Desktop Navbar
----------------------- */
/* Layout */
@media (min-width: 768px) {
  ul.navbar-nav > li {
    font-size: 16px;
  }
  ul.navbar-nav > li:last-child {
    border-right: 0;
  }
  ul.navbar-nav > li > a {
    text-align: center;
    z-index: 1001;
    white-space: nowrap;
    background-color: transparent;
    font-weight: 400;
    font-size: 16px;
    -webkit-transition: all 0s ease-in-out;
    -khtml-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus, ul.navbar-nav > li.active > a {
    background-color: #4b6d7c;
  }
  ul.navbar-nav > li:nth-last-child(1) .dropdown-menu {
    right: 0;
    left: unset;
  }
  ul.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  ul.navbar-nav .dropdown-menu {
    top: calc(100% + 0px);
    left: 0;
    border-width: 0px;
    border-radius: 0;
    min-width: 160px;
  }
  ul.navbar-nav .dropdown-menu > li > a {
    padding: 10px 15px;
    font-size: 16px;
    background-color: transparent;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0px;
    margin-top: 0;
    left: 100%;
    min-height: calc(100%);
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > a {
    padding-right: 30px;
    position: relative;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: calc(50% - 5px);
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}
/* Style */
@media (min-width: 768px) {
  ul.navbar-nav .dropdown-menu {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  }

  ul.navbar-nav > li > a {
    border-color: transparent;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus, ul.navbar-nav > li.active > a {
    border-color: #4b6d7c;
    color: #11191d;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus {
    background-color: rgba(75, 109, 124, 0.1);
  }
  ul.navbar-nav > li.active > a {
    background-color: #4b6d7c;
    color: white;
    font-weight: bold;
  }
  ul.navbar-nav .dropdown-menu {
    background-color: #4b6d7c;
  }
  ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
  }
  ul.navbar-nav .dropdown-menu > li > a:hover, ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: #5C6D7F;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid rgba(0, 0, 0, 0.5);
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #fff;
  }
  ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #fff;
  }
  ul.navbar-nav a {
    color: #232323;
  }
  ul.navbar-nav .dropdown-menu a {
    color: white;
  }
  ul.navbar-nav .dropdown-menu a:hover, ul.navbar-nav .dropdown-menu a:focus {
    color: #fff;
    background-color: #5C6D7F;
  }

  .add_class ul.navbar-nav > li > a {
    border-color: transparent;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus, .add_class ul.navbar-nav > li.active > a {
    border-color: #4b6d7c;
    color: #11191d;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus {
    background-color: rgba(75, 109, 124, 0.1);
  }
  .add_class ul.navbar-nav > li.active > a {
    background-color: #4b6d7c;
    color: white;
    font-weight: bold;
  }
  .add_class ul.navbar-nav .dropdown-menu {
    background-color: #4b6d7c;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a {
    background-color: transparent;
  }
  .add_class ul.navbar-nav .dropdown-menu > li > a:hover, .add_class ul.navbar-nav .dropdown-menu > li > a:focus {
    background-color: #5C6D7F;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    border-left: 1px solid rgba(0, 0, 0, 0.5);
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    border-left-color: #fff;
  }
  .add_class ul.navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #fff;
  }
  .add_class ul.navbar-nav a {
    color: #232323;
  }
  .add_class ul.navbar-nav .dropdown-menu a {
    color: white;
  }
  .add_class ul.navbar-nav .dropdown-menu a:hover, .add_class ul.navbar-nav .dropdown-menu a:focus {
    color: #fff;
    background-color: #5C6D7F;
  }

  .dsk_menu {
    background-color: transparent;
  }
  .dsk_menu.add_class {
    background-color: transparent;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .navbar-collapse {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }

  ul.navbar-nav {
    border-top: 1px solid #e1e1e1;
    margin: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  ul.navbar-nav .nav-item .nav-link {
    padding-left: 8px;
  }
  ul.navbar-nav .nav-item .dropdown-item {
    border-left: 4px solid #4b6d7c;
    background-color: rgba(238, 238, 238, 0.2);
  }
  ul.navbar-nav ul {
    padding: 0;
  }
  ul.navbar-nav a, ul.navbar-nav li.dropdown ul.dropdown-menu a {
    padding: 10px 15px;
    color: #232323;
    font-size: 18px;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu a {
    padding: 8px 12px !important;
  }
  ul.navbar-nav a, ul.navbar-nav a:hover, ul.navbar-nav a:focus, ul.navbar-nav .open a, ul.navbar-nav .open a:hover, ul.navbar-nav .open a:focus {
    border-bottom: 1px solid #e1e1e1;
    background-color: #fff;
  }
  ul.navbar-nav li.dropdown > a, ul.navbar-nav li.dropdown-submenu > a {
    position: relative;
  }
  ul.navbar-nav li.dropdown > a:after, ul.navbar-nav li.dropdown-submenu > a:after {
    display: block;
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    top: calc(50% - 5px);
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #4b6d7c;
    -webkit-transform: rotate(0deg);
    -khtml-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  ul.navbar-nav li.dropdown.open > a:after, ul.navbar-nav li.dropdown-submenu.open > a:after {
    -webkit-transform: rotate(90deg);
    -khtml-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  ul.navbar-nav > li.dropdown.open > a {
    background-color: #fff;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu {
    width: 100%;
    position: relative;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li > a {
    border-left: 4px solid #4b6d7c;
    background-color: #f7f7f7;
  }
  ul.navbar-nav > li.dropdown > ul.dropdown-menu > li.open > a {
    background-color: #f7f7f7;
  }
  ul.navbar-nav li.dropdown-submenu ul.dropdown-menu > li > a {
    border-left: 4px solid #25353c;
    background-color: #f2f2f2;
  }

  .navbar, .dsk_menu {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .navbar.add_class, .dsk_menu.add_class {
    background-color: #fff;
  }
}
.dropdown-menu {
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
}
.dropdown-menu .dropdown-item {
  padding: 0.5rem 0.75rem;
}

.navbar-toggler {
  padding: 0.5rem 0.5rem;
}

@media (max-width: 767px ) {
  .nav_fix {
    margin-top: 50px;
  }
}

/* nav Position
--------------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 1200px ) {
  .navbar {
    top: 50px;
  }
}

/* nav components 
--------------------*/
/* Mobile - Menu */
.js-offcanvas {
  padding: 0;
  padding-top: 50px;
  left: 0;
  overflow-x: none;
  overflow-y: auto;
  background-color: #fff;
}
.js-offcanvas ul.navbar-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav, .js-offcanvas .list-unstyled {
  margin: 0;
}
.js-offcanvas ul.navbar-nav li a, .js-offcanvas .list-unstyled li a {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav li.open a, .js-offcanvas ul.navbar-nav li a:hover, .js-offcanvas ul.navbar-nav li a:focus, .js-offcanvas .list-unstyled li.open a, .js-offcanvas .list-unstyled li a:hover, .js-offcanvas .list-unstyled li a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > li, .js-offcanvas .list-unstyled > li {
  margin: 0;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas .list-unstyled > li > a {
  color: #232323;
}
.js-offcanvas ul.navbar-nav > li > a, .js-offcanvas ul.navbar-nav > li > a:active, .js-offcanvas ul.navbar-nav > li > a:focus, .js-offcanvas ul.navbar-nav > li.active > a, .js-offcanvas ul.navbar-nav > li.active > a:active, .js-offcanvas ul.navbar-nav > li.active > a:focus, .js-offcanvas ul.navbar-nav > li.open > a, .js-offcanvas ul.navbar-nav > li.open > a:active, .js-offcanvas ul.navbar-nav > li.open > a:focus, .js-offcanvas .list-unstyled > li > a, .js-offcanvas .list-unstyled > li > a:active, .js-offcanvas .list-unstyled > li > a:focus, .js-offcanvas .list-unstyled > li.active > a, .js-offcanvas .list-unstyled > li.active > a:active, .js-offcanvas .list-unstyled > li.active > a:focus, .js-offcanvas .list-unstyled > li.open > a, .js-offcanvas .list-unstyled > li.open > a:active, .js-offcanvas .list-unstyled > li.open > a:focus {
  background: white;
}
.js-offcanvas ul.navbar-nav > .dropdown > a:after, .js-offcanvas .list-unstyled > .dropdown > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #4b6d7c;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a:after, .js-offcanvas .list-unstyled > .dropdown.open > a:after {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu {
  margin-left: 0px;
  width: 100%;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  background: #f2f2f2;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu *, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu * {
  background: unset;
  transition-duration: 0s;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu > li > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu > li > a {
  color: #232323 !important;
  padding: 12px !important;
  border-left: 4px solid #4b6d7c;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 0px;
  margin-top: 0;
  background: rgba(75, 109, 124, 0.04);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > .dropdown-menu a {
  border-left-color: #25353c;
  padding: 8px 12px !important;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a {
  padding-right: 30px;
  position: relative;
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu > a:after {
  display: block;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  right: 10px;
  top: calc(50% - 5px);
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #4b6d7c;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown .dropdown-menu .dropdown-submenu.open > a:after, .js-offcanvas .list-unstyled > .dropdown .dropdown-menu .dropdown-submenu.open > a:after {
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > .dropdown-menu, .js-offcanvas .list-unstyled > .dropdown.open > .dropdown-menu {
  display: block;
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a, .js-offcanvas ul.navbar-nav > .dropdown.open > a:hover, .js-offcanvas ul.navbar-nav > .dropdown.open > a:focus, .js-offcanvas .list-unstyled > .dropdown.open > a, .js-offcanvas .list-unstyled > .dropdown.open > a:hover, .js-offcanvas .list-unstyled > .dropdown.open > a:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.js-offcanvas ul.navbar-nav > .dropdown .caret:after, .js-offcanvas .list-unstyled > .dropdown .caret:after {
  color: #117ad5;
}
@media (min-width: 768px) {
  .js-offcanvas {
    display: none;
  }
}
.js-offcanvas.is-closed a {
  display: none;
}

.cart_btn_wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .cart_btn_wrapper {
    display: none;
  }
}

/* Cart Button */
.cart_btn {
  display: block;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 44px;
  height: 44px;
}
.cart_btn > i {
  color: #fff;
  font-size: 26px;
  line-height: 44px;
}

/* Small Number (Web & Mobile)*/
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  position: absolute;
  line-height: 1em;
  border-radius: 100px;
  padding: 2px 5px;
  background-color: #fff;
  border: 2px solid #4b6d7c;
  color: #4b6d7c;
  top: 10%;
  right: 10%;
  font-size: 12px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #444;
  background-color: #5e899c;
  color: #444;
  top: 12%;
  right: 12%;
}

/* Cart Popup */
.cart_popup_wrapper {
  height: 0;
  z-index: 1010;
}

.cart_popup {
  margin: 0;
  position: absolute;
  border-radius: 3px;
  padding: 0;
  display: none;
  background: #fff;
  width: 450px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  top: 30px;
  right: 0;
}
.cart_popup.active {
  display: block;
}
.cart_popup .cart_itms {
  padding: 0 4px;
}
.cart_popup .cart_itms {
  max-height: 307px;
  overflow-x: hidden;
  overflow-y: auto;
}
.cart_popup .cart_itms::-webkit-scrollbar {
  width: 4px;
}
.cart_popup .cart_itms::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.cart_popup .cart_itms::-webkit-scrollbar-thumb {
  background-color: rgba(75, 109, 124, 0.5);
  outline: 0px solid;
}
.cart_popup li {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.cart_popup li:after, .cart_popup li:before {
  content: "";
  display: block;
  clear: both;
}
.cart_popup li + li {
  border-top: 1px solid #e1e1e1;
}
.cart_popup li p {
  margin: 0;
}
.cart_popup .img_wrapper {
  width: 35%;
}
.cart_popup .content {
  width: calc(100% - 35% );
  padding: 0 12px;
  overflow: hidden;
}
.cart_popup .content p {
  line-height: 1.5em;
}
.cart_popup .prd_title a {
  color: #5C6D7F;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}
.cart_popup .price_col {
  text-align: right;
  position: relative;
}
.cart_popup .price_col p {
  display: inline-block;
}
.cart_popup .price_col .price_del {
  text-decoration: line-through;
}
.cart_popup .price_col .price {
  font-size: 20px;
  font-weight: 700;
}
.cart_popup .footer {
  padding: 12px 4px;
  border-top: 1px solid #e1e1e1;
  background-color: #efefef;
}
.cart_popup .footer p {
  display: inline-block;
  color: #232323;
}

/* Nav Lang List
------------------ */
.n_lang_list {
  padding: 11px 0;
}
.n_lang_list:after, .n_lang_list:before {
  content: "";
  display: block;
  clear: both;
}
.n_lang_list > li {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  color: #232323;
  line-height: 1em;
  border-right: 1px solid #232323;
}
.n_lang_list > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.n_lang_list > li > a:hover {
  text-decoration: underline;
}
.n_lang_list > li:nth-last-child(1) {
  border-right: 0px;
}

/* Nav Lang Dropdown
--------------- */
.n_lang_caret select {
  color: white;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
  font-size: 14px;
  background-color: #5C6D7F;
  border: none;
}
.n_lang_caret:after {
  color: white;
}

@media (max-width: 767px ) {
  .n_lang_caret {
    width: 100%;
  }
  .n_lang_caret select {
    width: 100%;
    overflow: hidden;
    padding-right: 0.5em;
  }
  .n_lang_caret:after {
    display: none;
  }
}
/* RWD
------------ */
.nl_m_wrapper {
  display: none;
  z-index: 1031;
}

@media (max-width: 767px ) {
  .nl_d_wrapper {
    display: none;
  }

  .nl_m_wrapper {
    display: block;
  }
}
/* Top Nav
------------------ */
.top_nav {
  background-color: rgba(75, 109, 124, 0.5);
  position: fixed;
  top: 15px;
  right: 0;
  z-index: 1031;
}
.top_nav:after, .top_nav:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px ) {
  .top_nav {
    display: none;
  }
}

/* 
  Nav Mobile Button
----------------- */
.nav_m_btns {
  display: block;
  position: absolute;
  height: 50px;
  right: 50px;
  top: 0;
  z-index: 1031;
}
.nav_m_btns > li {
  display: block;
  float: right;
}
.nav_m_btns > li a {
  display: block;
  width: 40px;
  text-align: center;
  color: #4b6d7c;
}
.nav_m_btns > li a i {
  font-size: 20px;
  line-height: 50px;
}
@media (min-width: 768px ) {
  .nav_m_btns {
    display: none;
  }
}

/* Inner Number */
.btn_inner_absolute {
  position: relative;
}
.btn_inner_absolute span.inner {
  background-color: #4b6d7c;
  border: 0;
  color: white;
  position: absolute;
  padding: 2px 5px;
  top: 6%;
  right: 4%;
  font-size: 12px;
  line-height: 1em;
  border-radius: 100px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #fff;
  background-color: #4b6d7c;
  color: white;
  top: 12%;
  right: 0%;
}

.menu_s {
  padding: 8px 0;
}
.menu_s:after, .menu_s:before {
  content: "";
  display: block;
  clear: both;
}
.menu_s > li {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1em;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.menu_s > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.menu_s > li > a:hover {
  text-decoration: underline;
}
.menu_s > li:nth-last-child(1) {
  border-right: 0px;
}

/* nav Theme 
--------------------*/
/* Nav Li Style 
----------------*/
/* Desktop Menu
--------------- */
@media (min-width: 768px ) {
  .navbar-collapse {
    justify-content: flex-end;
  }

  .dsk_menu {
    border-bottom: 1px solid #e1e1e1;
  }

  ul.navbar-nav > .nav-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-right: 2px dotted #4b6d7c;
  }

  .navbar ul.navbar-nav > li > .nav-link {
    position: relative;
    padding: 20px;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  ul.navbar-nav > li:last-child a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 0;
    height: 15px;
    background-color: white;
  }
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .navbar > .container-fluid {
    flex-direction: column;
  }

  .navbar .navbar-nav {
    margin-top: 60px;
  }

  .navbar ul.navbar-nav > li > .nav-link {
    padding: 16px;
  }
}
/* Mobile Menu
--------------- */
@media (max-width: 767px ) {
  .nav_top_menu {
    display: none;
  }
}
/* Layout - Right Group
------------- */
.nav_right_group {
  float: right;
}
.nav_right_group > div {
  float: right;
}

/* Nav Add Class 
----------------*/
.navbar {
  border-radius: 0;
  border-width: 0 0 1px;
}
/* IE Fix
---------------- */
/* header Member login */
.navbar-header {
  position: relative;
  z-index: 1031;
}

.btn_search {
  margin: 0 0.8rem;
  color: white;
}
@media (max-width: 767px ) {
  .btn_search {
    margin: 1rem 0.4rem;
    color: #4b6d7c;
    font-size: 18px;
  }
}

/* ======================== 
Shop
======================== */
/* common
---------------- */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* --- fade --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-30%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* Flip */
@-webkit-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-moz-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-ms-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@-o-keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
@keyframes flipIn {
  from {
    opacity: 0;
    -webkit-transform: rotateX(8deg) translateY(-20px);
    -khtml-transform: rotateX(8deg) translateY(-20px);
    -moz-transform: rotateX(8deg) translateY(-20px);
    -ms-transform: rotateX(8deg) translateY(-20px);
    -o-transform: rotateX(8deg) translateY(-20px);
    transform: rotateX(8deg) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(0);
    -khtml-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
  }
}
.flipIn {
  animation-name: flipIn;
}

body {
  font-family: "Microsoft Jhenghei", "Kite One", sans-serif;
}

a {
  color: #232323;
}

a:hover,
a:focus {
  color: #232323;
}

select:focus,
input:focus,
textarea:focus {
  border: 1px solid rgba(75, 109, 124, 0.5);
}

::selection {
  color: #4b6d7c;
  background: #eee;
}

::-moz-selection {
  color: #4b6d7c;
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #999999;
}

/* Cover */
/* Editor (cover global)
-------------------------- */
.editor {
  font-size: 14px;
  /* table */
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  color: #232323;
  font-weight: 700;
}
.editor ul > li:before {
  background-color: #5C6D7F;
}
.editor table {
  min-width: 500px;
  /* th, td */
}
.editor table th, .editor table td {
  padding: 4px 8px;
}
.editor table {
  border-color: #e1e1e1;
}
.editor table th, .editor table td {
  border-color: #e1e1e1;
}
.editor table th {
  background-color: rgba(75, 109, 124, 0.1);
  color: #232323;
}
.editor a, .editor a:hover {
  color: #5C6D7F;
}

/* Independent Comp */
/* Action Bar
============ */
.prd_actionbar {
  /* RWD */
}
@media (max-width: 575px ) {
  .prd_actionbar.xxs-responsive {
    /* breadcrumb */
  }
  .prd_actionbar.xxs-responsive .caret_select, .prd_actionbar.xxs-responsive select {
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .caret_select {
    margin-bottom: 2px;
  }
  .prd_actionbar.xxs-responsive .breadcrumb_wrapper {
    float: left;
    width: 100%;
  }
  .prd_actionbar.xxs-responsive .breadcrumb {
    padding-bottom: 5px;
  }
}

/* Wrapper
-------------- */
.tt_wr {
  margin-top: 16px;
  margin-bottom: 16px;
}
.tt_wr:after, .tt_wr:before {
  content: "";
  display: block;
  clear: both;
}

/* Common Default */
.crsl_basic:after, .crsl_basic:before,
.grid_basic:after,
.grid_basic:before,
.list_basic:after,
.list_basic:before {
  content: "";
  display: block;
  clear: both;
}
.crsl_basic .item,
.grid_basic .item,
.list_basic .item {
  display: block;
  position: relative;
  overflow: hidden;
}
.crsl_basic .inner, .crsl_basic .img_wrapper,
.grid_basic .inner,
.grid_basic .img_wrapper,
.list_basic .inner,
.list_basic .img_wrapper {
  display: block;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
.crsl_basic .img,
.grid_basic .img,
.list_basic .img {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.crsl_basic img,
.grid_basic img,
.list_basic img {
  width: 100%;
}
.crsl_basic .content_wrapper,
.grid_basic .content_wrapper,
.list_basic .content_wrapper {
  position: relative;
}
.crsl_basic .content,
.grid_basic .content,
.list_basic .content {
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.crsl_basic .title,
.grid_basic .title,
.list_basic .title {
  margin: 0;
}
.modal-body h4 {
  color: #4b6d7c;
  margin-bottom: 10px;
}
.modal-body .warning, .modal-body .note {
  padding: 4px 0;
  text-align: center;
  font-size: 12px;
  margin: 0;
}
.modal-body .warning {
  color: #d9534f;
}
.modal-body .warning a {
  text-decoration: underline;
}
.modal-body .warning a:hover {
  text-decoration: none;
}
.modal-body .note {
  margin: 0;
}
.modal-body a {
  text-decoration: underline;
}
.modal-body a:hover {
  text-decoration: none;
}

.section_main {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.section_main:after, .section_main:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1230px) {
  .section_main {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Prd 商品
---------------- */
/* Comps */
/* Prd Custom Class
======================== */
.price {
  color: #f56954;
  font-weight: 700;
}
.crsl_prd .price,
.prdi_content .price,
.item_price .price {
  font-size: 150%;
}

.price_del {
  text-decoration: line-through;
  color: rgba(35, 35, 35, 0.3);
}

/* Title
------------------------ */
.prdl_title {
  display: inline-block;
  padding: 7px 14px;
  font-size: 140%;
  background-color: #f56954;
  color: white;
}
.prdl_title.bg_green {
  background-color: #5cb85c;
}
.prdl_title.bg_brown {
  background-color: #4b6d7c;
}

/* Wrapper
------------------------ */
.shopping_wrapper {
  background-color: transparent;
}
.shopping_wrapper:after, .shopping_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.shopping_wrapper .like_btn_wrapper {
  padding: 0px;
}
@media (max-width: 767px) {
  .shopping_wrapper {
    position: relative;
    opacity: 1;
  }
}

/* Group
------------------------ */
.btn_shopping_group {
  display: block;
  width: 100%;
  padding-bottom: 15px;
  color: white;
}
.btn_shopping_group:after, .btn_shopping_group:before {
  content: "";
  display: block;
  clear: both;
}
.btn_shopping_group li {
  display: block;
  float: left;
  margin: 0;
  width: 50%;
  padding: 2px;
}
.btn_shopping_group .btn_shopping {
  display: block;
  width: 100%;
  padding: 10px 8px;
}

/* Buttons
------------------------ */
.btn_shopping {
  text-align: center;
  cursor: pointer;
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 35px;
  background-color: #4b6d7c;
  color: #fff;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  -khtml-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding: 4px 2px;
  border-radius: 2px;
}
.btn_shopping:hover {
  color: #fff;
  background-color: #415f6c;
}
.btn_shopping.move_left:hover {
  -webkit-transform: translate(-5px, 0);
  -khtml-transform: translate(-5px, 0);
  -moz-transform: translate(-5px, 0);
  -ms-transform: translate(-5px, 0);
  -o-transform: translate(-5px, 0);
  transform: translate(-5px, 0);
}
.btn_shopping.move_right:hover {
  -webkit-transform: translate(5px, 0);
  -khtml-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
.btn_shopping.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_shopping.outline {
  background-color: transparent;
  border: 1px solid #4b6d7c;
  color: #4b6d7c;
}
.btn_shopping.outline:hover {
  background-color: rgba(75, 109, 124, 0.1);
}
.btn_shopping.cl2 {
  background-color: #C79529;
}
.btn_shopping.cl2:hover {
  background-color: #b28525;
}
.btn_shopping.cl2 {
  background-color: #C79529;
}
.grid_prd .btn_shopping, .grid_prd .btn_shopping .btn_shopping, .prdi_content .btn_shopping, .prdi_content .btn_shopping .btn_shopping {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 991px ) {
  .grid_prd .btn_shopping, .crsl_prd .btn_shopping {
    padding: 0px 4px;
    font-size: 80%;
    line-height: 26px;
  }
  .grid_prd .btn_shopping span, .crsl_prd .btn_shopping span {
    display: none;
  }
}

/* like */
.btn_like {
  display: inline-block;
  padding: 8px;
  color: #f56954;
}
.btn_like i {
  font-size: 120%;
  margin-left: 8px;
}
.btn_like span {
  color: #666666;
}

.btn_like_lg i {
  font-size: 140%;
}
.btn_like_lg span {
  padding-right: 8px;
}

/* shopping */
/* Sold out
------------ */
.soldout_wrapper {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  text-align: center;
  top: calc(50% - 36px / 2);
}
.soldout_wrapper p {
  line-height: 36px;
}

.prd_countdown {
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-weight: 500;
}
.prd_countdown span {
  display: inline-block;
  background-color: rgba(245, 105, 84, 0.8);
  font-size: 14px;
  line-height: 1em;
  padding: 4px;
  color: white;
  margin: 1px;
}

/* in item */
.img_wrapper .prd_countdown {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 100%;
  text-align: right;
}

/* Prd List */
/* Buy Together
============== */
.buytogether_banner {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.buytogether_banner .img {
  width: 100%;
  padding: 0;
  padding-top: 18.2926829268%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .buytogether_banner {
    display: none;
  }
}

/* Actionbar
----------------- */
.buytogether_actionbar {
  position: relative;
}
.buytogether_actionbar .dsc {
  padding: 0 8px;
  float: left;
}
.buytogether_actionbar .btn_shopping {
  float: right;
}

/* item btn group
----------------- */
.buytogether_btn_group {
  margin: 8px 0;
  /* input */
  /* Select */
}
.buytogether_btn_group:after, .buytogether_btn_group:before {
  content: "";
  display: block;
  clear: both;
}
.buytogether_btn_group .input-number, .buytogether_btn_group .btn_shopping {
  float: left;
}
.buytogether_btn_group .btn_shopping {
  width: 58px;
  text-align: center;
}
.buytogether_btn_group .input-number {
  width: calc(100% - 58px - 8px);
  margin-right: 8px;
}
.buytogether_btn_group .input-number > input, .buytogether_btn_group .input-number .decrement, .buytogether_btn_group .input-number .increment {
  height: 26px;
  line-height: 22px;
}
.buytogether_btn_group .caret_select, .buytogether_btn_group .caret_select select {
  width: 100%;
}
.buytogether_btn_group .caret_select {
  margin-bottom: 8px;
}
@media (max-width: 767px ) {
  .buytogether_btn_group .input-number {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 8px;
  }
}

/* Prd In */
/* Cart 購物車
---------------- */
/* 2018.10.09 */
.cart_subtotal {
  text-align: right;
}
@media (max-width: 767px ) {
  .cart_subtotal {
    text-align: left;
  }
}
.cart_subtotal.price_del {
  font-size: 85%;
  font-family: "Microsoft Jhenghei", "Kite One", sans-serif !important;
}

.cart_total {
  white-space: nowrap;
  text-align: right;
  position: relative;
}
.cart_total small {
  position: absolute;
  right: 140px;
  font-weight: 400;
}
.cart_total .number {
  color: #f56954;
}

/* Note Block
--------------- */
.note_block {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0 0 0 1px;
  font-size: 14px;
}
.note_block p,
.note_block .editor p {
  font-size: inherit;
  margin-top: 0;
}
.note_block .editor {
  padding: 0;
}
@media (max-width: 991px ) {
  .note_block.col-sm-12 {
    border-width: 1px 0 0 0;
    padding-top: 8px !important;
    margin-top: 8px;
  }
}
@media (max-width: 767px ) {
  .note_block.col-xs-12 {
    border-width: 1px 0 0 0;
    padding-top: 8px !important;
    margin-top: 8px;
  }
}

/* Cart Item note */
.cart_item_note {
  font-size: 80%;
}

/* Footer
----------- */
.cart_footer hr {
  margin: 8px 0;
}

/* Cart List
--------------- */
/* receipt note
------------- */
.cart_receipt_note {
  padding: 8px;
}
.cart_receipt_note img {
  max-width: 200px;
}

/* order_info
------------ */
.orderer_info .unit_input {
  display: inline-block;
  width: calc(100% - 105px);
  float: left;
}
.orderer_info .input-group {
  display: block;
}
.orderer_info .input-group:after, .orderer_info .input-group:before {
  content: "";
  display: block;
  clear: both;
}
.orderer_info .input-group-btn {
  float: left;
}
.orderer_info .input-group-btn .btn_main {
  border-radius: 0;
  padding: 9px;
  margin: 2px 0;
}

/* button
------------ */
.btn_fb, .btn_line {
  border-radius: 4px;
  padding: 12px 15px;
  margin: 4px 8px;
}

.order_query {
  margin: 30px auto;
  box-shadow: 1px 1px 10px #ddd;
}
.order_query .blocky_body {
  background-color: #fff;
  padding: 20px 60px;
}
.order_query .blocky_body .input_row {
  margin: 20px -2px !important;
}
.order_query .blocky_body .input_row input {
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}
.order_query .blocky_body .input_row input:focus {
  border-bottom: 1px solid #4b6d7c;
}
.order_query .blocky_footer {
  background-color: #fff;
  text-align: center;
}
.order_query .blocky_footer .btn_wrapper:after, .order_query .blocky_footer .btn_wrapper:before {
  content: "";
  display: block;
  clear: both;
}
.order_query .blocky_footer .btn_wrapper .btn_main {
  min-width: 200px;
}
.order_query .blocky_footer .btn_wrapper .btn_main a {
  color: white;
}
.order_query .blocky_footer .order_num {
  margin: 15px auto 10px;
  display: none;
}
.order_query .blocky_footer .order_num:after, .order_query .blocky_footer .order_num:before {
  content: "";
  display: block;
  clear: both;
}
.order_query .blocky_footer .order_num span {
  display: inline-block;
  background-color: #5C6D7F;
  padding: 8px;
  margin: 4px;
}

/* Log in 登入
---------------- */
/* Login Modal (inherit: modalBasic)
---------------- */
.modal_login {
  margin: 20px auto;
}
@media (max-width: 575px ) {
  .modal_login {
    max-width: 100%;
    margin: 10px auto;
    padding-left: 8px;
  }
}
@media (min-width: 992px ) {
  .modal_login {
    margin: 100px auto;
  }
}
.modal_login .btn_login {
  display: block;
  margin-bottom: 1em;
  width: 100%;
  border-radius: 0;
}
.modal_login .btn_login .btn_main {
  width: 100%;
  border-radius: 0;
}

/* email */
@media (min-width: 768px ) {
  .email_login {
    border-right: 1px solid #e1e1e1;
  }
}
@media (max-width: 767px ) {
  .email_login {
    padding-bottom: 15px !important;
    margin-bottom: 8px;
    border-bottom: 1px solid #e1e1e1;
  }
}

/* Social */
@media (min-width: 768px ) {
  .social_login {
    padding-top: 1em !important;
  }
}
.social_login .btn_main {
  border-radius: 0;
}

.login_block {
  border-top: 0;
  margin-top: 0;
  padding: 8px 0;
}
.login_block .btn_wrapper {
  padding-top: 20px !important;
  margin-bottom: 0;
}
.login_block .btn_wrapper .width-50 {
  width: calc(50% - 8px) !important;
}
.login_block .note {
  text-align: center;
}

/* Google & Facebook & Line */
.clr-google {
  color: #db4a3c;
}

.bg-clr-google {
  background-color: #db4a3c !important;
  color: #fff;
}
.bg-clr-google:hover, .bg-clr-google:focus {
  background-color: #d63728 !important;
}

.clr-fb {
  color: #db4a3c;
}

.bg-clr-fb {
  background-color: #264184 !important;
  color: #fff;
}
.bg-clr-fb:hover, .bg-clr-fb:focus {
  background-color: #203770 !important;
}

.clr-line {
  color: #00B900;
}

.bg-clr-line {
  background-color: #00B900 !important;
  color: #fff;
}
.bg-clr-line:hover, .bg-clr-line:focus {
  background-color: #00a000 !important;
}

/* Member 會員
----------------- */
/* 005.mmbr
------------------ */
/* Register
------------ */
/*bg*/
.register_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/register_bg.png");
}
@media (min-width: 1200px ) {
  .register_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.register_block {
  background-color: transparent;
}
.register_block .tt_wr {
  padding: 10px 0;
  margin: 0;
}
.register_block .block_left,
.register_block .block_right {
  padding: 20px 15px !important;
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
}
.register_block .block_bottom {
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.register_block .note {
  margin: 0;
  padding: 0.5em 0;
}
.register_block .email_item .unit_input {
  display: inline-block;
  width: calc(100% - 105px);
  float: left;
}
.register_block .email_item .input-group {
  display: block;
}
.register_block .email_item .input-group:after, .register_block .email_item .input-group:before {
  content: "";
  display: block;
  clear: both;
}
.register_block .email_item .input-group-btn {
  float: left;
}
.register_block .email_item .input-group-btn .btn_main {
  padding: 9px;
  margin: 2px 0;
}
.register_block .btn_wr {
  padding-top: 8px;
}
.register_block .btn_wr:after, .register_block .btn_wr:before {
  content: "";
  display: block;
  clear: both;
}
.register_block .btn_main {
  border-radius: 0;
}
.register_block .btn_regis {
  float: right;
}
@media (max-width: 767px ) {
  .register_block .btn_regis {
    float: none;
  }
}
@media (max-width: 767px ) {
  .register_block .block_left {
    border-width: 0 0 1px 0;
  }
  .register_block .block_right {
    padding-top: 20px !important;
  }
}

/* Member Home
------------ */
@media (min-width: 768px ) {
  .mmbr_home .mh_left {
    border-right: 1px solid #e1e1e1;
  }
}
.mmbr_home .mh_right {
  padding: 8px 16px;
}

/* Member Level */
.mh_level {
  height: 300px;
  color: white;
  text-align: center;
  position: relative;
}
.mh_level:before, .mh_level:after {
  content: "";
  position: absolute;
}
.mh_level:before {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  border-radius: 8px;
}
.mh_level:after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border: 4px dashed rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.mh_level.lv1:before {
  background-color: #6F4D9D;
}
.mh_level.lv2:before {
  background-color: #1D83D7;
}
.mh_level.lv3:before {
  background-color: #34CA91;
}
.mh_level.lv4:before {
  background-color: #F38D20;
}
.mh_level.lv5:before {
  background-color: #727272;
}
.mh_level .level {
  font-size: 40px;
}

/* Coupon
------------ */
/* commpn */
.coupon_denomination {
  text-align: center;
  padding: 8px;
  background-color: #f56954;
  color: white;
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-size: 160%;
}

/* table */
/* Footer 頁尾
----------------- */
/* Landing Page 暫時無用
----------------- */
/* ======================== 
Theme
======================== */
/* Common
----------------- */
/* Global Components
----------------- */
/* Home
----------------- */
/* section padding set
----------- */
.h_section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 8px;
}
.h_section.bg_gray {
  background-color: rgba(175, 173, 179, 0.1);
}
@media (max-width: 767px ) {
  .h_section {
    padding: 30px 0;
  }
}

.btn_wrapper .btn_more {
  font-size: 26px;
}
@media (max-width: 991px ) {
  .btn_wrapper .btn_more {
    font-size: 18px;
  }
}

.pages_navfix {
  margin-top: 150px;
}
@media (max-width: 767px ) {
  .pages_navfix {
    margin-top: 60px;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}
.slider .img {
  width: 100%;
  padding: 0;
  padding-top: 67.1875%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .slider .img {
    width: 100%;
    padding: 0;
    padding-top: 75%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
}
@media (max-width: 767px ) {
  .slider .img_desktop {
    display: none;
  }
}
@media (min-width: 768px ) {
  .slider .img_mobile {
    display: none;
  }
}
.slider .owl-nav {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
}
.slider .owl-nav [class*=owl-] {
  position: relative;
  color: #fff;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 0px;
  top: 0;
  background: rgba(92, 109, 127, 0.8);
  color: #fff;
  opacity: 1;
}
.slider .owl-nav [class*=owl-] i {
  line-height: 50px;
}
.slider .owl-nav [class*=owl-].disabled, .slider .owl-nav [class*=owl-].disabled:hover {
  opacity: 0.2;
}
.slider .owl-nav .owl-prev {
  left: 5px;
}
.slider .owl-nav .owl-prev i {
  margin-right: 5px;
}
.slider .owl-nav .owl-next {
  right: 5px;
}
.slider .owl-nav .owl-next i {
  margin-left: 5px;
}
.slider .owl-nav {
  opacity: 0;
}
.slider:hover .owl-nav {
  opacity: 1;
}
.slider .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.slider .owl-dots .owl-dot {
  display: inline-block;
}
.slider .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #E6E6E6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
  background-color: #E6E6E6;
}
.slider .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 767px ) {
  .slider {
    border-radius: 0;
  }
}

.service_wrapper {
  background-color: #E4D495;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px ) {
  .service_wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.service_wrapper .h_about {
  position: relative;
}
.service_wrapper .h_about .btn_wrapper {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.service_wrapper .content {
  position: relative;
  padding: 30px;
}
.service_wrapper .content .title_text {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 366.35px;
  height: 51px;
  background-position: -4.25px 0px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .service_wrapper .content .title_text {
    width: 301.7px;
    height: 42px;
    background-position: -3.5px 0px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .service_wrapper .content .title_text {
    width: 258.6px;
    height: 36px;
    background-position: -3px 0px;
    background-size: 720px auto;
  }
}
.service_wrapper .content .title_text.cn1 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 345.1px;
  height: 51.85px;
  background-position: -425px -4.25px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .service_wrapper .content .title_text.cn1 {
    width: 284.2px;
    height: 42.7px;
    background-position: -350px -3.5px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .service_wrapper .content .title_text.cn1 {
    width: 243.6px;
    height: 36.6px;
    background-position: -300px -3px;
    background-size: 720px auto;
  }
}
.service_wrapper .content .desc {
  padding: 30px 0;
}
.service_wrapper .content .btn_wrapper {
  position: absolute;
  bottom: 40px;
  right: 60px;
}
@media (max-width: 991px ) {
  .service_wrapper .content {
    padding: 15px;
  }
  .service_wrapper .content .desc {
    padding: 15px 0;
  }
  .service_wrapper .content .btn_wrapper {
    position: relative;
    right: unset;
    bottom: unset;
    text-align: center;
  }
}
.service_wrapper .service_items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0;
}
.service_wrapper .service_items .item {
  padding: 8px;
  text-align: center;
}
.service_wrapper .service_items .item .img_wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  width: 140px;
}

.case_wrapper {
  background-image: url("../images/h_case_bg.png");
  background-position: top left;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 0;
}
.case_wrapper .title_text {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 323px;
  height: 46.75px;
  background-position: -4.25px -68px;
  background-size: 1020px auto;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 1199px ) {
  .case_wrapper .title_text {
    width: 266px;
    height: 38.5px;
    background-position: -3.5px -56px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .case_wrapper .title_text {
    width: 228px;
    height: 33px;
    background-position: -3px -48px;
    background-size: 720px auto;
  }
}
.case_wrapper .title_text.cn2 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 310.25px;
  height: 44.2px;
  background-position: -425px -68px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .case_wrapper .title_text.cn2 {
    width: 255.5px;
    height: 36.4px;
    background-position: -350px -56px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .case_wrapper .title_text.cn2 {
    width: 219px;
    height: 31.2px;
    background-position: -300px -48px;
    background-size: 720px auto;
  }
}
.case_wrapper .grid_case .img {
  width: 100%;
  padding: 0;
  padding-top: 57.5221238938%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.case_wrapper .grid_case .date {
  display: inline-block;
  color: #C79529;
  padding: 7px 0 15px 0;
}
.case_wrapper .grid_case .title {
  color: #232323;
  font-weight: 700;
}
.case_wrapper .grid_case .desc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
  white-space: normal;
  text-overflow: initial;
  margin: 15px 0;
}
.case_wrapper .grid_case .more {
  display: block;
  color: #C79529;
  text-decoration: underline;
  margin-top: 0.5rem;
}
.case_wrapper .btn_wrapper {
  margin-top: 60px;
}
@media (max-width: 767px ) {
  .case_wrapper .title_text {
    margin-bottom: 20px;
  }
  .case_wrapper .btn_wrapper {
    margin-top: 12px;
  }
}

.article_wrapper {
  background-image: url("../images/h_tabs_bg.png");
  background-position: center right;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 0;
}

.home_tabs_wrap .home_tabs {
  justify-content: space-around;
}
.home_tabs_wrap .home_tabs .nav-item {
  width: calc(100%/3);
  border-bottom: 2px solid #D6D7D7;
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab1 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 276.25px;
  height: 46.75px;
  background-position: -4.25px -510px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab1 {
    width: 195px;
    height: 33px;
    background-position: -3px -360px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab1.cn5 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 215.05px;
  height: 46.75px;
  background-position: -425px -510px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab1.cn5 {
    width: 177.1px;
    height: 38.5px;
    background-position: -350px -420px;
    background-size: 840px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab2 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 283.9px;
  height: 46.75px;
  background-position: -4.25px -556.75px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab2 {
    width: 200.4px;
    height: 33px;
    background-position: -3px -393px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab2.cn6 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 220.15px;
  height: 46.75px;
  background-position: -425px -556.75px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab2.cn6 {
    width: 181.3px;
    height: 38.5px;
    background-position: -350px -458.5px;
    background-size: 840px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab3 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 265.2px;
  height: 46.75px;
  background-position: -4.25px -603.5px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab3 {
    width: 187.2px;
    height: 33px;
    background-position: -3px -426px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item .title_text.tab3.cn7 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 234.6px;
  height: 46.75px;
  background-position: -425px -603.5px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item .title_text.tab3.cn7 {
    width: 193.2px;
    height: 38.5px;
    background-position: -350px -497px;
    background-size: 840px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active {
  border-bottom: 2px solid #C79529;
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab1 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 337.45px;
  height: 46.75px;
  background-position: -4.25px -297.5px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab1 {
    width: 238.2px;
    height: 33px;
    background-position: -3px -210px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab1.cn5 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 269.45px;
  height: 46.75px;
  background-position: -425px -297.5px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab1.cn5 {
    width: 190.2px;
    height: 33px;
    background-position: -300px -210px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab2 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 346.8px;
  height: 46.75px;
  background-position: -4.25px -361.25px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab2 {
    width: 244.8px;
    height: 33px;
    background-position: -3px -255px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab2.cn6 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 276.25px;
  height: 46.75px;
  background-position: -425px -361.25px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab2.cn6 {
    width: 195px;
    height: 33px;
    background-position: -300px -255px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab3 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 323.85px;
  height: 46.75px;
  background-position: -4.25px -425px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab3 {
    width: 228.6px;
    height: 33px;
    background-position: -3px -300px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .home_tabs .nav-item.active .title_text.tab3.cn7 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 293.25px;
  height: 46.75px;
  background-position: -425px -425px;
  background-size: 1020px auto;
}
@media (max-width: 1199px ) {
  .home_tabs_wrap .home_tabs .nav-item.active .title_text.tab3.cn7 {
    width: 207px;
    height: 33px;
    background-position: -300px -300px;
    background-size: 720px auto;
  }
}
.home_tabs_wrap .tab-content {
  padding: 30px 15px;
}
.home_tabs_wrap .btn_wrapper {
  margin-top: 30px;
}
@media (max-width: 767px ) {
  .home_tabs_wrap .home_tabs {
    padding: 0 16px;
  }
  .home_tabs_wrap .home_tabs .nav-item {
    width: 100%;
  }
  .home_tabs_wrap .home_tabs .nav-item .title_text {
    margin: 0 auto;
  }
  .home_tabs_wrap .tab-content {
    padding: 20px 8px;
  }
  .home_tabs_wrap .btn_wrapper {
    margin-top: 10px;
  }
}

.grid_article .img {
  width: 100%;
  padding: 0;
  padding-top: 57.5221238938%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.grid_article .date {
  display: inline-block;
  color: #C79529;
  padding-top: 7px;
}
.grid_article .title {
  color: #232323;
  font-weight: 700;
  margin: 15px 0;
}
.grid_article .more {
  display: block;
  color: #C79529;
  text-decoration: underline;
  margin-top: 0.5rem;
}

/* Home Video
--------------------- */
.h_video {
  position: relative;
}
.h_video .crsl_basic {
  position: relative;
}
.h_video .item {
  position: relative;
}
.h_video .img {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 4px;
}
.h_video .content {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  color: white;
  background-image: url(../images/common/bg_shadow_btt.png);
  background-size: 1px 100%;
  background-repeat: repeat-x;
}
.h_video .title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 16px;
  color: white;
}
@media (min-width: 768px ) {
  .h_video {
    padding-left: 15px;
  }
}

.customer_wrapper {
  position: relative;
  background-image: url("../images/h_customer_bg.jpg");
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 0;
  /* Crsl 
  ----------- */
}
@media (max-width: 767px ) {
  .customer_wrapper {
    padding-top: 20px;
  }
}
.customer_wrapper .title_text {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 447px;
  height: 55px;
  background-position: -5px -150px;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .customer_wrapper .title_text {
    width: 312.9px;
    height: 38.5px;
    background-position: -3.5px -105px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .customer_wrapper .title_text {
    width: 268.2px;
    height: 33px;
    background-position: -3px -90px;
    background-size: 720px auto;
  }
}
.customer_wrapper .title_text.cn3 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 425px;
  height: 56px;
  background-position: -500px -150px;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .customer_wrapper .title_text.cn3 {
    width: 297.5px;
    height: 39.2px;
    background-position: -350px -105px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .customer_wrapper .title_text.cn3 {
    width: 255px;
    height: 33.6px;
    background-position: -300px -90px;
    background-size: 720px auto;
  }
}
.customer_wrapper .crsl_customer .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(to right, #f9ded7 5%, transparent);
  background: -webkit-gradient(to right, #f9ded7 5%, transparent);
  background: -webkit-linear-gradient(to right, #f9ded7 5%, transparent);
  background: -o-linear-gradient(to right, #f9ded7 5%, transparent);
  background: -ms-linear-gradient(to right, #f9ded7 5%, transparent);
  background: linear-gradient(to right, #f9ded7 5%, transparent);
}
@media (max-width: 767px ) {
  .customer_wrapper .crsl_customer .mask {
    background: linear-gradient(to bottom, #f9ded7 5%, transparent);
  }
}
.customer_wrapper .crsl_customer_wrapper {
  /*animate*/
  /*in*/
  /*out*/
  /*in*/
  /*out*/
  /*dot*/
}
.customer_wrapper .crsl_customer_wrapper .crsl_customer {
  position: relative;
}
.customer_wrapper .crsl_customer_wrapper .crsl_customer .owl-item.active .img_wrapper {
  animation-name: fadeInRight;
}
.customer_wrapper .crsl_customer_wrapper .crsl_customer .owl-item .img_wrapper {
  animation-name: fadeOut;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.customer_wrapper .crsl_customer_wrapper .crsl_customer .owl-item.active .item .content {
  animation-name: fadeIn;
  animation-delay: 0.5s;
}
.customer_wrapper .crsl_customer_wrapper .crsl_customer .owl-item .item .content {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeOut;
  transform-origin: center;
}
.customer_wrapper .crsl_customer_wrapper .owl-dots {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-align: unset;
  width: unset;
}
.customer_wrapper .crsl_customer_wrapper .owl-dots .owl-dot {
  display: block;
}
.customer_wrapper .crsl_customer_wrapper .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 4px;
  display: inline-block;
  background-color: #AFAFB0;
  border-color: transparent;
}
.customer_wrapper .crsl_customer_wrapper .owl-dots .owl-dot.active span, .customer_wrapper .crsl_customer_wrapper .owl-dots .owl-dot:hover span {
  background-color: #595757;
}
@media (max-width: 767px ) {
  .customer_wrapper .crsl_customer_wrapper .owl-dots {
    right: unset;
    top: unset;
    bottom: 10px;
    transform: translateY(0);
    width: 100%;
    text-align: center;
  }
  .customer_wrapper .crsl_customer_wrapper .owl-dots .owl-dot {
    display: inline-block;
  }
}

.crsl_h_article .title_text {
  margin-bottom: 30px;
}
@media (max-width: 991px ) {
  .crsl_h_article .title_text {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px ) {
  .crsl_h_article .title_text {
    margin: 15px auto;
  }
}
.crsl_h_article .btn_wrapper {
  margin-top: 60px;
  z-index: 3;
}
@media (max-width: 991px ) {
  .crsl_h_article .btn_wrapper {
    margin-top: 25px;
  }
}
@media (max-width: 767px ) {
  .crsl_h_article .btn_wrapper {
    margin: 15px;
  }
}
.crsl_h_article .item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.crsl_h_article .img_wrapper,
.crsl_h_article .content {
  width: 50%;
}
.crsl_h_article .block {
  max-width: 500px;
  margin: 0 auto;
}
.crsl_h_article .date {
  color: #C79529;
}
.crsl_h_article .title {
  height: auto;
}
.crsl_h_article .desc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 4.5em;
  white-space: normal;
  text-overflow: initial;
  margin: 15px 0 20px 0;
}
.crsl_h_article .more {
  display: block;
  color: #C79529;
  text-decoration: underline;
  margin-top: 0.5rem;
}
@media (max-width: 767px ) {
  .crsl_h_article .img_wrapper,
.crsl_h_article .content {
    width: 100%;
  }
  .crsl_h_article .block {
    text-align: center;
  }
}

.course_wrapper {
  position: relative;
  background-image: url("../images/h_course_bg.jpg");
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 0;
  /* Crsl
  ----------- */
}
@media (max-width: 767px ) {
  .course_wrapper {
    padding-top: 20px;
  }
}
.course_wrapper .title_text {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 408px;
  height: 55px;
  background-position: -5px -230px;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .course_wrapper .title_text {
    width: 285.6px;
    height: 38.5px;
    background-position: -3.5px -161px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .course_wrapper .title_text {
    width: 244.8px;
    height: 33px;
    background-position: -3px -138px;
    background-size: 720px auto;
  }
}
.course_wrapper .title_text.cn4 {
  content: "";
  background-image: url(../images/titleText.png);
  background-size: 1200px auto;
  background-repeat: no-repeat;
  width: 385px;
  height: 52px;
  background-position: -500px -230px;
  background-size: 1200px auto;
}
@media (max-width: 1199px ) {
  .course_wrapper .title_text.cn4 {
    width: 269.5px;
    height: 36.4px;
    background-position: -350px -161px;
    background-size: 840px auto;
  }
}
@media (max-width: 767px ) {
  .course_wrapper .title_text.cn4 {
    width: 231px;
    height: 31.2px;
    background-position: -300px -138px;
    background-size: 720px auto;
  }
}
.course_wrapper .crsl_course .item {
  flex-wrap: wrap-reverse;
}
.course_wrapper .crsl_course .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(to left, #ddeffb 5%, transparent);
  background: -webkit-gradient(to left, #ddeffb 5%, transparent);
  background: -webkit-linear-gradient(to left, #ddeffb 5%, transparent);
  background: -o-linear-gradient(to left, #ddeffb 5%, transparent);
  background: -ms-linear-gradient(to left, #ddeffb 5%, transparent);
  background: linear-gradient(to left, #ddeffb 5%, transparent);
}
@media (max-width: 767px ) {
  .course_wrapper .crsl_course .mask {
    background: linear-gradient(to bottom, #ddeffb 5%, transparent);
  }
}
.course_wrapper .crsl_course_wrapper {
  /*animate*/
  /*in*/
  /*out*/
  /*in*/
  /*out*/
  /*dot*/
}
.course_wrapper .crsl_course_wrapper .crsl_course {
  position: relative;
}
.course_wrapper .crsl_course_wrapper .crsl_course .owl-item.active .img_wrapper {
  animation-name: fadeInRight;
}
.course_wrapper .crsl_course_wrapper .crsl_course .owl-item .img_wrapper {
  animation-name: fadeOut;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.course_wrapper .crsl_course_wrapper .crsl_course .owl-item.active .item .content {
  animation-name: fadeIn;
  animation-delay: 0.5s;
}
.course_wrapper .crsl_course_wrapper .crsl_course .owl-item .item .content {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeOut;
  transform-origin: center;
}
.course_wrapper .crsl_course_wrapper .owl-dots {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-align: unset;
  width: unset;
}
.course_wrapper .crsl_course_wrapper .owl-dots .owl-dot {
  display: block;
}
.course_wrapper .crsl_course_wrapper .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 4px;
  display: inline-block;
  background-color: #AFAFB0;
  border-color: transparent;
}
.course_wrapper .crsl_course_wrapper .owl-dots .owl-dot.active span, .course_wrapper .crsl_course_wrapper .owl-dots .owl-dot:hover span {
  background-color: #595757;
}
@media (max-width: 767px ) {
  .course_wrapper .crsl_course_wrapper .owl-dots {
    right: unset;
    top: unset;
    bottom: 10px;
    transform: translateY(0);
    width: 100%;
    text-align: center;
  }
  .course_wrapper .crsl_course_wrapper .owl-dots .owl-dot {
    display: inline-block;
  }
}

/* Pages
----------------- */
.fix_btn_wrapper {
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 9;
}
.fix_btn_wrapper ul {
  list-style: none;
}
.fix_btn_wrapper ul li {
  height: 50px;
  padding: 8px;
  padding-right: 13px;
  line-height: 34px;
  margin-bottom: 6px;
  background-color: #4b6d7c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 6px 0 0 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: translateX(5px);
}
.fix_btn_wrapper ul li:hover, .fix_btn_wrapper ul li:focus {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: translateX(0px);
}
.fix_btn_wrapper ul li a {
  color: white;
}
.fix_btn_wrapper ul li:nth-child(1) {
  background-color: #00c300;
}
.fix_btn_wrapper ul li:nth-child(3) {
  background-color: #a9ad56;
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .fix_btn_wrapper ul li {
    margin-bottom: 8px;
  }
}

.fix_right_btn {
  position: fixed;
  right: 0;
  top: calc(20%);
  width: 60px;
  padding: 6px 4px;
  letter-spacing: 2px;
  background: #4b6d7c;
  border-radius: 50px 0 0 50px;
  box-shadow: 1px 1px 6px #9d9d9d;
  text-shadow: #363636 0.1em 0.1em 0.2em;
  text-align: right;
  cursor: pointer;
  z-index: 9;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.fix_right_btn a {
  color: #fff;
}
.fix_right_btn:hover {
  background-color: #ffad33;
  box-shadow: 3px 3px 6px #bdbdbd;
}
@media (max-width: 767px ) {
  .fix_right_btn {
    top: unset;
    right: 8px;
    bottom: 75px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50px;
  }
}

/*bg*/
.about_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/about_bg.jpg");
}
@media (min-width: 1200px ) {
  .about_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.right_bg {
  background-image: url("../images/about_right_bg.jpg");
  background-repeat: no-repeat;
}

/* main */
.about_wrapper {
  /* pagination */
}
.about_wrapper .breadcrumb_wrapper {
  padding: 60px 60px 30px;
}
.about_wrapper .grid_about {
  padding: 60px;
  padding-top: 0;
  /* content */
}
.about_wrapper .grid_about a {
  display: block;
  position: relative;
  overflow: hidden;
}
.about_wrapper .grid_about .item {
  padding: 16px 8px;
}
.about_wrapper .grid_about .img_wrapper {
  display: inline-block;
  width: 45%;
  vertical-align: middle;
}
.about_wrapper .grid_about .img {
  width: 100%;
  padding: 0;
  padding-top: 57.4468085106%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.about_wrapper .grid_about .content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  max-width: 700px;
}
.about_wrapper .grid_about .content .date {
  color: #C79529;
  font-size: 85%;
}
.about_wrapper .grid_about .content .title {
  font-weight: 700;
  margin: 0.5em 0;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.about_wrapper .grid_about .content .desc {
  margin: 0.5em 0;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 7.5em;
  white-space: normal;
  text-overflow: initial;
}
.about_wrapper .grid_about .content .more {
  color: #C79529;
  text-decoration: underline;
  margin-top: 1em;
}
@media (max-width: 1199px ) {
  .about_wrapper .grid_about {
    padding: 30px 15px;
  }
  .about_wrapper .grid_about .img_wrapper, .about_wrapper .grid_about .content {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px ) {
  .about_wrapper .grid_about {
    padding: 0;
  }
}
.about_wrapper .pagination {
  padding: 30px 0px 60px;
  margin: 0 60px;
  border-top: 1px solid #727171;
  border-radius: 0;
}
.about_wrapper .pagination li a {
  font-size: 26px;
  padding: 4px 8px;
  border-radius: 20px !important;
  min-width: 26px;
  color: #4b6d7c;
}
.about_wrapper .pagination li.active a {
  background-color: #232323;
  color: white;
}
@media (max-width: 1199px ) {
  .about_wrapper .pagination {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px ) {
  .about_wrapper .breadcrumb_wrapper {
    padding: 1em 8px;
  }
  .about_wrapper .pagination {
    margin: 0 20px;
  }
}

.abouti_inner {
  padding: 0 60px 60px;
  max-width: 1000px;
}
.abouti_inner .about_info {
  padding: 8px;
}
.abouti_inner .about_info .date {
  color: #C79529;
  margin-top: 1rem;
}
.abouti_inner .about_info .title {
  margin: 1rem 0;
  font-weight: bold;
}
.abouti_inner .about_info .desc {
  color: #727171;
}
@media (max-width: 1199px ) {
  .abouti_inner {
    padding: 0 30px 30px;
  }
}
@media (max-width: 767px ) {
  .abouti_inner {
    padding: 0 8px;
  }
}

/*bg*/
.news_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/article_bg.jpg");
}
@media (min-width: 1200px ) {
  .news_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.bgr_abs {
  background-image: url("../images/article_right_bg.jpg");
  position: absolute;
  width: 640px;
  height: 1080px;
  z-index: -1;
  top: 0;
  right: 0;
}
@media (max-width: 1199px ) {
  .bgr_abs {
    width: calc(640px * 0.75);
    height: calc(1080px * 0.75);
  }
}

.news_wrapper {
  /*內頁樣式*/
}
.news_wrapper .right_bg {
  background-image: url("../images/article_right_bg.jpg");
  background-repeat: no-repeat;
}
.news_wrapper .breadcrumb_wrapper {
  padding: 60px 60px 30px;
}
@media (max-width: 767px ) {
  .news_wrapper .breadcrumb_wrapper {
    padding: 1em 8px;
  }
}
.news_wrapper .grid_news {
  padding: 60px;
  padding-top: 0;
  /* content */
}
@media (max-width: 1199px ) {
  .news_wrapper .grid_news {
    padding: 30px 15px;
  }
}
@media (max-width: 767px ) {
  .news_wrapper .grid_news {
    padding: 15px 0;
  }
}
.news_wrapper .grid_news a {
  display: block;
  position: relative;
  overflow: hidden;
}
.news_wrapper .grid_news .item {
  width: calc(100%/3);
  float: left;
}
@media (max-width: 1199px ) {
  .news_wrapper .grid_news .item {
    width: 50%;
  }
}
@media (max-width: 767px ) {
  .news_wrapper .grid_news .item {
    width: 100%;
    float: none;
  }
}
.news_wrapper .grid_news .item:hover .content {
  background-color: rgba(255, 255, 255, 0.3);
}
.news_wrapper .grid_news .img {
  width: 100%;
  padding: 0;
  padding-top: 56.25%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.news_wrapper .grid_news .content {
  padding: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.news_wrapper .grid_news .content .date {
  color: #C79529;
  font-size: 85%;
}
.news_wrapper .grid_news .content .title {
  font-weight: 700;
  margin: 0.5em 0;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.news_wrapper .grid_news .content .more {
  color: #C79529;
  text-decoration: underline;
}
.news_wrapper .newsi {
  /*button*/
}
.news_wrapper .newsi .btn_wrapper {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0 0;
}
.news_wrapper .newsi .btn_wrapper .btn_main {
  display: block;
  padding: 6px 20px;
  font-size: 18px;
}
.news_wrapper .newsi .btn_wrapper .btn_main i {
  font-size: 200%;
  vertical-align: middle;
}
.news_wrapper .newsi .btn_wrapper .btn_main:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.news_wrapper .newsi .btn_wrapper .btn_main.last {
  opacity: 0.5;
}
.news_wrapper .newsi .btn_wrapper .btn_main.last:hover {
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media (max-width: 767px ) {
  .news_wrapper .newsi .btn_wrapper {
    margin: 1rem 0 2rem 0;
  }
  .news_wrapper .newsi .btn_wrapper .btn_main {
    font-size: 16px;
  }
  .news_wrapper .newsi .btn_wrapper .btn_main i {
    font-size: 160%;
  }
}

/* Video List
-------------- */
.video_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/video_bg.jpg");
}
@media (min-width: 1200px ) {
  .video_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.video_wrapper .right_bg {
  background-image: url("../images/video_right_bg.jpg");
  background-repeat: no-repeat;
}
.video_wrapper .breadcrumb_wrapper {
  padding: 30px 8px 15px;
}

.grid_videol {
  margin-right: -15px;
}
.grid_videol .item {
  padding-right: 15px;
}
@media (max-width: 767px ) {
  .grid_videol {
    margin-right: 0px;
  }
  .grid_videol .item {
    padding-right: 0px;
  }
}
.grid_videol .item {
  float: left;
  width: 50%;
}
@media (max-width: 575px ) {
  .grid_videol .item {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .grid_videol .item {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px ) {
  .grid_videol .item:nth-child(2n+1) {
    clear: left;
  }
}
.grid_videol .img {
  width: 100%;
  padding: 0;
  padding-top: 55.625%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.grid_videol .content {
  padding: 0px 0;
}
.grid_videol .title {
  white-space: normal;
  height: auto;
  font-weight: 700;
}
.grid_videol .date {
  color: #C79529;
}
.grid_videol .more {
  color: #C79529;
  text-decoration: underline;
}

.ic_youtube:before {
  position: absolute;
  content: "";
  font-family: FontAwesome;
  left: calc(0px);
  top: calc(50% - 30px);
  color: #f00;
  font-size: 60px;
  height: 1em;
  line-height: 1em;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.ic_youtube:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.ic_youtube:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Contact Bg
-------------- */
.contact_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/pages_bg.png");
}
@media (min-width: 1200px ) {
  .contact_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

/* Contact Title
----------------- */
.c_title {
  color: #C79529;
  font-weight: bold;
}

/* Contact Info
----------- */
.c_info_wp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.c_info_wp .c_info {
  padding: 8px 16px;
  list-style: disc;
  padding-left: 30px;
}
.c_info_wp .c_info li {
  position: relative;
  padding: 4px 8px;
}
.c_info_wp .qrcode_wp li {
  display: inline-block;
}
@media (max-width: 767px ) {
  .c_info_wp {
    flex-direction: column;
  }
  .c_info_wp .qrcode_wp {
    text-align: center;
  }
}

/* Contact sites
----------- */
.c_serv_site:after, .c_serv_site:before {
  content: "";
  display: block;
  clear: both;
}
.c_serv_site .item {
  display: inline-block;
  float: left;
  width: 48%;
  margin: 1%;
  padding: 16px;
  border: 1px solid #5C6D7F;
  cursor: pointer;
}
.c_serv_site .item .title {
  color: #5C6D7F;
  font-weight: 700;
}
.c_serv_site .item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
@media (max-width: 767px ) {
  .c_serv_site .item {
    width: 100%;
    margin: 2% 0;
  }
}

/* Contact Form
----------------- */
.c_form_wrapper {
  color: #5C6D7F;
}
.c_form_wrapper .form_column .item {
  padding: 4px;
}
.c_form_wrapper .form_column .title {
  width: 100%;
  font-size: 18px;
  padding: 4px 0;
}
.c_form_wrapper .form_column .title label {
  font-weight: 500;
  margin-bottom: 0;
}
.c_form_wrapper .form_column .content {
  width: 100%;
}
.c_form_wrapper .form_column .content input {
  height: calc(2em + 12px);
}
.c_form_wrapper .form_column .content input, .c_form_wrapper .form_column .content textarea {
  background: rgba(255, 255, 255, 0.8);
  border-color: #5C6D7F;
}
.c_form_wrapper .btn_wrapper {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
}
.c_form_wrapper .btn_wrapper .btn_main {
  background-color: #5C6D7F;
  border-radius: 0;
  font-size: 22px;
  font-weight: bold;
}
.c_form_wrapper .btn_wrapper .btn_main:hover, .c_form_wrapper .btn_wrapper .btn_main:focus {
  background-color: #516070;
}

/* Contact Map
-------------- */
.c_map {
  height: 77vh;
  width: 100%;
  padding: 0;
}
.c_map .add2, .c_map .add3, .c_map .add4, .c_map .add5 {
  display: none;
}
@media (max-width: 767px ) {
  .c_map {
    display: none;
    margin-top: 30px;
  }
}

/* Contact
-------------- */
.contact_section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.contact_section:after, .contact_section:before {
  content: "";
  display: block;
  clear: both;
}

.c_content {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.c_content:after, .c_content:before {
  content: "";
  display: block;
  clear: both;
}
.c_content hr {
  border-color: #838383;
}

.c_left,
.c_right {
  padding-left: 15px;
  padding-right: 15px;
}
.c_left:after, .c_left:before,
.c_right:after,
.c_right:before {
  content: "";
  display: block;
  clear: both;
}

.c_left {
  float: left;
  width: 100%;
  padding-bottom: 40px;
  padding-top: 25px;
}
@media (min-width: 992px ) {
  .c_left {
    width: 58.3333333333%;
  }
}
@media (min-width: 992px ) {
  .c_left {
    margin-left: 8.3333333333%;
  }
}
@media (max-width: 1199px ) {
  .c_left {
    padding-top: 30px;
  }
}

.c_right {
  float: left;
  width: 100%;
}
@media (min-width: 992px ) {
  .c_right {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px ) {
  .c_right {
    padding-left: 30px;
    padding-right: 0;
  }
}
@media (max-width: 767px ) {
  .c_right {
    padding-left: 0;
    padding-right: 0;
  }
}

/* QR Code
----------------- */
/* QR code & Info
----------- */
/* Footer Archieve Styles
---------------------- */
footer.container-fluid {
  background-color: #4b6d7c;
  padding: 0px;
}
footer.container-fluid > .f_container {
  max-width: 1400px;
  padding: 15px 10px;
  margin: 0 auto;
}

/* Footer Menu
------------------ */
.f_menu_toggle {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  background-color: #C79529;
  margin-bottom: 15px;
}
.f_menu_toggle, .f_menu_toggle:hover, .f_menu_toggle:focus {
  color: #f4efdb;
}
.f_menu_toggle:before {
  content: "";
  display: block;
  font-size: 28px;
  font-family: FontAwesome;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.f_menu_toggle[aria-expanded=true]:before {
  -webkit-transform: rotate(180deg);
  -khtml-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.f_menu_wrapper {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  background-color: #4b6d7c;
}
@media (max-width: 991px ) {
  .f_menu_wrapper {
    margin-top: 30px;
  }
}

.f_menu {
  display: inline-block;
  padding: 40px 0 10px;
}
.f_menu > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 15px 15px;
  width: calc(100%/4 - 8px);
}
.f_menu > li > a {
  font-size: 20px;
  font-weight: 700;
  color: #C79529;
  margin-bottom: 0.5rem;
}
.f_menu a {
  display: block;
  padding: 4px 0;
  max-width: 140px;
  max-height: calc(3.5em + 8px);
  overflow: hidden;
  color: white;
}
.f_menu a:hover {
  text-decoration: underline;
}
.f_menu i.fa {
  font-size: 50px;
}
@media (max-width: 767px ) {
  .f_menu > li {
    padding: 0 8px 10px;
    width: calc(100%/2 - 8px);
  }
}

/* Footer LOGO
-------------- */
.f_logo_wrapper {
  padding: 10px 20px;
}
@media (max-width: 767px ) {
  .f_logo_wrapper {
    padding: 20px 0px 10px;
  }
}

.f_logo {
  content: "";
  background-image: url(../images/icons.png);
  width: 156px;
  height: 100px;
  background-position: 0 -120px;
  background-size: 1200px auto;
}
@media (max-width: 767px ) {
  .f_logo {
    width: 124.8px;
    height: 80px;
    background-position: 0 -96px;
    background-size: 960px auto;
  }
}
@media (max-width: 767px ) {
  .f_logo {
    margin: 0 auto;
  }
}

.f_logo_cn {
  content: "";
  background-image: url(../images/icons_cn.png);
  background-size: 800px auto;
  width: 177px;
  height: 90px;
  background-position: 0 0;
  background-size: 800px auto;
}
@media (max-width: 767px ) {
  .f_logo_cn {
    width: 123.9px;
    height: 63px;
    background-position: 0 0;
    background-size: 560px auto;
  }
}
@media (max-width: 767px ) {
  .f_logo_cn {
    margin: 0 auto;
  }
}

/* Footer INFO
-------------- */
.f_info_ul {
  padding: 10px 0 0;
}
.f_info_ul li {
  margin: 5px 20px 0 0;
  padding-left: 24px;
  width: 45%;
}
.f_info_ul span {
  color: #C79529;
  font-weight: bold;
}
@media (max-width: 991px ) {
  .f_info_ul {
    padding: 0;
  }
  .f_info_ul li {
    display: block;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }
}

/* Footer copyright
-------------- */
.f_copyright {
  background-color: transparent;
  border-top: 1px solid rgba(75, 109, 124, 0.4);
  padding: 10px 8px;
  text-align: right;
}
.f_copyright p, .f_copyright a {
  color: #AFAFB0;
}
@media (max-width: 991px ) {
  .f_copyright {
    padding-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 767px ) {
  .f_copyright {
    text-align: center;
  }
}

/* 微信諮詢 */
.ask_wechat {
  position: fixed;
  z-index: 1029;
  bottom: 8px;
  right: 8px;
}
@media (min-width: 1200px ) {
  .ask_wechat {
    bottom: 15px;
    right: 30px;
  }
}

.wechat_btn {
  display: block;
  font-size: 20px;
  background-color: #00ad19;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.wechat_btn i {
  color: white;
}
.wechat_btn, .wechat_btn:hover, .wechat_btn:focus {
  color: white;
}
.wechat_btn:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.wechat_btn span {
  color: white;
}
.wechat_btn .ic_line {
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/ic_social_line_white.svg);
}
@media (min-width: 768px ) {
  .wechat_btn {
    border-radius: 4px;
    padding: 15px;
  }
  .wechat_btn i {
    display: block;
    font-size: 44px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px ) {
  .wechat_btn {
    padding: 0;
    width: 60px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 28px;
  }
  .wechat_btn span {
    display: none;
  }
  .wechat_btn .ic_line {
    display: block;
    background-size: auto 50px;
  }
}

.wechat_popup {
  position: absolute;
  padding: 8px;
  border-radius: 2px;
  border: 1px solid #e1e1e1;
  width: 120px;
  background-color: white;
  bottom: calc(100% + 10px);
  display: none;
}
.wechat_popup:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(100% - 16px / 2);
  left: 12px;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: white;
  border-style: solid;
  border-color: #e1e1e1;
  border-width: 0 1px 1px 0;
}
.wechat_popup.active {
  display: block;
}

/* Footer social
------------------ */
/*.f_social .btn_social_line {*/
/*    display: inline-block;*/
/*    color: white;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    text-align: center;*/
/*}*/
/*.f_social .btn_social_line i.ic_line {*/
/*    background: url('../images/system/ic_line_circle.png');*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    font-size: 20px;*/
/*    line-height: 36px;*/
/*    width: 36px;*/
/*    height: 36px;*/
/* Footer Fix
------------------ */
.footer_fix {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-style: inset;
  border: 0;
  min-height: calc(100vh - 150px);
}

.searchResult_wrap {
  position: relative;
  padding: 60px 1rem;
  max-width: 1600px;
}
@media (max-width: 767px ) {
  .searchResult_wrap {
    padding: 30px 8px;
  }
}
.searchResult_wrap .header {
  padding: 30px 8px;
}
.searchResult_wrap .srch_item {
  position: relative;
  padding: 16px 8px;
  padding-bottom: 2rem;
}
.searchResult_wrap .srch_item:before {
  content: "";
  border-top: 2px solid;
  color: #5C6D7F;
  margin: auto;
  position: absolute;
  top: 0;
  left: 8px;
  transform: scale(1);
  width: 4rem;
}
.searchResult_wrap .srch_item .title {
  color: #4b6d7c;
}
.searchResult_wrap .srch_item .dsc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  white-space: normal;
  text-overflow: initial;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.searchResult_wrap .srch_highlight {
  color: #5C6D7F;
  font-weight: 700;
}

.search_wrap {
  z-index: 9999;
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  background-color: rgba(75, 109, 124, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.search_wrap .inner-form i {
  display: block;
  font-size: 40px;
  margin-bottom: 60px;
}
.search_wrap .search_style {
  width: 100%;
  margin: 1.5rem 0;
  border: 0;
  border-bottom: 2px solid white;
  border-radius: 0;
  background-color: transparent;
  color: white;
}

.btn_close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: white;
  font-size: 40px;
}

/* Prd
----------------- */
/* Prd
----------------- */
/* comps */
/* Prd List */
/* Prd List Sidebar
======================= */
/* prdl_sidebar
-------------------- */
.prdl_sidebar {
  margin-bottom: 8px;
  overflow: hidden;
}

/* sidebar-header
-------------------- */
.prdl_sidebar-header, .prdl-header {
  background-color: #5C6D7F;
  color: white;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.2);
  font-size: 110%;
  border-radius: 2px;
}
.prdl_sidebar-header .title, .prdl-header .title {
  font-size: inherit;
  line-height: inherit;
}

/* sidebar-body
-------------------- */
.prdl_sidebar-body {
  /* RWD */
}
@media (min-width: 768px ) {
  .prdl_sidebar-body .layer_1st {
    display: block;
  }
}

/*bg*/
.prd_bg {
  background-size: cover !important;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url("../images/shop_bg.jpg");
}
@media (min-width: 1200px ) {
  .prd_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}

.prd_wrapper .right_bg {
  background-image: url("../images/shop_right_bg.jpg");
  background-repeat: no-repeat;
}
.prd_wrapper .breadcrumb_wrapper {
  padding: 60px 60px 30px;
}
@media (max-width: 767px ) {
  .prd_wrapper .breadcrumb_wrapper {
    padding: 1em 8px;
  }
}

.prdl-section {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.prdl-section:after, .prdl-section:before {
  content: "";
  display: block;
  clear: both;
}

.prdl_sidebar-wrapper,
.prdl_content-wrapper {
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 767px ) {
  .prdl_sidebar-wrapper,
.prdl_content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.prdl_sidebar-wrapper {
  float: left;
}

.prdl-header .breadcrumb_wrapper {
  float: right;
  color: white;
}
.prdl-header .breadcrumb_wrapper a {
  color: inherit;
}

/* actionbar */
.prd_actionbar {
  background-color: #f9f9f9;
}

/* grid */
.grid_prd {
  margin-right: -15px;
}
.grid_prd .item {
  padding-right: 15px;
}
.grid_prd .item {
  float: left;
  width: 50%;
}
@media (max-width: 575px ) {
  .grid_prd .item {
    width: 100%;
  }
}
@media (min-width: 992px ) {
  .grid_prd .item {
    width: 50%;
  }
}
@media (min-width: 1200px ) {
  .grid_prd .item {
    width: 33.3333333333%;
  }
}
.grid_prd .item .title {
  font-weight: bold;
  margin: 0.5rem 0;
}
.grid_prd .item .item_price {
  margin: 0.5rem 0;
}

/* Prd In */
/* Prd In
================= */
.prdi_wrapper {
  /*button*/
}
.prdi_wrapper .right_bg {
  background-color: #FFE9CB;
}
.prdi_wrapper .breadcrumb_wrapper {
  padding: 20px 8px 15px;
}
.prdi_wrapper .prdi_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.prdi_wrapper .prdi_inner .title {
  color: #C79529;
  font-weight: 700;
  padding: 0 8px;
}
.prdi_wrapper .btn_wrapper {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.prdi_wrapper .btn_wrapper .btn_main {
  display: block;
  padding: 6px 20px;
  font-size: 18px;
}
.prdi_wrapper .btn_wrapper .btn_main i {
  font-size: 200%;
  vertical-align: middle;
}
.prdi_wrapper .btn_wrapper .btn_main:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.prdi_wrapper .btn_wrapper .btn_main.last {
  opacity: 0.5;
}
.prdi_wrapper .btn_wrapper .btn_main.last:hover {
  -webkit-transform: translate(0, 0);
  -khtml-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
@media (max-width: 767px ) {
  .prdi_wrapper .btn_wrapper {
    margin: 1rem 0 2rem 0;
  }
  .prdi_wrapper .btn_wrapper .btn_main {
    font-size: 16px;
  }
  .prdi_wrapper .btn_wrapper .btn_main i {
    font-size: 160%;
  }
}
.prdi_wrapper .prdi_info {
  margin-top: 200px;
  background-color: #ffd398;
  padding: 20px;
}
.prdi_wrapper .prdi_info .date {
  color: #C79529;
}
.prdi_wrapper .prdi_info .desc {
  padding: 10px 0;
}
.prdi_wrapper .prdi_info .prdi_spec .title {
  color: #232323;
}
.prdi_wrapper .prdi_info .prdi_spec .price {
  font-size: 150%;
}
.prdi_wrapper .prdi_info .btn_shopping_group {
  padding: 15px 0;
}
.prdi_wrapper .prdi_info .btn_shopping_group .btn_shopping {
  padding: 16px 8px;
}
@media (max-width: 767px ) {
  .prdi_wrapper .prdi_info {
    margin: 30px 0;
  }
}

/* 置底固定購買按鈕 */
.fix_buy_btn {
  display: none;
  position: fixed;
  z-index: 10;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #C79529;
  text-align: center;
}
@media (max-width: 767px ) {
  .fix_buy_btn {
    display: block;
  }
}
.fix_buy_btn a {
  display: block;
  color: white;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 1rem;
}

/* Prdi Img
--------------- */
.prdi_img {
  margin-bottom: 10px;
}
.prdi_img .divide_note {
  margin-top: 10px;
}

/* Crsl */
.crsl_prdi .img {
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.crsl_prdi.big-images .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.crsl_prdi.big-images .owl-dots .owl-dot {
  display: inline-block;
}
.crsl_prdi.big-images .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #4b6d7c;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.crsl_prdi.big-images .owl-dots .owl-dot.active span, .crsl_prdi.big-images .owl-dots .owl-dot:hover span {
  background-color: #4b6d7c;
}
.crsl_prdi.big-images .owl-dots {
  bottom: 0;
}

.crsl_prdi.thumbs .item {
  position: relative;
  border: 1px solid transparent;
}
.crsl_prdi.thumbs .owl-item:hover .item:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.crsl_prdi.thumbs .selected .item {
  border-color: #ffb807;
}

/* Prd Content
--------------- */
.prdi_content {
  margin-bottom: 10px;
}

/* header */
.prdi_content-header {
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 2px solid #4b6d7c;
  /* breadcrumb */
}
.prdi_content-header:after, .prdi_content-header:before {
  content: "";
  display: block;
  clear: both;
}
.prdi_content-header .title {
  float: left;
  font-weight: 700;
  color: #4b6d7c;
}
.prdi_content-header .prd_countdown {
  margin-bottom: 10px;
}
.prdi_content-header .prd_countdown span {
  font-size: 120%;
}
.prdi_content-header .breadcrumb {
  float: left;
  margin-top: 6px;
  width: 100%;
}

/* body */
.prdi_content-body .btn_shopping {
  font-size: 140%;
  line-height: 1.5em;
  font-weight: 400;
}
.prdi_content-body .btn_like i {
  font-size: 140%;
}
.prdi_content-body .btn_like span {
  padding-right: 8px;
}

/* Dsc */
.prd_dsc {
  margin: 8px 0;
}
.prd_dsc p {
  font-size: 14px;
}

/* Feature */
.prd_feature {
  margin: 8px 0;
}
.prd_feature > li {
  line-height: 1.8em;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}
.prd_feature > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #5C6D7F;
  left: 4px;
  top: 10px;
  border-radius: 50%;
}

/* on-sale */
.prdi_onsale:after, .prdi_onsale:before {
  content: "";
  display: block;
  clear: both;
}
.prdi_onsale .activity_link {
  float: right;
}

.onsale_dsc {
  display: block;
}
.onsale_dsc a {
  -webkit-transition: all 0s ease-in-out;
  -khtml-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  text-decoration: underline;
}
.onsale_dsc a, .onsale_dsc a:hover, .onsale_dsc a:focus {
  color: inherit;
}
.onsale_dsc a:hover, .onsale_dsc a:focus {
  color: #232323;
}

.activity_link {
  display: block;
  background-color: #f56954;
  color: white;
  padding: 4px 8px;
  margin-left: 2px;
}
.activity_link:hover, .activity_link:focus {
  color: white;
  background-color: #d6270d;
}

/* Prd Info Tab
------------------ */
.prdinfo_tab-nav {
  background-size: cover !important;
  background-image: url(../images/common/bg_001.jpg);
  display: table;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  table-layout: fixed;
  /* active & hover */
  /* Hide <br> */
}
@media (min-width: 1200px ) {
  .prdinfo_tab-nav {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 1;
  }
}
.prdinfo_tab-nav li {
  display: table-cell;
  padding: 6px 0;
  vertical-align: middle;
}
.prdinfo_tab-nav li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.prdinfo_tab-nav a {
  display: block;
  line-height: 18px;
}
.prdinfo_tab-nav li.active, .prdinfo_tab-nav li:hover {
  background-color: rgba(75, 109, 124, 0.1);
}
.prdinfo_tab-nav br {
  display: none;
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .prdinfo_tab-nav br {
    display: inline;
  }
}
@media (max-width: 400px) {
  .prdinfo_tab-nav br {
    display: inline;
  }
}

/* Prd Info Tab Content
------------------ */
.prdinfo_tab-content .editor {
  padding: 8px 0;
}

/*# sourceMappingURL=main.css.map */
