@charset "UTF-8";
/* ==========================
 Variables
========================== */
/* --- Global --- */
/* font-family: 'Noto Sans TC', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
/* Microsoft Jhenghei 400, 700 */
/* tab */
/* Column */
/* --- Theme --- */
/* Default: Microsoft Jhenghei 400, 700 */
/* Import (Google Fonts)
----------------------------- */
/* font-family: 'Noto Serif TC', serif; */
/* font-family: 'Noto Sans TC', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap");
/* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
/* tab */
/* table */
/* Column */
/* Tag */
/* ==========================
 Mixins
========================== */
/* ==========================
 Middle Part
========================== */
/* --- Global --- */
/* ================================
Variables, Functions & Mixins 
================================ */
/*no transiton*/
.bgi_16x9 {
  width: 100%;
  padding: 0;
  padding-top: 0.5625;
  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: 0.75;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

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

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

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

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

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

------------------------------------------------------------- */
/*   
  For example:
  @include col(xs,  7); 
  @include col($m-xs-min, 7);
  @include col('(min-width: 1400px)', 7);
  @include col(md, calc(100% - 20px));
*/
@keyframes owlPrev {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(-8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
@keyframes owlNext {
  from {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(8px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
  }
}
/* --------------------------
2018.11.07 - Edit scrollbar
-------------------------- */
/* Button Mixins */
/* Arrow Right */
.btn_arrow_r {
  display: block;
  position: relative;
  color: white;
  text-align: right;
  padding: 0.5em;
  padding-right: 2em;
  line-height: 1em;
}
.btn_arrow_r:before {
  content: "\f101";
  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 (-webkit-min-device-pixel-ratio: 0.75),
  screen and (min-width: 0) and (min-resolution: 72dpi) {
  .btn_arrow_r:before {
    font-size: 20px;
  }
}
.btn_arrow_r:hover,
.btn_arrow_r:focus {
  color: white;
}
.btn_arrow_r:hover:before,
.btn_arrow_r:focus:before {
  animation: arrowR 1s both infinite;
}

@keyframes arrowR {
  from {
    -khtml-transform: translateX(-0.1em);
    transform: translateX(-0.1em);
  }
  50% {
    -khtml-transform: translateX(0.1em);
    transform: translateX(0.1em);
  }
  to {
    -khtml-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: "\f103";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  color: #0781e0;
  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 #0781e0 transparent;
  margin: 0;
  transition: all 0.1s ease-in-out;
}
.btn_corner_rbtm span {
  position: absolute;
  right: 0px;
  top: 2.5em;
  -khtml-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #fff;
  width: 50px;
  font-size: 12px;
  font-weight: 700;
}
.btn_corner_rbtm:hover {
  border-color: transparent transparent #229af8 transparent;
}

/* Button with Icon and Dashed line */
.btn_dashed,
.btn_icon_dashed {
  position: relative;
  display: inline-block;
  margin: 20px 0px;
  color: #0781e0;
  border-bottom: 1px dotted #0781e0;
}
.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(../frontend/images/common/icon_btn_id.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 50px);
  left: -20px;
  z-index: -1;
  color: #0781e0;
}

.btn_ghost {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 0.5em;
  border: 1px solid;
  padding-right: 40px;
}
.btn_ghost:before {
  content: "\f101";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
.btn_ghost {
  border-color: #0781e0;
  background-color: transparent;
  color: #0781e0;
}
.btn_ghost:before {
  color: #0781e0;
}
.btn_ghost:hover {
  color: #fff;
  background-color: #0781e0;
}
.btn_ghost:hover:before {
  color: #fff;
}
.btn_ghost.main-text {
  border-color: #e1e1e1;
  background-color: transparent;
  color: #e1e1e1;
}
.btn_ghost.main-text:before {
  color: #e1e1e1;
}
.btn_ghost.main-text:hover {
  color: #fff;
  background-color: #e1e1e1;
}
.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: #e1e1e1;
  background-color: #fff;
}
.btn_ghost.reverse:hover:before {
  color: #e1e1e1;
}

.btn_tilt_arrow {
  display: inline-block;
  position: relative;
  line-height: 1em;
  padding: 12px;
  padding-right: 40px;
  color: #0781e0;
  margin: 0 10px;
}
.btn_tilt_arrow:before {
  content: "\f101";
  position: absolute;
  font-family: FontAwesome;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 0.5em);
  right: 10px;
  color: #0781e0;
}
.btn_tilt_arrow:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #0781e0;
  background-color: transparent;
  -khtml-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: #0781e0;
}
.btn_tilt_arrow:hover:before {
  color: #fff;
}

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

/* --------------------------
2018.10.03 - Add _lang
2018.11.07 - Edit _scrollbar
           - Add _fonts
           - Edit _custom
2018.11.08 - Edit _custom
2018.11.09 - Edit _custom
           - Add _buttons
2018.11.29 - Add _gridSystem

-------------------------- */
/* ==========================
 Middle Part
========================== */
/*!
 * 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 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/* Setting
=============== */
body {
  -webkit-font-smoothing: antialiased;
  color: #e1e1e1;
  font-family: "Noto Sans TC", "Microsoft Jhenghei", sans-serif;
}
body.lang-2nd {
  font-family: "Microsoft Jhenghei", 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;
}

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 {
  transition: all 0.1s ease-in-out;
}

/* Highlight
------------------------ */
::-moz-selection {
  color: #0781e0;
  background: rgba(0, 0, 0, 0.05);
}
::selection {
  color: #0781e0;
  background: rgba(0, 0, 0, 0.05);
}

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

body {
  line-height: 1.5em;
}

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

h1,
.h1,
h2,
.h2 {
  font-weight: 700;
}
p,
.p {
  margin: 0em 0;
  line-height: 1.8em;
}

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

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

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

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

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

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

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

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

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

a {
  font-size: inherit;
}

li {
  font-size: 16px;
}

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

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

/* Input
------------ */
/* Mobile Font Size
--------------------- */
@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.5em;
    letter-spacing: 1px;
  }
  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: 16.875px;
  }
  h6,
  .h6 {
    font-size: 15px;
  }
  p,
  .p {
    font-size: 15px;
  }
  a {
    font-size: inherit;
  }
  li {
    font-size: 15px;
  }
  code,
  kbd,
  pre,
  samp {
    font-size: 15px;
  }
  input,
  textarea,
  select,
  option,
  .btn {
    font-size: 15px;
  }
  /* Input
  ------------ */
}
/* Plugin Fix
=============== */
a,
a:hover,
a:focus {
  text-decoration: 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;
    max-width: 100%;
  }
  .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: 6px 0;
  padding-left: 8px;
  margin: 0;
}
.breadcrumb:after,
.breadcrumb:before {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 6px 8px;
  }
}
.breadcrumb li,
.breadcrumb a {
  line-height: 1em;
  color: white;
}
.breadcrumb li {
  font-size: 0.8em;
  display: block;
  float: left;
  position: relative;
}
.breadcrumb > li + li {
  padding-left: 20px;
}
.breadcrumb > li + li:before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.breadcrumb a {
  display: block;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

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

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

/* 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: 0.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%;
  }
}
.tab:after,
.tab:before {
  content: "";
  display: block;
  clear: both;
}
.tab > li {
  float: left;
  display: block;
}
.tab > li.active a {
  background-color: #eee;
}
.tab a {
  display: block;
  line-height: 1em;
}

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

.wow {
  visibility: hidden;
}

.no-animation {
  visibility: visible;
}

/* ---------------------
Multiple
--------------------- */
.select2-multiple-skin .select2-selection--multiple {
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #707070;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .select2-multiple-skin .select2-selection--multiple {
    min-height: calc(1.8em + 20px);
  }
}
.select2-multiple-skin
  .select2-selection--multiple
  ul.select2-selection__rendered {
  display: block;
  padding: 5px 2px;
  padding-right: 30px;
}
.select2-multiple-skin
  .select2-selection--multiple
  ul.select2-selection__rendered
  li {
  height: 22px;
}
.select2-multiple-skin .select2-selection--multiple .select2-selection__choice {
  margin: 1px;
}
@media (max-width: 767px) {
  .select2-multiple-skin
    .select2-selection--multiple
    .select2-selection__choice {
    margin: 3px 2px;
  }
}
.select2-multiple-skin .select2-container {
  width: 100% !important;
}
.select2-multiple-skin
  .select2-container
  .select2-search--inline
  .select2-search__field {
  margin-top: 0;
}

.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: 14px;
  height: 14px;
  margin: 0px 4px;
  background: #fff;
  border: 1px solid #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  .owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 2px;
  }
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #202020;
  border: 1px solid #202020;
}
.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 50px * 0.5);
  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: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 1;
}
.owl-carousel .owl-nav [class*="owl-"] i {
  line-height: 0;
}
.owl-carousel .owl-nav [class*="owl-"] i:before {
  line-height: 50px;
}
.owl-carousel .owl-nav [class*="owl-"].disabled,
.owl-carousel .owl-nav [class*="owl-"].disabled:hover {
  opacity: 0.2;
}
.owl-carousel .owl-prev {
  left: 10px;
}
.owl-carousel .owl-prev i {
  margin-right: 5px;
}
.owl-carousel .owl-next {
  right: 10px;
}
.owl-carousel .owl-next i {
  margin-left: 5px;
}
.owl-carousel .owl-nav {
  opacity: 0.5;
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-carousel .owl-dots {
  position: absolute;
}

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

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

/* tag */
/* tag */
.tag {
  display: inline-block;
  padding: 5px;
  margin: 2px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  border-radius: 4px;
  border: 1px;
  border-style: solid;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-indent: 0;
  transition: all 0s ease-in-out;
}
.tag {
  border-color: rgba(47, 198, 204, 0.05);
  background-color: rgba(47, 198, 204, 0.05);
}
.tag.success {
  border-color: rgba(110, 196, 80, 0.65);
  background-color: rgba(110, 196, 80, 0.65);
}
.tag.info {
  border-color: rgba(42, 178, 183, 0.65);
  background-color: rgba(42, 178, 183, 0.65);
}
.tag.warning {
  border-color: rgba(211, 151, 0, 0.65);
  background-color: rgba(211, 151, 0, 0.65);
}
.tag.danger {
  border-color: rgba(242, 63, 36, 0.6);
  background-color: rgba(242, 63, 36, 0.6);
}
.tag[disabled="true"] {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.disabled {
  border-color: rgba(128, 128, 128, 0.6);
  background-color: rgba(128, 128, 128, 0.6);
}
.tag.outline.white {
  border-color: white;
  background-color: transparent;
  color: white;
}

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

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

/* pagination */
/*--- pagination ---*/
.pagination {
  margin: 10px 0;
}
.pagination li {
  text-align: center;
}
.pagination li a {
  padding: 4px 8px;
  border-radius: 15px !important;
  min-width: 29px;
  display: inline-block;
  border: none;
  margin: 0 2px;
  color: #e1e1e1;
  transition: all 0s ease-in-out;
  background-color: transparent;
}
.pagination li a:hover,
.pagination li a:focus {
  background-color: rgba(52, 51, 51, 0.05);
  color: #e1e1e1;
}
.pagination li.active a,
.pagination li.active a:hover,
.pagination li.active a:focus,
.pagination li.active a.active {
  background-color: #343333;
  color: #fff;
}
.pagination li button {
  padding: 4px 8px;
  border-radius: 15px !important;
  min-width: 29px;
  display: inline-block;
  border: none;
  margin: 0 2px;
  color: #e1e1e1;
  transition: all 0s ease-in-out;
  background-color: transparent;
}
.pagination li button:hover,
.pagination li button:focus {
  background-color: rgba(52, 51, 51, 0.05);
  color: #e1e1e1;
}
.pagination li.active button,
.pagination li.active button:hover,
.pagination li.active button:focus,
.pagination li.active button.active {
  background-color: #343333;
  color: #fff;
}

/*--- pagination  More ---*/
.pagination_more {
  padding: 60px 8px;
  text-align: center;
  color: white;
  font-size: 22px;
  font-family: "Poppins", "Microsoft Jhenghei", Arial, sans-serif;
  letter-spacing: 2px;
  background: linear-gradient(180deg, rgba(20, 30, 50, 0), rgb(20, 30, 50));
}
.pagination_more span {
  display: block;
  font-weight: bold;
}
.pagination_more a:hover {
  animation-name: moreArrow;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes moreArrow {
  from {
    transform: translate3d(0, -8px, 0);
  }
  50% {
    transform: translate3d(0, 8px, 0);
  }
  100% {
    transform: translate3d(0, -8px, 0);
  }
}
/* Button */
a {
  color: #0275d8;
}

a:hover,
a:focus {
  color: #0275d8;
}

.underline,
.hover_underline,
.underline_blue,
.hover_underline_blue,
.underline_highlight,
.underline_highlight,
.hover_underline_highlight {
  transition: all 0s ease-in-out;
}

.underline {
  color: #0781e0;
  text-decoration: underline;
}
.underline:hover {
  color: #0275d8;
  text-decoration: underline;
  opacity: 1;
}

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

.underline_blue {
  color: #0275d8;
}
.underline_blue:hover {
  color: #0781e0;
  text-decoration: underline;
}

.hover_underline_blue {
  text-decoration: none;
  transition: all 0s ease-in-out;
}
.hover_underline_blue:hover {
  color: #0275d8;
  text-decoration: underline;
}

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

.hover_underline_highlight {
  text-decoration: none;
}
.hover_underline_highlight:hover {
  color: #0275d8;
  text-decoration: underline;
}

/* Bootstrap Button
-------------- */
.btn-theme {
  background-color: #343333;
  border-color: #272626;
  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: #414040;
  border-color: #4e4c4c;
}

/* Button Main */
.btn_main {
  line-height: 1em;
  padding: 10px 8px;
  border-radius: 4px;
  background-color: #0781e0;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
}
.btn_main,
.btn_main i:before {
  transition: all 0.1s ease-in-out;
}
.btn_main:hover,
.btn_main:focus {
  color: white;
  background-color: #0673c7;
}
.btn_main.large {
  padding: 14px 24px;
  min-width: 240px;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.btn_main.radius {
  border-radius: 46px;
}
.btn_main.reverse {
  background-color: white;
  color: #0781e0;
  border: 1px solid #0781e0;
}
.btn_main.reverse:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.btn_main.cl2 {
  background-color: #343333;
}
.btn_main.cl2:hover,
.btn_main.cl2:focus {
  background-color: #272626;
}
.btn_main.warning {
  background-color: #f29423;
}
.btn_main.warning:hover {
  background-color: #ed880e;
}
.btn_main.success {
  background-color: #379947;
}
.btn_main.success:hover {
  background-color: #30863e;
}
.btn_main.disabled {
  background-color: #747474;
}
.btn_main.disabled:hover,
.btn_main.disabled:focus {
  background-color: #747474;
}
.btn_main.active {
  background-color: #0781e0;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn_main {
    min-width: 120px;
  }
}

.btn_main_outline {
  line-height: 1em;
  padding: 10px 8px;
  border-radius: 4px;
  background-color: #0781e0;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #0781e0;
  color: #0781e0;
}
.btn_main_outline,
.btn_main_outline i:before {
  transition: all 0.1s ease-in-out;
}
.btn_main_outline:hover,
.btn_main_outline:focus {
  color: white;
  background-color: #0673c7;
}
.btn_main_outline.large {
  padding: 14px 24px;
  min-width: 240px;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.btn_main_outline:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.btn_main_outline.radius {
  border-radius: 46px;
}
.btn_main_outline.reverse {
  background-color: white;
  color: #0781e0;
  border: 1px solid #0781e0;
}
.btn_main_outline.reverse:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.btn_main_outline.cl2 {
  background-color: #343333;
}
.btn_main_outline.cl2:hover,
.btn_main_outline.cl2:focus {
  background-color: #272626;
}
.btn_main_outline.warning {
  background-color: #f29423;
}
.btn_main_outline.warning:hover {
  background-color: #ed880e;
}
.btn_main_outline.success {
  background-color: #379947;
}
.btn_main_outline.success:hover {
  background-color: #30863e;
}
.btn_main_outline.disabled {
  background-color: #747474;
}
.btn_main_outline.disabled:hover,
.btn_main_outline.disabled:focus {
  background-color: #747474;
}
.btn_main_outline.active {
  background-color: #0781e0;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn_main_outline {
    min-width: 120px;
  }
}

.btn_second {
  line-height: 1em;
  padding: 10px 8px;
  border-radius: 4px;
  background-color: #0781e0;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
  background-color: #343333;
}
.btn_second,
.btn_second i:before {
  transition: all 0.1s ease-in-out;
}
.btn_second:hover,
.btn_second:focus {
  color: white;
  background-color: #0673c7;
}
.btn_second.large {
  padding: 14px 24px;
  min-width: 240px;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.btn_second:hover {
  background-color: #272626;
}
.btn_second.radius {
  border-radius: 46px;
}
.btn_second.reverse {
  background-color: white;
  color: #0781e0;
  border: 1px solid #0781e0;
}
.btn_second.reverse:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.btn_second.cl2 {
  background-color: #343333;
}
.btn_second.cl2:hover,
.btn_second.cl2:focus {
  background-color: #272626;
}
.btn_second.warning {
  background-color: #f29423;
}
.btn_second.warning:hover {
  background-color: #ed880e;
}
.btn_second.success {
  background-color: #379947;
}
.btn_second.success:hover {
  background-color: #30863e;
}
.btn_second.disabled {
  background-color: #747474;
}
.btn_second.disabled:hover,
.btn_second.disabled:focus {
  background-color: #747474;
}
.btn_second.active {
  background-color: #0781e0;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn_second {
    min-width: 120px;
  }
}
.btn_second.outline {
  background-color: transparent;
  border: 2px solid #343333;
  color: #343333;
}
.btn_second.outline:hover {
  background-color: rgba(52, 51, 51, 0.1);
}

.btn_main_third {
  line-height: 1em;
  padding: 10px 8px;
  border-radius: 4px;
  background-color: #0781e0;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn_main_third,
.btn_main_third i:before {
  transition: all 0.1s ease-in-out;
}
.btn_main_third:hover,
.btn_main_third:focus {
  color: white;
  background-color: #0673c7;
}
.btn_main_third.large {
  padding: 14px 24px;
  min-width: 240px;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.btn_main_third:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn_main_third.radius {
  border-radius: 46px;
}
.btn_main_third.reverse {
  background-color: white;
  color: #0781e0;
  border: 1px solid #0781e0;
}
.btn_main_third.reverse:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.btn_main_third.cl2 {
  background-color: #343333;
}
.btn_main_third.cl2:hover,
.btn_main_third.cl2:focus {
  background-color: #272626;
}
.btn_main_third.warning {
  background-color: #f29423;
}
.btn_main_third.warning:hover {
  background-color: #ed880e;
}
.btn_main_third.success {
  background-color: #379947;
}
.btn_main_third.success:hover {
  background-color: #30863e;
}
.btn_main_third.disabled {
  background-color: #747474;
}
.btn_main_third.disabled:hover,
.btn_main_third.disabled:focus {
  background-color: #747474;
}
.btn_main_third.active {
  background-color: #0781e0;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn_main_third {
    min-width: 120px;
  }
}

.btn_main_third_comon_style {
  width: 300px;
}
@media (max-width: 767px) {
  .btn_main_third_comon_style {
    width: 100%;
  }
}

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

.btn_fill_animation {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.btn_fill_animation::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transition: transform 0.3s;
}
.btn_fill_animation:hover {
  color: #202020;
  font-weight: 400;
}

.btn_fill_animation_2 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.btn_fill_animation_2::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  background: #fff;
  transition: transform 0.3s;
}
.btn_fill_animation_2:hover {
  color: #202020;
  font-weight: 400;
}

.btn_fill_animation_2_text {
  position: relative;
  z-index: 1;
}

.btn_left_to_right::before {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_left_to_right:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

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

/* 2018.10.01 */
/* Marquee */
.abgne_marquee_wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 30px;
  border: 3px solid #343333;
  box-shadow: 0px 3px 0 #343333;
  max-width: 1200px;
  font-weight: bold;
}

#abgne_marquee {
  height: 36px;
  position: relative;
  overflow: hidden;
  /* RWD */
}
#abgne_marquee ul {
  position: absolute;
  width: 100%;
  height: 100%;
}
#abgne_marquee ul li {
  display: table;
  height: 100%;
  width: 100%;
  color: #202020;
}
#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;
}
#abgne_marquee .category {
  color: #343333;
  padding-right: 0.5rem;
}
/* Blocky */
/* 2018.10.11 */
.blocky_container {
  padding: 8px;
}
.blocky_container > [class*="col-lg"],
.blocky_container > [class*="col-md"],
.blocky_container > [class*="col-sm"],
.blocky_container > [class*="col-xs"] {
  padding: 8px;
}

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

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

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

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

/* blocky_header */
.blocky_header {
  padding: 8px 8px;
  border-bottom: 1px solid #707070;
  color: #fff;
  background-color: #0781e0;
}

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

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

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

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

.nowrap {
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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.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 {
  padding: 4px 8px;
  background: #eee;
  border-radius: 4px;
}

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

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

/* 

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

. basic_block_tab        > . blocky_tab

 */
/* Sidebar */
/* Selected Show */
.nav_side_solid .layer_1st,
.nav_side_solid .layer_2nd,
.sidebar_body .layer_1st,
.sidebar_body .layer_2nd,
.prdl_sidebar-body .layer_1st,
.prdl_sidebar-body .layer_2nd {
  display: none;
}
.nav_side_solid .selected > .layer_1st,
.nav_side_solid .selected > .layer_2nd,
.sidebar_body .selected > .layer_1st,
.sidebar_body .selected > .layer_2nd,
.prdl_sidebar-body .selected > .layer_1st,
.prdl_sidebar-body .selected > .layer_2nd {
  display: block;
}

.nav_side_solid > li + li {
  border-top: 1px solid #707070;
}
.nav_side_solid i {
  text-align: center;
  width: 15px;
}
.nav_side_solid .layer_1st > li > a {
  padding-left: 28px;
  border-top: 1px solid #707070;
}
.nav_side_solid .layer_2nd > li > a {
  padding-left: calc(28px + 1em);
  border-top: 0px solid #707070;
}
.nav_side_solid h1,
.nav_side_solid h2,
.nav_side_solid h3,
.nav_side_solid h4 {
  margin: 0;
  padding-left: 0px;
  font-size: inherit;
}

.nav_side_solid > li a,
.nav_side_solid .layor_title {
  display: block;
  position: relative;
  line-height: 1em;
  transition: all 0s ease-in-out;
  padding: 4px 8px;
  font-size: 18px;
}
.nav_side_solid > li a:hover,
.nav_side_solid > li a:focus,
.nav_side_solid .layor_title:hover,
.nav_side_solid .layor_title:focus {
  background-color: rgba(0, 0, 0, 0.02);
}

.prdl_sidebar-body a {
  display: block;
  position: relative;
}

/* Parchment */
.parchment_header {
  position: relative;
  padding: 4px 0 6px;
  border-bottom: 3px double #dfdfdf;
  margin-bottom: 8px;
}
.parchment_header:after,
.parchment_header:before {
  content: "";
  display: block;
  clear: both;
}
.parchment_header .title {
  position: relative;
  display: inline-block;
  color: #0781e0;
}
.parchment_header .date {
  float: right;
  display: inline-block;
  font-size: 85%;
  color: #999;
}

.parchment_body {
  padding: 8px;
  background-color: #0d0d0d;
  border: 1px solid #f6eedd;
  border-radius: 4px;
  margin-bottom: 15px;
  /* form_column */
}
.parchment_body .form_column.border > .item + .item {
  border-color: #f6eedd;
}
.parchment_body .divide_text:before {
  border-top-color: #f6eedd;
}
.parchment_body hr {
  border-color: #f6eedd;
  margin: 8px 0;
}

.parchment_banner img {
  width: 100%;
  display: block;
  margin: 0 auto 0px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.parchment_banner + .parchment_body {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* img */
.article_img {
  display: block;
  margin: 0px auto 15px;
  border-radius: 4px;
}

/* List Second */
/* Column */
/* Form Column
--------------- */
/* 2018.10.05 */
.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: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;
  text-align: left;
}
.form_column .title .title_text {
  font-size: inherit;
}
.form_column .content {
  vertical-align: middle;
}
.form_column p {
  margin: 0;
}
@media (max-width: 767px) {
  .form_column .title {
    text-align: left;
  }
}

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

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

/* RWD
------------------ */
.form_column .divide_text {
  text-align: left;
}
@media (min-width: 768px) {
  .form_column {
    /* Column Desktop */
    /* Item Width */
  }
  .form_column .title {
    width: calc(100%);
    padding: 4px 0;
  }
  .form_column .content {
    width: 100%;
  }
  .form_column .divide_text {
    padding-left: 100%;
  }
  .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.ww-50 {
    width: 50%;
  }
  .form_column > .item.ww-25 {
    width: 25%;
  }
  .form_column.item_border > .item + .item {
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #707070;
  }
  .form_column.item_border > .item.w-50 + .item.w-50:nth-child(2) {
    border-top-width: 0;
  }
}
@media (max-width: 767px) {
  .form_column {
    /* Column Mobile
    ----------------- */
  }
  .form_column .title,
  .form_column .content {
    width: 100%;
  }
  .form_column .title {
    padding: 4px 0px 4px;
  }
  .form_column .pure_text {
    padding: 8px 0px 8px 0px;
  }
  .form_column.narrow {
    padding: 8px 8px;
  }
  .form_column.border > .item + .item {
    border-top: 1px solid #707070;
  }
}
.form_column.no-responsive {
  /* Column Desktop */
  /* Item Width */
}
.form_column.no-responsive .title {
  width: calc(100%);
  padding: 4px 0;
}
.form_column.no-responsive .content {
  width: 100%;
}
.form_column.no-responsive .divide_text {
  padding-left: 100%;
}
.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.ww-50 {
  width: 50%;
}
.form_column.no-responsive > .item.ww-25 {
  width: 25%;
}
.form_column.no-responsive.item_border > .item + .item {
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #707070;
}
.form_column.no-responsive.item_border > .item.w-50 + .item.w-50:nth-child(2) {
  border-top-width: 0;
}

/* Q & A 
---------------------*/
@media (min-width: 992px) {
  .form_column.column_qa > .item.item_border + .item,
  .form_column.column_qa .item.item_border {
    border-top: 0;
  }
  .form_column.column_qa > .item.item_border {
    padding: 4px;
    border: 1px dotted #d3d3d3;
    background-color: #202020;
    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 */
/* 2018.10.09 */
input,
textarea,
select {
  display: inline-block;
  letter-spacing: 0px;
  vertical-align: middle;
  resize: vertical;
  max-width: 100%;
  border: 1px solid #d3d3d3;
  background-color: white;
}
@media (max-width: 767px) {
  input,
  textarea,
  select {
    height: calc(1.8em + 20px);
  }
}

input,
textarea,
select,
.btn-input,
.input-group .btn {
  padding: 6px 8px;
  margin: 0px 0;
  border-radius: 4px;
  line-height: 1.5em;
  height: calc(1.5em + 18px);
}
@media (max-width: 767px) {
  input,
  textarea,
  select,
  .btn-input,
  .input-group .btn {
    padding: 10px 8px;
    height: calc(1.8em + 18px);
  }
}

select {
  background-color: white;
}

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

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgba(7, 129, 224, 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
----------------------- */
.n_lang_caret {
  display: block;
  text-align: center;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 70px;
  height: 44px;
  line-height: 44px;
  border-radius: 4px;
  background-color: #ea6000;
  color: #fff;
}

.caret_select {
  position: relative;
  z-index: 0;
  margin-top: 8px;
  color: #333;
}
.caret_select::after {
  content: "\f107";
  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;
  background-color: white;
  color: #333;
  width: 100%;
}
.caret_select select[disabled="disabled"] {
  cursor: auto;
}
.caret_select select option {
  background-color: white;
  color: #333;
}

.prd_select {
  border: 1px solid;
  border-color: #53b1fa;
}

@media (max-width: 767px) {
  .nl_m_wrapper {
    display: none;
  }
}
/* Datepicker Range */
.input-daterange {
  float: right;
  width: 100%;
  max-width: 320px;
  margin: 2px;
}
.input-daterange .form-control,
.input-daterange .input-group-addon,
.input-daterange .btn {
  float: left;
}
.input-daterange .input-group-addon {
  width: 40px;
  height: calc(1.5em + 15px);
  border-width: 1px;
  margin: 0 -1px;
  background-color: #999;
  text-align: center;
}
.input-daterange .btn {
  width: 60px;
  height: 36px;
  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;
}
.input-daterange input {
  height: calc(1.5em + 12px);
}
@media (max-width: 767px) {
  .input-daterange {
    max-width: 280px;
  }
  .input-daterange input {
    height: calc(1.5em + 8px);
  }
  .input-daterange .btn {
    height: 32px;
  }
}

/* 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;
  user-select: none;
  margin: 0px 0;
  /* Hover
  -------------- */
  /* Checked
  ----------------- */
}
.checkbox-primary .checkmark,
.radio-primary .checkmark {
  position: absolute;
  top: calc(33px / 2 - 20px / 2);
  left: 16.5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #707070;
  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;
  -khtml-transform: rotate(45deg);
  transform: rotate(45deg);
}
.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: #0781e0;
  border-color: #0781e0;
}
.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;
}

/* 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: #0781e0;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}

/*--- Checkbox inline item ---*/
.checkbox-inline,
.radio-inline {
  max-height: 80vh;
  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) 4px;
  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);
}

.unit_input_left {
  position: relative;
}
.unit_input_left > span {
  position: absolute;
  left: 10px;
  top: calc(50% - 12px);
}

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

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

/* divide text */
.divide_text {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}
.divide_text span {
  color: #666;
  padding: 0 8px;
  background-color: #fff;
  z-index: 1;
  position: relative;
  display: inline-block;
  background: #eee;
  border-radius: 520px;
}
.divide_text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  border-top: 1px solid #707070;
}
.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 > .input_label,
.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 > .input_label {
    width: 80px;
    text-align: right;
    padding-right: 8px;
    margin-top: 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: #0781e0;
  border: 1px solid;
}

/* Video */
/* video */
.item_video_wrapper .img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.item_video_wrapper:hover .img {
  -khtml-transform: scale(1.05);
  transform: scale(1.05);
}

.artc_video_wrapper,
.item_video_wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  padding-top: 0.5625;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}
.artc_video_wrapper iframe,
.item_video_wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
}

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

/* ======================== 
Custom Classes
======================== */
.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: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: 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: #999;
}
.section_complete_form .check {
  font-size: 120px;
  color: #0781e0;
  margin-bottom: 10px;
}
.section_complete_form .btn_main {
  margin-top: 20px;
}
.section_complete_form.min-height-none {
  min-height: unset;
}
.editor {
  padding: 8px;
  position: relative;
  /* ul */
  /* ol */
  /* table */
  /* RWD Table */
  /* blockquote */
  /* a */
  /* buton */
  /* RED */
}
.editor * {
  max-width: 100% !important;
}
.editor img {
  height: auto !important;
}
.editor h1,
.editor h2,
.editor h3,
.editor h4 {
  color: #0781e0;
  margin-top: 10px;
  line-height: 1.8em;
  font-weight: 700;
}
.editor h1,
.editor .h1 {
  font-size: 30px;
}
.editor h2,
.editor .h2 {
  font-size: 24px;
}
.editor h3,
.editor .h3 {
  font-size: 20px;
}
.editor h4,
.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: 0px;
}
.editor ul {
  margin: 8px 0;
  font-size: inherit;
  list-style: none;
}
.editor ul > li {
  position: relative;
  padding-left: 1.8em;
  font-size: inherit;
}
.editor ul > li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #0781e0;
  left: 0.7em;
  top: 0.6em;
  border-radius: 0.2em;
}
.editor ol {
  padding: 0 20px;
  list-style-type: decimal;
  padding-left: 1.8em;
}
.editor ol > li {
  position: relative;
}
.editor table {
  border-spacing: 0;
  border-collapse: collapse;
  border-color: #d3d3d3;
  border-style: solid;
  overflow: auto;
  width: 100%;
}
.editor table th,
.editor table td {
  border-width: 1px;
  border-style: solid;
  border-color: #d3d3d3;
  padding: 8px;
}
.editor table th {
  background-color: rgba(7, 129, 224, 0.1);
  color: #0781e0;
}
.editor table h1,
.editor table h2,
.editor table h3,
.editor table h4 {
  margin: 0;
}
.editor .tbl_wrapper {
  overflow-x: auto;
}
.editor .tbl_wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
@media (max-width: 767px) {
  .editor .tbl_shadow {
    position: relative;
  }
  .editor .tbl_shadow:before,
  .editor .tbl_shadow:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 5px;
  }
  .editor .tbl_shadow:before {
    left: 0;
    box-shadow: inset 6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
  .editor .tbl_shadow:after {
    right: 0;
    box-shadow: inset -6px 0 9px -7px rgba(0, 0, 0, 0.3);
  }
}
.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: 10px 8px;
  border-radius: 4px;
  background-color: #0781e0;
  color: white;
  display: inline-block;
  border: 1px solid transparent;
  min-width: 160px;
  text-align: center;
  border-color: transparent;
  width: auto;
  padding: 8px 16px;
  height: auto;
}
.editor input[type="button"],
.editor input[type="button"] i:before {
  transition: all 0.1s ease-in-out;
}
.editor input[type="button"]:hover,
.editor input[type="button"]:focus {
  color: white;
  background-color: #0673c7;
}
.editor input[type="button"].large {
  padding: 14px 24px;
  min-width: 240px;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.editor input[type="button"].radius {
  border-radius: 46px;
}
.editor input[type="button"].reverse {
  background-color: white;
  color: #0781e0;
  border: 1px solid #0781e0;
}
.editor input[type="button"].reverse:hover {
  background-color: rgba(7, 129, 224, 0.1);
}
.editor input[type="button"].cl2 {
  background-color: #343333;
}
.editor input[type="button"].cl2:hover,
.editor input[type="button"].cl2:focus {
  background-color: #272626;
}
.editor input[type="button"].warning {
  background-color: #f29423;
}
.editor input[type="button"].warning:hover {
  background-color: #ed880e;
}
.editor input[type="button"].success {
  background-color: #379947;
}
.editor input[type="button"].success:hover {
  background-color: #30863e;
}
.editor input[type="button"].disabled {
  background-color: #747474;
}
.editor input[type="button"].disabled:hover,
.editor input[type="button"].disabled:focus {
  background-color: #747474;
}
.editor input[type="button"].active {
  background-color: #0781e0;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .editor input[type="button"] {
    min-width: 120px;
  }
}
@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;
}

/* Recover Bootstrap
-------------------- */
.editor {
  /* blockquote */
  /* hr */
}
.editor blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
.editor hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eee;
}
.editor .container.section_simple > .editor {
  padding-left: 20px;
  padding-right: 20px;
}

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

.section_main {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .section_main {
    padding: 20px 0;
  }
}

/* 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: 0;
  line-height: 1.5em;
}
ul.ci_list li:before {
  display: inline-block;
  content: "\f105";
  font-family: "FontAwesome";
  position: relative;
  color: inherit;
  font-size: 1em;
  line-height: 1.5em;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  left: 0;
  vertical-align: middle;
}
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.line:before {
  content: "";
  background-image: url(../frontend/images/common/ic_social_line_green.svg);
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
}
ul.ci_list li:empty {
  display: none;
}
ul.ci_list li:before {
  left: 0;
  top: 0;
}
ul.ci_list a:hover {
  text-decoration: underline;
}

/* Footer Common
------------------ */
footer.footer a {
  color: inherit;
}
footer.footer [class*="col-lg"],
footer.footer [class*="col-md"],
footer.footer [class*="col-sm"],
footer.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;
}
.f_info_ul li:before {
  margin-right: 8px;
}

/* Footer Copyright
------------------ */
.f_copyright {
  position: relative;
  overflow: hidden;
}
.f_copyright p {
  display: block;
  z-index: 1;
  position: relative;
  line-height: 1.8em;
  margin: 0;
}

/* Footer Fix
------------------ */
.slider .img {
  width: 100%;
  padding: 0;
  padding-top: 0.3125;
  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: 0.3125;
    background-size: cover;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    z-index: 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: 14px;
  height: 14px;
  margin: 0px 4px;
  background: #fff;
  border: 1px solid #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  .slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 2px;
  }
}
.slider .owl-dots .owl-dot.active span,
.slider .owl-dots .owl-dot:hover span {
  background-color: #202020;
  border: 1px solid #202020;
}
.slider .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* custom */
.slider_wrapper {
  position: relative;
}

.owl-nav-custom {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  z-index: 3;
  width: 100%;
  /* hover */
  opacity: 0.5;
}
.owl-nav-custom .owl_wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.owl-nav-custom [class*="owl-"] {
  position: relative;
  color: white;
  background-color: transparent;
  font-size: 40px;
  margin: 0px;
  padding: 0;
  width: 50px;
  text-align: center;
  position: absolute;
  border-radius: 25px;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  opacity: 1;
}
.owl-nav-custom [class*="owl-"] i {
  line-height: 50px;
}
.owl-nav-custom [class*="owl-"].disabled,
.owl-nav-custom [class*="owl-"].disabled:hover {
  opacity: 0.2;
}
.owl-nav-custom .owl-prev {
  left: 15px;
}
.owl-nav-custom .owl-prev i {
  margin-right: 5px;
}
.owl-nav-custom .owl-next {
  right: 15px;
}
.owl-nav-custom .owl-next i {
  margin-left: 5px;
}
.slider_wrapper:hover .owl-nav-custom {
  opacity: 1;
}

.fade-in-out {
  opacity: 0;
  transition: opacity 0.6s;
}

/* --- Nav Type --- */
/* nav basic style 
--------------------*/
/* Animation */
@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%;
  }
}

.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: 72px !important;
    width: 100%;
    text-align: center;
  }
}

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

.navbarPage {
  display: none;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #707070;
  height: 100%;
  position: fixed;
  z-index: 5000;
  width: 100%;
}

/* Nav Brand Header Layout
---------------- */
.navbar-header {
  text-align: center;
}
.navbar-header .navbar-brand {
  display: inline-block;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .navbar-header .navbar-brand {
    padding: 10px 12px;
  }
}
@media (max-width: 767px) {
  .navbar-header .navbar-brand {
    padding: 8px 10px;
  }
}
.navbar-header .navbar-brand .brand_logo {
  width: auto;
  content: "";
  background-image: url(../images/icons.png);
  width: 400px;
  height: 40px;
  background-position: -5px -5px;
  background-size: 1200px auto;
}
@media (max-width: 1199px) {
  .navbar-header .navbar-brand .brand_logo {
    width: 340px;
    height: 34px;
    background-position: -4.25px -4.25px;
    background-size: 1020px auto;
  }
}
@media (max-width: 767px) {
  .navbar-header .navbar-brand .brand_logo {
    width: 240px;
    height: 24px;
    background-position: -3px -3px;
    background-size: 720px auto;
  }
}
.navbar-header .navbar-brand .brand_logo.home {
  content: "";
  background-image: url(../images/icons.png);
  width: 400px;
  height: 40px;
  background-position: -5px -5px;
  background-size: 1200px auto;
}
@media (max-width: 1199px) {
  .navbar-header .navbar-brand .brand_logo.home {
    width: 340px;
    height: 34px;
    background-position: -4.25px -4.25px;
    background-size: 1020px auto;
  }
}
@media (max-width: 767px) {
  .navbar-header .navbar-brand .brand_logo.home {
    width: 240px;
    height: 24px;
    background-position: -3px -3px;
    background-size: 720px 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: 18px;
  }
  ul.navbar-nav > li.nav-search-d-grid {
    display: grid !important;
  }
  ul.navbar-nav > li .btn_search {
    color: white;
  }
  ul.navbar-nav > li > a {
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    font-weight: 500;
    font-size: 24px;
    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: #0781e0;
  }
  ul.navbar-nav > li:nth-last-child(1) .dropdown-menu {
    right: 0;
    left: unset;
  }
  ul.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    width: 100%;
  }
  ul.navbar-nav .dropdown-menu {
    position: absolute;
    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: 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;
  }
  ul.navbar-nav .dropdown-menu.shadow-none {
    box-shadow: none;
  }
  ul.navbar-nav .center-move {
    right: 0;
    left: initial;
  }
  ul.navbar-nav .dropdown-menu-custom {
    min-width: 472px;
    height: 264px;
    padding: 32px;
    background-color: #202020;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    /* 修改這裡 */
    flex-wrap: wrap;
    /* 新增這行 */
    justify-content: space-between;
    /* 控制元素之間的水平間距 */
    overflow: hidden;
    /* 隱藏超出高度的內容 */
  }
  ul.navbar-nav .dropdown-menu-custom.single-line {
    min-width: -moz-fit-content;
    min-width: fit-content;
    height: initial !important;
  }
  ul.navbar-nav .dropdown-menu-custom.single-line li {
    font-size: 20px;
    width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  ul.navbar-nav .dropdown-menu-custom li {
    font-size: 24px;
    line-height: 32px;
    white-space: nowrap;
    /* 防止文本折行 */
    margin-right: 10px;
    /* 控制元素之間的水平間距 */
    margin-bottom: 10px;
    /* 控制元素之間的垂直間距 */
    width: 150px;
  }
  ul.navbar-nav .dropdown-menu-custom-space {
    height: 28px;
  }
}
/* 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: #343333;
    color: #fff;
  }
  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: initial;
  }
  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: initial;
  }
  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: #e1e1e1;
  }
  ul.navbar-nav .dropdown-menu a {
    color: #e1e1e1;
  }
  ul.navbar-nav .dropdown-menu a:hover,
  ul.navbar-nav .dropdown-menu a:focus {
    color: white;
    background-color: initial;
  }
  .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: #343333;
    color: #fff;
  }
  .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: initial;
  }
  .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: initial;
  }
  .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: #e1e1e1;
  }
  .add_class ul.navbar-nav .dropdown-menu a {
    color: #e1e1e1;
  }
  .add_class ul.navbar-nav .dropdown-menu a:hover,
  .add_class ul.navbar-nav .dropdown-menu a:focus {
    color: white;
    background-color: initial;
  }
  .navbar {
    background: linear-gradient(to bottom, #202020, rgba(0, 0, 0, 0));
  }
  .navbar.add_class {
    background-color: transparent;
  }
  .dsk_menu {
    background-color: transparent;
  }
  .dsk_menu.add_class {
    background-color: transparent;
  }
}
/* Mobile Navbar
----------------------- */
@media (max-width: 767px) {
  .navbar-collapse {
    box-shadow: initial;
    top: 0 !important;
  }
  ul.navbar-nav {
    display: none;
    margin: 0 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }
  ul.navbar-nav .nav-item .nav-link {
    padding-left: 12px;
    display: none;
  }
  ul.navbar-nav .nav-item .dropdown-item {
    border-left: 4px solid #0781e0;
    background-color: rgba(238, 238, 238, 0.2);
  }
  ul.navbar-nav .nav-search-d-grid {
    display: grid;
    font-size: 20px;
    height: 70px;
  }
  ul.navbar-nav .nav-search-d-grid .btn_search {
    color: white;
  }
  ul.navbar-nav ul {
    padding: 0;
  }
  ul.navbar-nav a,
  ul.navbar-nav li.dropdown ul.dropdown-menu a {
    padding: 10px 15px;
    color: #e1e1e1;
    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 #d3d3d3;
    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: #0781e0;
    -khtml-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  ul.navbar-nav li.dropdown.open > a:after,
  ul.navbar-nav li.dropdown-submenu.open > a:after {
    -khtml-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 #0781e0;
    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 #04487d;
    background-color: #f2f2f2;
  }
  .navbar,
  .dsk_menu {
    background: linear-gradient(to bottom, #202020, rgba(0, 0, 0, 0));
  }
  .navbar.add_class,
  .dsk_menu.add_class {
    background: linear-gradient(to bottom, #202020, rgba(0, 0, 0, 0));
  }
}
.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;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .navbar-menuBtn {
    display: none;
    padding: 10px 12px;
  }
  .navbar.add_class .navbar-menuBtn {
    display: block;
  }
}
@media (max-width: 767px) {
  .navbar-menuBtn {
    z-index: 1031;
    display: block;
    padding: 10px 12px;
  }
}
@media (min-width: 768px) {
  .navbar-closeBtn {
    text-align: right;
    padding: 10px 100px;
  }
}
@media (max-width: 767px) {
  .navbar-closeBtn {
    text-align: center;
    padding: 10px 0;
  }
}
/* Toggle Button */
.navbar-toggle {
  border: 0px;
  padding: 14px 14px;
  margin: 0;
  border-radius: 0;
  background-color: #fff;
}
.navbar-toggle .icon-bar {
  background-color: #0781e0;
  margin: 4px 0;
}
.navbar-toggle:hover,
.navbar-toggle:focus {
  background-color: #0781e0;
}
.navbar-toggle:hover .icon-bar,
.navbar-toggle:focus .icon-bar {
  background: #fff;
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  -khtml-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
  -khtml-transform: scaleX(0.01);
  transform: scaleX(0.01);
}
.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(4) {
  -khtml-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

.nav_fix {
  margin-top: 0px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nav_fix {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .nav_fix {
    margin-top: 74px;
  }
}

/* Top Nav
------------------ */
.nav_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav_top .brand_logo {
  width: auto;
  content: "";
  background-image: url(../images/icons.png);
  width: 400px;
  height: 40px;
  background-position: -5px -5px;
  background-size: 1200px auto;
}
@media (max-width: 1199px) {
  .nav_top .brand_logo {
    width: 340px;
    height: 34px;
    background-position: -4.25px -4.25px;
    background-size: 1020px auto;
  }
}
@media (max-width: 767px) {
  .nav_top .brand_logo {
    width: 240px;
    height: 24px;
    background-position: -3px -3px;
    background-size: 720px auto;
  }
}
.nav_top .right_block {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .nav_top {
    margin: 0;
    padding: 0;
  }
}

/* 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: #202020;
}
.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: #e1e1e1;
}
.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: #202020;
}
.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: #0781e0;
  -khtml-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js-offcanvas ul.navbar-nav > .dropdown.open > a:after,
.js-offcanvas .list-unstyled > .dropdown.open > a:after {
  -khtml-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: #131313;
}
.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: #e1e1e1 !important;
  padding: 12px !important;
  border-left: 4px solid #0781e0;
}
.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(7, 129, 224, 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: #04487d;
  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: #0781e0;
  -khtml-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 {
  -khtml-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;
}

/* Search Collaspe
------------------- */
.s_f_wrapper {
  max-width: 220px;
  padding: 8px 0 8px;
}
.s_f_wrapper input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.s_f_wrapper #s_form {
  background-color: transparent;
  background-image: url(../frontend/images/common/ic_search_theme.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: 16px;
  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(../frontend/images/common/ic_search_theme_hover.svg);
}
.s_f_wrapper #s_form:focus {
  width: 240px;
  cursor: text;
}
@media (max-width: 767px) {
  .s_f_wrapper {
    position: fixed;
    right: 0px;
    top: 60px;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
    max-width: unset;
    color: #e1e1e1;
  }
  .s_f_wrapper:hover,
  .s_f_wrapper:focus {
    width: 100%;
  }
  .s_f_wrapper #s_form {
    background-position: calc(50px / 2 - 12px) center;
    width: 50px;
    height: 50px;
    padding: calc(50px / 2 - 12px) calc(50px / 2 - 5px);
    border-radius: calc(50px / 2);
    float: right;
    box-shadow: 0 3.2px 10px rgba(0, 0, 0, 0.32);
    background-color: white;
  }
  .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: #e1e1e1;
    background-position: calc(31px / 2 - 12px) center;
    width: 31px;
    height: 31px;
    padding: calc(31px / 2 - 12px) calc(31px / 2 - 5px);
    background-size: 17px 17px;
  }
  .s_f_wrapper #s_form:hover,
  .s_f_wrapper #s_form:focus {
    background-color: white;
    border: 1px solid #d3d3d3;
  }
  .s_f_wrapper #s_form:focus {
    padding-left: 32px;
  }
}

/* no desktop */
/* Search Desktop (Normal)
---------------------- */
.s_desktop {
  padding: 8px 0 8px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.s_desktop .search_input {
  outline: none;
  padding: 0;
  padding-left: 20px;
  width: 100%;
  height: 35px;
  line-height: 35px;
  border-radius: 0px;
  color: #e1e1e1;
  border: 0px solid #0781e0;
  background-color: white;
}
.s_desktop .search_button {
  position: absolute;
  right: 0px;
  width: 35px;
  height: 35px;
  border-radius: 0 0px 0px 0;
  border: 0px solid #0781e0;
  background-color: white;
  text-align: center;
  cursor: pointer;
  font-size: 16px;
}
.s_desktop .search_button i {
  height: 35px;
  line-height: 34px;
}
.s_desktop .search_button i:before {
  color: #343333;
}
.s_desktop .search_button:hover {
  background-color: #f1f1f1;
}

.menu_s {
  padding: 8px 0;
  font-family: "Poppins", "Microsoft Jhenghei", Arial, sans-serif;
}
.menu_s:after,
.menu_s:before {
  content: "";
  display: block;
  clear: both;
}
.menu_s > li {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  color: #e1e1e1;
  line-height: 1em;
}
.menu_s > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.menu_s > li > a:hover {
  text-decoration: underline;
}
.menu_s > li:nth-last-child(1) {
  border-right: 0px;
}
@media (max-width: 767px) {
  .menu_s {
    display: none;
  }
}

/* nav Theme 
--------------------*/
/* Nav Li Style 
----------------*/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Desktop Menu
--------------- */
@media (min-width: 768px) {
  .navbar-collapse {
    justify-content: end;
    padding: 10px 0;
  }
  .dsk_menu {
    border-bottom: 1px solid #d3d3d3;
  }
  ul.navbar-nav > li > a {
    position: relative;
    padding: 0.5rem 0 !important;
  }
  .add_class ul.navbar-nav .nav-item {
    display: none;
  }
  ul.navbar-nav > li {
    padding: 0 4px;
  }
  ul.navbar-nav > li > a:hover,
  ul.navbar-nav > li > a:focus,
  ul.navbar-nav > li.active > a {
    font-weight: bold;
  }
  ul.navbar-nav > li > a:hover:before,
  ul.navbar-nav > li > a:focus:before,
  ul.navbar-nav > li.active > a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 1px;
    margin: 0 auto;
    background-color: #fff;
    animation: bounceIn 1s ease-in-out forwards;
  }
  /* Pull right  */
}
@media (min-width: 992px) {
  ul.navbar-nav > li {
    padding: 0 12px;
  }
}
/* Mobile Menu
--------------- */
@media (max-width: 767px) {
  .navbar {
    padding: 0 !important;
  }
  .navbar .navbar-brand img {
    width: 100px;
  }
  .nav_top_menu {
    display: none;
  }
}
/* Layout - Right Group
------------- */
.nav_right_group {
  float: right;
}
.nav_right_group > div {
  float: right;
}

/* Nav Add Class 
----------------*/
.navbar {
  padding: 1rem;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.navbar.add_class .navbar-brand img {
  width: 100px;
}
@media (max-width: 767px) {
  .navbar {
    display: flex;
  }
}

.navbar_home.add_class .navbar-header .navbar-brand .brand_logo.home {
  content: "";
  background-image: url(../images/icons.png);
  width: 400px;
  height: 40px;
  background-position: -5px -5px;
  background-size: 1200px auto;
}
@media (max-width: 1199px) {
  .navbar_home.add_class .navbar-header .navbar-brand .brand_logo.home {
    width: 340px;
    height: 34px;
    background-position: -4.25px -4.25px;
    background-size: 1020px auto;
  }
}
@media (max-width: 767px) {
  .navbar_home.add_class .navbar-header .navbar-brand .brand_logo.home {
    width: 240px;
    height: 24px;
    background-position: -3px -3px;
    background-size: 720px auto;
  }
}

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

/* NavTop Language
----------------*/
.language_wrap {
  padding: 8px 0;
  font-family: "Poppins", "Microsoft Jhenghei", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.language_wrap > li {
  display: block;
  padding: 4px;
  margin: 4px;
  font-size: 14px;
  color: #cbd0d3;
  line-height: 1em;
  border: 1px solid #707070;
  border-radius: 15px;
  text-align: center;
  width: 50px;
}
.language_wrap > li > a {
  display: block;
  color: inherit;
  font-size: inherit;
}
.language_wrap > li:hover,
.language_wrap > li.active {
  border-color: #df7901;
  color: #df7901;
}
@media (max-width: 767px) {
  .language_wrap {
    display: none;
  }
}

/* Home Navbar Layout
----------------*/
.h_navTop {
  display: block;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background-color: white;
}
@media (max-width: 767px) {
  .h_navTop {
    display: none;
  }
}

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

.navbar_home {
  position: relative;
  display: block;
}
.navbar_home:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 30px;
  background-color: #f4b8c0;
  z-index: -1;
}
.navbar_home .navbar-collapse {
  border-radius: 40px 40px 0 0;
  padding: 2rem 0;
  background: #343333;
}
@media (max-width: 767px) {
  .navbar_home {
    display: none;
  }
}

.sticky_nav {
  position: sticky;
  top: 60px;
  right: 0;
  left: 0;
  z-index: 2;
}

.prd_menu {
  padding: 2rem 1rem;
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #d3d3d3;
}
.prd_menu .prd_img_menu {
  width: 25%;
}
.prd_menu .prd_ul {
  display: flex;
  width: 70%;
}
.prd_menu .prd_ul > li {
  width: calc(33.3333333333% - 1rem);
  margin: 0 1rem;
  flex: 1 1 auto;
  text-align: left;
}
.prd_menu .prd_ul li {
  padding: 4px 0;
}
.prd_menu .prd_ul a {
  font-size: 18px;
  display: block;
}
.prd_menu .prd_ul .title {
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #707070;
}
.prd_menu .prd_ul i {
  float: right;
}
.prd_menu .prd_ul .layer_2nd {
  padding-top: 4px;
}
.prd_menu .prd_ul .layer_2nd li {
  margin-left: 3rem;
}

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

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-delay: 3.5s;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomBg {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ======================== 
Mixin
======================== */
/* ======================== 
  Common
======================== */
/* Cover */
h1,
.h1 {
  font-size: 36px;
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 30px;
  }
}

h2,
.h2,
.sidebar .header {
  font-size: 24px;
}
@media (max-width: 767px) {
  h2,
  .h2,
  .sidebar .header {
    font-size: 19px;
  }
}

h3,
.h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  h3,
  .h3 {
    font-size: 19px;
  }
}

h4,
.h4 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 17px;
  }
}

p,
.p {
  font-size: 20px;
}
@media (max-width: 767px) {
  p,
  .p {
    font-size: 15px;
  }
}

/* Common Default */
body {
  padding-top: 1px;
  margin-top: -1px;
  position: relative;
}

.section_main {
  padding: 180px 100px;
}
@media (max-width: 767px) {
  .section_main {
    padding: 60px 30px;
  }
}
@media (max-width: 425px) {
  .section_main {
    padding: 60px 0;
  }
}

/* Comps */
.sidebar_wrapper {
  position: relative;
  margin-bottom: 15px;
  min-height: 10px;
}
.sidebar_header {
  padding: 8px 0px;
  line-height: 1.5em;
  border-bottom: 1px solid #707070;
}

.sidebar_body {
  list-style: none;
  padding-top: 8px;
  /* active */
}
.sidebar_body a {
  display: block;
  padding: 8px 0px;
  color: #e1e1e1;
  font-size: 18px;
}
.sidebar_body a.active,
.sidebar_body a:hover {
  color: #0781e0;
  font-weight: 700;
}

.sidebar_fix {
  position: fixed;
}

.main_bg {
  background-color: #202020;
}

.main_title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
.main_title .en {
  font-family: "Poppins", "Microsoft Jhenghei", Arial, sans-serif;
}
@media (max-width: 767px) {
  .main_title {
    font-size: 24px;
  }
}

/* Common Default */
.crsl_basic:after,
.crsl_basic:before,
.grid_basic:after,
.grid_basic:before,
.list_basic:after,
.list_basic:before {
  content: "";
  display: block;
  clear: both;
}

.crsl_basic .item,
.grid_basic .item,
.list_basic .item {
  display: block;
  position: relative;
  overflow: hidden;
}

.crsl_basic .inner,
.crsl_basic .img_wrapper,
.grid_basic .inner,
.grid_basic .img_wrapper,
.list_basic .inner,
.list_basic .img_wrapper {
  display: block;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.crsl_basic .img,
.grid_basic .img,
.list_basic .img {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.crsl_basic .brand_bg,
.grid_basic .brand_bg,
.list_basic .brand_bg {
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.crsl_basic .brand_bg img,
.grid_basic .brand_bg img,
.list_basic .brand_bg img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
}

.crsl_basic .brand_bg p,
.grid_basic .brand_bg p,
.list_basic .brand_bg p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 40%;
  font-size: 22px;
  text-align: center;
}

.crsl_basic img,
.grid_basic img,
.list_basic img {
  width: 100%;
}

.crsl_basic .content_wrapper,
.grid_basic .content_wrapper,
.list_basic .content_wrapper {
  position: relative;
}

.crsl_basic .content,
.grid_basic .content,
.list_basic .content {
  transition: all 0.1s ease-in-out;
}

.crsl_basic .brand_name,
.grid_basic .brand_name,
.list_basic .brand_name {
  transition: all 0.1s ease-in-out;
}

.crsl_basic .title,
.grid_basic .title,
.list_basic .title {
  margin: 0;
}

/* ======================== 
Pages Layout
======================== */
/* Global Pages
----------------- */
/* Footer Archieve Styles
---------------------- */
footer.footer {
  padding: 0px 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  footer.footer {
    padding: 0px 40px;
  }
}
@media (max-width: 576px) {
  footer.footer {
    padding: 0;
  }
}
footer.footer ul.f_menu li {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
footer.footer ul.f_menu li > a:hover,
footer.footer ul.f_menu li > a:focus,
footer.footer ul.f_menu li.active > a {
  position: relative;
}
footer.footer ul.f_menu li > a:hover:before,
footer.footer ul.f_menu li > a:focus:before,
footer.footer ul.f_menu li.active > a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  margin: 0 auto;
  background-color: #fff;
  animation: bounceIn 1s ease-in-out forwards;
}
footer.footer ul.f_menu .f_menu_click {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 64px 29px;
}
footer.footer ul.f_menu .f_menu_click li {
  font-size: 24px;
  font-weight: lighter;
}
@media (max-width: 767px) {
  footer.footer ul.f_menu .f_menu_click {
    padding: 0 0 10px 5px;
  }
}

.footer_inner {
  padding: 1rem;
}
.footer_inner:after,
.footer_inner:before {
  content: "";
  display: block;
  clear: both;
}
/* Footer Logo
-------------- */
@media (max-width: 767px) {
  .f_logo {
    margin: 1rem 0;
  }
  .f_logo img {
    margin: 0 auto;
  }
}
/* Footer INFO
-------------- */
.f_info_ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.f_info_ul li {
  padding: 4px;
}
.f_info_ul li a:not(:last-child) {
  padding-right: 56px;
}
.f_info_ul li:not(:last-child) {
  padding-right: 8px;
}
@media (max-width: 767px) {
  .f_info_ul {
    padding: 0 1rem;
  }
}

/* Footer Menu
------------------ */
.f_menu_wrapper {
  padding: 10px 0;
  margin: 0 0.5rem;
}
.f_menu_wrapper .f_menu li {
  padding: 4px 8px;
  color: white;
}
.f_menu_wrapper .f_menu a:hover {
  opacity: 0.8;
}
/* Social
-------------- */
.f_social {
  text-align: inherit;
  padding: 10px 0;
  display: flex;
}
@media (max-width: 991px) {
  .f_social {
    width: 100%;
    justify-content: center;
  }
}
.f_social li {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  margin-right: 1rem;
}
.f_social li i {
  font-size: 30px;
}
.f_social a {
  display: inline-block;
}

/* Footer copyright
-------------- */
.f_copyright p,
.f_copyright a {
  color: white;
  opacity: 0.5;
  font-size: 12px;
}
@media (max-width: 767px) {
  .f_copyright {
    margin-top: 8px;
    text-align: center;
  }
}

.footer_fix {
  min-height: calc(100vh - 328px);
}
@media (max-width: 767px) {
  .footer_fix {
    min-height: calc(100vh - 398px);
  }
}

.footer_fix_home {
  min-height: calc(100vh - 545px);
}

.f_bottom {
  padding: 120px 0;
  display: flex;
  flex-wrap: wrap;
}
.f_bottom .left_block {
  flex: 1 1 auto;
}
@media (max-width: 767px) {
  .f_bottom .left_block.menu_style {
    display: none;
  }
}
.f_bottom .right_block {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .f_bottom .right_block {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: column;
  }
}

.banner {
  height: 160px;
  position: relative;
  overflow: hidden;
  position: relative;
}
.banner:after,
.banner:before {
  content: "";
  display: block;
  clear: both;
}
.banner .bg-full {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat !important;
  z-index: -1;
}
.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 .title {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 36px;
  font-weight: bold;
  font-family: "Poppins", "Microsoft Jhenghei", Arial, sans-serif;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}
.banner .content {
  position: relative;
  top: 0;
  height: 100%;
  display: flex;
  -moz-flex-direction: column;
  flex-direction: column;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 2;
}
.searchResult_wrap {
  position: relative;
  padding: 60px 8px;
  max-width: 1600px;
}
@media (max-width: 767px) {
  .searchResult_wrap {
    padding: 30px 8px;
  }
}
.searchResult_wrap .header {
  padding: 30px 8px;
}
.searchResult_wrap .srch_item {
  position: relative;
  padding: 16px 8px;
  padding-bottom: 2rem;
}
.searchResult_wrap .srch_item:before {
  content: "";
  border-top: 2px solid;
  color: #343333;
  margin: auto;
  position: absolute;
  top: 0;
  left: 8px;
  transform: scale(1);
  width: 4rem;
}
.searchResult_wrap .srch_item .title {
  color: #0781e0;
}
.searchResult_wrap .srch_item .dsc {
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  white-space: normal;
  text-overflow: initial;
}
.searchResult_wrap .srch_highlight {
  color: #343333;
  font-weight: 700;
}

.search_wrap {
  z-index: 9999;
  position: fixed;
  min-width: 100vw;
  min-height: 100vh;
  background-color: rgba(32, 32, 32, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.search_wrap .title {
  font-size: 28px;
}
.search_wrap .inner-form i {
  display: block;
  font-size: 40px;
  margin-bottom: 60px;
}
.search_wrap .search_style {
  text-align: center;
  width: 600px;
  margin: 1.5rem 0;
  border: 1px solid white;
  border-radius: 0;
  background-color: transparent;
  color: white;
  font-size: 24px;
}
@media (max-width: 991px) {
  .search_wrap .search_style {
    width: 450px;
  }
}
@media (max-width: 767px) {
  .search_wrap .search_style {
    width: 320px;
  }
}

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

.searchResult_section .searchResult_title {
  font-size: 56px;
  font-weight: bolders;
}
.searchResult_section .searchResult_keyword {
  font-weight: normal;
  font-size: 28px;
}
.searchResult_section .searchResult_content {
  font-weight: normal;
  font-size: 24px;
}
.searchResult_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .searchResult_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .searchResult_section .common_p {
    padding: 60px 10px;
  }
}
.searchResult_section .hr_style {
  width: 536px;
}

/* Home
----------------- */
.openning_sect {
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #707070;
  height: 100%;
  position: fixed;
  z-index: 5000;
  width: 100%;
}
.openning_sect .openning_img {
  transition: opacity 1s ease;
  opacity: 0;
}
.openning_sect .openning_img.show_img {
  opacity: 1;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.h_cover_bg_container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.h_cover_bg_container .h_cover_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease, transform 10s;
}
.h_cover_bg_container .h_cover_bg.top_show {
  z-index: 2 !important;
  opacity: 1 !important;
}
.h_cover_bg_container .h_cover_bg.effect1 {
  height: 110%;
  z-index: 1;
  opacity: 0;
  transform: translateY(-10%);
}
.h_cover_bg_container .h_cover_bg.effect1.top_show {
  transform: translateY(0%);
}
.h_cover_bg_container .h_cover_bg.effect2 {
  z-index: 1;
  opacity: 0;
  transform: scale(1.2);
}
.h_cover_bg_container .h_cover_bg.effect2.top_show {
  transform: scale(1.1);
}
.h_cover_bg_container .h_cover_bg.effect3 {
  width: 120%;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
}
.h_cover_bg_container .h_cover_bg.effect3.top_show {
  transform: translateX(0%);
}

.h_cover_bg_text {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.h_cover_bg_text .content {
  position: absolute;
  left: 10%;
  top: 50%;
  margin-left: -30px;
  margin-top: 48px;
  color: #fff;
  padding: 5px;
}
.h_cover_bg_text .content hr {
  opacity: 1;
}
@media (max-width: 769px) {
  .h_cover_bg_text .content {
    left: 50%;
    margin-left: 0;
    width: 100%;
    text-align: center;
    transform: translate(-50%, 0%);
  }
}
.h_cover_bg_text .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  text-shadow: 3px 3px 20px #000;
}
@media (max-width: 575px) {
  .h_cover_bg_text .heading {
    font-size: 30px;
  }
}
.h_cover_bg_text .text {
  font-size: 20px;
  text-shadow: 3px 3px 20px #000;
}
.h_cover_bg_text .text_show_fadeOut {
  display: block;
}
.h_cover_bg_text .text_show_fadeOut h2 {
  animation: fadeOutUp 1s both;
}
.h_cover_bg_text .text_show_fadeOut hr {
  animation: fadeOut 1s both;
}
.h_cover_bg_text .text_show_fadeOut p {
  animation: fadeOutDown 1s both;
}
.h_cover_bg_text .text_show_fadeIn h2 {
  animation: fadeInDown 1s both;
  display: block;
}
.h_cover_bg_text .text_show_fadeIn hr {
  animation: fadeIn 1s both;
}
.h_cover_bg_text .text_show_fadeIn p {
  animation: fadeInUp 1s both;
  display: block;
}
.h_cover_bg_text .display001,
.h_cover_bg_text .display002,
.h_cover_bg_text .display003 {
  display: none;
}
.h_cover_bg_text .display001.top_show,
.h_cover_bg_text .display002.top_show,
.h_cover_bg_text .display003.top_show {
  display: block !important;
}

.h_about_sect {
  position: relative;
  background: #202020;
  z-index: 3;
}
.h_about_sect .img_wrapper {
  text-align: center;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.h_about_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 58.33%;
  /* 950 / 560 * 100% */
}
.h_about_sect .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.h_about_sect .content {
  position: relative;
  margin-left: 15%;
}
.h_about_sect .content .desc {
  line-height: 2;
}
.h_about_sect .content .btn_link {
  border-top: 1px solid;
  display: block;
  text-align: right;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_about_sect .content .btn_link span:hover {
  font-size: 105%;
}
@media (max-width: 991px) {
  .h_about_sect .main_title {
    text-align: center;
  }
  .h_about_sect .content {
    padding: 2rem 1rem;
    margin: 0;
  }
}

.h_cases_sect {
  position: relative;
  z-index: 3;
  background-color: #0d0d0d;
}
.h_cases_sect .main_title {
  text-align: center;
}
.h_cases_sect .content {
  position: relative;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
  margin: 0;
}
.h_cases_sect .content .swiper-button-container {
  text-align: center;
}
.h_cases_sect .btn_link {
  display: block;
  text-align: center;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_cases_sect .btn_link span:hover {
  font-size: 105%;
}
.h_cases_sect .item .img_wrapper {
  text-align: center;
  min-width: 200px;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.h_cases_sect .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 90.7%;
  /* 398 / 361 * 100% */
}
.h_cases_sect .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.h_cases_sect .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.h_cases_sect .item .container {
  max-width: 400px !important;
  padding: 0;
}
.h_cases_sect .item a {
  color: white;
}
.h_cases_sect .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin: 0.5rem 0;
  min-height: 2rem;
}
.h_cases_sect .item .new_tags {
  color: #707070;
}
.h_cases_sect .swiper-button-container {
  position: relative;
}
.h_cases_sect .swiper-button-container .swiper-button-next:after,
.h_cases_sect .swiper-button-container .swiper-button-prev:after {
  content: initial;
}
.h_cases_sect .swiper-button-container .swiper-button-next,
.h_cases_sect .swiper-button-container .swiper-button-prev {
  position: relative !important;
  display: initial;
  left: auto;
  right: auto;
}
.h_cases_sect .swiper-button-container .swiper-button-next img:hover,
.h_cases_sect .swiper-button-container .swiper-button-prev img:hover {
  border-radius: 48px;
  background-color: rgba(255, 255, 255, 0.1);
}

.h_bg {
  background-size: cover !important;
  position: relative;
  z-index: 3 !important;
  padding-top: 600px;
  background-image: url("../../frontend/images/h_bg_001.jpg");
}
@media (min-width: 1200px) {
  .h_bg {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
  }
}
.h_bg.bg2 {
  background-image: url("../../frontend/images/h_bg_002.jpg");
}
.h_bg.bg3 {
  background-image: url("../../frontend/images/h_bg_003.jpg");
}
.h_bg.about_bg1 {
  background-image: url("../../frontend/images/about/about_bg_002.jpg");
}
.h_bg.about_bg2 {
  background-image: url("../../frontend/images/about/about_bg_002.jpg");
}
@media (max-width: 991px) {
  .h_bg {
    padding-top: 400px;
  }
}
@media (max-width: 767px) {
  .h_bg {
    padding-top: 300px;
  }
}

.h_service_sect {
  position: relative;
  background: #202020;
  z-index: 3;
}
.h_service_sect .left_block {
  background-color: #0d0d0d;
  padding: 160px 80px;
}
.h_service_sect .left_block .desc {
  padding: 3rem 0;
  line-height: 2;
}
.h_service_sect .right_block {
  padding: 160px 80px;
  padding-bottom: 60px;
}
.h_service_sect .service_item {
  padding: 2rem 0;
}
.h_service_sect .service_item .item {
  display: flex;
  align-items: center;
  padding: 1rem;
}
.h_service_sect .service_item .item p {
  padding-left: 2rem;
}
.h_service_sect .service_item .btn_container {
  justify-content: center;
}
@media (max-width: 991px) {
  .h_service_sect .left_block,
  .h_service_sect .right_block {
    padding: 60px 30px;
  }
  .h_service_sect .left_block .desc {
    padding: 2rem 0;
  }
}

.h_member_sect {
  position: relative;
  z-index: 3;
  background-image: url("../../_images/index/home_bg_004.jpg");
}
.h_member_sect .img_wrapper {
  text-align: center;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.h_member_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.57%;
  /* 950 / 509 * 100% */
}
.h_member_sect .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.h_member_sect .content {
  position: relative;
  margin-right: 15%;
}
.h_member_sect .content .desc {
  line-height: 2;
}
.h_member_sect .content .btn_link {
  border-top: 1px solid;
  display: block;
  text-align: right;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_member_sect .content .btn_link span:hover {
  font-size: 105%;
}
@media (max-width: 991px) {
  .h_member_sect .main_title {
    text-align: center;
  }
  .h_member_sect .content {
    padding: 2rem 1rem;
    margin: 0;
  }
}

.h_news_sect {
  position: relative;
  background: #202020;
  z-index: 3;
}
.h_news_sect .content {
  position: relative;
  margin-right: 15%;
}
.h_news_sect .content .btn_link {
  border-top: 1px solid;
  display: block;
  text-align: right;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_news_sect .content .btn_link span:hover {
  font-size: 105%;
}
.h_news_sect .item .img_wrapper {
  text-align: center;
  min-width: 200px;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.h_news_sect .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 90.7%;
  /* 398 / 361 * 100% */
}
.h_news_sect .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.h_news_sect .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.h_news_sect .item a {
  color: white;
}
.h_news_sect .item .container {
  padding: 0;
}
.h_news_sect .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin: 0.5rem 0;
  min-height: 4rem;
}
.h_news_sect .item .new_tags {
  color: #707070;
}
.h_news_sect .btn_link2 {
  display: none;
  text-align: center;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_news_sect .btn_link2 span:hover {
  font-size: 105%;
}
@media (max-width: 991px) {
  .h_news_sect .main_title {
    text-align: center;
  }
  .h_news_sect .content {
    padding: 2rem 1rem;
    padding-bottom: 4rem;
    margin: 0;
  }
  .h_news_sect .swiper-button-container {
    text-align: center;
  }
  .h_news_sect .btn_link {
    display: none !important;
  }
  .h_news_sect .btn_link2 {
    display: block;
  }
}
.h_news_sect .swiper-button-container {
  position: relative;
}
.h_news_sect .swiper-button-container .swiper-button-next:after,
.h_news_sect .swiper-button-container .swiper-button-prev:after {
  content: initial;
}
.h_news_sect .swiper-button-container .swiper-button-next,
.h_news_sect .swiper-button-container .swiper-button-prev {
  position: relative !important;
  display: initial;
  left: auto;
  right: auto;
}
.h_news_sect .swiper-button-container .swiper-button-next img:hover,
.h_news_sect .swiper-button-container .swiper-button-prev img:hover {
  border-radius: 48px;
  background-color: rgba(255, 255, 255, 0.1);
}

.h_knowledge_sect {
  position: relative;
  z-index: 3;
  background-color: #0d0d0d;
}
.h_knowledge_sect .content {
  position: relative;
  margin-right: 15%;
}
.h_knowledge_sect .content .btn_link {
  border-top: 1px solid;
  display: block;
  text-align: right;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_knowledge_sect .content .btn_link span:hover {
  font-size: 105%;
}
.h_knowledge_sect .content .space_container {
  min-height: 300px;
}
.h_knowledge_sect .btn_link2 {
  display: none;
  text-align: center;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_knowledge_sect .btn_link2 span:hover {
  font-size: 105%;
}
@media (max-width: 991px) {
  .h_knowledge_sect .main_title {
    text-align: center;
  }
  .h_knowledge_sect .content {
    position: relative;
    margin-right: 0;
  }
  .h_knowledge_sect .content .space_container {
    display: none;
  }
  .h_knowledge_sect .btn_link {
    display: none !important;
  }
  .h_knowledge_sect .btn_link2 {
    display: block;
  }
}
.h_knowledge_sect ul {
  margin-top: 4.5rem;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.h_knowledge_sect ul li {
  padding: 1rem;
  transition: all 0.2s ease-in-out;
}
.h_knowledge_sect ul li + li {
  border-top: 1px solid #e1e1e1;
}
.h_knowledge_sect ul li:hover {
  background-color: white;
}
.h_knowledge_sect ul li:hover .k_tags,
.h_knowledge_sect ul li:hover .k_dash,
.h_knowledge_sect ul li:hover .title {
  color: #202020;
}
.h_knowledge_sect ul li .k_tags,
.h_knowledge_sect ul li .k_dash,
.h_knowledge_sect ul li .title {
  display: inline-block;
  vertical-align: middle;
  color: #e1e1e1;
  font-size: 1.25rem;
  white-space: nowrap;
  /* 限制文本不换行 */
  text-overflow: ellipsis;
  overflow: hidden;
}
.h_knowledge_sect ul li .k_tags {
  width: 125px;
}
.h_knowledge_sect ul li .k_dash {
  width: 45px;
}
.h_knowledge_sect ul li .title {
  width: calc(100% - 180px);
}
@media (max-width: 767px) {
  .h_knowledge_sect ul {
    margin-top: 2.5rem;
  }
  .h_knowledge_sect ul li {
    padding: 1rem;
  }
  .h_knowledge_sect ul li .k_tags,
  .h_knowledge_sect ul li .title {
    width: 100%;
  }
}

.h_materials_sect {
  position: relative;
  z-index: 3;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  background-image: url("../../_images/index/home_bg_004.jpg");
}
.h_materials_sect .main_title {
  text-align: center;
}
.h_materials_sect .content {
  position: relative;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
  margin: 0;
}
.h_materials_sect .content .swiper-button-container {
  text-align: center;
}
.h_materials_sect .btn_link {
  display: block;
  text-align: center;
  width: 100%;
  color: #e1e1e1;
  font-size: 0.85rem;
}
.h_materials_sect .btn_link span:hover {
  font-size: 105%;
}
.h_materials_sect .item .img_wrapper {
  text-align: center;
  min-width: 200px;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.h_materials_sect .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 58.54%;
  /* 398 / 233 * 100% */
}
.h_materials_sect .item .img_wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.h_materials_sect .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.h_materials_sect .item a {
  color: white;
}
.h_materials_sect .item .container {
  max-width: 400px !important;
  padding: 0;
}
.h_materials_sect .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin: 0.5rem 0;
  min-height: 4rem;
}
.h_materials_sect .item .new_tags {
  color: #707070;
}
.h_materials_sect .swiper-button-container {
  position: relative;
}
.h_materials_sect .swiper-button-container .swiper-button-next:after,
.h_materials_sect .swiper-button-container .swiper-button-prev:after {
  content: initial;
}
.h_materials_sect .swiper-button-container .swiper-button-next,
.h_materials_sect .swiper-button-container .swiper-button-prev {
  position: relative !important;
  display: initial;
  left: auto;
  right: auto;
}
.h_materials_sect .swiper-button-container .swiper-button-next img:hover,
.h_materials_sect .swiper-button-container .swiper-button-prev img:hover {
  border-radius: 48px;
  background-color: rgba(255, 255, 255, 0.1);
}

.h_footer_sect {
  position: relative;
  z-index: 3;
  background-color: #202020;
}

.title_cover_bg_L {
  background-size: cover !important;
  position: relative;
  background-position: center center;
  z-index: 3 !important;
  padding-top: 550px;
  transition: background-image 1s ease;
}
@media (min-width: 1200px) {
  .title_cover_bg_L {
    background-size: cover !important;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    padding-top: 900px;
    z-index: -1;
  }
}
.title_cover_bg_L.about_bg1 {
  background-image: url("../../_images/about/about_bg_001.jpg");
}
.title_cover_bg_L.about_bg2 {
  background-image: url("../../_images/about/about_bg_002.jpg");
}
.title_cover_bg_L.news_bg1 {
  background-image: url("../../_images/news/news_bg_001.jpg");
}
.title_cover_bg_L.knowledge_bg1 {
  background-image: url("../../_images/knowledge/knowledge_bg_001.jpg");
}
.title_cover_bg_L.materials_bg1 {
  background-image: url("../../_images/materials/materials_bg_001.jpg");
}
.title_cover_bg_L.member_bg1 {
  background-image: url("../../_images/member/member_bg_001.jpg");
}
.title_cover_bg_L.album_bg1 {
  background-image: url("../../_images/album/album_bg_001.jpg");
}
.title_cover_bg_L.cases_bg1 {
  background-image: url("../../_images/cases/cases_bg_001.jpg");
}
.title_cover_bg_L .content {
  position: absolute;
  left: 10%;
  top: 50%;
  margin-left: -30px;
  margin-top: 48px;
  color: #fff;
  padding: 5px;
}
.title_cover_bg_L .content hr {
  opacity: 1;
}
@media (max-width: 769px) {
  .title_cover_bg_L .content {
    left: 50%;
    margin-left: 0;
    width: 100%;
    text-align: center;
    transform: translate(-50%, 0%);
  }
}
.title_cover_bg_L .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  text-shadow: 3px 3px 20px #000;
}
@media (max-width: 575px) {
  .title_cover_bg_L .heading {
    font-size: 30px;
  }
}
.title_cover_bg_L .text {
  font-size: 20px;
  text-shadow: 3px 3px 20px #000;
}

.title_cover_bg_S {
  overflow: hidden;
  background-repeat: no-repeat !important;
  z-index: -1;
  position: relative;
  background-size: 100% auto !important;
  padding-top: 300px;
}
@media (max-width: 991px) {
  .title_cover_bg_S {
    padding-top: 200px;
  }
}
@media (max-width: 767px) {
  .title_cover_bg_S {
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .title_cover_bg_S {
    padding-top: 100px;
  }
}
.title_cover_bg_S.about_bg1 {
  background-image: url("../../_images/about/about_bg_001.jpg");
}
.title_cover_bg_S.about_bg2 {
  background-image: url("../../_images/about/about_bg_002.jpg");
}
.title_cover_bg_S.about_bg3 {
  background-image: url("../../_images/about/about_bg_003.jpg");
}
景觀資材 .title_cover_bg_S.news_bg2 {
  background-image: url("../../_images/news/news_bg_002.jpg");
}
.title_cover_bg_S.knowledge_bg2 {
  background-image: url("../../_images/knowledge/knowledge_bg_002.jpg");
}
.title_cover_bg_S.materials_bg2 {
  background-image: url("../../_images/materials/materials_bg_002.jpg");
}
.title_cover_bg_S.album_bg2 {
  background-image: url("../../_images/album/album_bg_002.jpg");
}
.title_cover_bg_S.cases_bg2 {
  background-image: url("../../_images/cases/cases_bg_002.jpg");
}
.title_cover_bg_S .content {
  position: absolute;
  left: 10%;
  top: 50%;
  margin-left: -30px;
  margin-top: 48px;
  color: #fff;
}
.title_cover_bg_S .content hr {
  opacity: 1;
}
@media (max-width: 991px) {
  .title_cover_bg_S .content {
    top: 30%;
  }
}
@media (max-width: 767px) {
  .title_cover_bg_S .content {
    top: 10%;
  }
}
@media (max-width: 575px) {
  .title_cover_bg_S .content {
    top: 10%;
  }
}
.title_cover_bg_S .heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  text-shadow: 3px 3px 20px #000;
}
@media (max-width: 575px) {
  .title_cover_bg_S .heading {
    font-size: 30px;
  }
}

body {
  overflow-x: hidden;
}

.slider {
  position: relative;
  height: 100vh;
}
.slider__slides {
  z-index: 1;
  position: relative;
  height: 100%;
}
.slider__control {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.3s;
  cursor: pointer;
}
.slider__control--right {
  left: 95%;
}
.slider__control:hover {
  background-color: #2da6ff;
}
.slider__control-line {
  position: absolute;
  left: 23px;
  top: 50%;
  width: 3px;
  height: 14px;
  transform-origin: 50% 0;
  transform: rotate(-45deg);
}
.slider__control-line:nth-child(2) {
  transform: translateY(1px) rotate(-135deg);
}
.slider__control--right .slider__control-line {
  left: 37px;
  transform-origin: 1px 0;
  transform: rotate(45deg);
}
.slider__control--right .slider__control-line:nth-child(2) {
  transform: translateY(1px) rotate(135deg);
}
.slider__control-line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #e2e2e2;
  transition: background-color 0.3s;
}
.slider__control:hover .slider__control-line:after {
  background-color: #fff;
}
.slider__control.a--rotation .slider__control-line:after {
  animation: arrowLineRotation 0.49s;
}
.slider__control.a--rotation .slider__control-line:nth-child(1):after {
  animation: arrowLineRotationRev 0.49s;
}

@keyframes arrowLineRotation {
  to {
    transform: rotate(180deg);
  }
}
@keyframes arrowLineRotationRev {
  to {
    transform: rotate(-180deg);
  }
}
.slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 100vmax;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: -webkit-clip-path 0s 0.91s;
  transition: clip-path 0s 0.91s;
  transition: clip-path 0s 0.91s, -webkit-clip-path 0s 0.91s;
  -webkit-clip-path: circle(30px at 120vw 50%);
  clip-path: circle(30px at 120vw 50%);
}
.slide.s--prev {
  -webkit-clip-path: circle(30px at 30vw 50%);
  clip-path: circle(30px at 30vw 50%);
}
.slide.s--active {
  z-index: 1;
  transition: -webkit-clip-path 1.3s;
  transition: clip-path 1.3s;
  transition: clip-path 1.3s, -webkit-clip-path 1.3s;
  -webkit-clip-path: circle(120vmax at 120vw 50%);
  clip-path: circle(120vmax at 120vw 50%);
}
.slide.s--active.s--active-prev {
  -webkit-clip-path: circle(120vmax at 30vw 50%);
  clip-path: circle(120vmax at 30vw 50%);
}
.slide:nth-child(1) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-2.jpg");
}
.slide:nth-child(2) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-3.jpg");
}
.slide:nth-child(3) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-4.jpg");
}
.slide:nth-child(4) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-5.jpg");
}
.slide:nth-child(5) .slide__inner {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-6.jpg");
}
.slide__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  margin-left: -50vw;
  margin-top: -50vh;
  background-size: cover;
  background-position: center center;
}
.slide__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.slide__content {
  position: absolute;
  left: 5%;
  top: 50%;
  margin-left: -30px;
  margin-top: 48px;
  color: #fff;
}
.slide__heading {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  border-bottom: 1px solid white;
  text-shadow: 3px 3px 20px #000;
}
.slide__text {
  font-size: 20px;
}
.slide__text a {
  color: inherit;
}

/* Pages
----------------- */
.about_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .about_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .about_section .common_p {
    padding: 60px 10px;
  }
}
.about_section .hr_style {
  width: 536px;
}

.about_director_sect {
  font-size: 16px;
}
.about_director_sect section {
  max-width: 1200px;
}
.about_director_sect .left_block {
  text-align: center;
}
.about_director_sect .left_block .img_wrapper {
  text-align: center;
  margin: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.about_director_sect .left_block .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 135.67%;
  /* 398 / 540 * 100% */
}
.about_director_sect .left_block .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about_director_sect .right_block {
  display: flex;
  padding: 150px 80px;
  padding-bottom: 40px;
  padding-top: 83px;
  padding-right: 0;
}
@media (max-width: 991px) {
  .about_director_sect .right_block {
    padding: 100px 8px;
  }
}
.about_director_sect .mid_block {
  padding: 150px 0;
  padding-bottom: 60px;
}
.about_director_sect .main_title {
  text-align: center;
}
.about_director_sect html,
.about_director_sect body {
  position: relative;
  height: 100%;
  font-size: 100%;
  background-color: #333;
}
.about_director_sect #wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.about_director_sect section {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 5%;
  height: 100%;
  color: #fff;
  overflow: hidden;
}
.about_director_sect section h1 {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}
.about_director_sect section .tab_btns {
  font-size: 0;
  padding: 0;
  text-align: center;
}
.about_director_sect section .tab_btns li {
  display: inline-block;
  padding: 0 !important;
  width: 40%;
  max-width: 100px;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  box-sizing: border-box;
  opacity: 0.5;
  cursor: pointer;
}
.about_director_sect section .tab_btns li a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.about_director_sect section .tab_btns li:hover,
.about_director_sect section .tab_btns li.on {
  opacity: 1;
}
.about_director_sect section .tab_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s;
}
.about_director_sect section .tab_contents {
  position: relative;
  width: 100%;
  white-space: nowrap;
  font-size: 0;
  transition: all 0.5s;
  padding: 0;
  box-sizing: border-box;
}
.about_director_sect section .tab_contents li {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  width: 100%;
  padding: 72px;
  padding-right: 0;
  box-sizing: border-box;
  white-space: initial;
}
.about_director_sect section .tab_contents li hr {
  width: 80%;
  margin: 5% auto;
}
.about_director_sect section .tab_contents li p {
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}
.about_director_sect section .tab_contents li p.bg {
  background-color: #ccc;
}
.about_director_sect section .tab_contents li p span {
  font-size: 1rem;
}
.about_director_sect section .tab_contents li .director_title {
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
}
.about_director_sect section .tab_contents li .director_title span {
  font-size: 24px;
}
.about_director_sect section .tab_contents li .director_title.flex-end {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.about_director_sect section .tab_contents li .director_item {
  opacity: 0.5;
}
@media (max-width: 991px) {
  .about_director_sect section .tab_contents li {
    padding: 0;
  }
}
.about_director_sect #aa {
  width: 80%;
  margin: 0 auto;
  border: 1px dashed #fff;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .about_director_sect .left_block .desc {
    padding: 2rem 0;
  }
}

.about_organization_sect .mid_block {
  background-color: #0d0d0d;
  padding: 120px 120px;
  text-align: center;
  line-height: 1.5;
}
.about_organization_sect .organization_content {
  margin: auto;
  max-width: 823px;
}
.about_organization_sect .organization_content .img_wrapper {
  text-align: center;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.about_organization_sect .organization_content .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 80%;
  /* 823 / 610 * 100% */
}
.about_organization_sect .organization_content .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .about_organization_sect .mid_block {
    padding: 120px 60px;
  }
}
@media (max-width: 767px) {
  .about_organization_sect .mid_block {
    padding: 120px 20px;
  }
}

.about_supervisorMember_sect .mid_block {
  padding: 120px 120px;
  text-align: center;
  line-height: 1.5;
}
.about_supervisorMember_sect ul {
  border-bottom: 1px solid #e1e1e1;
  text-align: left;
  margin: auto;
  max-width: 1200px;
}
.about_supervisorMember_sect ul li {
  padding: 1rem;
  transition: all 0.2s ease-in-out;
}
.about_supervisorMember_sect ul li + li {
  border-top: 1px solid #e1e1e1;
}
.about_supervisorMember_sect ul li:hover {
  background-color: white;
}
.about_supervisorMember_sect ul li:hover .name,
.about_supervisorMember_sect ul li:hover .company_name {
  color: #202020;
}
.about_supervisorMember_sect ul li.head .job {
  color: #e1e1e1;
}
@media (max-width: 767px) {
  .about_supervisorMember_sect ul li.head {
    display: none;
  }
}
.about_supervisorMember_sect ul li.head:hover {
  background-color: inherit;
}
.about_supervisorMember_sect ul li.head:hover .name,
.about_supervisorMember_sect ul li.head:hover .company_name {
  color: inherit;
}
.about_supervisorMember_sect ul li .job,
.about_supervisorMember_sect ul li .name,
.about_supervisorMember_sect ul li .company_name {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}
.about_supervisorMember_sect ul li .job {
  width: 250px;
  color: #707070;
}
.about_supervisorMember_sect ul li .name {
  width: 200px;
  color: #e1e1e1;
}
.about_supervisorMember_sect ul li .company_name {
  width: calc(100% - 460px);
  color: #e1e1e1;
}
@media (max-width: 991px) {
  .about_supervisorMember_sect .mid_block {
    padding: 120px 60px;
  }
}
@media (max-width: 767px) {
  .about_supervisorMember_sect .mid_block {
    padding: 120px 20px;
  }
  .about_supervisorMember_sect ul li {
    padding: 1rem;
  }
  .about_supervisorMember_sect ul li .job,
  .about_supervisorMember_sect ul li .name,
  .about_supervisorMember_sect ul li .company_name {
    width: 100%;
  }
}

.about_btn_block {
  margin-bottom: 400px;
}
.about_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.about_btn_block a {
  color: #fff;
}
@media (max-width: 767px) {
  .about_btn_block {
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .about_incorporation_block .ps-5,
  .about_membership_block .ps-5 {
    padding-left: 1rem !important;
  }
}

.application_download_block {
  text-align: center;
  border: solid 1px white;
}
.application_download_block a {
  color: #fff;
}
.application_download_block a:hover {
  color: #fff;
}
.application_download_block div {
  padding: 70px 16px 90px 16px;
}

.links_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .links_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .links_section .common_p {
    padding: 60px 10px;
  }
}
.links_section .hr_style {
  width: 536px;
}

.application_links_block {
  text-align: center;
  border: solid 1px white;
  height: 257px;
}
.application_links_block a {
  color: #fff;
}
.application_links_block a:hover {
  color: #fff;
}
.application_links_block div {
  padding: 70px 16px 90px 16px;
}
.application_links_block.img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.application_links_block.img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.application_links_block.img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.application_links_block.img_wrapper p {
  visibility: hidden;
}

.application_links_img_block {
  text-align: center;
  border: solid 1px white;
  height: 257px;
}
.application_links_img_block a {
  color: #fff;
}
.application_links_img_block a:hover {
  color: #fff;
}

.news_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .news_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .news_section .common_p {
    padding: 60px 10px;
  }
}
.news_section .hr_style {
  width: 536px;
}

.newslist_sect .mid_block {
  text-align: left;
}
.newslist_sect .left_block {
  line-height: 1.5;
}
.newslist_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  padding-left: 0;
}
.newslist_sect .left_block ul li {
  padding: 0.5rem 0;
}
.newslist_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.newslist_sect .left_block ul li .tab,
.newslist_sect .left_block ul li .img-span {
  display: inline-block;
  vertical-align: middle;
}
.newslist_sect .left_block ul li .tab {
  text-align: left;
  width: calc(100% - 10px);
  color: #707070;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.newslist_sect .left_block ul li .tab:hover {
  color: #e1e1e1;
}
.newslist_sect .left_block ul li .img-span {
  text-align: right;
  width: 5px;
  display: none;
}
.newslist_sect .left_block ul li.tab_selected .tab {
  color: #e1e1e1;
}
.newslist_sect .left_block ul li.tab_selected .img-span {
  display: inline-flex !important;
}
.newslist_sect .right_block .item {
  display: grid;
  align-content: center;
  /* justify-content: center; */
}
.newslist_sect .right_block .item .img_wrapper {
  margin-top: 0.5rem;
  text-align: center;
  min-width: 200px;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}
.newslist_sect .right_block .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 90.7%;
  /* 398 / 361 * 100% */
}
.newslist_sect .right_block .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.newslist_sect .right_block .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.newslist_sect .right_block .item a {
  color: white;
}
.newslist_sect .right_block .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin-top: 0.5rem;
  min-height: 4rem;
  max-width: 400px;
  margin: 0 auto;
}
.newslist_sect .right_block .item .new_tags {
  color: #707070;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .newslist_sect .mid_block {
    text-align: center;
  }
}

.newslistIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .newslistIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .newslistIn_sect .common_p {
    padding: 60px 10px;
  }
}
.newslistIn_sect .hr_style {
  width: 536px;
}
.newslistIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.newslistIn_sect .sub_title {
  font-size: 24px;
}
.newslistIn_sect .newslist_btn_block {
  margin-bottom: 150px;
}
.newslistIn_sect .newslist_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.newslistIn_sect .newslist_btn_block a {
  color: #fff;
}
.newslistIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.newslistIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.newslistIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.knowledge_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .knowledge_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .knowledge_section .common_p {
    padding: 60px 10px;
  }
}
.knowledge_section .hr_style {
  width: 536px;
}

.knowledgeList_sect .mid_block {
  text-align: left;
}
.knowledgeList_sect .left_block {
  line-height: 1.5;
}
.knowledgeList_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  padding-left: 0;
}
.knowledgeList_sect .left_block ul li {
  padding: 0.5rem 0;
}
.knowledgeList_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.knowledgeList_sect .left_block ul li .tab,
.knowledgeList_sect .left_block ul li .img-span {
  display: inline-block;
  vertical-align: middle;
}
.knowledgeList_sect .left_block ul li .tab {
  text-align: left;
  width: calc(100% - 10px);
  color: #707070;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.knowledgeList_sect .left_block ul li .tab:hover {
  color: #e1e1e1;
}
.knowledgeList_sect .left_block ul li .img-span {
  text-align: right;
  width: 5px;
  display: none;
}
.knowledgeList_sect .left_block ul li.tab_selected .tab {
  color: #e1e1e1;
}
.knowledgeList_sect .left_block ul li.tab_selected .img-span {
  display: inline-flex !important;
}
.knowledgeList_sect .right_block .item {
  display: grid;
  align-content: center;
  justify-content: center;
}
.knowledgeList_sect .right_block .item .img_wrapper {
  margin-top: 0.5rem;
  text-align: center;
  min-width: 200px;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.knowledgeList_sect .right_block .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 90.7%;
  /* 398 / 361 * 100% */
}
.knowledgeList_sect .right_block .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.knowledgeList_sect .right_block .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.knowledgeList_sect .right_block .item a {
  color: white;
}
.knowledgeList_sect .right_block .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin-top: 0.5rem;
  min-height: 4rem;
  max-width: 400px;
}
.knowledgeList_sect .right_block .item .new_tags {
  color: #707070;
  max-width: 400px;
}
@media (max-width: 991px) {
  .knowledgeList_sect .mid_block {
    text-align: center;
  }
}

.knowledgeListIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .knowledgeListIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .knowledgeListIn_sect .common_p {
    padding: 60px 10px;
  }
}
.knowledgeListIn_sect .hr_style {
  width: 536px;
}
.knowledgeListIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.knowledgeListIn_sect .sub_title {
  font-size: 24px;
}
.knowledgeListIn_sect .knowledgeList_btn_block {
  margin-bottom: 150px;
}
.knowledgeListIn_sect .knowledgeList_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.knowledgeListIn_sect .knowledgeList_btn_block a {
  color: #fff;
}
.knowledgeListIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.knowledgeListIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.knowledgeListIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.materials_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .materials_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .materials_section .common_p {
    padding: 60px 10px;
  }
}
.materials_section .hr_style {
  width: 536px;
}

.materialsList_sect .mid_block {
  text-align: left;
}
.materialsList_sect .left_block {
  line-height: 1.5;
}
.materialsList_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  padding-left: 0;
}
.materialsList_sect .left_block ul li {
  padding: 0.5rem 0;
}
.materialsList_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.materialsList_sect .left_block ul li .tab,
.materialsList_sect .left_block ul li .img-span {
  display: inline-block;
  vertical-align: middle;
}
.materialsList_sect .left_block ul li .tab {
  text-align: left;
  width: calc(100% - 10px);
  color: #707070;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.materialsList_sect .left_block ul li .tab:hover {
  color: #e1e1e1;
}
.materialsList_sect .left_block ul li .img-span {
  text-align: right;
  width: 5px;
  display: none;
}
.materialsList_sect .left_block ul li.tab_selected .tab {
  color: #e1e1e1;
}
.materialsList_sect .left_block ul li.tab_selected .img-span {
  display: inline-flex !important;
}
.materialsList_sect .right_block .item {
  display: grid;
  align-content: center;
}
.materialsList_sect .right_block .item .img_wrapper {
  margin-top: 0.5rem;
  text-align: center;
  max-width: 398px;
  min-width: 200px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.materialsList_sect .right_block .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 58.54%;
  /* 398 / 233 * 100% */
}
.materialsList_sect .right_block .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.materialsList_sect .right_block .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.materialsList_sect .right_block .item a {
  color: white;
}
.materialsList_sect .right_block .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin-top: 0.5rem;
  min-height: 4rem;
  max-width: 400px;
}
.materialsList_sect .right_block .item .new_tags {
  color: #707070;
  max-width: 400px;
}
@media (max-width: 991px) {
  .materialsList_sect .item {
    justify-content: center;
  }
  .materialsList_sect .item .img_wrapper {
    width: 398px;
  }
  .materialsList_sect .mid_block {
    text-align: center;
  }
}

.materialsListIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .materialsListIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .materialsListIn_sect .common_p {
    padding: 60px 10px;
  }
}
.materialsListIn_sect .hr_style {
  width: 536px;
}
.materialsListIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.materialsListIn_sect .sub_title {
  font-size: 24px;
}
.materialsListIn_sect .materialsList_btn_block {
  margin-bottom: 95px;
}
.materialsListIn_sect .materialsList_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.materialsListIn_sect .materialsList_btn_block a {
  color: #fff;
}
.materialsListIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.materialsListIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.materialsListIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.member_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .member_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .member_section .common_p {
    padding: 60px 10px;
  }
}
.member_section .hr_style {
  width: 536px;
}

.memberList_sect .mid_block {
  text-align: left;
}
.memberList_sect .left_block {
  width: 1000px !important;
}
.memberList_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  text-align: left;
}
.memberList_sect .left_block ul li {
  padding: 1rem;
  transition: all 0.2s ease-in-out;
}
.memberList_sect .left_block ul li .img-span {
  text-align: right;
  width: 5px;
  display: none;
}
.memberList_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.memberList_sect .left_block ul li:hover {
  background-color: white;
}
.memberList_sect .left_block ul li:hover .name,
.memberList_sect .left_block ul li:hover .company_name {
  color: #202020;
}
.memberList_sect .left_block ul li:hover .img-span {
  display: inline-flex !important;
}
@media (max-width: 767px) {
  .memberList_sect .left_block ul li:hover .img-span {
    display: none !important;
  }
}
.memberList_sect .left_block ul li.head .id,
.memberList_sect .left_block ul li.head .company_name,
.memberList_sect .left_block ul li.head .name,
.memberList_sect .left_block ul li.head .business_items {
  color: #e1e1e1;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .memberList_sect .left_block ul li.head {
    display: none;
  }
}
.memberList_sect .left_block ul li.head:hover {
  background-color: inherit;
}
.memberList_sect .left_block ul li.head:hover .name,
.memberList_sect .left_block ul li.head:hover .company_name {
  color: inherit;
}
.memberList_sect .left_block ul li .id,
.memberList_sect .left_block ul li .company_name,
.memberList_sect .left_block ul li .name,
.memberList_sect .left_block ul li .business_items {
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 1.25rem;
}
.memberList_sect .left_block ul li .id {
  width: 160px;
}
.memberList_sect .left_block ul li .name {
  width: 100px;
}
.memberList_sect .left_block ul li .company_name {
  width: calc(100% - 560px);
}
.memberList_sect .left_block ul li .business_items {
  width: 275px;
}
@media (max-width: 991px) {
  .memberList_sect .mid_block {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .memberList_sect .left_block ul li {
    padding: 1rem;
    line-height: 1.5;
  }
  .memberList_sect .left_block ul li .id,
  .memberList_sect .left_block ul li .company_name,
  .memberList_sect .left_block ul li .name,
  .memberList_sect .left_block ul li .business_items {
    width: 100%;
  }
}

.memberListIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .memberListIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .memberListIn_sect .common_p {
    padding: 60px 10px;
  }
}
.memberListIn_sect .hr_style {
  width: 536px;
}
.memberListIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.memberListIn_sect .sub_title {
  font-size: 24px;
}
.memberListIn_sect .memberList_btn_block {
  margin-bottom: 95px;
}
.memberListIn_sect .memberList_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.memberListIn_sect .memberList_btn_block a {
  color: #fff;
}
.memberListIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.memberListIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.memberListIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.album_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .album_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .album_section .common_p {
    padding: 60px 10px;
  }
}
.album_section .hr_style {
  width: 536px;
}

.albumList_sect .mid_block {
  text-align: left;
}
.albumList_sect .left_block {
  line-height: 1.5;
}
.albumList_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  padding-left: 0;
}
.albumList_sect .left_block ul li {
  padding: 0.5rem 0;
}
.albumList_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.albumList_sect .left_block ul li .tab,
.albumList_sect .left_block ul li .img-span {
  display: inline-block;
  vertical-align: middle;
}
.albumList_sect .left_block ul li .tab {
  text-align: left;
  width: calc(100% - 10px);
  color: #707070;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.albumList_sect .left_block ul li .tab:hover {
  color: #e1e1e1;
}
.albumList_sect .left_block ul li .img-span {
  text-align: right;
  width: 5px;
  display: none;
}
.albumList_sect .left_block ul li.tab_selected .tab {
  color: #e1e1e1;
}
.albumList_sect .left_block ul li.tab_selected .img-span {
  display: inline-flex !important;
}
.albumList_sect .right_block .item {
  display: grid;
  align-content: center;
}
.albumList_sect .right_block .item .img_wrapper {
  margin-top: 0.5rem;
  text-align: center;
  min-width: 200px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.albumList_sect .right_block .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.57%;
  /* 950 / 509 * 100% */
}
.albumList_sect .right_block .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.albumList_sect .right_block .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.albumList_sect .right_block .item a {
  color: white;
}
.albumList_sect .right_block .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin-top: 0.5rem;
  min-height: 4rem;
  max-width: 400px;
}
.albumList_sect .right_block .item .new_tags {
  color: #707070;
  max-width: 400px;
}
@media (max-width: 991px) {
  .albumList_sect .mid_block {
    text-align: center;
  }
}

.albumListIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .albumListIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .albumListIn_sect .common_p {
    padding: 60px 10px;
  }
}
.albumListIn_sect .hr_style {
  width: 536px;
}
.albumListIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.albumListIn_sect .sub_title {
  font-size: 24px;
}
.albumListIn_sect .albumList_btn_block {
  margin-bottom: 95px;
}
.albumListIn_sect .albumList_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.albumListIn_sect .albumList_btn_block a {
  color: #fff;
}
.albumListIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.albumListIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.albumListIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cases_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .cases_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .cases_section .common_p {
    padding: 60px 10px;
  }
}
.cases_section .hr_style {
  width: 536px;
}

.casesList_sect .mid_block {
  text-align: left;
}
.casesList_sect .left_block {
  line-height: 1.5;
}
.casesList_sect .left_block ul {
  border-bottom: 1px solid #e1e1e1;
  padding-left: 0;
}
.casesList_sect .left_block ul li {
  padding: 0.5rem 0;
}
.casesList_sect .left_block ul li + li {
  border-top: 1px solid #e1e1e1;
}
.casesList_sect .left_block ul li .tab,
.casesList_sect .left_block ul li .img-span {
  display: inline-block;
  vertical-align: middle;
}
.casesList_sect .left_block ul li .tab {
  position: relative;
  width: 100%;
  color: #707070;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.casesList_sect .left_block ul li .tab:hover {
  color: #e1e1e1;
}
.casesList_sect .left_block ul li .img-span {
  display: none;
}
.casesList_sect .left_block ul li.tab_selected .tab {
  color: #e1e1e1;
}
.casesList_sect .left_block ul li.tab_selected .img-span {
  top: 10px;
  right: 0;
  position: absolute;
  display: inline-flex !important;
}
.casesList_sect .right_block .item {
  display: grid;
  align-content: center;
}
.casesList_sect .right_block .item .img_wrapper {
  margin-top: 0.5rem;
  text-align: center;
  min-width: 200px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.casesList_sect .right_block .item .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.57%;
  /* 950 / 509 * 100% */
}
.casesList_sect .right_block .item .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease-in-out, filter 300ms ease-in;
}
.casesList_sect .right_block .item .img_wrapper img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}
.casesList_sect .right_block .item a {
  color: white;
}
.casesList_sect .right_block .item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  margin-top: 0.5rem;
  min-height: 4rem;
  max-width: 400px;
}
.casesList_sect .right_block .item .new_tags {
  color: #707070;
  max-width: 400px;
}
@media (max-width: 991px) {
  .casesList_sect .mid_block {
    text-align: center;
  }
}

.casesListIn_sect .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .casesListIn_sect .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .casesListIn_sect .common_p {
    padding: 60px 10px;
  }
}
.casesListIn_sect .hr_style {
  width: 536px;
}
.casesListIn_sect .main_title {
  font-size: 48px;
  line-height: 1.4;
}
.casesListIn_sect .sub_title {
  font-size: 24px;
}
.casesListIn_sect .casesList_btn_block {
  margin-bottom: 95px;
}
.casesListIn_sect .casesList_btn_block button:focus {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.casesListIn_sect .casesList_btn_block a {
  color: #fff;
}
.casesListIn_sect .img_wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.casesListIn_sect .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 53.58%;
  /* 1200 / 643 * 100% */
}
.casesListIn_sect .img_wrapper img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section_prdi {
  padding-bottom: 60px;
}

.prdi_img {
  text-align: center;
}

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

/* img */
.crsl_prdi_wrapper {
  position: relative;
}
.crsl_prdi_wrapper .crsl_prdi .owl-dots {
  bottom: 10px;
}
@media (max-width: 768px) {
  .crsl_prdi_wrapper .crsl_prdi .owl-dots {
    bottom: 0;
  }
}

.crsl_prdi.thumbs {
  width: 100%;
}

/* content */
@media (min-width: 768px) {
  .prdi_content {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.prdi_content-header {
  margin-bottom: 15px;
}
.prdi_content-header .cata_title {
  margin-top: 1rem;
}
.prdi_content-header .prdi_title {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eaeaea;
}
.prdi_content-header .prdi_title .title {
  font-weight: bold;
  font-family: "Noto Sans TC", "Microsoft Jhenghei", sans-serif;
}
@media (min-width: 768px) {
  .prdi_content-header .title {
    font-size: 36px;
  }
}

.prd_ttwr {
  padding: 0 8px;
}
.prd_ttwr .ch_title {
  font-weight: 300;
  letter-spacing: 8px;
}
.prd_ttwr .en_title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
}

/* Prd Brief */
/* Tab */
.prdinfo_tab {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .prdinfo_tab {
    padding-top: 15px;
  }
}

.prdinfo_tab-nav {
  text-align: center;
  background-color: #202020;
}
.prdinfo_tab-nav .nav-item {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem 0.5rem;
}
.prdinfo_tab-nav .nav-item .nav-link {
  margin: 0 auto;
  font-size: 110%;
  color: #e1e1e1;
}
.prdinfo_tab-nav .nav-item .nav-link.active,
.prdinfo_tab-nav .nav-item .nav-link:hover {
  color: #0781e0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #0781e0;
}

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

/* Contact Form
----------------- */
.c_form_wrapper .form_column .item {
  padding: 8px;
}
.c_form_wrapper .btn_wrapper {
  margin: 10px auto;
  text-align: center;
}

/* Contact Info
----------- */
ul.c_info {
  position: relative;
  margin: 2rem 0;
}
ul.c_info li {
  padding: 4px 0;
  position: relative;
}
ul.c_info li i {
  width: 20px;
  text-align: center;
  margin-right: 1.5rem;
  color: #0781e0;
}
ul.c_info li:before {
  left: 5px;
  top: 10px;
}

/* Contact Map
-------------- */
/* Contact
-------------- */
/* QR Code
----------------- */
.contact_section .common_p {
  padding: 120px 100px 96px;
}
@media (max-width: 991px) {
  .contact_section .common_p {
    padding: 120px 40px 96px;
  }
}
@media (max-width: 425px) {
  .contact_section .common_p {
    padding: 60px 10px;
  }
}
.contact_section .hr_style {
  width: 536px;
}

.contact_sect {
  line-height: 1;
  font-size: 24px;
}
.contact_sect .contact_title {
  color: #e1e1e1;
  font-size: 56px;
  font-weight: bold;
}
.contact_sect .contact_sub_title {
  color: #e1e1e1;
  font-size: 28px;
  font-weight: bold;
}
.contact_sect .left_block .img_wrapper {
  overflow: hidden;
  max-width: 151px;
  position: relative;
  cursor: pointer;
}
.contact_sect .left_block .img_wrapper::before {
  content: "";
  /* 假元素填充空白 */
  display: block;
  padding-bottom: 98.05%;
  /* 151 / 154 * 100% */
}
.contact_sect .left_block .img_wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.contact_sect .right_block,
.contact_sect .left_block {
  color: #707070;
  word-wrap: break-word;
}
.contact_sect .right_block input,
.contact_sect .right_block textarea,
.contact_sect .right_block select {
  width: 100%;
  background: initial;
  color: #707070;
  border-radius: 0;
  font-size: 24px;
}
.contact_sect .right_block select option {
  font-size: 24px;
  background-color: #202020;
  color: #707070;
}
.contact_sect .right_block .alignR {
  text-align: right;
}

/* ==========================
 Final Part
========================== */
/* Custom Classes */
/*Shop css*/ /*# sourceMappingURL=main.css.map */
