@charset "UTF-8";
/* ======================== 
Global
======================== */
/* 
Global Variables
-------------------------- */
/* Microsoft Jhenghei 400, 700 */
/* 
Theme Variables
-------------------------- */
/* Import fonts
----------------------------- */
/* font-family: 'cwTeXYen', sans-serif;  //中-圓體 (非正式)
----------------------------------------------- */
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
/* font-family: 'cwTeXKai', sans-serif;  //中-楷體 (非正式)
----------------------------------------------- */
@import url(https://fonts.googleapis.com/earlyaccess/cwtexkai.css);
/* font-family: 'Noto Serif TC', sans-serif; //中-思源黑體
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;700&display=swap");
/* font-family: 'Kite One', sans-serif;
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Kite+One");
/* 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
----------------------------------------------- */
/*  
Global SCSS
1. Common Use Components
2. Common Use Classes
-------------------------- */
body {
  font-family: "Microsoft Jhenghei", sans-serif;
}

a {
  color: #4d4d4d;
}

a:hover,
a:focus {
  color: #4d4d4d;
}

select:focus,
input:focus,
textarea:focus {
  border: 1px solid rgba(176, 139, 172, 0.5);
}

/* Highlight
------------------------ */
::selection {
  color: #4d4d4d;
  background: rgba(176, 139, 172, 0.5);
}

::-moz-selection {
  color: #4d4d4d;
  background: rgba(176, 139, 172, 0.5);
}

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

/*!
 * 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

------------------------------------------------------------- */
@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);
  }
}
/* ======================== 
CSS Resourse
======================== */
/* ======================== 
Setting
======================== */
body {
  -webkit-font-smoothing: antialiased;
  color: #4d4d4d;
  font-family: "Microsoft Jhenghei", 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=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: #B08BAC;
  background: rgba(0, 0, 0, 0.05);
}

::-moz-selection {
  color: #B08BAC;
  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: 15px;
  line-height: 1.5em;
}

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

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

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

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

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

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

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

a {
  font-size: 15px;
}

li {
  font-size: 15px;
}

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

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

/* 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: 1.05em;
  color: #806D78;
}
.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;
}
/* 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;
}

/* 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 #B08BAC;
  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: #B08BAC;
}
.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(128, 109, 120, 0.8);
  background-color: rgba(128, 109, 120, 0.8);
}
.tag.tc1 {
  border-color: #df8c89;
  background-color: #df8c89;
}
.tag.tc2 {
  border-color: #a1d6dc;
  background-color: #a1d6dc;
}
.tag.tc3 {
  border-color: #d8b7d6;
  background-color: #d8b7d6;
}
.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(201, 48, 44, 0.6);
  background-color: rgba(201, 48, 44, 0.6);
}
.tag.lgray {
  border-color: #b5b5b6;
  background-color: #b5b5b6;
}
.tag[disabled=true] {
  border-color: rgba(26, 26, 26, 0.6);
  background-color: rgba(26, 26, 26, 0.6);
}
.tag.disabled {
  border-color: rgba(26, 26, 26, 0.6);
  background-color: rgba(26, 26, 26, 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: #B08BAC;
  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 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: #4d4d4d;
}
.pagination li a:hover, .pagination li a:focus {
  background-color: rgba(176, 139, 172, 0.05);
  color: #4d4d4d;
}
.pagination li.active a, .pagination li.active a:hover, .pagination li.active a:focus, .pagination li.active a.active {
  background-color: #b08bac;
  color: #fff;
}

a {
  color: #B08BAC;
}

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

a.underline {
  color: #B08BAC;
  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: #B08BAC;
  border-color: #a67ca1;
  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: #a67ca1;
  border-color: #9b6d96;
}

/* 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;
  padding-bottom: 20px;
}
.btn_arrow_btm:before {
  content: "";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #B08BAC;
  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 #B08BAC 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 #c5a9c2 transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed, .btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #B08BAC;
  border-bottom: 1px dotted #B08BAC;
}
.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: #B08BAC;
}

.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: #B08BAC;
  background-color: transparent;
  color: #B08BAC;
}
.btn_ghost:before {
  color: #B08BAC;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #B08BAC;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #4d4d4d;
  background-color: transparent;
  color: #4d4d4d;
}
.btn_ghost.main-text:before {
  color: #4d4d4d;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #4d4d4d;
}
.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: #4d4d4d;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #4d4d4d;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #B08BAC;
  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: #B08BAC;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #B08BAC;
  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: #B08BAC;
}
.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 #b08bac;
  background-color: #b08bac;
}
.btn_action:hover {
  background-color: #9b6d96;
  border-color: #9b6d96;
}
.btn_action:hover {
  color: #fff;
}
.btn_action.full {
  border: 1px solid #B08BAC;
  background-color: #B08BAC;
}
.btn_action.full:hover {
  background-color: #9b6d96;
  border-color: #9b6d96;
}
.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(217, 83, 79, 0.5);
  background-color: rgba(217, 83, 79, 0.5);
}
.btn_action.danger:hover {
  background-color: rgba(201, 48, 44, 0.5);
  border-color: rgba(201, 48, 44, 0.5);
}
.btn_action.reverse {
  border: 1px solid white;
  background-color: white;
  color: #B08BAC;
}
.btn_action.reverse:hover {
  background-color: #eae1e9;
  border-color: #eae1e9;
}

/* Button Main */
.btn_main {
  line-height: 1em;
  padding: 14px 20px;
  border-radius: 4px;
  background-color: #806D78;
  color: white;
  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;
  letter-spacing: 4px;
  border-radius: 30px;
}
.btn_main:hover {
  color: white;
  background-color: #72616b;
}
.btn_main.large {
  font-size: 20px;
  padding: 18px 24px;
}
.btn_main.outline {
  background-color: transparent;
  border: 1px solid #806D78;
  color: #806D78;
}
.btn_main.outline:hover {
  background-color: rgba(128, 109, 120, 0.1);
}
.btn_main.radius {
  border-radius: 30px;
}
.btn_main.reverse {
  background-color: white;
  color: #806D78;
}
.btn_main.pink {
  background-color: #df8c89;
}
.btn_main.pink:hover {
  background-color: #da7875;
}

.btn_main, .btn_special {
  white-space: nowrap;
}

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

/* 2018.10.01 */
.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 */
.basic_container {
  padding: 8px;
}
.basic_container > [class*=col-lg], .basic_container > [class*=col-md], .basic_container > [class*=col-sm], .basic_container > [class*=col-xs] {
  padding: 8px;
}

.basic_block {
  border-radius: 4px;
  overflow: hidden;
  border-radius: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-top: 20px solid #806D78;
}
.basic_block:after, .basic_block:before {
  content: "";
  display: block;
  clear: both;
}
.basic_block:nth-child(1) {
  margin-top: 0;
}
.basic_block.highlight {
  border: 2px dotted #B08BAC;
}
.basic_block .header {
  padding: 8px 8px;
  border-bottom: 1px solid #806d78;
  color: #B08BAC;
  background-color: rgba(128, 109, 120, 0.3);
}
.basic_block .header.prd_header {
  color: #B08BAC;
}
.basic_block .header.center h3, .basic_block .header.center h4 {
  width: 100%;
  text-align: center;
}
.basic_block .header {
  border-top: 1px solid #e1e1e1;
}
.basic_block .header:nth-child(1) {
  border-top: 0;
}
.basic_block .block {
  padding: 8px;
}
.basic_block .block:after, .basic_block .block:before {
  content: "";
  display: block;
  clear: both;
}
.basic_block .block.article {
  padding: 8px 16px 16px;
}
.basic_block .block.min-medium {
  min-height: 300px;
}
.basic_block .block.padding-large {
  padding: 16px;
}
.basic_block .footer {
  padding: 16px;
  text-align: right;
  border-top: 1px solid #e1e1e1;
}
.basic_block .footer.padding-small {
  padding: 8px;
}
.basic_block .date {
  margin: 0;
  line-height: 24px;
}
.basic_block .thumb {
  width: 80px;
}
.basic_block .dv_line {
  position: relative;
  border-top: 1px solid #e1e1e1;
}
.basic_block .dv_line.m-tb {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* margin */
.basic_block {
  margin: 16px 0;
}
/* Second Header */
.second_header {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fcfcfc;
  padding: 4px 8px;
}
.header + .second_header {
  border-top: 0;
}
.second_header:nth-child(1) {
  border-top: 0;
}

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

.basic_block .block.form_table {
  padding: 0;
}

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

.login_block.basic_block .form_column:before, .login_block.basic_block .form_column:after {
  display: table;
  content: " ";
  clear: both;
}
.login_block.basic_block .form_column > .item .title, .login_block.basic_block .form_column > .item .content {
  display: inline-block;
}
.login_block.basic_block .form_column > .item > .title {
  vertical-align: top;
  width: 120px;
  padding: 8px;
  color: #B08BAC;
  font-size: 16px;
}
.login_block.basic_block .form_column > .item > .content {
  vertical-align: middle;
  width: calc(100% - 125px);
}
.login_block.basic_block .form_column > .item > .content .content_block {
  padding: 4px;
  border: 1px dotted #e1e1e1;
  border-radius: 4px;
  margin: 8px 0;
}
.login_block.basic_block .form_column > .item > .content h1, .login_block.basic_block .form_column > .item > .content h2, .login_block.basic_block .form_column > .item > .content h3, .login_block.basic_block .form_column > .item > .content h4 {
  padding: 6px 0;
}
.login_block.basic_block .form_column > .item > .title.w-large {
  width: 160px;
}
.login_block.basic_block .form_column > .item > .title.w-large ~ .content {
  width: 200px;
}
.login_block.basic_block .form_column > .item.layout_updown {
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
}
.login_block.basic_block .form_column > .item.layout_updown:before {
  display: none;
}
.login_block.basic_block .form_column > .item.layout_updown .title {
  line-height: 1em;
  padding: 8px 8px;
  margin: 0;
  border-bottom: 1px solid rgba(176, 139, 172, 0.08);
  border-radius: 2px;
  background-color: rgba(176, 139, 172, 0.08);
}
.login_block.basic_block .form_column > .item.layout_updown .content {
  padding: 8px 0;
}
.login_block.basic_block .form_column > .item.layout_updown .title, .login_block.basic_block .form_column > .item.layout_updown .content {
  width: calc(100% - 8px);
  margin: 0 4px;
}
@media (max-width: 991px) {
  .login_block.basic_block .form_column {
    padding: 0;
  }
  .login_block.basic_block .form_column > .item {
    position: relative;
    padding: 0;
  }
  .login_block.basic_block .form_column > .item .title, .login_block.basic_block .form_column > .item .content {
    width: 100%;
  }
  .login_block.basic_block .form_column > .item .title {
    background-color: rgba(77, 77, 77, 0.05);
    border-bottom: 1px solid #e1e1e1;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .login_block.basic_block .form_column > .item .content {
    padding: 8px;
  }
}

/* Block Border Top
-------------- */
.basic_block > .block + .block {
  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;
}

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

/* Narrow */
.basic_block.narrow .footer, .basic_block .footer.narrow {
  padding: 4px;
}

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

/* Stepper */
.stepper {
  padding: 4px;
  margin-bottom: 16px;
  background-color: #f9f9f9;
}
.stepper > li {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px;
  width: calc(100% / 3);
}
.stepper > li:nth-last-child(1) {
  border-right: 0px;
}
.stepper > li p {
  margin: 0;
}
.stepper > li p.step {
  font-size: 13px;
  font-weight: 700;
}
.stepper > li p {
  color: #4d4d4d;
}
.stepper > li p.step {
  color: #B08BAC;
}
.stepper > li.active {
  background-color: #f7e5e0;
  border: 0;
}
.stepper > li.active p {
  color: #4d4d4d;
}
.stepper > li.active .step {
  color: #4d4d4d;
}

.basic_block .header.header_sky,
.basic_block .footer.footer_land {
  border: 0;
  background-color: transparent;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.basic_block .header.header_sky {
  background-image: url(../images/common/bb_header_01.jpg);
  height: 90px;
}
.basic_block .header.header_sky .title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  float: none;
}
.basic_block .footer.footer_land {
  background-image: url(../images/common/bb_footer_01.jpg);
  height: 215px;
}

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

table.form_table {
  border-top: 1px solid #e1e1e1;
}
.header + table.form_table {
  border-top: 0;
}
table.form_table:nth-child(1) {
  border: 0;
}

/* -----------------------
Compatible with Basic Block
----------------------- */
/* 2018.10.11 */
/*--- nav_side_solid ---*/
.nav_side_solid {
  padding-right: 0px;
}
.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: #4d4d4d;
}
.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: #B08BAC;
}
.nav_side_solid ul.layer_2nd > li > a {
  padding-left: 54px;
}

/* Border inset */
/* Selected Show */
.nav_side_solid > li > ul.layer_1st {
  display: none;
}
.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 > a:before {
  content: "";
}
.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 {
  border-top: 1px solid #f1f1f1;
  padding: 4px;
}
.attach_list > .item:nth-child(1) {
  border-top: 0;
}

.attach_other,
.attach_doc,
.attach_pdf,
.attach_ppt,
.attach_img {
  position: relative;
  text-align: left;
  padding: 4px 4px 4px 40px;
  display: inline-block;
  position: relative;
}
.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: 0;
  top: calc(50% - 15px);
}

.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 */
.basic_block .form_column > .item {
  padding: 8px 0;
}
.basic_block .form_column {
  padding: 8px 16px;
}
.basic_block .form_column > .item > .title {
  vertical-align: top;
}
@media (max-width: 991px) {
  .basic_block .form_column.sm_style {
    padding: 0;
  }
  .basic_block .form_column.sm_style > .item {
    padding: 0;
  }
  .basic_block .form_column.sm_style > .item .title {
    padding-bottom: 0;
  }
  .basic_block .form_column.sm_style > .item .content {
    padding: 8px;
  }
  .basic_block .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.c-w-50 {
    width: 50%;
  }
}

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

.cube-header {
  background-color: rgba(128, 109, 120, 0.1);
  color: #806D78;
  border-radius: 0;
  padding: 8px;
}

.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;
}

/* 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;
}

.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: #B08BAC;
  text-align: right;
}
.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 0px 8px 8px;
}

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

/* Style
------------- */
.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.i-w-50 {
    width: 50%;
  }
  .form_column.item_border > .item + .item {
    border-top: 1px solid #e1e1e1;
  }
  .form_column.item_border > .item.w-50 + .item.w-50:nth-child(2) {
    border-top: 0;
  }
}
@media (max-width: 991px) {
  .form_column {
    /* Column Mobile
    ----------------- */
  }
  .form_column .title, .form_column .content, .form_column .item.i-w-50 {
    width: 100%;
  }
  .form_column .title {
    padding: 4px 0px 4px;
  }
  .form_column.narrow {
    padding: 8px 8px;
  }
  .form_column.border > .item + .item {
    border-top: 1px solid #e1e1e1;
  }
}
.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.i-w-50 {
  width: 50%;
}
.form_column.no-responsive.item_border > .item + .item {
  border-top: 1px solid #e1e1e1;
}
.form_column.no-responsive.item_border > .item.w-50 + .item.w-50:nth-child(2) {
  border-top: 0;
}

/* Q & A 
---------------------*/
.form_column.column_qa .btn_main {
  width: auto;
}
@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: rgba(216, 183, 214, 0.3);
    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);
}
@media (max-width: 767px) {
  input,
textarea,
select,
.btn-input {
    padding: 10px 8px;
    height: calc(1.8em + 12px);
  }
}

select {
  background-color: transparent;
}
@media (max-width: 767px) {
  select {
    padding: 4px 8px;
  }
}

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

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgba(176, 139, 172, 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;
  }
}

/* 2018.10.04 */
/*--- Custom Checkbox ---*/
.checkbox-primary, .radio-primary {
  display: block;
  position: relative;
  min-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;
  /* Input text */
  /* 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: transparent;
  border: 1px solid rgba(128, 109, 120, 0.7);
  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 .checkmark.other, .radio-primary .checkmark.other {
  top: calc(44px / 2 - 20px / 2);
}
.checkbox-primary .other_input, .radio-primary .other_input {
  display: inline-block;
  width: 85%;
}
@media (max-width: 767px ) {
  .checkbox-primary .other_input, .radio-primary .other_input {
    height: calc(1.8em + 12px);
  }
}
.checkbox-primary .loc_text, .radio-primary .loc_text {
  padding-right: 28px;
}
.checkbox-primary .local_input, .radio-primary .local_input {
  display: inline-block;
  width: calc(100% - 60px);
}
@media (max-width: 767px ) {
  .checkbox-primary .local_input, .radio-primary .local_input {
    width: calc(100% - 70px);
  }
}
.checkbox-primary input[type=checkbox], .checkbox-primary input[type=radio], .radio-primary input[type=checkbox], .radio-primary input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  height: 0;
  width: 0;
  /* Disabled
  ----------------- */
}
.checkbox-primary input[type=checkbox]:disabled ~ .checkmark, .checkbox-primary input[type=radio]:disabled ~ .checkmark, .radio-primary input[type=checkbox]:disabled ~ .checkmark, .radio-primary input[type=radio]:disabled ~ .checkmark {
  cursor: not-allowed;
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark, .radio-primary input[type=radio]:disabled:checked ~ .checkmark {
  border-color: #ccc;
}
.checkbox-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:disabled:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:disabled:checked ~ .checkmark:after, .radio-primary input[type=radio]:disabled:checked ~ .checkmark:after {
  display: block;
  background-color: #ccc;
}
.checkbox-primary:hover input[type=checkbox] ~ .checkmark, .checkbox-primary:hover input[type=radio] ~ .checkmark, .radio-primary:hover input[type=checkbox] ~ .checkmark, .radio-primary:hover input[type=radio] ~ .checkmark {
  background-color: #fcfcfc;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark, .checkbox-primary input[type=radio]:checked ~ .checkmark, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark, .radio-primary input[type=checkbox]:checked ~ .checkmark, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark, .radio-primary input[type=radio]:checked ~ .checkmark, .radio-primary input[type=radio]:checked:hover ~ .checkmark {
  background-color: #B08BAC;
  border-color: #B08BAC;
}
.checkbox-primary input[type=checkbox]:checked ~ .checkmark:after, .checkbox-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .checkbox-primary input[type=radio]:checked ~ .checkmark:after, .checkbox-primary input[type=radio]:checked:hover ~ .checkmark:after, .radio-primary input[type=checkbox]:checked ~ .checkmark:after, .radio-primary input[type=checkbox]:checked:hover ~ .checkmark:after, .radio-primary input[type=radio]:checked ~ .checkmark:after, .radio-primary input[type=radio]:checked:hover ~ .checkmark:after {
  display: block;
}

@media (max-width: 767px ) {
  .local .checkbox-primary .checkmark {
    top: calc(33px / 2 - 8px / 2);
  }
}
/* 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: #B08BAC;
  -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;
  margin-left: 0 !important;
  /* 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-inline > .item:hover > label, .radio-inline > .item:hover > label {
  background-color: rgba(0, 0, 0, 0.02);
}

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

/*--- Checkbox list ---*/
/* 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: #d9534f;
  position: absolute;
  right: -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: 6px 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;
    height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }
}
@media (max-width: 575px ) {
  .tab li {
    width: calc(100% / 2 - 5px);
  }
}

.abgne_marquee_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-color: #b08bac;
}

#abgne_marquee {
  height: 35px;
  position: relative;
  overflow: hidden;
  /* RWD */
}
#abgne_marquee ul {
  position: absolute;
  width: 100%;
  height: 100%;
}
#abgne_marquee ul li {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
  color: #fff;
}
#abgne_marquee ul .td {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  width: 100%;
  padding: 0 12px;
}
#abgne_marquee a {
  color: inherit;
}
#abgne_marquee a:hover, #abgne_marquee a:focus {
  text-decoration: underline;
}
@media (max-width: 767px ) {
  #abgne_marquee ul li {
    text-align: left;
  }
}

.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;
  font-size: 36px;
}
@media (max-width: 767px ) {
  .section_complete_form h2 {
    font-size: 24px;
  }
}
.section_complete_form .check {
  font-size: 120px;
  color: #6ec450;
  margin-bottom: 10px;
}
@media (max-width: 767px ) {
  .section_complete_form .check {
    font-size: 100px;
    margin-bottom: 0;
  }
}
.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: #B08BAC;
  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: #B08BAC;
  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(176, 139, 172, 0.1);
  color: #B08BAC;
}
.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: 4px;
  background-color: #806D78;
  color: white;
  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: white;
  background-color: #72616b;
}
.editor input[type=button].large {
  font-size: 20px;
  padding: 18px 24px;
}
.editor input[type=button].outline {
  background-color: transparent;
  border: 1px solid #806D78;
  color: #806D78;
}
.editor input[type=button].outline:hover {
  background-color: rgba(128, 109, 120, 0.1);
}
.editor input[type=button].radius {
  border-radius: 30px;
}
.editor input[type=button].reverse {
  background-color: white;
  color: #806D78;
}
.editor input[type=button].pink {
  background-color: #df8c89;
}
.editor input[type=button].pink:hover {
  background-color: #da7875;
}
@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;
  }
}

.section_simple.container {
  padding-bottom: 20px;
}

/* 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: #B08BAC;
  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;
  padding-left: 20px;
  line-height: 1.5em;
}
.f_info_ul li:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  color: inherit;
  font-size: 1em;
  line-height: inherit;
  width: 1em;
  text-align: center;
  left: 0;
}
.f_info_ul li.map-marker:before {
  content: "\f041";
  background-image: none;
}
.f_info_ul li.phone:before {
  content: "\f095";
  background-image: none;
}
.f_info_ul li.mobile-phone:before {
  content: "\f10b";
  background-image: none;
}
.f_info_ul li.fax:before {
  content: "\f1ac";
  background-image: none;
}
.f_info_ul li.envelope:before {
  content: "\f003";
  background-image: none;
}
.f_info_ul li.link:before {
  content: "\f0c1";
  background-image: none;
}
.f_info_ul li.calendar:before {
  content: "\f274";
  background-image: none;
}
.f_info_ul li:empty {
  display: none;
}

/* 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: #806D78;
}

/* 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 {
  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: 16px;
  /* ul */
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  color: #b28dae;
  font-weight: 700;
}
.editor h1 {
  font-size: 32px;
}
.editor h2 {
  font-size: 28px;
}
.editor h3 {
  font-size: 24px;
}
.editor h4 {
  font-size: 18px;
}
.editor h5 {
  font-size: 17px;
}
.editor h6 {
  font-size: 16px;
}
.editor p {
  font-size: 16px;
  letter-spacing: 1px;
  color: #B08BAC;
}
.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: #B08BAC;
  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: #4d4d4d;
}

a:hover, a:focus {
  color: #4d4d4d;
}

/* 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: #B08BAC;
  font-weight: 500;
  font-size: 26px;
}
.main_title:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  content: "";
  background-image: url(../images/icons2.png);
  width: 52px;
  height: 52px;
  background-position: 0 -117px;
  background-size: 390px auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px ) {
  .main_title:before {
    width: 40px;
    height: 40px;
    background-position: 0 -90px;
    background-size: 300px auto;
  }
}
@media (max-width: 767px ) {
  .main_title {
    padding-left: calc(40px + 8px);
    font-size: 22px;
  }
  .main_title:before {
    top: -4px;
  }
}

.main_title.ic_white:before {
  content: "";
  background-image: url(../images/icons2.png);
  width: 52px;
  height: 52px;
  background-position: -65px -117px;
  background-size: 390px auto;
}
@media (max-width: 767px ) {
  .main_title.ic_white:before {
    width: 40px;
    height: 40px;
    background-position: -50px -90px;
    background-size: 300px auto;
  }
}

.main_title.ic_cl2:before {
  content: "";
  background-image: url(../images/icons2.png);
  width: 52px;
  height: 52px;
  background-position: -130px -117px;
  background-size: 390px auto;
}
@media (max-width: 767px ) {
  .main_title.ic_cl2:before {
    width: 40px;
    height: 40px;
    background-position: -100px -90px;
    background-size: 300px auto;
  }
}

.title_special {
  font-weight: 700;
  font-family: "Tangerine", "Microsoft Jhenghei", sans-serif;
  font-weight: 600;
  color: #4d4d4d;
}
.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(77, 77, 77, 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(77, 77, 77, 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 #B08BAC;
}
.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(176, 139, 172, 0.3);
}
.page_nav .page_prev {
  float: left;
}
.page_nav .page_next {
  float: right;
}

.sidebar_wrapper .sidebar_header {
  position: relative;
  padding: 5px 8px;
  margin: 0 auto;
  line-height: 1.5em;
  color: #806D78;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  background-image: url(../images/icons2.png);
  width: 260px;
  height: 69px;
  background-position: 0px -365px;
  background-size: 600px auto;
}
.sidebar_wrapper .sidebar_header .title {
  margin-top: 10px;
  font-weight: bold;
}
.sidebar_wrapper .nav_side_solid {
  padding: 6px;
  margin-left: 1em;
}
@media (max-width: 767px ) {
  .sidebar_wrapper .nav_side_solid {
    text-align: center;
    margin: 0;
  }
}
.sidebar_wrapper .nav_side_solid li {
  position: relative;
  list-style: none;
}
.sidebar_wrapper .nav_side_solid li a {
  display: inline-block;
  color: #806D78;
  padding: 6px;
  line-height: 1.5em;
}
.sidebar_wrapper .nav_side_solid li .main_menu {
  padding: 9px 6px;
  font-weight: 700;
}
.sidebar_wrapper .nav_side_solid li.active a, .sidebar_wrapper .nav_side_solid li.active a:hover, .sidebar_wrapper .nav_side_solid li.active a:focus {
  font-weight: 500;
  color: #B08BAC;
}
.sidebar_wrapper .nav_side_solid li.active a:before {
  content: "";
  width: 35px;
  height: 30px;
  left: -30px;
  top: 6px;
  position: absolute;
  background-image: url("../images/ic_sidebar.png");
}

/* 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;
  -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;
}
@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 {
  -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;
  height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

/* 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(77, 77, 77, 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(77, 77, 77, 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: #4d4d4d;
  font-weight: 700;
  overflow: hidden;
  line-height: 1.5em;
  height: 3em;
  white-space: normal;
  text-overflow: initial;
}
.crsl_basic .dsc {
  color: #666666;
  overflow: hidden;
  line-height: 1.5em;
  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 
--------------------*/
/* Animation */
@-webkit-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-moz-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-ms-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@-o-keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
@keyframes jump-animation {
  100% {
    top: 0px;
    text-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  }
}
.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/icons2.png);
  width: 175.5px;
  height: 45px;
  background-position: -0.9px -0.9px;
  background-size: 540px auto;
}
@media (max-width: 1199px ) {
  .navbar-header .navbar-brand .brand_logo {
    width: 175.5px;
    height: 45px;
    background-position: -0.9px -0.9px;
    background-size: 540px auto;
  }
}
@media (max-width: 767px ) {
  .navbar-header .navbar-brand .brand_logo {
    width: 136.5px;
    height: 35px;
    background-position: -0.7px -0.7px;
    background-size: 420px 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;
  }
}

/* Nav Layout
---------------- */
@media (min-width: 768px ) and (max-width: 991px ) {
  .navbar-collapse {
    text-align: center;
  }
}
@media (min-width: 992px ) and (max-width: 1199px ) {
  .navbar-collapse {
    text-align: center;
  }
}
@media (min-width: 1200px ) {
  .navbar-collapse {
    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 > 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: #B08BAC;
  }
  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: #B08BAC;
    color: #60425d;
  }
  ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus {
    background-color: transparent;
  }
  ul.navbar-nav > li.active > a {
    background-color: transparent;
  }
  ul.navbar-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.8);
  }
  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: #806D78;
  }
  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: white;
  }
  ul.navbar-nav .dropdown-menu a {
    color: #B08BAC;
  }
  ul.navbar-nav .dropdown-menu a:hover, ul.navbar-nav .dropdown-menu a:focus {
    color: #fff;
    background-color: #806D78;
  }

  .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: #B08BAC;
    color: #60425d;
  }
  .add_class ul.navbar-nav > li > a:hover, .add_class ul.navbar-nav > li > a:focus {
    background-color: transparent;
  }
  .add_class ul.navbar-nav > li.active > a {
    background-color: transparent;
  }
  .add_class ul.navbar-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .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: #806D78;
  }
  .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: white;
  }
  .add_class ul.navbar-nav .dropdown-menu a {
    color: #B08BAC;
  }
  .add_class ul.navbar-nav .dropdown-menu a:hover, .add_class ul.navbar-nav .dropdown-menu a:focus {
    color: #fff;
    background-color: #806D78;
  }

  .navbar {
    background-color: #fff;
  }
  .navbar.add_class {
    background-color: #fff;
  }

  .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 #B08BAC;
    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: #4d4d4d;
    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: #B08BAC;
    -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 #B08BAC;
    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 #7f567a;
    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;
}

/* Toggle Button */
.navbar-toggle {
  border: 0px;
  padding: 14px 14px;
  margin: 0;
  border-radius: 0;
  background-color: #fff;
}
.navbar-toggle .icon-bar {
  background-color: #B08BAC;
  margin: 4px 0;
}
.navbar-toggle:hover, .navbar-toggle:focus {
  background-color: #B08BAC;
}
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
  background: #fff;
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -khtml-transform: translateY(6px) rotate(45deg);
  -moz-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -o-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3) {
  -webkit-transform: scaleX(0.01);
  -khtml-transform: scaleX(0.01);
  -moz-transform: scaleX(0.01);
  -ms-transform: scaleX(0.01);
  -o-transform: scaleX(0.01);
  transform: scaleX(0.01);
}
.navbar-toggle[aria-expanded=true] .icon-bar:nth-child(4) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -khtml-transform: translateY(-6px) rotate(-45deg);
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -o-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

.nav_fix {
  margin-top: 57px;
}
@media (min-width: 768px ) and (max-width: 1199px ) {
  .nav_fix {
    margin-top: 49px;
  }
}
@media (max-width: 767px ) {
  .nav_fix {
    margin-top: 50px;
  }
}

/* nav Position
--------------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
}

/* 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: #4d4d4d;
}
.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: #B08BAC;
  -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: #4d4d4d !important;
  padding: 12px !important;
  border-left: 4px solid #B08BAC;
}
.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(176, 139, 172, 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: #7f567a;
  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: #B08BAC;
  -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 #fff;
  color: #fff;
  top: 10%;
  right: 10%;
  font-size: 12px;
}
.btn_inner_absolute.mini span.inner {
  border: 1px solid #444;
  background-color: #c5a9c2;
  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: 55px;
  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(176, 139, 172, 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: 40%;
}
.cart_popup .content {
  width: calc(100% - 40% );
  padding: 0 12px;
  overflow: hidden;
}
.cart_popup .content p {
  color: #b5b5b6;
  line-height: 1.5em;
}
.cart_popup .prd_title a {
  color: #806D78;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.cart_popup .date {
  color: #b5b5b6;
}
.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 {
  color: #df8c89;
  font-size: 20px;
  font-weight: 700;
}
.cart_popup .footer {
  padding: 12px 4px;
  border-top: 1px solid #e1e1e1;
  background-color: #efefef;
  text-align: center;
}
.cart_popup:after {
  content: " ";
  bottom: 100%;
  right: 12px;
  top: -8px;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-style: solid;
  border-width: 0px 8px 8px 8px;
  border-color: transparent transparent #fff transparent;
}

.user_btn_wrapper {
  position: relative;
}

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

.user_popup {
  margin: 0;
  position: absolute;
  border-radius: 3px;
  padding: 0;
  display: none;
  background: #fff;
  width: 160px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  top: 55px;
  right: 0;
}
.user_popup.active {
  display: block;
}
.user_popup:after {
  content: " ";
  bottom: 100%;
  right: 14px;
  top: -8px;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-style: solid;
  border-width: 0px 8px 8px 8px;
  border-color: transparent transparent #fff transparent;
}
.user_popup .navbar-nav {
  flex-direction: column;
}
.user_popup .navbar-nav a {
  color: #806D78;
}
.user_popup .navbar-nav .nav-item + .nav-item {
  border-top: 1px solid rgba(176, 139, 172, 0.2);
}

/* Search Collaspe
------------------- */
.s_f_wrapper {
  max-width: 220px;
  float: right;
  padding: 8px 0 8px;
}
@media (max-width: 1199px ) {
  .s_f_wrapper {
    max-width: 180px;
  }
}
.s_f_wrapper input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.s_f_wrapper #s_form {
  background-color: transparent;
  background-image: url(../images/common/ic_search.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px 20px;
  text-indent: 1em;
  display: inline-block;
  border: 0 none;
  width: 0;
  height: 40px;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  padding: 12px 19px;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  vertical-align: baseline;
  margin: 0;
}
.s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
  background-image: url(../images/common/ic_search_hover.svg);
}
.s_f_wrapper #s_form:focus {
  width: 240px;
  cursor: text;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px ) {
  .s_f_wrapper {
    position: fixed;
    right: 0px;
    top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    max-width: unset;
    color: #4d4d4d;
  }
  .s_f_wrapper:hover, .s_f_wrapper:focus {
    width: 100%;
  }
  .s_f_wrapper #s_form {
    background-position: calc(56px / 2 - 12px) center;
    width: 56px;
    height: 56px;
    padding: calc(56px / 2 - 12px) calc(56px / 2 - 5px);
    border-radius: calc(56px / 2);
    float: right;
    box-shadow: 0 3.2px 10px rgba(0, 0, 0, 0.32);
    background-color: #B08BAC;
  }
  .s_f_wrapper #s_form:hover, .s_f_wrapper #s_form:focus {
    width: 100%;
    background-color: #f1f1f1;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}
@media (min-width: 768px ) {
  .s_f_wrapper #s_form {
    color: #806D78;
    background-position: calc(44px / 2 - 12px) center;
    width: 44px;
    height: 44px;
    padding: calc(44px / 2 - 12px) calc(44px / 2 - 5px);
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}

/* no desktop */
/* Search Desktop (Normal)
---------------------- */
.s_desktop {
  float: right;
  width: 220px;
  padding: 4px 0 4px;
  position: relative;
}
@media (max-width: 1199px ) {
  .s_desktop {
    width: 160px;
  }
}
.s_desktop .search_input {
  float: left;
  outline: none;
  padding: 0;
  padding-left: 20px;
  width: 100%;
  height: 28px;
  line-height: 28px;
  border-radius: 14px;
  color: #4d4d4d;
  border: 0px solid #B08BAC;
  background-color: #f1f1f1;
}
.s_desktop .search_button {
  position: absolute;
  right: 0px;
  width: 28px;
  height: 28px;
  border-radius: 0 14px 14px 0;
  border: 0px solid #B08BAC;
  background-color: #f1f1f1;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.s_desktop .search_button i {
  height: 28px;
  line-height: 27px;
}
.s_desktop .search_button i:before {
  color: rgba(77, 77, 77, 0.7);
}
.s_desktop .search_button:hover {
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  .s_desktop {
    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: white;
}
.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: #df8c89;
  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 #df8c89;
  background-color: #df8c89;
  color: white;
  top: 12%;
  right: 0%;
}

.menu_s {
  display: flex;
  align-items: center;
}
.menu_s:after, .menu_s:before {
  content: "";
  display: block;
  clear: both;
}
.menu_s > li {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1em;
}
.menu_s > li i {
  font-size: 26px;
}
.menu_s > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.menu_s > li:nth-last-child(1) {
  padding-right: 0px;
}
@media (max-width: 767px ) {
  .menu_s {
    display: none;
  }
}

/* Nav Member
------------------ */
@media (max-width: 767px ) {
  .nav_member .menu_s {
    display: none;
  }
}
/* nav Theme 
--------------------*/
/* Nav Li Style 
----------------*/
/* Desktop Menu
--------------- */
@media (min-width: 768px ) {
  .navbar-header {
    float: left;
  }

  .navbar-collapse {
    float: left;
  }

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

  ul.navbar-nav > li > .nav-link {
    position: relative;
    padding: 14px 15px;
  }
  ul.navbar-nav > li > .nav-link:before {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 1px;
    height: 15px;
    background-color: white;
  }

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

  ul.navbar-nav > li:last-child a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 35%;
    width: 0;
    height: 15px;
    background-color: white;
  }
}
/* 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;
}
.navbar.add_class {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* IE Fix
---------------- */
/* header Member login */
.navbar-header {
  position: relative;
  z-index: 1031;
}

/* ======================== 
theme
1. require global resourse
======================== */
/* Pure Cover */
/* a - z */
/* Independent Comp */
/* a - z */
.breadcrumb_wrap {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  padding-top: 1em;
  display: flex;
  max-width: 1140px;
  justify-content: flex-end;
}
@media (max-width: 767px ) {
  .breadcrumb_wrap {
    margin-bottom: 20px;
    padding: 8px;
  }
}

/* Comp Basic Setting */
/* a - z */
.modal-body h4 {
  color: #B08BAC;
  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 .note a {
  font-size: 12px;
}
.modal-body a {
  text-decoration: underline;
}
.modal-body a:hover {
  text-decoration: none;
}

.modal-footer {
  justify-content: space-between;
}

.banner {
  height: 400px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.banner .bg-full {
  height: 100%;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
  background-position: center bottom;
}
.banner .bg-mask {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
.banner .content {
  padding: 15px 8px;
  position: relative;
  top: 0;
  text-align: center;
  height: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
  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;
  z-index: 2;
}
.banner .content .title {
  font-size: 80px;
  letter-spacing: 8px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1199px ) {
  .banner {
    height: 320px;
  }
  .banner .content .title {
    font-size: 65px;
  }
}
@media (max-width: 767px ) {
  .banner {
    height: 165px;
  }
  .banner .content .title {
    font-size: 30px;
  }
}

/* register
======================= */
.register {
  position: relative;
}
.register .mmbr_header_wrap {
  padding-bottom: 20px;
}
.register p {
  color: #806D78;
}
.register .note {
  margin: 10px 0;
}
.register .bold {
  font-weight: 700;
}
.register a {
  color: blue;
}
.register a:hover {
  text-decoration: underline;
}

/* login
======================= */
.login_block {
  padding: 8px 0;
}
.login_block .btn_wrapper {
  margin-bottom: 10px;
  text-align: center;
}
.login_block .btn_wrapper .width-50 {
  width: calc(50% - 8px) !important;
}
.login_block input, .login_block textarea, .login_block select {
  display: block;
  width: 100%;
}
.login_block .caret_select {
  display: block;
}
.login_block input, .login_block textarea, .login_block .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.login_block .checkbox-inline, .login_block .radio-inline {
  margin-top: 2px;
}
.login_block .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.login_block .radio-inline + .radio-inline {
  margin-top: 2px;
}

/* Google & Facebook */
.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;
}

/* Login Modal (inherit: modalBasic)
---------------- */
.modal_login {
  width: 680px;
  margin: 20px auto;
  max-width: 100%;
}
@media (max-width: 575px ) {
  .modal_login {
    max-width: 100%;
    margin: 0px auto;
  }
}
@media (min-width: 768px ) {
  .modal_login .modal-body {
    padding: 15px 8px;
  }
  .modal_login [class*=col-lg], .modal_login [class*=col-md], .modal_login [class*=col-sm], .modal_login [class*=col-xs] {
    padding: 8px 15px;
  }
}
@media (min-width: 992px ) {
  .modal_login {
    margin: 100px auto;
  }
}

/* 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: 18px !important;
  }
}

/* section padding set
----------- */
.h_section {
  padding: 60px 0;
  color: #B08BAC;
}
.h_section.bg_gray {
  background-color: rgba(175, 173, 179, 0.1);
}
@media (max-width: 767px ) {
  .h_section {
    padding: 30px 0;
  }
}
.h_section .title_wrap {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.h_section .title_wrap:after, .h_section .title_wrap:before {
  content: "";
  display: block;
  clear: both;
}
.h_section .title_wrap span {
  padding-left: 20px;
}
@media (max-width: 767px ) {
  .h_section .title_wrap {
    margin: 0 8px;
  }
  .h_section .title_wrap span {
    margin-top: 4px;
    padding-left: 0;
  }
}

@media (max-width: 767px ) {
  .h_link_wrap .item + .item {
    margin-top: 30px;
  }
}

/*  owl course_info
======================= */
.h_course_info_wp {
  padding-bottom: 120px;
  /* Crsl
  ----------- */
}
@media (max-width: 767px ) {
  .h_course_info_wp {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px ) {
  .h_course_info_wp .crsl_course_wrapper {
    margin-top: 10px;
  }
}
.h_course_info_wp .crsl_course {
  /* hover */
}
.h_course_info_wp .crsl_course .item {
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin: 8px;
}
.h_course_info_wp .crsl_course .item .img {
  width: 100%;
  padding: 0;
  padding-top: 50%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.h_course_info_wp .crsl_course .item .tag {
  position: absolute;
  top: 10px;
  left: -2px;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  z-index: 2;
}
.h_course_info_wp .crsl_course .item .tag:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: url(../images/icons2.png);
  width: 159.25px;
  height: 52px;
  background-position: 0 -175.5px;
  background-size: 390px auto;
}
@media (max-width: 767px ) {
  .h_course_info_wp .crsl_course .item .tag:before {
    width: 147px;
    height: 48px;
    background-position: 0 -162px;
    background-size: 360px auto;
  }
}
.h_course_info_wp .crsl_course .item:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.h_course_info_wp .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.h_course_info_wp .owl-dots .owl-dot {
  display: inline-block;
}
.h_course_info_wp .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #806D78;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.h_course_info_wp .owl-dots .owl-dot.active span, .h_course_info_wp .owl-dots .owl-dot:hover span {
  background-color: #806D78;
}
.h_course_info_wp .owl-dots {
  position: absolute;
  width: 100%;
}
.h_course_info_wp .owl-dots .owl-dot span {
  width: 28px;
  height: 6px;
  margin: 0 4px;
}
@media (max-width: 767px ) {
  .h_course_info_wp .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
  }
}

/* owl signup
======================= */
.h_signup_wp {
  padding-bottom: 120px;
  background-color: rgba(176, 139, 172, 0.8);
  background-image: url(../images/bg_001.jpg);
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  /* Crsl
  ----------- */
}
@media (max-width: 767px ) {
  .h_signup_wp {
    padding-bottom: 60px;
  }
}
.h_signup_wp .title_wrap {
  color: white;
}
.h_signup_wp .title_wrap .main_title {
  color: white;
}
.h_signup_wp .crsl_course {
  /* hover */
}
.h_signup_wp .crsl_course .item {
  position: relative;
  margin: 8px;
}
.h_signup_wp .crsl_course .item .img {
  width: 100%;
  padding: 0;
  padding-top: 61.3157894737%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.h_signup_wp .crsl_course .item .tag {
  position: absolute;
  top: 10px;
  left: -2px;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  z-index: 2;
}
.h_signup_wp .crsl_course .item .tag:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: url(../images/icons2.png);
  width: 159.25px;
  height: 52px;
  background-position: 0 -175.5px;
  background-size: 390px auto;
}
@media (max-width: 767px ) {
  .h_signup_wp .crsl_course .item .tag:before {
    width: 147px;
    height: 48px;
    background-position: 0 -162px;
    background-size: 360px auto;
  }
}
.h_signup_wp .crsl_course .item .title {
  color: #806D78;
  height: 1.5em;
}
.h_signup_wp .crsl_course .item .content {
  background-color: white;
  text-align: center;
  color: #806D78;
}
.h_signup_wp .crsl_course .item .btn_wrapper {
  position: relative;
  margin-top: 10px;
}
.h_signup_wp .crsl_course .item .btn_wrapper .btn_like {
  position: absolute;
  left: 15px;
}
.h_signup_wp .crsl_course .item .btn_wrapper .btn_like i {
  font-size: 34px;
  color: #806D78;
}
.h_signup_wp .crsl_course .item:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.h_signup_wp .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.h_signup_wp .owl-dots .owl-dot {
  display: inline-block;
}
.h_signup_wp .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #806D78;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.h_signup_wp .owl-dots .owl-dot.active span, .h_signup_wp .owl-dots .owl-dot:hover span {
  background-color: #806D78;
}
.h_signup_wp .owl-dots {
  position: absolute;
  width: 100%;
}
.h_signup_wp .owl-dots .owl-dot span {
  width: 28px;
  height: 6px;
  margin: 0 4px;
}
@media (max-width: 767px ) {
  .h_signup_wp .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
  }
}

/* 列表介紹 grid
======================= */
.h_grid_course_wp {
  padding: 120px 0;
  background-image: url(../images/bg_002.png);
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
@media (max-width: 767px ) {
  .h_grid_course_wp {
    padding: 60px 8px;
  }
}
.h_grid_course_wp .title_wrap {
  max-width: 1300px;
  line-height: 2em;
}
.h_grid_course_wp .main_title {
  color: #806D78;
  display: inline-block;
  width: calc(100% - 150px);
}
.h_grid_course_wp .main_title span {
  position: relative;
  margin-left: 5px;
  padding-left: 10px;
  color: #806D78;
}
.h_grid_course_wp .main_title span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 2px;
  background-color: #806D78;
}
@media (max-width: 767px ) {
  .h_grid_course_wp .main_title {
    display: block;
    width: auto;
  }
}
.h_grid_course_wp .btn_more {
  color: #806D78;
  vertical-align: text-bottom;
}
@media (max-width: 767px ) {
  .h_grid_course_wp .btn_more {
    float: right;
    vertical-align: baseline;
  }
}
.h_grid_course_wp .grid_course {
  max-width: 1200px;
  margin: 20px auto 60px auto;
  /* content */
}
.h_grid_course_wp .grid_course a {
  display: block;
  position: relative;
  overflow: hidden;
}
.h_grid_course_wp .grid_course .item {
  width: 24%;
  margin-right: 1%;
  float: left;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1199px ) {
  .h_grid_course_wp .grid_course .item {
    width: 48%;
    margin: 1%;
  }
}
@media (max-width: 767px ) {
  .h_grid_course_wp .grid_course .item {
    width: 100%;
    margin: 0;
    float: none;
  }
  .h_grid_course_wp .grid_course .item + .item {
    margin-top: 20px;
  }
}
.h_grid_course_wp .grid_course .img {
  width: 100%;
  padding: 0;
  padding-top: 62.1621621622%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.h_grid_course_wp .grid_course .title {
  color: #806D78;
  font-weight: 700;
  margin: 8px;
  margin-top: 15px;
  overflow: hidden;
  line-height: 1.5em;
  height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.h_grid_course_wp .grid_course .content {
  color: #b5b5b6;
  background-color: white;
  padding: 0 8px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.h_grid_course_wp .grid_course .content:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.h_grid_course_wp .grid_course .price {
  padding: 0 8px 15px 0;
  color: #df8c89;
  font-weight: 700;
  font-size: 22px;
  text-align: right;
}
@media (max-width: 767px ) {
  .h_grid_course_wp .grid_course .price {
    font-size: 20px;
  }
}
.h_grid_course_wp .grid_course:nth-child(4) {
  margin-bottom: 0;
}

/* 媒體報導
======================= */
.h_news_wp {
  background-color: #806D78;
}
.h_news_wp .main_title {
  color: white;
}

.crsl_news_wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 767px ) {
  .crsl_news_wrapper {
    margin-top: 10px;
  }
}

/* Crsl
----------- */
.crsl_news {
  /* hover */
}
.crsl_news .item {
  position: relative;
  margin: 10px auto;
}
.crsl_news .title {
  color: white;
}
.crsl_news .date, .crsl_news .desc {
  color: #b5b5b6;
}
.crsl_news .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.crsl_news .more {
  display: inline-block;
  padding: 4px 18px;
  margin-left: 12px;
  color: #b5b5b6;
  border: 1px solid #b5b5b6;
  border-radius: 20px;
}
.crsl_news .item:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.slogan2_wp {
  padding: 100px 0;
  color: #fff;
}
.slogan2_wp .title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.slogan2_wp .phone_num {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  color: #806D78;
  font-weight: 700;
  max-width: 550px;
  margin: 0 auto;
  letter-spacing: 4px;
  font-size: 24px;
  padding: 10px 0;
}
@media (max-width: 767px ) {
  .slogan2_wp {
    background-position: center center;
  }
  .slogan2_wp .title {
    font-size: 19px;
  }
  .slogan2_wp .phone_num {
    letter-spacing: 2px;
    font-size: 18px;
    padding: 5px 0;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.slider .img {
  width: 100%;
  padding: 0;
  padding-top: 33.3333333333%;
  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;
  }
}
.slider .note_group {
  position: absolute;
  top: 43%;
  left: 18%;
  color: white;
}
.slider .note_group h2 {
  font-weight: 400;
  letter-spacing: 4px;
  text-shadow: 0 0 3px #fff;
}
.slider .note_group h2 span {
  font-weight: 700;
}
.slider .note_group .btn_main {
  margin-top: 20px;
  background: #F4F3F5;
  width: 195px;
}
.slider .note_group .btn_main:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.slider .note_group .btn_main:hover i {
  transform: translateX(5px);
}
@media (max-width: 1199px ) {
  .slider .note_group {
    top: 30%;
    left: 12%;
  }
}
@media (max-width: 575px ) {
  .slider .note_group {
    top: 20%;
    left: 2%;
  }
}
@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(128, 109, 120, 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%;
}
.slider .owl-dots .owl-dot span {
  width: 28px;
  height: 6px;
  margin: 0 4px;
}
@media (max-width: 767px ) {
  .slider .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
  }
}

.about_wrap {
  position: relative;
}
.about_wrap .bg_left_c {
  width: 284px;
  height: 372px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 60vh;
}
@media (max-width: 1199px ) {
  .about_wrap .bg_left_c {
    width: 198.8px;
    height: 260.4px;
    background-size: 198.8px auto;
  }
}
@media (max-width: 991px ) {
  .about_wrap .bg_left_c {
    width: 142px;
    height: 186px;
    background-size: 142px auto;
  }
}
@media (max-width: 767px ) {
  .about_wrap .bg_left_c {
    width: 85.2px;
    height: 111.6px;
    background-size: 85.2px auto;
  }
}
.about_wrap .ic_flower {
  margin: 0 auto;
  content: "";
  background-image: url(../images/icons2.png);
  width: 80px;
  height: 80px;
  background-position: 0 -180px;
  background-size: 600px auto;
}
@media (max-width: 767px ) {
  .about_wrap .ic_flower {
    width: 56px;
    height: 56px;
    background-position: 0 -126px;
    background-size: 420px auto;
  }
}
.about_wrap .editor h2 {
  color: #806D78;
}
.about_wrap .editor p {
  color: #898989;
}
.about_wrap .sub_title {
  margin-top: 60px;
  color: #806D78;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.about_wrap .btn_wrapper {
  margin-top: 20px;
  text-align: center;
}
.about_wrap .btn_wrapper a {
  display: inline-block;
}
.about_wrap .btn_wrapper .btn_main {
  width: 300px;
  font-size: 30px;
}
.about_wrap .img_wrapper {
  margin: 80px auto;
}
@media (max-width: 767px ) {
  .about_wrap .sub_title {
    font-size: 30px;
    margin-top: 30px;
  }
  .about_wrap .btn_wrapper .btn_main {
    width: 250px;
    font-size: 24px;
  }
  .about_wrap .img_wrapper {
    margin: 40px auto;
  }
}

.news_wrap {
  background-size: cover !important;
  background-image: url("../images/bg_002.png");
  position: relative;
}
@media (min-width: 1200px ) {
  .news_wrap {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 1;
  }
}
.news_wrap .btn_wrapper {
  margin: 40px 0;
  text-align: center;
}
.news_wrap .btn_wrapper a {
  display: inline-block;
}
.news_wrap .btn_wrapper .btn_main {
  width: 300px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px ) {
  .news_wrap {
    background-position: center right;
  }
}

.news_list .item {
  display: flex;
  padding: 8px;
  margin-bottom: 25px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.news_list .item .img_wrapper {
  position: relative;
  width: 47%;
}
.news_list .item .img_wrapper .img {
  width: 100%;
  padding: 0;
  padding-top: 71.0526315789%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.news_list .item .img_wrapper .tag {
  position: absolute;
  top: 18px;
  left: -2px;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 0;
  box-shadow: 1px 1px 5px #8d8d8d;
}
.news_list .item .content {
  position: relative;
  width: 53%;
  padding: 15px 0px 15px 30px;
}
.news_list .item .content .date {
  color: #b5b5b6;
  font-size: 85%;
}
.news_list .item .content .title {
  color: #806D78;
  font-size: 20px;
  overflow: hidden;
  line-height: 1.5em;
  height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.news_list .item .content .desc {
  color: #B08BAC;
  letter-spacing: 1px;
  overflow: hidden;
  line-height: 1.5em;
  height: 6em;
  white-space: normal;
  text-overflow: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news_list .item .content .more {
  position: absolute;
  bottom: 8px;
  right: 0;
  display: inline-block;
  padding: 2px 18px;
  border: 1px solid #B08BAC;
  border-radius: 20px;
  -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;
}
.news_list .item .content .more a {
  color: #B08BAC;
}
.news_list .item .content .more:hover {
  background-color: #B08BAC;
}
.news_list .item .content .more:hover a {
  color: white;
}
@media (max-width: 767px ) {
  .news_list .item {
    flex-direction: column;
  }
  .news_list .item .img_wrapper, .news_list .item .content {
    width: 100%;
  }
  .news_list .item .content {
    padding: 8px;
  }
  .news_list .item .content .desc {
    overflow: hidden;
    line-height: 1.5em;
    height: 3em;
    white-space: normal;
    text-overflow: initial;
    -webkit-line-clamp: 2;
  }
  .news_list .item .content .more {
    position: relative;
    bottom: unset;
    right: unset;
    margin-top: 8px;
  }
}

/* 內頁樣式
======================= */
.newsi {
  padding: 0;
  padding-bottom: 80px;
}
.newsi .title {
  margin: 10px auto;
  text-align: center;
  color: #806D78;
  font-size: 32px;
  font-weight: 700;
}
.newsi .date {
  color: #b5b5b6;
  font-size: 85%;
  padding-left: 8px;
  letter-spacing: 1px;
}
@media (max-width: 767px ) {
  .newsi .title {
    font-size: 26px;
  }
}

.artc_share_wrap {
  padding: 12px 8px;
  color: #B08BAC;
}
.artc_share_wrap .share_ic_wrap {
  display: inline-block;
}
.artc_share_wrap .share_ic_wrap li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  margin-left: 6px;
  font-size: 15px;
}
.artc_share_wrap .share_ic_wrap li:nth-child(1) {
  background-color: #3c5a99;
}
.artc_share_wrap .share_ic_wrap li:nth-child(2) {
  background-color: #00b900;
}
.artc_share_wrap .share_ic_wrap li:nth-child(3) {
  background: #fbe18a;
  background: linear-gradient(45deg, #fbe18a 0%, #fcbb45 20%, #f75274 37%, #d53692 52%, #8f39ce 73%, #5b4fe9 100%);
}
.artc_share_wrap .share_ic_wrap li:nth-child(4) {
  background-color: #33ccff;
}
.artc_share_wrap .share_ic_wrap li:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.artc_share_wrap .share_ic_wrap li i {
  font-size: 22px;
}
.artc_share_wrap .share_ic_wrap li a {
  color: white;
}

/* course common
======================= */
.coursel {
  position: relative;
}
.coursel .btn_wrapper {
  margin-top: 40px;
  text-align: center;
}
.coursel .btn_wrapper a {
  display: inline-block;
}
.coursel .btn_wrapper .btn_main {
  width: 300px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 767px ) {
  .coursel .btn_wrapper {
    margin-top: 30px;
  }
}

/* Bg Images
======================= */
.bg_top {
  position: absolute;
  width: 100%;
  padding: 0;
  padding-top: 20.3125%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  z-index: -1;
}

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

/* Sidebar
======================= */
.course_sidebar .sidebar_header {
  content: "";
  background-image: url(../images/icons2.png);
  width: 260px;
  height: 69px;
  background-position: 0px -440px;
  background-size: 600px auto;
}

/* Course List
======================= */
.course_wrap {
  padding-bottom: 80px;
}
@media (max-width: 767px ) {
  .course_wrap {
    padding-bottom: 0;
  }
}

.coursel_wrap .title_wrap {
  margin-bottom: 30px;
}
.coursel_wrap .title_wrap .main_title {
  font-weight: 700;
}
.coursel_wrap .big_course_item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: white;
}
.coursel_wrap .big_course_item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.coursel_wrap .big_course_item:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.coursel_wrap .big_course_item .img_wrapper {
  position: relative;
}
.coursel_wrap .big_course_item .img_wrapper .img {
  width: 100%;
  padding: 0;
  padding-top: 57.7380952381%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  -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;
}
.coursel_wrap .big_course_item .img_wrapper .tag {
  position: absolute;
  top: 10px;
  left: -2px;
  padding: 12px 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  z-index: 2;
}
.coursel_wrap .big_course_item .img_wrapper .tag:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: url(../images/icons2.png);
  width: 159.25px;
  height: 52px;
  background-position: 0 -175.5px;
  background-size: 390px auto;
}
@media (max-width: 767px ) {
  .coursel_wrap .big_course_item .img_wrapper .tag:before {
    width: 147px;
    height: 48px;
    background-position: 0 -162px;
    background-size: 360px auto;
  }
}
.coursel_wrap .big_course_item .img_wrapper .tag.bg2:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-image: url(../images/icons2.png);
  width: 171.5px;
  height: 56px;
  background-position: -175px -189px;
  background-size: 420px auto;
}
@media (max-width: 767px ) {
  .coursel_wrap .big_course_item .img_wrapper .tag.bg2:before {
    width: 147px;
    height: 48px;
    background-position: -150px -162px;
    background-size: 360px auto;
  }
}
.coursel_wrap .big_course_item .content {
  padding: 8px;
}
.coursel_wrap .big_course_item .content .title {
  color: #806D78;
  overflow: hidden;
  line-height: 1.5em;
  height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.coursel_wrap .big_course_item .content .desc {
  color: #B08BAC;
  overflow: hidden;
  line-height: 1.5em;
  height: 4.5em;
  white-space: normal;
  text-overflow: initial;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.coursel_wrap .big_course_item .bottom_wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coursel_wrap .big_course_item .bottom_wp .price {
  color: #df8c89;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px ) {
  .coursel_wrap .big_course_item .bottom_wp .price {
    font-size: 22px;
  }
  .coursel_wrap .big_course_item .bottom_wp .price.mprice {
    font-size: 20px;
  }
}
.coursel_wrap .big_course_item .bottom_wp .del {
  color: #b5b5b6;
  font-size: 70%;
  font-weight: 300;
  text-decoration: line-through;
}
.coursel_wrap .big_course_item .bottom_wp .btn_more {
  padding: 8px;
  margin-top: 6px;
  width: 120px;
  background-color: #806D78;
  color: white;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 2px;
}
@media (max-width: 767px ) {
  .coursel_wrap {
    margin: 30px 0;
  }
  .coursel_wrap .title_wrap {
    margin-bottom: 15px;
  }
}

.course_item_wp {
  margin: 30px 0;
}
.course_item_wp:after, .course_item_wp:before {
  content: "";
  display: block;
  clear: both;
}
.course_item_wp .item {
  width: 48%;
  float: left;
  margin: 1%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: white;
}
.course_item_wp .item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.course_item_wp .item:hover .img {
  -webkit-transform: scale(1.05);
  -khtml-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.course_item_wp .img_wrapper {
  position: relative;
}
.course_item_wp .img_wrapper .img {
  -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;
  width: 100%;
  padding: 0;
  padding-top: 62.4390243902%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.course_item_wp .content {
  padding: 8px;
}
.course_item_wp .content .title {
  color: #806D78;
  font-weight: bold;
  overflow: hidden;
  line-height: 1.5em;
  height: 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.course_item_wp .content .desc {
  color: #B08BAC;
  overflow: hidden;
  line-height: 1.5em;
  height: 4.5em;
  white-space: normal;
  text-overflow: initial;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.course_item_wp .del {
  color: #b5b5b6;
  font-size: 65%;
  font-weight: 300;
  text-decoration: line-through;
  line-height: 1em;
}
.course_item_wp .bottom_wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course_item_wp .bottom_wp .price {
  color: #df8c89;
  font-size: 24px;
  font-weight: bold;
  line-height: 1em;
}
@media (max-width: 767px ) {
  .course_item_wp .bottom_wp .price {
    font-size: 22px;
  }
}
.course_item_wp .bottom_wp .btn_more {
  background-color: #806D78;
  color: white;
  padding: 8px;
  width: 120px;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 2px;
}
@media (max-width: 767px ) {
  .course_item_wp .item {
    width: 100%;
    float: none;
    margin: 0;
    margin-bottom: 2em;
  }
}

/* 通用 (尚未分類)
======================= */
.bg_hl2nd {
  background-color: #806D78;
}
.bg_hl2nd .main_title {
  color: white;
}

.price_delete {
  text-decoration: line-through;
  color: #b5b5b6;
}

.price_discount {
  color: #df8c89;
  font-size: 140%;
  font-weight: 700;
}

.title_main {
  color: #806D78;
}

/* 最上方圖片owl
======================= */
.crsl_course_img_wrapper {
  position: relative;
  margin-bottom: 10px;
}
.crsl_course_img_wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200px;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  /* IE6-9 */
}
.crsl_course_img_wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  background: -moz-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  /* IE6-9 */
}
.crsl_course_img_wrapper .owl-dots {
  text-align: center;
  margin-top: 0px;
  width: 100%;
}
.crsl_course_img_wrapper .owl-dots .owl-dot {
  display: inline-block;
}
.crsl_course_img_wrapper .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px 1px;
  background: transparent;
  border: 1px solid #806D78;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.crsl_course_img_wrapper .owl-dots .owl-dot.active span, .crsl_course_img_wrapper .owl-dots .owl-dot:hover span {
  background-color: #806D78;
}
.crsl_course_img_wrapper .owl-dots {
  width: 100%;
}
.crsl_course_img_wrapper .owl-dots .owl-dot span {
  width: 28px;
  height: 6px;
  margin: 0 4px;
}
@media (max-width: 767px ) {
  .crsl_course_img_wrapper .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
  }
}
@media (max-width: 991px ) {
  .crsl_course_img_wrapper:before, .crsl_course_img_wrapper:after {
    width: 80px;
  }
}
@media (max-width: 767px ) {
  .crsl_course_img_wrapper:before, .crsl_course_img_wrapper:after {
    width: 50px;
  }
}

/* main Content
======================= */
.courseIn_wrap {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 767px ) {
  .courseIn_wrap {
    padding: 20px 0;
  }
}
.courseIn_wrap .course_content .title {
  padding: 20px;
  text-align: center;
}
.courseIn_wrap .course_content .title h2 {
  color: #806D78;
  font-size: 40px;
  letter-spacing: 2px;
}
.courseIn_wrap .course_content .title p {
  color: #B08BAC;
  padding: 20px;
}
.courseIn_wrap .course_content .course_info {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B08BAC;
}
.courseIn_wrap .course_content .course_info li {
  width: 25%;
  list-style: none;
  text-align: center;
}
.courseIn_wrap .course_content .course_info li p:nth-child(2) {
  letter-spacing: 1px;
}
.courseIn_wrap .course_content .course_info .b_fonts {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.1em;
}
.courseIn_wrap .course_content .course_info .b_fonts .price_discount {
  font-size: 100%;
}
.courseIn_wrap .course_content .course_info .b_fonts .price_delete {
  font-size: 68%;
}
@media (max-width: 767px ) {
  .courseIn_wrap .course_content .course_info {
    flex-wrap: wrap;
  }
  .courseIn_wrap .course_content .course_info li {
    width: 50%;
    margin-bottom: 10px;
  }
}
.courseIn_wrap .course_content .course_title {
  position: relative;
  padding-left: calc(40px + 8px);
  color: #806D78;
  font-weight: 700;
}
.courseIn_wrap .course_content .course_title:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  background-image: url(../images/icons2.png);
  width: 40px;
  height: 40px;
  background-position: 0 -90px;
  background-size: 300px auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px ) {
  .courseIn_wrap .course_content .course_title:before {
    width: 40px;
    height: 40px;
    background-position: 0 -90px;
    background-size: 300px auto;
  }
}
@media (max-width: 767px ) {
  .courseIn_wrap .course_content .course_title {
    padding-left: calc(40px + 8px);
    font-size: 22px;
  }
  .courseIn_wrap .course_content .course_title:before {
    top: -4px;
  }
}
.courseIn_wrap .course_content .course_block {
  margin-bottom: 30px;
}
.courseIn_wrap .course_content .course_block .editor {
  padding-left: calc(40px + 8px);
}
.courseIn_wrap .course_content .course_block .editor p {
  color: #806D78;
}
.courseIn_wrap .course_table_wrap table.form_table {
  text-align: center;
  border-top: 0;
}
.courseIn_wrap .course_table_wrap table.form_table thead th, .courseIn_wrap .course_table_wrap table.form_table thead td, .courseIn_wrap .course_table_wrap table.form_table tfoot th, .courseIn_wrap .course_table_wrap table.form_table tfoot td {
  padding: 8px;
  background-color: transparent;
  font-size: inherit;
}
@media (max-width: 991px ) {
  .courseIn_wrap .course_table_wrap table.form_table {
    text-align: left;
  }
}
.courseIn_wrap .course_table_wrap .caret_select {
  width: 100%;
}
.courseIn_wrap .course_table_wrap .caret_select .select {
  width: 100%;
}
.courseIn_wrap .course_table_wrap .btn_plus {
  border-radius: 4px;
  padding: 10px;
  letter-spacing: 0;
}
.courseIn_wrap .course_table_wrap .btn_plus:focus {
  color: white;
}
.courseIn_wrap .course_table_wrap .tag {
  border-radius: 0;
  padding: 6px 5px;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 767px ) {
  .courseIn_wrap .course_table_wrap .tag {
    font-size: 12px;
  }
}
.courseIn_wrap .course_table_wrap .footer {
  text-align: center;
}
.courseIn_wrap .course_table_wrap .footer .btn_main {
  border-radius: 8px;
  letter-spacing: 2px;
}

/* 加價購
======================= */
.course_freegift_wrap {
  padding-top: 12px;
}
.course_freegift_wrap .grid_freegift {
  display: flex;
  padding: 20px 8px;
}
.course_freegift_wrap .grid_freegift .item {
  width: 19%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.course_freegift_wrap .grid_freegift .item .content {
  padding: 8px 0;
}
.course_freegift_wrap .grid_freegift .item .content .title {
  padding: 0;
  overflow: hidden;
  line-height: 1.5em;
  height: 3em;
  white-space: normal;
  text-overflow: initial;
  color: #806D78;
  font-weight: 700;
  text-align: left;
}
.course_freegift_wrap .grid_freegift .item .content .btn_wr {
  margin-top: 8px;
}
.course_freegift_wrap .grid_freegift .item .content .btn_main {
  border-radius: 8px;
  color: white;
  width: 100%;
  padding: 12px;
  letter-spacing: 2px;
}
@media (max-width: 991px ) {
  .course_freegift_wrap .grid_freegift {
    flex-wrap: wrap;
  }
  .course_freegift_wrap .grid_freegift .item {
    width: 47%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 3%;
  }
}
@media (max-width: 767px ) {
  .course_freegift_wrap .grid_freegift {
    flex-direction: column;
  }
  .course_freegift_wrap .grid_freegift .item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}

/* Modal
======================= */
.modal_freegift {
  max-width: 380px;
}
.modal_freegift .crsl_freegift_img_wrapper {
  overflow: hidden;
}
.modal_freegift .crsl_freegift_img_wrapper .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;
}
.modal_freegift .modal-content {
  border-radius: 0;
}
.modal_freegift .modal-content .title {
  color: #806D78;
  font-weight: 700;
}
.modal_freegift .modal-content .desc {
  color: #B08BAC;
  padding: 8px 0;
}
.modal_freegift .modal-footer {
  border-top: 0;
  padding-top: 0;
}
.modal_freegift .modal-footer .item {
  line-height: 2em;
}
.modal_freegift .modal-footer .item p {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}
.modal_freegift .modal-footer .item .input-number {
  width: calc(100% - 85px);
  display: inline-block;
  vertical-align: middle;
}
.modal_freegift .modal-footer .btn_main {
  border-radius: 8px;
  width: 100%;
  letter-spacing: 2px;
}
.modal_freegift .btn-prev, .modal_freegift .btn-next, .modal_freegift .btn-close {
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  color: white;
}
.modal_freegift .btn-prev {
  left: -40px;
  top: 50%;
}
.modal_freegift .btn-next {
  right: -40px;
  top: 50%;
}
.modal_freegift .btn-close {
  bottom: -35px;
  left: calc(50% - 25px);
}
@media (max-width: 767px ) {
  .modal_freegift .btn_wp {
    display: flex;
    justify-content: space-between;
    display: none;
  }
  .modal_freegift .btn-prev, .modal_freegift .btn-next, .modal_freegift .btn-close {
    position: relative;
    color: #B08BAC;
    left: unset;
    right: unset;
    bottom: unset;
    top: unset;
  }
}

.modal_addPurchase {
  max-width: 1200px;
}
.modal_addPurchase .grid_basic {
  display: flex;
}
.modal_addPurchase .grid_addPrd {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
}
.modal_addPurchase .grid_addPrd .item {
  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;
}
@media (max-width: 575px ) {
  .modal_addPurchase .grid_addPrd .item.col-xxs-6:nth-child(2n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xxs-4:nth-child(3n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xxs-3:nth-child(4n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xxs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .modal_addPurchase .grid_addPrd .item.col-xs-6:nth-child(2n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xs-4:nth-child(3n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xs-3:nth-child(4n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-xs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .modal_addPurchase .grid_addPrd .item.col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-sm-4:nth-child(3n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-sm-3:nth-child(4n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-sm-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .modal_addPurchase .grid_addPrd .item.col-md-6:nth-child(2n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-md-4:nth-child(3n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-md-3:nth-child(4n+1) {
    clear: left;
  }
  .modal_addPurchase .grid_addPrd .item.col-md-2:nth-child(6n+1) {
    clear: left;
  }
}
.modal_addPurchase .grid_addPrd .img_wrapper {
  overflow: hidden;
  position: relative;
}
.modal_addPurchase .grid_addPrd .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;
}
.modal_addPurchase .grid_addPrd .footer {
  padding: 8px 0;
}
.modal_addPurchase .grid_addPrd .footer .btn_main {
  margin-top: 8px;
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 991px ) {
  .modal_addPurchase .grid_addPrd {
    flex-wrap: wrap;
  }
  .modal_addPurchase .grid_addPrd .item {
    width: 50%;
  }
}

.modal_reginInfo .divide_text {
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
}
.modal_reginInfo .divide_text:before {
  left: 70px;
}
.modal_reginInfo .modal-footer .btn_main {
  border-radius: 0;
  width: 100%;
}

/* 更多課程 owl
======================= */
.crsl_more_course_wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.crsl_more_course_wrapper .course_item_wp .item {
  width: 100%;
  float: none;
  margin: 0;
}
@media (max-width: 767px ) {
  .crsl_more_course_wrapper {
    margin-top: 10px;
  }
}

/* 孕的體驗內頁樣式 (預約)
======================= */
.reserve_wrap .basic_block {
  border-top: 20px solid #f3b2c1;
}

/* 預約 & 報名 共用樣式
======================= */
.courseIn_wrap .grid_addPrd {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
}
.courseIn_wrap .grid_addPrd .item {
  -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;
  padding: 8px;
  text-align: left;
  width: 20%;
}
@media (max-width: 575px ) {
  .courseIn_wrap .grid_addPrd .item.col-xxs-6:nth-child(2n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xxs-4:nth-child(3n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xxs-3:nth-child(4n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xxs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 576px ) and (max-width: 767px ) {
  .courseIn_wrap .grid_addPrd .item.col-xs-6:nth-child(2n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xs-4:nth-child(3n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xs-3:nth-child(4n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-xs-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 768px ) and (max-width: 991px ) {
  .courseIn_wrap .grid_addPrd .item.col-sm-6:nth-child(2n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-sm-4:nth-child(3n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-sm-3:nth-child(4n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-sm-2:nth-child(6n+1) {
    clear: left;
  }
}
@media (min-width: 992px ) {
  .courseIn_wrap .grid_addPrd .item.col-md-6:nth-child(2n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-md-4:nth-child(3n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-md-3:nth-child(4n+1) {
    clear: left;
  }
  .courseIn_wrap .grid_addPrd .item.col-md-2:nth-child(6n+1) {
    clear: left;
  }
}
.courseIn_wrap .grid_addPrd .img_wrapper {
  overflow: hidden;
  position: relative;
}
.courseIn_wrap .grid_addPrd .title {
  line-height: 1.5;
}
.courseIn_wrap .grid_addPrd .content .price_discount {
  padding-top: 4px;
}
.courseIn_wrap .grid_addPrd .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;
}
.courseIn_wrap .grid_addPrd .footer {
  text-align: left;
  padding: 4px 0;
  border-top: 0;
}
.courseIn_wrap .grid_addPrd .footer .btn_main {
  margin-top: 8px;
  width: 100%;
  border-radius: 4px;
}
.courseIn_wrap .m_show {
  display: none;
}
@media (max-width: 991px ) {
  .courseIn_wrap .m_show {
    display: block;
  }
}
@media (max-width: 991px ) {
  .courseIn_wrap .m_hidden {
    display: none;
  }
}

/* ================
   Assign Variables */
:root {
  --bg-color: hsl(130, 20%, 80%);
  --calendar-bg-color: hsl(130, 20%, 100%);
  --shade-color: hsla(150, 50%, 20%, 0.1);
  --text-color: hsl(280, 30%, 20%);
  --headline-color: hsl(0, 0%, 100%);
  --rule-color: hsla(0, 0%, 50%, 0);
  --primary-color: hsl(150, 50%, 50%);
  --secondary-color: hsl(280, 50%, 50%);
}

/* ===========================
   Setup Mixins/Helper Classes */
/* ==========
   Setup Page */
.calendar_wp {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.calendar_wp .calender_note {
  border-bottom: 2px solid #c9caca;
}
.calendar_wp .calender_note:after, .calendar_wp .calender_note:before {
  content: "";
  display: block;
  clear: both;
}
.calendar_wp .calender_note .btn_wp {
  padding: 24px 16px;
  display: flex;
  justify-content: space-between;
}
.calendar_wp .calender_note .btn_wp .prev, .calendar_wp .calender_note .btn_wp .next {
  color: #595757;
}
.calendar_wp .calender_note .btn_wp .prev i, .calendar_wp .calender_note .btn_wp .next i {
  padding: 4px 8px;
  border: 1px solid #595757;
  font-weight: bold;
}
.calendar_wp .calender_note .btn_wp .year_m {
  color: #f3b2c1;
  font-size: 200%;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 4px;
}
@media (max-width: 767px ) {
  .calendar_wp {
    margin: 3rem 0;
  }
  .calendar_wp .calender_note .btn_wp {
    margin-bottom: 10px;
    text-align: center;
  }
}

/* ================
   Calendar Styling */
.main_calendar {
  position: relative;
  margin: 1rem;
  overflow: hidden;
  max-width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.main_calendar ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-shrink: 0;
  flex-grow: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  line-height: 1;
}
.main_calendar ol li {
  width: calc(100% / 7);
  padding: 1rem;
  border-right: 10px solid #fff;
}
.main_calendar ol li:nth-child(7n) {
  border-right: 0;
}
.main_calendar ol li.active {
  background-color: rgba(243, 178, 193, 0.2);
}
.main_calendar ol li.active .today_tag {
  display: block;
}
@media (max-width: 767px ) {
  .main_calendar ol {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .main_calendar ol li {
    width: calc(100%);
  }
}
.main_calendar button {
  display: block;
  padding: 16px 8px;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #4d4d4d;
  margin-bottom: 12px;
  color: #4d4d4d;
}
.main_calendar button:nth-child(8) {
  margin-bottom: 0;
}
.main_calendar button:hover {
  background-color: #f3b2c1;
  border-color: #f3b2c1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.main_calendar button[disabled] {
  color: #b5b5b6;
  border: 1px solid white;
}
.main_calendar button[disabled]:hover {
  background-color: transparent;
  box-shadow: unset;
}
.main_calendar .chosen {
  background-color: #e87c95;
  border-color: transparent;
  color: white;
}
.main_calendar .day_info_wp {
  height: 110px;
}
.main_calendar .time_btn_wp {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.main_calendar .date {
  padding: 8px 0;
  font-size: 36px;
  font-weight: bold;
}
.main_calendar .today_tag {
  display: none;
  padding: 12px 0;
  background-color: #f3b2c1;
  color: white;
  font-size: 20px;
  text-align: center;
}

.space_wrap {
  position: relative;
}
.space_artc {
  color: #B08BAC;
}
.space_artc .title {
  color: #806D78;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.space_artc .cellout_link {
  margin: 40px auto;
}
.space_artc .space_secone .title {
  color: #806D78;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
.space_artc .space_secone .item {
  padding: 16px;
  color: #b28dae;
  margin: 6px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
@media (min-width: 576px) {
  .space_artc .space_secone .item.col-sm-6 {
    flex: 0 0 47.5%;
  }
}
.space_artc .space_secone .item a {
  color: #b28dae;
}
.space_artc .space_secone .item .img {
  width: 60px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.space_artc .space_secone .item .img.ic1 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: 0 0;
  background-size: 360px auto;
}
.space_artc .space_secone .item .img.ic2 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: -66px 0;
  background-size: 360px auto;
}
.space_artc .space_secone .item .img.ic3 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: -132px 0;
  background-size: 360px auto;
}
.space_artc .space_secone .item .img.ic4 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: 0 -66px;
  background-size: 360px auto;
}
.space_artc .space_secone .item .img.ic5 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: -66px -66px;
  background-size: 360px auto;
}
.space_artc .space_secone .item .img.ic6 {
  content: "";
  background-image: url(../images/brand/manor_images.png);
  background-size: 600px auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  background-position: -132px -66px;
  background-size: 360px auto;
}
.space_artc .space_secone .item .content {
  width: calc(100% - 100px);
  display: inline-block;
  vertical-align: middle;
}
.space_artc .space_secone .item .content h3 {
  font-weight: 700;
}
.space_artc .space_secone .item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #feecec;
}
@media (max-width: 767px ) {
  .space_artc .space_secone .title {
    margin-bottom: 0px;
  }
  .space_artc .space_secone .item {
    padding: 8px;
  }
  .space_artc .space_secone .item .content {
    width: calc(100% - 80px);
  }
}
.space_artc .space_sectwo, .space_artc .space_secthr {
  margin-top: 30px;
}
.space_artc .space_sectwo ol > li, .space_artc .space_secthr ol > li {
  margin-bottom: 20px;
}
.space_artc .space_sectwo ol > li:last-child, .space_artc .space_secthr ol > li:last-child {
  margin-bottom: 0;
}
.space_artc .space_secfor {
  margin-bottom: 60px;
}
.space_artc .space_secfor .block {
  background-color: rgba(128, 109, 120, 0.1);
  padding: 60px;
  color: #B08BAC;
}
.space_artc .space_secfor .block .bold {
  font-size: 30px;
  font-weight: bold;
}
.space_artc .space_secfor .block p {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.4em;
  padding: 20px 0;
}
@media (max-width: 767px ) {
  .space_artc .title {
    font-size: 28px;
    margin-bottom: 0;
    padding-left: 8px;
  }
  .space_artc .cellout_link {
    margin: 20px auto;
  }
  .space_artc .space_sectwo, .space_artc .space_secthr {
    margin-top: 10px;
  }
  .space_artc .space_secfor .title {
    padding-left: 0;
  }
  .space_artc .space_secfor .block {
    padding: 20px;
  }
  .space_artc .space_secfor .block .bold {
    font-size: 24px;
  }
  .space_artc .space_secfor .block p {
    font-size: 20px;
  }
}

.space_anchor {
  color: #806D78;
  text-align: center;
  margin: 40px auto;
}
.space_anchor li {
  position: relative;
  color: #806D78;
  display: inline-block;
  padding: 4px 8px;
  font-weight: 700;
  letter-spacing: 2px;
}
.space_anchor li:before {
  content: "";
  position: absolute;
  right: -4px;
  top: 25%;
  height: 50%;
  width: 2px;
  background-color: #806D78;
}
.space_anchor li:last-child:before {
  display: none;
}
.space_anchor li a {
  color: #806D78;
  font-size: 20px;
}
@media (max-width: 767px ) {
  .space_anchor {
    margin: 20px auto;
  }
  .space_anchor li {
    padding: 4px;
  }
  .space_anchor li:before {
    right: -2px;
  }
  .space_anchor li a {
    font-size: 16px;
  }
}

.detect_wrap {
  position: relative;
  padding-bottom: 60px;
}
.detect_wrap .title {
  margin-bottom: 30px;
  color: #806D78;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}
.detect_wrap .sub_title {
  margin-top: 20px;
  color: #B08BAC;
  letter-spacing: 2px;
  text-align: center;
}
.detect_wrap .img_wrapper {
  padding: 15px 0;
  text-align: center;
}
.detect_wrap .img_wrapper.center {
  text-align: left;
  padding-left: 25%;
}
@media (max-width: 1199px ) {
  .detect_wrap .img_wrapper.center {
    padding-left: 21%;
  }
}
@media (max-width: 991px ) {
  .detect_wrap .img_wrapper.center {
    padding-left: 14%;
  }
  .detect_wrap .img_wrapper.center .img {
    max-width: 350px;
  }
}
@media (max-width: 767px ) {
  .detect_wrap .img_wrapper.center {
    padding-left: 10%;
  }
  .detect_wrap .img_wrapper.center .img {
    max-width: 270px;
  }
}
@media (max-width: 380px) {
  .detect_wrap .img_wrapper.center {
    padding-left: 4%;
  }
}
.detect_wrap .detect_ic_wrap .item {
  padding: 20px 16px;
  border: 8px solid #efefef;
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: center;
}
.detect_wrap .detect_ic_wrap .item .img {
  width: 180px;
}
.detect_wrap .detect_ic_wrap .item p {
  color: #b28dae;
  font-size: 18px;
  letter-spacing: 2px;
}
.detect_wrap .detect_artc {
  margin-top: 30px;
}
.detect_wrap .detect_artc p {
  color: #B08BAC;
}
.detect_wrap .btn_wrapper {
  margin-top: 20px;
  text-align: center;
}
.detect_wrap .btn_wrapper a {
  display: inline-block;
}
.detect_wrap .btn_wrapper .btn_main {
  width: 300px;
  font-size: 30px;
}
.detect_wrap .artc_share_wrap {
  margin: 20px 0;
}
@media (max-width: 767px ) {
  .detect_wrap {
    padding-bottom: 20px;
  }
  .detect_wrap .title {
    font-size: 30px;
  }
  .detect_wrap .sub_title {
    margin-top: 0px;
    font-size: 24px;
  }
  .detect_wrap .btn_wrapper {
    margin-top: 12px;
  }
  .detect_wrap .btn_wrapper .btn_main {
    width: 250px;
    font-size: 24px;
  }
  .detect_wrap .artc_share_wrap {
    margin: 10px 0;
  }
}

/* Contact Form
----------------- */
.c_form_wrapper {
  padding: 60px 0;
  background-image: url("../images/contact_bg.jpg");
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}
.c_form_wrapper .form_column .item {
  padding: 4px;
}
.c_form_wrapper .form_column .title {
  width: calc(100%);
  padding: 8px 16px;
}
.c_form_wrapper .form_column .content {
  width: calc(100%);
}
.c_form_wrapper .form_column input, .c_form_wrapper .form_column textarea, .c_form_wrapper .form_column select {
  display: block;
  width: 100%;
  border-radius: 25px;
  background-color: rgba(176, 139, 172, 0.1);
}
.c_form_wrapper .form_column input {
  height: calc(2em + 12px);
}
.c_form_wrapper .btn_wrapper {
  padding-right: 0;
  padding-left: 0;
  margin: 10px auto;
}
.c_form_wrapper .note {
  color: #B08BAC;
  letter-spacing: 2px;
  padding-left: 4px;
}
@media (max-width: 767px ) {
  .c_form_wrapper {
    padding: 30px 0;
    background-position: right center;
  }
}

/* Contact Info
----------- */
ul.c_info {
  padding: 0;
  height: 180px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  background-color: #806D78;
}
ul.c_info li {
  width: 20%;
  display: inline-block;
  position: relative;
  padding: 10px 40px;
  background-color: #806D78;
  color: white;
}
@media (max-width: 767px ) {
  ul.c_info {
    height: auto;
    display: block;
    align-items: unset;
  }
  ul.c_info li {
    width: 100%;
    display: block;
  }
}

/* Contact Map
-------------- */
.c_map {
  height: 500px;
}

/* Contact
-------------- */
/* QR Code
----------------- */
/* mmbr
------------------ */
/* header
------------ */
.mmbr_header_wrap {
  padding: 30px 0;
}

.mmbr_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mmbr_header .mmbr_logo {
  width: auto;
  content: "";
  background-image: url(../images/icons2.png);
  width: 239px;
  height: 120px;
  background-position: 0 -55px;
  background-size: 600px auto;
}
@media (max-width: 1199px ) {
  .mmbr_header .mmbr_logo {
    width: 215.1px;
    height: 108px;
    background-position: 0 -49.5px;
    background-size: 540px auto;
  }
}
@media (max-width: 767px ) {
  .mmbr_header .mmbr_logo {
    width: 179.25px;
    height: 90px;
    background-position: 0 -41.25px;
    background-size: 450px auto;
  }
}
.mmbr_header .page_name {
  color: #806D78;
  font-weight: bold;
  text-align: right;
  letter-spacing: 2px;
}
.mmbr_header .page_name .p1 {
  font-size: 30px;
  line-height: 1.2em;
}
.mmbr_header .page_name .p2 {
  font-size: 60px;
  line-height: 1em;
}
@media (max-width: 767px ) {
  .mmbr_header {
    justify-content: center;
    flex-direction: column;
  }
  .mmbr_header .mmbr_logo {
    margin-bottom: 10px;
  }
  .mmbr_header .page_name {
    color: #806D78;
    font-weight: bold;
    text-align: right;
    letter-spacing: 2px;
  }
  .mmbr_header .page_name .p1 {
    font-size: 30px;
    line-height: 1.2em;
  }
  .mmbr_header .page_name .p2 {
    font-size: 50px;
  }
}

/* breadcrumb
======================= */
.mmbr .breadcrumb_wrap {
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .mmbr .breadcrumb_wrap {
    justify-content: center;
  }
}

/* Sidebar
======================= */
.mmbr_sidebar .sidebar_header {
  content: "";
  background-image: url(../images/icons2.png);
  width: 260px;
  height: 69px;
  background-position: 0px -515px;
  background-size: 600px auto;
}

/* block
======================= */
.mmbr {
  position: relative;
  padding-bottom: 60px;
}
.mmbr .breadcrumb {
  padding-right: 8px;
}
.mmbr .basic_block {
  border-radius: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-top: 20px solid #806D78;
}
.mmbr .basic_block:after, .mmbr .basic_block:before {
  content: "";
  display: block;
  clear: both;
}
.mmbr .basic_block .form_column .title {
  text-align: left;
}
@media (max-width: 767px ) {
  .mmbr .basic_block .footer {
    text-align: center;
  }
}
.mmbr .level {
  margin: 20px auto;
  line-height: 2em;
}
.mmbr .level p {
  color: #806D78;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.mmbr .level p span {
  font-weight: 400;
}
.mmbr .level .lever_marker {
  padding: 8px 12px;
  margin-left: 8px;
  color: white;
  background-color: #df8c89;
  font-size: 16px;
}
@media (max-width: 767px ) {
  .mmbr .level {
    margin: 0;
    margin-bottom: 8px;
    line-height: 2.5em;
  }
  .mmbr .level p {
    display: block;
    font-size: 20px;
  }
  .mmbr .level .lever_marker {
    margin-left: 0;
    font-size: 14px;
  }
}
.mmbr .btn_main {
  width: 200px;
}
@media (max-width: 767px ) {
  .mmbr .btn_main {
    width: auto;
  }
}

.mmbr_home {
  padding: 16px 8px;
}
.mmbr_home:after, .mmbr_home:before {
  content: "";
  display: block;
  clear: both;
}
.mmbr_home .mh_left {
  float: left;
  width: 70%;
  padding: 0;
}
.mmbr_home .mh_left .item {
  padding: 0;
}
.mmbr_home .mh_right {
  float: right;
  width: 30%;
  padding: 8px 16px;
}
@media (max-width: 767px ) {
  .mmbr_home .mh_left, .mmbr_home .mh_right {
    float: none;
    width: 100%;
  }
}

/* Coupon
------------ */
/* commpn */
.coupon_denomination {
  text-align: center;
  padding: 8px;
  background-color: #df8c89;
  color: white;
  font-size: 140%;
  font-weight: bold;
}

/* table */
/* pointl
------------ */
.point_label {
  margin: 20px auto;
  color: #806D78;
}
.point_label span {
  font-weight: bold;
}

.p_title {
  display: inline;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .p_title {
    display: block;
    margin-right: 0;
  }
}

/* order (experiance)
------------ */
.order_remark {
  margin-top: 40px;
}
.order_remark p {
  color: #806D78;
}
.order_remark p + p {
  margin-top: 20px;
}

.expi_table .item p {
  color: #b5b5b6;
}
.expi_table .item .title {
  margin-left: 8px;
  display: inline-block;
  color: #806D78;
  font-weight: 700;
}

.btn_cancel {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: #806D78;
}
.btn_cancel i {
  color: #fff;
}

/* cart
------------------ */
/* header
------------ */
.cart_header_wrap {
  padding: 30px 0;
}

.cart_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart_header .cart_logo {
  width: auto;
  content: "";
  background-image: url(../images/icons2.png);
  width: 239px;
  height: 120px;
  background-position: 0 -55px;
  background-size: 600px auto;
}
@media (max-width: 1199px ) {
  .cart_header .cart_logo {
    width: 215.1px;
    height: 108px;
    background-position: 0 -49.5px;
    background-size: 540px auto;
  }
}
@media (max-width: 767px ) {
  .cart_header .cart_logo {
    width: 179.25px;
    height: 90px;
    background-position: 0 -41.25px;
    background-size: 450px auto;
  }
}
.cart_header .cart_stepper {
  width: 350px;
}
.cart_header .cart_stepper .title {
  padding-right: 8px;
  color: #806D78;
  font-weight: bold;
  text-align: right;
  letter-spacing: 2px;
  font-size: 36px;
  line-height: 1.5em;
}
@media (max-width: 767px ) {
  .cart_header {
    justify-content: center;
    flex-direction: column;
  }
  .cart_header .cart_logo {
    margin-bottom: 10px;
  }
}

/* block
------------ */
.cart .basic_block {
  border-top: 0;
}
.cart .basic_block .header {
  border-bottom: 0;
  color: white;
}
.cart .basic_block .header h4 {
  font-weight: 700;
}
.cart .basic_block .header.cl5 {
  border: 2px solid #f3b2c1;
  background-color: #f3b2c1;
}
.cart .basic_block .header.cl4 {
  border: 2px solid #bfbf8b;
  background-color: #bfbf8b;
}
.cart .freegift_wrap {
  padding-left: 0;
}
.cart .total_wrap {
  padding-right: 0;
}
.cart .cart_list, .cart .freegift_list {
  background-color: #f7f8f8;
}
.cart .cart_list tbody, .cart .freegift_list tbody {
  color: #898989;
}
.cart .cart_footer {
  background-color: #f7f8f8;
  color: #806D78;
}
.cart .cart_footer hr {
  margin: 8px 0;
  border-color: #e1e1e1;
}
.cart .cart_footer .get_point {
  color: #df8c89;
}
.cart .cart_total_s {
  margin-top: 1em;
}
.cart .cart_total_s small {
  font-weight: 700;
}
.cart .cart_total_s .number {
  font-size: 80%;
}
.cart .cart_total small {
  font-weight: 700;
}
.cart .cart_total .number {
  color: #df8c89;
  font-weight: 700;
}
.cart .footer {
  padding: 16px 0;
  background-color: #f7f8f8;
  text-align: left;
  color: #806D78;
}
.cart .prd_title {
  color: #806D78;
  font-weight: 700;
  letter-spacing: 1px;
}
.cart .plus {
  color: #df8c89;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.cart .cart_subtotal.price_del {
  font-size: 85%;
  text-decoration: line-through;
}
.cart .cart_subtotal.price {
  color: #df8c89;
  font-weight: 700;
}
.cart .coupon_input {
  display: inline-block;
  margin-left: 8px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid rgba(128, 109, 120, 0.5);
}
.cart .buy_info_warp {
  background-color: #f7f8f8;
}
.cart .buy_info_warp .cube-header {
  text-align: center;
  background-color: rgba(128, 109, 120, 0.1);
  color: #806D78;
  border-radius: 0;
  padding: 8px;
}
.cart .buy_info_warp .orderer_info {
  color: #806D78;
}
.cart .buy_info_warp .title {
  color: #806D78;
}
.cart .buy_info_warp .form_column input, .cart .buy_info_warp .form_column textarea, .cart .buy_info_warp .form_column .caret_select {
  border: 1px solid rgba(128, 109, 120, 0.7);
  background-color: transparent;
}
.cart .buy_info_warp .receipt {
  color: #806D78;
  letter-spacing: 1px;
}
.cart .buy_info_warp .receipt .checkbox-inline > .item > label, .cart .buy_info_warp .receipt .radio-inline > .item > label {
  width: 30%;
  display: inline-block;
}
.cart .buy_info_warp .receipt input.inline_input {
  border: 1px solid rgba(128, 109, 120, 0.7);
  background-color: transparent;
}
.cart .buy_info_warp .receipt .inline_input {
  display: inline-block;
  width: calc(100% - 30% - 8px);
}
.cart .buy_info_warp .receipt .inline_input.uniform input {
  display: inline-block;
  border: 1px solid rgba(128, 109, 120, 0.7);
  background-color: transparent;
}
.cart .buy_info_warp .receipt .inline_input.uniform input:nth-child(1) {
  width: 40%;
}
.cart .buy_info_warp .receipt .inline_input.uniform input:nth-child(2) {
  width: calc(100% - 40% - 6px);
}
.cart .cart_footer2 {
  padding: 16px 0;
  text-align: center;
}
.cart .cart_footer2 .btn_main {
  font-size: 18px;
}
.cart .cart_footer2 .remarks {
  margin-top: 12px;
  color: #806D78;
  letter-spacing: 1px;
}
.cart .cart_footer2 .remarks a {
  color: #1d2088;
  text-decoration: underline;
}
@media (max-width: 767px ) {
  .cart .freegift_wrap, .cart .total_wrap {
    padding: 0;
  }
}

/* 購物金折抵 */
.p_wrap {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767px ) {
  .p_wrap {
    display: block;
    margin: 8px 0;
  }
}
.p_wrap .point_tag {
  background: #df8c89;
  padding: 5px;
}

.point_input {
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  border-radius: 0;
  background-color: transparent;
  text-align: center;
  margin-bottom: 3px;
  padding: 3px;
  height: auto !important;
  margin: auto !important;
  width: 100px !important;
  opacity: 1 !important;
  position: relative !important;
}
.point_input:focus {
  border: 0;
  border-bottom: 1px solid #b08bac;
}

.fw-b {
  font-weight: bold;
}

/* 購買完成頁
------------------ */
.section_complete_form {
  position: relative;
  padding: 20px 0;
}
.section_complete_form h2 {
  color: #806D78;
}
.section_complete_form .check {
  color: #806D78;
}
.section_complete_form .btn_main {
  font-size: 18px;
  width: 200px;
}
.section_complete_form .bg {
  position: absolute;
  width: 100%;
  padding: 0;
  padding-top: 11.9791666667%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  background-image: url(../images/cart_complete_bg.png);
  z-index: -1;
}
@media (max-width: 767px ) {
  .section_complete_form .btn_main {
    width: auto;
    font-size: 16px;
  }
  .section_complete_form .bg {
    width: 100%;
    padding: 0;
    padding-top: 20.3125%;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 1;
    z-index: -1;
  }
}

.order_warp .basic_block .block {
  background-color: #f7f8f8;
}
.order_warp .cube-header {
  font-weight: 700;
}
.order_warp .form_column .title {
  text-align: left;
}

/* Footer Archieve Styles
---------------------- */
footer.container-fluid {
  border-top: 1px solid rgba(176, 139, 172, 0.4);
  background-color: #806D78;
  padding: 0px;
}
footer.container-fluid > .container {
  padding: 30px 10px 15px;
}

/* Footer LOGO
-------------- */
.f_logo_wrapper {
  padding: 10px 0;
}

.f_logo {
  content: "";
  background-image: url(../images/icons2.png);
  width: 90px;
  height: 167px;
  background-position: -280px 0;
}
@media (max-width: 767px ) {
  .f_logo {
    margin: 0 auto;
  }
}

/* Footer Menu
------------------ */
.f_menu_wrapper {
  text-align: right;
}
@media (max-width: 767px ) {
  .f_menu_wrapper {
    text-align: center;
  }
}

.f_menu {
  display: inline-block;
  padding: 0 0 10px;
  text-align: left;
}
@media (max-width: 767px ) {
  .f_menu {
    display: none;
  }
}
.f_menu ul {
  list-style: none;
}
.f_menu > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 20px 10px;
  border-left: 1px solid rgba(176, 139, 172, 0.4);
  height: 160px;
}
.f_menu > li:nth-child(1) {
  border-left: 0;
}
.f_menu > li > a {
  font-weight: 700;
  color: white;
}
.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: none;
}
.f_menu i.fa {
  font-size: 50px;
}
@media (max-width: 767px ) {
  .f_menu > li {
    padding: 0 8px 10px;
  }
}

.fm_menu {
  display: none;
  list-style: none;
}
@media (max-width: 767px ) {
  .fm_menu {
    display: block;
    margin-top: 12px;
  }
}
.fm_menu > li {
  display: inline-block;
  width: 32%;
  padding: 0px;
  margin-bottom: 12px;
}
.fm_menu > li:nth-child(2), .fm_menu > li:nth-child(5) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.fm_menu > li > a {
  font-weight: 700;
  color: white;
}

/* Footer INFO
-------------- */
.f_info_ul {
  padding: 15px 0 0;
  color: #B08BAC;
  text-align: center;
}
.f_info_ul li {
  margin: 5px 20px 0 0;
  padding-left: 24px;
}
@media (max-width: 767px ) {
  .f_info_ul {
    padding: 0;
  }
}

/* Footer copyright
-------------- */
.f_copyright {
  background-color: transparent;
  border-top: 1px solid rgba(176, 139, 172, 0.4);
  padding: 10px 8px;
}
.f_copyright p, .f_copyright a {
  color: #B08BAC;
}
@media (max-width: 767px ) {
  .f_copyright {
    text-align: center;
  }
}

/* Footer social
------------------ */
.f_social {
  text-align: right;
}
@media (max-width: 767px ) {
  .f_social {
    text-align: center;
  }
}

.f_social li {
  display: inline-block;
  padding-right: 5px;
}
.f_social li:hover i {
  color: #cfb9cd;
}

.f_social a {
  display: inline-block;
}

.f_social i {
  font-size: 30px;
}

/*.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 - 283px);
}

.search_wrap {
  position: relative;
}
.search_wrap .search_text {
  margin: 20px auto;
}
.search_wrap .result_wrap .item {
  padding: 10px 0;
  border-bottom: 1px solid;
}
.search_wrap .result_wrap .item:last-child {
  border-bottom: 0;
}
.search_wrap .result_wrap .item img {
  width: 150px;
  display: inline-block;
  vertical-align: middle;
}
.search_wrap .result_wrap .item .content {
  display: inline-block;
  width: calc(100% - 255px);
  padding: 8px;
  vertical-align: middle;
}
.search_wrap .result_wrap .item .content .title_wrap .tag {
  border-radius: 0;
  font-size: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.search_wrap .result_wrap .item .content .title_wrap .title {
  display: inline-block;
  vertical-align: sub;
}
.search_wrap .result_wrap .item .content .desc {
  overflow: hidden;
  line-height: 1.5em;
  height: 3em;
  white-space: normal;
  text-overflow: initial;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.search_wrap .result_wrap .item .more {
  display: inline-block;
  width: 95px;
  padding: 0 8px;
  margin: 0;
  color: #B08BAC;
  font-weight: 700;
  vertical-align: bottom;
}
.search_wrap .result_wrap .item .more:hover {
  text-shadow: 1px 1px 1px rgba(221, 221, 221, 0.7);
  transform: translateX(5px);
}
@media (max-width: 767px ) {
  .search_wrap .result_wrap {
    padding: 0 8px;
  }
  .search_wrap .result_wrap .item img {
    width: 100%;
    display: block;
  }
  .search_wrap .result_wrap .item .content {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  .search_wrap .result_wrap .item .content .title_wrap .title {
    font-size: 18px;
  }
  .search_wrap .result_wrap .item .content .desc {
    padding: 4px 0;
  }
  .search_wrap .result_wrap .item .more {
    display: block;
    width: 100%;
    text-align: right;
  }
  .search_wrap .result_wrap .item .more a {
    font-size: 18px;
  }
}
.search_wrap .pagination {
  justify-content: center;
  padding: 10px 0 25px 0;
}

.sign_in_section {
  background-image: url(../images/login_bg.jpg);
  padding-top: 10px;
  min-height: calc(100vh - 47px);
  position: relative;
}
.sign_in_section > .container {
  margin-top: 5%;
  padding: 0 30px;
}
@media (max-width: 767px ) {
  .sign_in_section > .container {
    padding: 15px 30px;
  }
}
.sign_in_section .news {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 15px !important;
}
.sign_in_section .news:before, .sign_in_section .news:after {
  display: none;
}
.sign_in_section .news_text_defalt {
  text-align: center;
  padding: 0 !important;
}
.sign_in_section h1 {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  color: #B08BAC;
  font-size: 120%;
}
.sign_in_section h1:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  border-bottom: 3px double #e1e1e1;
}
.sign_in_section .form-group {
  text-align: left;
  margin-bottom: 10px;
}
.sign_in_section label {
  font-weight: normal;
  line-height: 1em;
}
.sign_in_section .checkbox {
  margin-top: 10px;
  margin-bottom: 10px;
}
.sign_in_section .checkbox input.checkbox_top[type=checkbox] {
  margin-top: 0;
  position: relative;
}
@media (max-width: 767px ) {
  .sign_in_section .checkbox {
    margin-top: 3px;
  }
}
.sign_in_section .btn {
  border-radius: 2px;
  margin-top: 5px;
}
.sign_in_section .btn.bg-blue {
  background-color: #B08BAC;
  color: white;
}
.sign_in_section p {
  font-size: 90%;
  line-height: 1.5em;
}
.sign_in_section hr {
  margin: 10px 0;
}
.sign_in_section .bg-clr-fb {
  margin-top: 10px;
  padding: 8px;
  color: white;
}

.login_footer {
  padding: 10px;
}
.login_footer p, .login_footer a {
  color: #B08BAC;
}
.login_footer a {
  text-decoration: underline;
}

.customGPlusSignIn, .customLineSignIn, .customFbSignIn {
  display: inline-block;
  background: white;
  color: #444;
  width: 100%;
  letter-spacing: 1px;
  border-radius: 5px;
  border: thin solid #888;
  /*box-shadow: 1px 1px 1px grey;*/
  white-space: nowrap;
  text-align: center;
}

.customGPlusSignIn:hover, .customLineSignIn:hover, .customFbSignIn:hover {
  cursor: pointer;
  background-color: #eee;
}

.customGPlusSignIn span.label, .customLineSignIn span.label, .customFbSignIn span.label {
  font-family: serif;
  font-weight: normal;
}

.customGPlusSignIn span.icon {
  background: url("../images/system/g-normal.png") transparent 5px 50% no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
  /*background-size: cover;*/
}

.customLineSignIn span.icon {
  background: url("../images/system/ic_line.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 42px;
}

.customFbSignIn span.icon {
  background: url("../images/system/fb-logo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
}

.customGPlusSignIn span.buttonText, .customLineSignIn span.buttonText, .customFbSignIn span.buttonText {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0px;
  padding-right: 17px;
  font-size: 14px;
  font-weight: bold;
  /* Use the Roboto font that is loaded in the <head> */
  font-family: "Roboto", sans-serif, "Microsoft Jhenghei";
}

.register_section {
  background-image: url(../images/login_bg.jpg);
  padding-top: 10px;
  min-height: calc(100vh - 47px);
  position: relative;
}
.register_section > .container {
  margin-top: 5%;
  padding: 0 30px;
}
@media (max-width: 767px ) {
  .register_section > .container {
    padding: 15px;
  }
}
.register_section .register_title {
  margin: 8px auto;
  color: white;
}
.register_section p {
  color: #806D78;
}
.register_section .note {
  padding: 0.5em 0;
  border-top: 0;
}
.register_section .bold {
  font-weight: 700;
}
.register_section a {
  color: blue;
}
.register_section a:hover {
  text-decoration: underline;
}
.register_section .register_block {
  border-radius: 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-top: 12px solid #806D78;
}
.register_section .register_block input, .register_section .register_block textarea, .register_section .register_block select {
  display: block;
  width: 100%;
}
.register_section .register_block .caret_select {
  display: block;
}
.register_section .register_block input, .register_section .register_block textarea, .register_section .register_block .caret_select {
  margin-top: 2px;
  margin-bottom: 2px;
}
.register_section .register_block .checkbox-inline, .register_section .register_block .radio-inline {
  margin-top: 2px;
}
.register_section .register_block .checkbox-inline + .checkbox-inline {
  margin-top: 2px;
}
.register_section .register_block .radio-inline + .radio-inline {
  margin-top: 2px;
}
.register_section .register_block.basic_block .form_column > .item.layout_updown .content {
  width: calc(100% - 8px);
  margin: 0 4px;
}
.register_section .btn_wrapper {
  margin: 10px 0;
  text-align: center;
}
.register_section .btn_wrapper .width-50 {
  width: calc(50% - 8px) !important;
}
.register_section .btn_main {
  letter-spacing: 1px;
}

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