@charset "UTF-8";
/* -------------------------------------------------------------
  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

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@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: none;
  }
  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: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  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.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.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-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: none;
  }
}
.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: none;
  }
}
.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: none;
  }
}
.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-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, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

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

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

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.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 {
  -webkit-backface-visibility: visible;
  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 {
  -webkit-backface-visibility: visible !important;
  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 {
  -webkit-backface-visibility: visible !important;
  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-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  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 {
  -webkit-backface-visibility: visible !important;
  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: none;
    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: none;
    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: none;
    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: none;
    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: none;
    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: none;
    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-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: none;
  }
}
.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;
}

/**
 * Swiper 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -6px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background-color: #9ACAE6;
  box-shadow: 0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #3C82C0;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 50%;
  background-size: 24px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  background-color: rgba(25, 70, 127, 0.6);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: .4 !important;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.svg);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 0;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  padding: 15px 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  font-weight: 700;
  border-radius: 10px;
  font-size: 15px;
  line-height: 20px;
  height: 50px;
  width: 100%;
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  background: #5bbfdd;
  background: linear-gradient(90deg, #5bbfdd 0%, #94e1f0 100%);
  display: block;
}
.btn-primary:active {
  color: #fff;
  background: linear-gradient(90deg, #5bbfdd 0%, #94e1f0 100%);
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #fff;
    background: linear-gradient(90deg, #5bbfdd 0%, #94e1f0 100%);
    filter: brightness(1.1);
  }
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background: #dddddd;
  background: linear-gradient(90deg, #dddddd 0%, #eeeeee 100%);
}

.btn-secondary {
  color: #595757;
  background: #eceef2;
  background: linear-gradient(90deg, #eceef2 0%, #eceef2 100%);
}
.btn-secondary:active {
  color: #595757;
  background: linear-gradient(90deg, #eceef2 0%, #eceef2 100%);
  filter: brightness(0.95);
}
@media (hover: hover) {
  .btn-secondary:hover {
    color: #595757;
    background: linear-gradient(90deg, #eceef2 0%, #eceef2 100%);
    filter: brightness(0.95);
  }
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-image: none;
  background: #eee;
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-rss {
  background-image: url(../images/icon-rss.png);
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}
.icon-loading {
  background-image: url(../images/icon-loading.svg);
  animation: rotation 1s linear infinite;
  display: block;
  margin: 0 auto;
}

/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li, .sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
  box-sizing: inherit;
}

.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
  padding: 13px 20px;
  /* make room for the toggle button (sub indicator) */
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: none;
  text-align: center;
}

.sm-simple a.current {
  color: #fff;
}

.sm-simple a.disabled {
  color: #cccccc;
}

.sm-simple a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: auto;
  right: 4px;
  width: 18px;
  height: 18px;
  overflow: hidden;
  font: bold 14px/34px monospace !important;
  text-align: center;
  text-shadow: none;
}

.sm-simple a .sub-arrow::before {
  content: '';
  background-position: center;
  background-size: 100%;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/sub-arrow.png);
}

.sm-simple a.highlighted .sub-arrow::before {
  content: '';
  background-position: center;
  background-size: 100%;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/sub-arrow-white.png);
}

@media (min-width: 1024px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  /* start... (it's not recommended editing these rules) */
  .sm-simple ul {
    position: absolute;
    width: 12em;
  }

  .sm-simple li {
    float: left;
  }

  .sm-simple.sm-rtl li {
    float: right;
  }

  .sm-simple ul li, .sm-simple.sm-rtl ul li, .sm-simple.sm-vertical li {
    float: none;
  }

  .sm-simple a {
    white-space: nowrap;
  }

  .sm-simple ul a, .sm-simple.sm-vertical a {
    white-space: normal;
  }

  .sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }

  /* ...end */
  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    padding: 13px 0;
    color: #071c35;
    line-height: 24px;
    font-weight: 400;
    border-radius: 10px;
  }

  .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    color: #154A86;
  }

  .sm-simple a.current {
    color: #fff;
  }

  .sm-simple a.disabled {
    color: #cccccc;
  }

  .sm-simple a .sub-arrow {
    top: 50%;
    margin-top: -8px;
    right: 20px;
    width: 8px;
    height: 16px;
    font: 14px/16px monospace !important;
    background: transparent;
    display: none;
  }

  .sm-simple a.highlighted .sub-arrow::before {
    content: '+';
  }

  .sm-simple > li {
    border-top: 0;
  }

  .sm-simple > li:first-child {
    border-left: 0;
  }

  .sm-simple ul {
    background: #fff;
  }

  .sm-simple ul a.has-submenu {
    padding-right: 20px;
  }

  .sm-simple ul a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple ul > li {
    border-left: 0;
  }

  .sm-simple ul > li:first-child {
    border-top: 0;
  }

  .sm-simple .scroll-up,
  .sm-simple .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }

  .sm-simple .scroll-up-arrow,
  .sm-simple .scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }

  .sm-simple .scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }

  .sm-simple.sm-rtl a.has-submenu {
    padding-right: 20px;
    padding-left: 32px;
  }

  .sm-simple.sm-rtl a .sub-arrow {
    left: 20px;
    right: auto;
  }

  .sm-simple.sm-rtl.sm-vertical a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl.sm-vertical a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-rtl > li:first-child {
    border-left: 1px solid #eeeeee;
  }

  .sm-simple.sm-rtl > li:last-child {
    border-left: 0;
  }

  .sm-simple.sm-rtl ul a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl ul a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-vertical a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple.sm-vertical li {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .sm-simple.sm-vertical > li:first-child {
    border-top: 0;
  }
}
/*# sourceMappingURL=sm-simple.css.map */
@media (max-width: 1023px) {
  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
    padding: 10px 20px;
    font-size: 20px;
    line-height: 24px;
  }

  .sm-simple {
    font-size: 18px;
    line-height: 24px;
    color: #1D2129;
  }
  .sm-simple .has-mega-menu .has-submenu {
    border-radius: 0;
  }
  .sm-simple .has-mega-menu .mega-menu {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
  }
  .sm-simple .has-mega-menu .mega-menu > li {
    position: relative;
  }
  .sm-simple .has-mega-menu .mega-menu > li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 1px;
    height: 100%;
    background-color: #fff;
  }
  .sm-simple .has-mega-menu .mega-menu a {
    color: #1D2129;
    font-size: 18px;
    line-height: 24px;
  }
  .sm-simple .has-mega-menu ul ul {
    display: block;
    margin-left: 16px;
  }
  .sm-simple .has-mega-menu ul ul li {
    padding: 0;
  }
  .sm-simple .has-mega-menu ul ul a {
    padding: 4px 0;
    padding-left: 36px;
    border-radius: 5px;
  }
  .sm-simple .has-mega-menu ul ul a:active {
    background-color: #D4FFE7;
    color: #5B5B5B;
  }
}
@media (max-width: 1023px) and (hover: hover) {
  .sm-simple .has-mega-menu ul ul a:hover {
    background-color: #D4FFE7;
    color: #5B5B5B;
  }
}

html, body {
  touch-action: manipulation;
}

html {
  min-width: 100%;
}

body {
  font: 13px/17px 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #595757;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-color: #fff;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 13px;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

.site-content {
  position: relative;
  min-height: calc(100svh - 111px);
}

.scroll-hidden {
  overflow: hidden;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.form-control {
  padding: 10px;
  font-size: 13px;
  height: 40px;
  line-height: 20px;
  color: #595757;
  border: 1px solid #e4edee;
  background-color: #fff;
  border-radius: 10px !important;
  overflow: hidden;
}
.form-control::placeholder {
  color: #a9a9a9;
}
.form-control:focus {
  border-color: #5bbfdd;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}
.form-control.is-invalid {
  background: none;
  color: #ff4500;
}
.form-control:disabled, .form-control.disabled {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
  color: #c2c2c2;
}
.form-control:disabled::placeholder, .form-control.disabled::placeholder {
  color: #c2c2c2;
}

.invalid-feedback {
  font-size: 13px;
  line-height: 18px;
}
.is-valid ~ .invalid-feedback {
  margin-top: 10px;
}
.is-invalid ~ .invalid-feedback {
  color: #ff4500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
}
.is-invalid ~ .invalid-feedback .text {
  width: calc(100% - 18px - 5px);
}
.invalid-feedback .icon-info {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-info.svg);
  margin-right: 5px;
}

.form-label {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 6px;
}

.form-select {
  padding: 8px 32px 8px 10px;
  font-size: 13px;
  line-height: 24px;
  color: #595757;
  background-color: #fff;
  background-image: url(../images/select-arrow2.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  border: 1px solid #e4edee;
  border-radius: 10px;
}
.form-select:disabled, .form-select.disabled {
  background-color: #f8f8f8;
  background-image: url(../images/select-arrow.svg);
}

.form-check {
  position: relative;
  padding: 0;
  margin: 0;
}
.form-check .form-check-input {
  display: none;
}
.form-check .form-check-input:checked + .form-check-label:after {
  display: block;
}
.form-check .form-check-input + .form-check-label {
  transition: .7s ease;
}

.form-radio .form-check-input:disabled + .form-check-label {
  color: #c2c2c2;
}
.form-radio .form-check-input:disabled + .form-check-label:before {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
}
.form-radio .form-check-label {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
  display: block;
  color: #1D2129;
}
.form-radio .form-check-label:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  background: #fff;
  border: 1px solid #e4edee;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 6px;
  top: 6px;
  box-shadow: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-radio .form-check-label:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  background-color: #5bbfdd;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 6px;
  top: 6px;
  border: 0;
  color: transparent;
  display: none;
  box-shadow: 0 0 0 5px #fff inset;
}
.form-radio .form-check-label.checked:after {
  display: block;
}

.form-checkbox .form-check-input:disabled + .form-check-label {
  color: #c2c2c2;
}
.form-checkbox .form-check-input:disabled + .form-check-label:before {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
}
.form-checkbox .form-check-label {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
  display: block;
  color: #1D2129;
}
.form-checkbox .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 6px;
  box-sizing: border-box;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  border: 0;
  border: 1px solid #e4edee;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-checkbox .form-check-label:after {
  content: '';
  background-image: url(../images/icon-check.png);
  background-size: 20px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  position: absolute;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  top: 6px;
  left: 6px;
  display: none;
}

.page {
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}

.page-pagination {
  padding: 20px 0 0;
}
.page-pagination .pagination {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -2px;
}
.page-pagination .page-item {
  margin: 2px;
}
.page-pagination .page-item:first-child .page-link {
  border-radius: 0;
}
.page-pagination .page-item:last-child .page-link {
  border-radius: 0;
}
.page-pagination .page-item.active > .page-link {
  color: #7c7c7c;
  background-color: #f6fcfd;
}
.page-pagination .page-item.active > .page-link:active {
  filter: brightness(1);
}
@media (hover: hover) {
  .page-pagination .page-item.active > .page-link:hover {
    filter: brightness(1);
  }
}
.page-pagination .page-item.disabled .icon-prev {
  background-image: url(../images/icon-prev-disabled.svg);
}
.page-pagination .page-item.disabled .icon-next {
  background-image: url(../images/icon-next-disabled.svg);
}
.page-pagination .page-link {
  text-align: center;
  min-width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  color: #7c7c7c;
  font-size: 12px;
  line-height: 22px;
  border-radius: 5px;
  background-color: transparent;
}
.page-pagination .page-link:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-pagination .page-link:hover {
    filter: brightness(1.1);
  }
}
.page-pagination .page-link:focus {
  box-shadow: none;
  background-color: transparent;
}
.page-pagination .icon {
  width: 18px;
  height: 18px;
  margin: 2px;
}
.page-pagination .icon-prev {
  background-image: url(../images/icon-prev.svg);
}
.page-pagination .icon-next {
  background-image: url(../images/icon-next.svg);
}

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

  .sm-view {
    display: block;
  }
}
.plus-header {
  padding-top: 80px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid #e4edee;
}
.site-header .container {
  max-width: 1240px;
  height: 80px;
}
.site-header .logo {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 180px;
  height: 38px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/logo.svg);
  z-index: 11;
}
.site-header.site-header--base {
  background-color: transparent;
  border: 0;
}
.site-header.site-header--base .container {
  height: 100px;
}
.site-header.site-header--base .logo {
  top: 31px;
}
.site-header.site-header--base.sticky {
  background-color: #fff;
  border-bottom: 1px solid #e4edee;
}
.site-header.site-header--base + .plus-header {
  padding-top: 100px;
}

.site-menu {
  position: absolute;
  top: 25px;
  right: 0;
}

#main-menu {
  font-family: 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 5;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icon-menu.svg);
}
.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icon-close.svg);
}
.menu-close:active {
  filter: brightness(1.1);
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@media (min-width: 1024px) {
  #main-menu {
    border: 0;
    box-shadow: none;
    position: static !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin: 0;
    width: 100%;
    background-color: transparent;
  }
  #main-menu > .has-mega-menu {
    position: static !important;
  }
  #main-menu > .has-mega-menu .scroll-up,
  #main-menu > .has-mega-menu .scroll-down {
    margin-left: 0 !important;
  }
  #main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #main-menu li {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    float: none;
  }
  #main-menu > li {
    margin: 0 20px;
    position: relative;
  }
  #main-menu > li > a {
    text-align: center;
  }
  #main-menu > li > a.highlighted, #main-menu > li > a:active {
    color: #5bbfdd;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu > li > a:hover {
    color: #5bbfdd;
  }
}
@media (min-width: 1024px) {
  #main-menu > li > a.menu-contact {
    color: #fff;
    font-weight: 700;
    padding: 13px 34px;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    background: #071c35;
    background: linear-gradient(90deg, #071c35 0%, #394b60 100%);
  }
  #main-menu > li > a.menu-contact:active {
    filter: brightness(1.1);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu > li > a.menu-contact:hover {
    filter: brightness(1.1);
  }
}
@media (min-width: 1024px) {
  #main-menu > li > a.menu-coupon {
    color: #5bbfdd;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  #main-menu > li > a.menu-coupon .icon-coupon {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-coupon.svg);
    margin-right: 5px;
  }
  #main-menu > li > a.menu-logout {
    color: #7c7c7c;
  }
}
@media (max-width: 1023px) {
  .plus-header {
    padding-top: 60px;
  }

  .site-header .container {
    height: 60px;
    max-width: 100%;
  }
  .site-header .logo {
    top: 15px;
    left: 20px;
    width: 140px;
    height: 30px;
  }

  .menu-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    padding: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: auto;
    overflow-x: hidden;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .menu-panel:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 1;
    border-bottom: 1px solid #e4edee;
  }
  .menu-panel:after {
    content: "";
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    z-index: -1;
    background-color: #fff;
  }
  .menu-panel.is-view {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-panel.is-view:after {
    -moz-animation: fadeInRight 0.5s both;
    -webkit-animation: fadeInRight 0.5s both;
    animation: fadeInRight 0.5s both;
  }
  .menu-panel.is-view .menu-close {
    -moz-animation: fadeInRight 0.5s both;
    -webkit-animation: fadeInRight 0.5s both;
    animation: fadeInRight 0.5s both;
  }
  .menu-panel.is-view .site-menu {
    -moz-animation: fadeInDown 0.5s both;
    -webkit-animation: fadeInDown 0.5s both;
    animation: fadeInDown 0.5s both;
    animation-delay: .1s;
  }

  .site-menu {
    position: relative;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    background-color: #fff;
    padding: 40px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-close {
    display: block;
  }

  #main-menu.sm-simple li + li {
    margin-top: 30px;
  }
  #main-menu.sm-simple a {
    padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
    border-radius: 10px;
    max-width: 280px;
    margin: 0 auto;
    color: #071c35;
    font-weight: 400;
  }
  #main-menu.sm-simple a.menu-contact {
    color: #fff;
    font-weight: 700;
    padding: 13px 34px;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    background: #071c35;
    background: linear-gradient(90deg, #071c35 0%, #394b60 100%);
  }
  #main-menu.sm-simple a.menu-contact:active {
    filter: brightness(1.1);
  }
}
@media (max-width: 1023px) and (hover: hover) {
  #main-menu.sm-simple a.menu-contact:hover {
    filter: brightness(1.1);
  }
}
@media (max-width: 1023px) {
  #main-menu.sm-simple a.menu-coupon {
    color: #5bbfdd;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  #main-menu.sm-simple a.menu-coupon .icon-coupon {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon-coupon.svg);
    margin-right: 5px;
  }
  #main-menu.sm-simple a.menu-logout {
    color: #7c7c7c;
  }
}
@media (max-width: 1023px) {
  .site-header.site-header--base .container {
    height: 60px;
  }
  .site-header.site-header--base .logo {
    top: 15px;
  }
  .site-header.site-header--base + .plus-header {
    padding-top: 60px;
  }
}
.site-footer {
  position: relative;
  background-color: #0e233b;
  padding: 30px 0 40px;
  color: #fff;
  font-size: 16px;
  line-height: 1.88;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}
.site-footer a:active {
  color: #5bbfdd;
  text-decoration: none;
}
@media (hover: hover) {
  .site-footer a:hover {
    color: #5bbfdd;
    text-decoration: none;
  }
}
.site-footer .footer-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.site-footer .footer-left {
  width: 50%;
}
.site-footer .footer-right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.site-footer__contact {
  font-size: 18px;
  line-height: 1.67;
  color: #fff;
  margin-bottom: 20px;
}
.site-footer__contact .main-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.53;
  margin-bottom: 20px;
}
.site-footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-footer__links a + a {
  margin-left: 20px;
}
.site-footer__links a:active {
  opacity: .8;
}
@media (hover: hover) {
  .site-footer__links a:hover {
    opacity: .8;
  }
}
.site-footer__links .icon {
  width: 40px;
  height: 40px;
}
.site-footer__links .icon-facebook {
  background-image: url(../images/icon-facebook.svg);
}
.site-footer__links .icon-line {
  background-image: url(../images/icon-line.svg);
}
.site-footer__logo {
  margin-bottom: 63px;
}
.site-footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin: -5px -10px;
  margin-bottom: 15px;
}
.site-footer__menu a {
  color: #fff;
  font-size: 16px;
  line-height: 1.88;
  margin: 5px 10px;
}
.site-footer .copyright {
  font-size: 12px;
  line-height: 1.67;
  text-align: right;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
    font-size: 12px;
    line-height: 20px;
  }
  .site-footer .container {
    padding: 0 24px;
  }
  .site-footer .footer-group {
    display: block;
    padding-top: 55px;
  }
  .site-footer .footer-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .site-footer .footer-right {
    width: 100%;
    display: block;
  }
  .site-footer__contact {
    font-size: 14px;
    line-height: 20px;
  }
  .site-footer__contact .main-text {
    font-size: 18px;
    line-height: 1.33;
    margin-bottom: 10px;
  }
  .site-footer__links a + a {
    margin-left: 10px;
  }
  .site-footer__links .icon {
    width: 24px;
    height: 24px;
  }
  .site-footer__logo {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    width: 120px;
  }
  .site-footer__menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 25px;
  }
  .site-footer__menu a {
    font-size: 12px;
    line-height: 1.67;
  }
  .site-footer .copyright {
    text-align: center;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 335px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 10px;
  padding: 20px;
}
.modal .btn-close {
  width: 20px;
  height: 20px;
  padding: 0;
  background: url(../images/icon-close.svg);
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}

.prompt-modal .modal-dialog {
  max-width: 280px;
}
.prompt-modal .modal-content {
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #3e3a39;
}
.prompt-modal img {
  width: 40px;
  display: block;
  margin: 0 auto 10px;
}
.prompt-modal .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.prompt-modal .main-text + p {
  margin-top: 10px;
}
.prompt-modal .action {
  margin-top: 20px;
}

/* index */
.index-section {
  position: relative;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.index-section .section-anchor {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.index-kv {
  position: relative;
}
.index-kv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 255px;
  background: #94e1f0;
  background: linear-gradient(0deg, rgba(148, 225, 240, 0) 0%, rgba(91, 191, 221, 0.2) 100%);
}
.index-kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1160px;
  overflow-x: hidden;
}
.index-kv .bg img {
  position: absolute;
  top: 0;
  left: calc(50% - 1630px / 2);
  width: 1630px;
  height: 1160px;
  max-width: inherit;
}
.index-kv .container {
  max-width: 1200px;
  padding: 0;
}
.index-kv .kv-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: .25s;
}
.index-kv .kv-slogan {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  opacity: 0;
  text-align: center;
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
}
.index-kv .top-text {
  font-family: 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 36px;
  line-height: 1.3333;
  font-weight: 700;
  color: #717171;
  margin-bottom: 5px;
}
.index-kv .main-text {
  position: relative;
  font-size: 60px;
  line-height: 1.3333;
  font-weight: 700;
  color: #071c35;
}
.index-kv .main-text:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 80px / 2);
  width: 80px;
  height: 6px;
  border-radius: 5px;
  background-color: #5bbfdd;
}
.index-kv .main-text span + span {
  margin-left: 20px;
}
.index-kv .highlight {
  color: #5bbfdd;
}

.index-about {
  padding-top: 50px;
  padding-bottom: 60px;
}
.index-about .heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #5bbfdd;
  margin-bottom: 46px;
  position: relative;
}
.index-about .heading:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 60px;
  height: 6px;
  border-radius: 5px;
  background-color: #5bbfdd;
}
.index-about .box {
  margin: 0 auto;
  padding: 40px 100px;
  border-radius: 20px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.18px;
  color: #7d7d7d;
  text-align: justify;
}
.index-about .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-about .group .col-left {
  width: 50%;
  padding-right: 10px;
}
.index-about .group .col-right {
  width: 50%;
  padding-left: 20px;
}
.index-about p + p {
  margin-top: 20px;
}

.index-feature {
  background-color: #f6fcfd;
  padding-top: 40px;
  padding-bottom: 70px;
}
.index-feature .section-content {
  max-width: 1200px;
  margin: 0 auto;
}
.index-feature .heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #5bbfdd;
  margin-bottom: 46px;
  position: relative;
  text-align: center;
}
.index-feature .heading:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: calc(50% - 60px / 2);
  width: 60px;
  height: 6px;
  border-radius: 5px;
  background-color: #5bbfdd;
}
.index-feature .top-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #7d7d7d;
}
.index-feature .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -20px;
}
.index-feature .item {
  position: relative;
  width: calc(100% / 5 - 20px * 2);
  margin: 20px;
}
.index-feature .item:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 168px / 2);
  width: 168px;
  height: 220px;
  opacity: 0.4;
  border-radius: 40px;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  background-color: #5bbfdd;
}
.index-feature .item .inner {
  position: relative;
  padding: 30px 15px 40px;
  border-radius: 10px;
  background-color: #e9f7fa;
  min-height: 240px;
}
.index-feature .item .image {
  max-width: 120px;
  margin: 0 auto 18px;
}
.index-feature .item .main-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #7d7d7d;
}

.index-brand {
  padding-top: 40px;
  padding-bottom: 40px;
}
.index-brand .section-content {
  max-width: 1200px;
  margin: 0 auto;
}
.index-brand .heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #5bbfdd;
  margin-bottom: 46px;
  position: relative;
  text-align: center;
}
.index-brand .heading:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: calc(50% - 60px / 2);
  width: 60px;
  height: 6px;
  border-radius: 5px;
  background-color: #5bbfdd;
}
.index-brand .top-text {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #7d7d7d;
}
.index-brand .action {
  margin-bottom: 20px;
}
.index-brand .btn {
  max-width: 280px;
  margin: 0 auto;
  box-shadow: none;
}
.index-brand .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -15px -5px;
}
.index-brand .item {
  position: relative;
  width: 141px;
  margin: 15px 5px;
}
.index-brand .bottom {
  text-align: center;
  margin-top: 20px;
}
.index-brand .link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  color: #5bbfdd;
}
.index-brand .link .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_right.svg);
  margin-left: 5px;
}

.index-dealer {
  padding-top: 20px;
  padding-bottom: 60px;
}
.index-dealer .section-content {
  max-width: 896px;
  margin: 0 auto;
}
.index-dealer .heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #5bbfdd;
  margin-bottom: 46px;
  position: relative;
  text-align: center;
}
.index-dealer .heading:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: calc(50% - 60px / 2);
  width: 60px;
  height: 6px;
  border-radius: 5px;
  background-color: #5bbfdd;
}
.index-dealer .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -15px -5px;
}
.index-dealer .item {
  position: relative;
  width: 141px;
  margin: 15px 5px;
}
.index-dealer a {
  display: block;
}
.index-dealer a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .index-dealer a:hover {
    filter: brightness(1.1);
  }
}

.brand-modal .modal-dialog {
  max-width: 600px;
  margin: 50px auto;
}
.brand-modal .modal-content {
  font-size: 14px;
  line-height: 19px;
  color: #7d7d7d;
}
.brand-modal .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 20px;
}
.brand-modal .scroll-box {
  position: relative;
  overflow: scroll;
  margin-bottom: 20px;
  height: 420px;
  overflow: auto;
  padding-right: 10px;
}
.brand-modal .scroll-box::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: transparent;
}
.brand-modal .scroll-box::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.brand-modal .scroll-box::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #eaeaea;
}
.brand-modal .scroll-box:after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 31px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  display: block;
}
.brand-modal .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.brand-modal .list .item {
  width: calc(100% / 4 - 10px * 2);
  margin: 10px;
}
.brand-modal .btn {
  max-width: 240px;
  margin: 0 auto;
}

.floating {
  animation-name: floating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 5px);
  }
  to {
    transform: translate(0, 0);
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .index-kv .kv-slogan {
    top: 11.666666666vw;
  }
  .index-kv .top-text {
    font-size: 3vw;
    margin-bottom: 0.41666vw;
  }
  .index-kv .main-text {
    font-size: 5vw;
  }
  .index-kv .main-text:before {
    bottom: -1.666vw;
    left: calc(50% - 6.666vw / 2);
    width: 6.666vw;
  }
  .index-kv .main-text span + span {
    margin-left: 1.666vw;
  }
}
@media (max-width: 767px) {
  .index-section .section-anchor {
    top: -60px;
  }

  .index-kv .container {
    max-width: 320px;
  }
  .index-kv:before {
    height: 180px;
  }
  .index-kv .bg {
    top: 140px;
    height: 429px;
  }
  .index-kv .bg img {
    left: calc(50% - 603px / 2);
    width: 603px;
    height: 429px;
  }
  .index-kv .kv-slogan {
    top: 94px;
  }
  .index-kv .top-text {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .index-kv .main-text {
    font-size: 30px;
  }
  .index-kv .main-text:before {
    bottom: -16px;
    left: calc(50% - 40px / 2);
    width: 40px;
  }
  .index-kv .main-text span {
    display: block;
  }
  .index-kv .main-text span + span {
    margin-left: 0;
  }

  .index-about {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .index-about .heading {
    font-size: 24px;
    line-height: 1.42;
    margin-bottom: 26px;
    text-align: center;
  }
  .index-about .heading:before {
    bottom: -16px;
    left: calc(50% - 40px / 2);
    width: 40px;
  }
  .index-about .box {
    padding: 20px;
    font-size: 14px;
    line-height: 1.71;
    margin: 0 auto;
  }
  .index-about .group {
    display: block;
  }
  .index-about .group .col-left {
    width: 100%;
    padding: 0;
  }
  .index-about .group .col-right {
    width: 100%;
    padding: 0;
    margin-top: 12px;
  }
  .index-about p + p {
    margin-top: 12px;
  }

  .index-feature {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .index-feature .heading {
    font-size: 24px;
    line-height: 1.42;
    margin-bottom: 26px;
  }
  .index-feature .heading:before {
    bottom: -16px;
    left: calc(50% - 40px / 2);
    width: 40px;
  }
  .index-feature .top-text {
    max-width: 280px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.71;
  }
  .index-feature .list {
    margin: 0;
    display: block;
  }
  .index-feature .item {
    width: 100%;
    margin: 0;
  }
  .index-feature .item + .item {
    margin-top: 20px;
  }
  .index-feature .item:before {
    left: calc(50% - 234px / 2);
    width: 234px;
    height: 89px;
  }
  .index-feature .item .inner {
    padding: 20px 40px;
    min-height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .index-feature .item .image {
    width: 60px;
    margin: 0;
  }
  .index-feature .item .main-text {
    width: calc(100% - 60px);
    padding-left: 10px;
    font-size: 14px;
    line-height: 1.71;
    text-align: justify;
  }

  .index-brand {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .index-brand .heading {
    font-size: 24px;
    line-height: 1.42;
    margin-bottom: 26px;
  }
  .index-brand .heading:before {
    bottom: -16px;
    left: calc(50% - 40px / 2);
    width: 40px;
  }
  .index-brand .top-text {
    max-width: 100%;
    margin: 0 auto 10px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.2px;
  }
  .index-brand .action {
    max-width: calc(100% - 20px * 2);
    margin: 0 auto 24px;
  }
  .index-brand .btn {
    max-width: 100%;
  }
  .index-brand .section-content {
    max-width: calc(100% - 15px * 2);
    margin: 0 auto;
  }
  .index-brand .list {
    margin: -5px;
  }
  .index-brand .item {
    width: calc(100% / 2 - 5px * 2);
    margin: 5px;
  }
  .index-brand .bottom {
    margin-top: 25px;
  }
  .index-brand .link {
    font-size: 14px;
    line-height: 20px;
  }
  .index-brand .link .icon-arrow {
    margin-left: 10px;
  }

  .index-dealer {
    padding-top: 20px;
    padding-bottom: 48px;
  }
  .index-dealer .heading {
    font-size: 24px;
    line-height: 1.42;
    margin-bottom: 26px;
  }
  .index-dealer .heading:before {
    bottom: -16px;
    left: calc(50% - 40px / 2);
    width: 40px;
  }
  .index-dealer .section-content {
    max-width: calc(100% - 15px * 2);
    margin: 0 auto;
  }
  .index-dealer .list {
    margin: -5px;
  }
  .index-dealer .item {
    width: calc(100% / 2 - 5px * 2);
    margin: 5px;
  }

  .brand-modal .modal-dialog {
    max-width: calc(100% - 20px * 2);
    margin: 20px auto;
  }
  .brand-modal .modal-content {
    font-size: 12px;
    line-height: 18px;
  }
  .brand-modal .title {
    margin-bottom: 10px;
  }
  .brand-modal .scroll-box {
    margin-bottom: 16px;
    height: 410px;
  }
  .brand-modal .list .item {
    width: calc(100% / 2 - 10px * 2);
  }
  .brand-modal .btn {
    max-width: 100%;
  }
}
.legal {
  font-size: 12px;
  color: #595757;
  padding-top: 20px;
  padding-bottom: 60px;
}
.legal .heading {
  max-width: 690px;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  color: #071c35;
}
.legal .scroll-box {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  height: calc(100vh - 100px - 260px);
  overflow: auto;
  padding-right: 10px;
}
.legal .scroll-box::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: transparent;
}
.legal .scroll-box::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.legal .scroll-box::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #eaeaea;
}
.legal .scroll-box .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #5bbfdd;
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.legal .highlight {
  color: #ff6b6b;
}
.legal p + p {
  margin-top: 18px;
}
.legal p + .heading {
  margin-top: 18px;
}
.legal .action {
  padding: 30px 0;
}
.legal .action .btn-primary {
  max-width: 280px;
  margin: 0 auto;
}
.legal ol {
  list-style: decimal;
  margin-bottom: 18px;
  padding-left: 1.75em;
}
.legal a {
  color: #5bbfdd;
  text-decoration: none;
}
.legal table {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.legal td,
.legal tr {
  border: 1px solid #ccc;
  padding: .25em .5em;
}

@media (max-width: 640px) {
  .legal {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .legal .heading {
    margin: 0 auto 10px;
  }
  .legal .scroll-box {
    height: calc(100vh - 60px - 190px);
  }
  .legal .scroll-box .heading {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.payment_procedure {
  font-size: 12px;
  color: #595757;
  padding-top: 20px;
  position: relative;
  padding-bottom: 110px;
  min-height: calc(100svh - 80px);
}
.payment_procedure .heading {
  max-width: 690px;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  color: #071c35;
}
.payment_procedure .scroll-box {
  width: 100%;
  max-width: 690px;
  margin: 0 auto 20px;
  overflow: auto;
  padding-right: 10px;
}
.payment_procedure .scroll-box::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: transparent;
}
.payment_procedure .scroll-box::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.payment_procedure .scroll-box::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #eaeaea;
}
.payment_procedure .scroll-box .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #5bbfdd;
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.payment_procedure .highlight {
  color: #ff6b6b;
}
.payment_procedure ol {
  list-style: decimal;
  margin-bottom: 18px;
  padding-left: 1.75em;
}
.payment_procedure ol:last-child {
  margin-bottom: 0;
}
.payment_procedure a {
  color: #007bff;
  text-decoration: none;
}
.payment_procedure p + p {
  margin-top: 18px;
}
.payment_procedure p + .heading {
  margin-top: 18px;
}
.payment_procedure .form-checkbox {
  width: calc(100% - 20px * 2);
  max-width: 690px;
  margin: 0 auto 10px;
}
.payment_procedure .form-checkbox .form-check-label {
  font-size: 12px;
  line-height: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 30px;
  color: #3e3a39;
  display: block;
}
.payment_procedure .form-checkbox .form-check-label:before {
  top: 0;
  left: 0;
}
.payment_procedure .form-checkbox .form-check-label:after {
  top: 0;
  left: 0;
}
.payment_procedure .action {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0 20px;
  border-top: 1px solid #e4edee;
  background-color: #fff;
}
.payment_procedure .action .btn-primary {
  width: calc(100% - 20px * 2);
  max-width: 280px;
  margin: 0 auto;
}

.payment {
  padding: 20px 0;
  word-wrap: break-word;
}
.payment a {
  color: #595757;
  text-decoration: underline;
}
.payment .section {
  max-width: 700px;
  margin: 0 auto;
}
.payment .section + .section {
  margin-top: 20px;
}
.payment .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 30px 0;
}
.payment .action .btn {
  max-width: 280px;
  margin: 0 10px;
}
.payment .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 6px;
}
.payment .title + p {
  margin-top: 6px;
}
.payment .title + .info {
  margin-top: 10px;
}
.payment .title + .form-control {
  margin-top: 10px;
}
.payment .title + .radio-group {
  margin-top: 10px;
}
.payment .required {
  color: #ff6b6b;
}
.payment .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
  margin-bottom: 20px;
}
.payment .info {
  border-radius: 10px;
  border: 1px solid #e4edee;
}
.payment .info + .info {
  margin-top: 10px;
}
.payment .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 13px;
  line-height: 24px;
  padding: 9px 20px;
}
.payment .info-header {
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 0;
  width: 80px;
}
.payment .info-content {
  text-align: right;
  width: calc(100% - 80px);
}
.payment .form-radio + .form-radio {
  margin-top: 10px;
}
.payment .form-radio .form-check-input:checked + .form-check-label {
  border-color: #5bbfdd;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}
.payment .form-radio .form-check-input:disabled + .form-check-label {
  color: #c2c2c2;
}
.payment .form-radio .form-check-input:disabled + .form-check-label:before {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
}
.payment .form-radio .form-check-label {
  padding: 12px 10px;
  font-size: 13px;
  line-height: 17px;
  color: #595757;
  border: 1px solid #e4edee;
  border-radius: 10px;
}
.payment .form-radio .form-check-label:before {
  top: 10px;
  left: inherit;
  right: 10px;
}
.payment .form-radio .form-check-label:after {
  top: 10px;
  left: inherit;
  right: 10px;
}
.payment .highlight {
  color: #5bbfdd;
}
.payment .price {
  font-size: 15px;
  line-height: 18px;
}
.payment .error {
  width: 100%;
  margin: 40px auto 0;
}
.payment .error img {
  margin: 0 auto 20px;
  display: block;
  width: 60px;
}
.payment .error .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  margin-bottom: 6px;
}
.payment .error .sub-text {
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #7c7c7c;
  max-width: 252px;
  margin: 0 auto;
}
.payment .error + .action {
  width: 100%;
  margin: 0 auto;
}
.payment .success {
  max-width: 252px;
  margin: 0 auto 20px;
}
.payment .success img {
  margin: 0 auto 20px;
  display: block;
  width: 60px;
}
.payment .success .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  margin-bottom: 6px;
}
.payment .success .sub-text {
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #7c7c7c;
}
.payment .payment-deadline {
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  margin-bottom: 6px;
}
.payment .payment-deadline .highlight {
  color: #5bbfdd;
  margin-left: 5px;
}
.payment .account {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-right: -4px;
  pointer-events: none;
  width: 100%;
}
.payment .account input {
  width: calc(100% - 29px);
  padding: 4px 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  text-align: right;
  color: #595757;
  pointer-events: none;
  line-height: 16px;
  height: 24px;
  -webkit-border-radius: 0px;
}
.payment .account input:disabled {
  color: #595757;
  opacity: 1;
}
.payment .account .btn {
  margin: 0;
  border: 0;
  border-radius: 0;
  margin-left: 5px;
  -webkit-border-radius: 0px;
  pointer-events: auto;
}
.payment .account.active .copy-text {
  display: block;
}
.payment .account .copy-text {
  position: fixed;
  top: calc(50% - 40px / 2);
  left: calc(50% - 120px / 2);
  width: 120px;
  height: 40px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  pointer-events: none;
}
.payment .btn-copy {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 0;
}
.payment .icon-copy {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-copy.svg);
}

.payment-result .error {
  margin: 0 auto 20px;
}
.payment-result .info {
  background-color: #f1f8fa;
  border: 0;
}
.payment-result .action {
  margin: 0 auto;
}
.payment-result .action .btn {
  max-width: 280px;
}
.payment-result .coupon-number {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-right: -4px;
  pointer-events: none;
  width: 100%;
}
.payment-result .coupon-number .text {
  width: calc(100% - 29px);
  text-align: right;
  color: #5bbfdd;
  line-height: 16px;
  padding: 4px 0;
}
.payment-result .coupon-number .btn {
  margin: 0;
  border: 0;
  border-radius: 0;
  margin-left: 5px;
  -webkit-border-radius: 0px;
  pointer-events: auto;
}
.payment-result .coupon-number.active .copy-text {
  display: block;
}
.payment-result .coupon-number .copy-text {
  position: fixed;
  top: calc(50% - 40px / 2);
  left: calc(50% - 120px / 2);
  width: 120px;
  height: 40px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  pointer-events: none;
}
.payment-result .coupon-number .btn-copy {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 0;
}
.payment-result .coupon-number .icon-copy {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-copy-blue.svg);
}

@media (max-width: 640px) {
  .payment_procedure {
    padding-top: 10px;
    padding-bottom: 138px;
    min-height: calc(100svh - 60px);
  }
  .payment_procedure .heading {
    margin: 0 auto 10px;
  }
  .payment_procedure .scroll-box {
    margin: 0 auto 10px;
  }
  .payment_procedure .scroll-box .heading {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .payment_procedure .form-checkbox .form-check-label {
    padding-top: 0;
    padding-bottom: 0;
  }
  .payment_procedure .action {
    padding: 9px 0 20px;
  }
  .payment_procedure .action .btn {
    max-width: 100%;
  }

  .payment {
    padding: 10px 0 20px;
  }
  .payment .action {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0 0;
  }
  .payment .action .btn {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    order: 2;
  }
  .payment .action .btn + .btn-primary {
    order: 1;
    margin-bottom: 10px;
  }
  .payment .cancel-transaction {
    padding: 20px 0;
  }
  .payment .error {
    margin: 20px auto;
  }
  .payment .error + .action {
    margin-top: auto;
  }
  .payment .success {
    margin: 20px auto;
  }
  .payment .account .copy-text {
    top: calc(100% - 80px);
  }

  .mobile-flex-column .container {
    min-height: calc(100svh - 62px - 10px - 20px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.login {
  padding: 20px 0;
}
.login .container {
  max-width: 740px;
}
.login .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 10px;
}
.login .heading + .form-section {
  margin-top: 20px;
}
.login .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
}
.login .top-text + .form-section {
  margin-top: 20px;
}
.login .form-section {
  max-width: 700px;
  margin: 0 auto;
}
.login .form-section + .form-section {
  margin-top: 20px;
}
.login .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 20px 0 0;
}
.login .action .btn {
  max-width: 280px;
  margin: 0 auto;
}
.login .form-label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 0;
}
.login .form-label + p {
  margin-top: 6px;
}
.login .form-label + .form-content {
  margin-top: 6px;
}
.login .form-label + .form-control {
  margin-top: 6px;
}
.login .required {
  color: #ff6b6b;
}
.login .highlight {
  color: #5bbfdd;
}
.login .bottom-text {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 10px;
}
.login .bottom-text__row + .bottom-text__row {
  margin-top: 10px;
}
.login .bottom-text a {
  color: #5bbfdd;
  text-decoration: underline;
}
.login .mobile-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.login .mobile-number .form-select {
  width: 56px;
  margin-right: 5px;
  padding: 0 23px 0 0;
  font-size: 13px;
  line-height: 40px;
  font-weight: 400;
  color: #7c7c7c;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-position: right center;
  background-size: 18px 18px;
  border: 0;
  border-radius: 0 !important;
}
.login .mobile-number .form-control {
  width: calc(100% - 56px - 5px);
}
.login .mobile-number .invalid-feedback {
  width: 100%;
  padding-left: 61px;
}
.login .plus-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.login .plus-btn .form-control {
  width: calc(100% - 100px - 10px);
  margin-right: 10px;
}
.login .plus-btn .btn-primary {
  width: 100px;
  padding: 10px 0;
  height: 40px;
  font-size: 15px;
}
.login .plus-btn .invalid-feedback {
  width: 100%;
}

.prompt-text {
  position: fixed;
  top: calc(100% - 40px * 2);
  left: calc(50% - 120px / 2);
  width: 120px;
  height: 40px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  pointer-events: none;
}

.register {
  padding: 20px 0;
}
.register .container {
  max-width: 740px;
}
.register .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 10px;
}
.register .heading + .form-section {
  margin-top: 20px;
}
.register .progress-steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.register .progress-steps .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #7c7c7c;
  font-size: 13px;
  line-height: 18px;
  position: relative;
}
.register .progress-steps .step + .step {
  margin-left: 10px;
  padding-left: 50px;
}
.register .progress-steps .step + .step:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px / 2);
  left: 0;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background-color: #d8d8d8;
}
.register .progress-steps .step.active {
  color: #3e3a39;
}
.register .progress-steps .step.active .number {
  background-image: linear-gradient(to bottom, #94e1f0, #5bbfdd);
}
.register .progress-steps .number {
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  font-family: arial;
  background-color: #e4edee;
}
.register .progress-steps .text {
  width: calc(100% - 18px - 5px);
}
.register .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
}
.register .top-text + .form-section {
  margin-top: 20px;
}
.register .form-section {
  max-width: 700px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 17px;
  color: #3e3a39;
}
.register .form-section + .form-section {
  margin-top: 20px;
}
.register .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 20px 0 0;
}
.register .action .btn {
  max-width: 280px;
  margin: 0 auto;
}
.register .form-label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 0;
}
.register .form-label + p {
  margin-top: 6px;
}
.register .form-label + .form-content {
  margin-top: 6px;
}
.register .form-label + .form-control {
  margin-top: 6px;
}
.register .required {
  color: #ff6b6b;
}
.register .highlight {
  color: #5bbfdd;
}
.register .bottom-text {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 10px;
}
.register .bottom-text__row + .bottom-text__row {
  margin-top: 10px;
}
.register .bottom-text a {
  color: #5bbfdd;
  text-decoration: underline;
}
.register .mobile-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.register .mobile-number .form-select {
  width: 56px;
  margin-right: 5px;
  padding: 0 23px 0 0;
  font-size: 13px;
  line-height: 40px;
  font-weight: 400;
  color: #7c7c7c;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-position: right center;
  background-size: 18px 18px;
  border: 0;
  border-radius: 0 !important;
}
.register .mobile-number .form-control {
  width: calc(100% - 56px - 5px);
}
.register .mobile-number .invalid-feedback {
  width: 100%;
  padding-left: 61px;
}
.register .form-checkbox .form-check-label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  min-height: 20px;
  color: #3e3a39;
  padding-top: 2px;
  padding-left: 30px;
}
.register .form-checkbox .form-check-label:before {
  top: 0;
  left: 0;
}
.register .form-checkbox .form-check-label:after {
  top: 0;
  left: 0;
}
.register .form-checkbox a {
  color: #5bbfdd;
  text-decoration: underline;
}
.register .plus-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.register .plus-btn .form-control {
  width: calc(100% - 100px - 10px);
  margin-right: 10px;
}
.register .plus-btn .btn-primary {
  width: 100px;
  padding: 10px 0;
  height: 40px;
  font-size: 15px;
}
.register .plus-btn .invalid-feedback {
  width: 100%;
}

@media (max-width: 640px) {
  .login .heading {
    font-size: 18px;
    line-height: 24px;
  }
  .login .action .btn {
    max-width: 100%;
  }
  .login .form-label {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
  }
  .login .form-label + p {
    margin-top: 10px;
  }
  .login .form-label + .form-content {
    margin-top: 10px;
  }
  .login .form-label + .form-control {
    margin-top: 10px;
  }
  .login .mobile-number .form-select {
    width: 53px;
    font-size: 12px;
  }
  .login .mobile-number .form-control {
    width: calc(100% - 53px - 5px);
  }
  .login .mobile-number .invalid-feedback {
    padding-left: 58px;
  }

  .register .heading {
    font-size: 18px;
    line-height: 24px;
  }
  .register .action .btn {
    max-width: 100%;
  }
  .register .progress-steps .step {
    display: block;
    width: calc(100% / 3);
    text-align: center;
  }
  .register .progress-steps .step + .step {
    margin-left: 0;
    padding-left: 0;
  }
  .register .progress-steps .step + .step:before {
    top: calc(9px - 2px / 2);
    left: calc(0% - 63px / 2);
    width: 63px;
  }
  .register .progress-steps .number {
    display: block;
    margin: 0 auto 10px;
  }
  .register .progress-steps .text {
    width: 100%;
  }
  .register .form-label {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 0;
  }
  .register .form-label + p {
    margin-top: 10px;
  }
  .register .form-label + .form-content {
    margin-top: 10px;
  }
  .register .form-label + .form-control {
    margin-top: 10px;
  }
  .register .mobile-number .form-select {
    width: 53px;
    font-size: 12px;
  }
  .register .mobile-number .form-control {
    width: calc(100% - 53px - 5px);
  }
  .register .mobile-number .invalid-feedback {
    padding-left: 58px;
  }
  .register .form-checkbox .form-check-label {
    font-size: 12px;
    line-height: 16px;
  }
}
.member {
  color: #595757;
}
.member .member-header {
  position: relative;
  background-color: #e9f7fa;
  padding: 20px 0;
}
.member .member-header:before, .member .member-header:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #e9f7fa;
}
.member .member-header:before {
  left: 100%;
}
.member .member-header:after {
  right: 100%;
}
.member .member-header .heading {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  color: #3e3a39;
}
.member .member-header .link-back {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #5bbfdd;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.member .member-header .link-back .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_left.svg);
  margin-right: 5px;
}
.member .member-content {
  position: relative;
  padding: 20px 0 60px;
}
.member .container {
  max-width: 740px;
}
.member .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
}
.member .top-text + .form-section {
  margin-top: 20px;
}
.member .form-section {
  max-width: 700px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 17px;
  color: #3e3a39;
}
.member .form-section + .form-section {
  margin-top: 20px;
}
.member .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 20px 0 0;
}
.member .action .btn {
  max-width: 280px;
  margin: 0 auto;
}
.member .form-label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 0;
}
.member .form-label + p {
  margin-top: 6px;
}
.member .form-label + .form-content {
  margin-top: 6px;
}
.member .form-label + .form-control {
  margin-top: 6px;
}
.member .required {
  color: #ff6b6b;
}
.member .highlight {
  color: #5bbfdd;
}
.member .bottom-text {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-top: 10px;
}
.member .bottom-text__row + .bottom-text__row {
  margin-top: 10px;
}
.member .bottom-text a {
  color: #5bbfdd;
  text-decoration: underline;
}
.member .mobile-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.member .mobile-number .form-select {
  width: 56px;
  margin-right: 5px;
  padding: 0 23px 0 0;
  font-size: 13px;
  line-height: 40px;
  font-weight: 400;
  color: #7c7c7c;
  background-color: #fff;
  background-image: url(../images/select-arrow2.svg);
  background-position: right center;
  background-size: 18px 18px;
  border: 0;
  border-radius: 0 !important;
}
.member .mobile-number .form-select:disabled, .member .mobile-number .form-select.disabled {
  background-image: url(../images/select-arrow.svg);
}
.member .mobile-number .form-control {
  width: calc(100% - 56px - 5px);
}
.member .mobile-number .invalid-feedback {
  width: 100%;
  padding-left: 61px;
}
.member .form-checkbox .form-check-label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  min-height: 20px;
  color: #3e3a39;
  padding-top: 2px;
  padding-left: 30px;
}
.member .form-checkbox .form-check-label:before {
  top: 0;
  left: 0;
}
.member .form-checkbox .form-check-label:after {
  top: 0;
  left: 0;
}
.member .form-checkbox a {
  color: #5bbfdd;
  text-decoration: underline;
}
.member .plus-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.member .plus-btn .form-control {
  width: calc(100% - 100px - 10px);
  margin-right: 10px;
}
.member .plus-btn .btn-primary {
  width: 100px;
  padding: 10px 0;
  height: 40px;
  font-size: 15px;
}
.member .plus-btn .invalid-feedback {
  width: 100%;
}

.member-coupon .member-header {
  padding: 30px 0 17px;
}
.member-coupon .member-content {
  padding: 0 0 60px;
}
.member-coupon .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 20px;
}
.member-coupon .form-label {
  color: #3e3a39;
}
.member-coupon .form-content {
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  padding-right: 80px;
  overflow: hidden;
}
.member-coupon .form-content__right {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 10px;
  background-color: #fff;
}
.member-coupon .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px;
}
.member-coupon .form-section-group .form-section {
  width: calc(100% / 2 - 10px * 2);
  margin: 10px;
}
.member-coupon .text {
  font-weight: 700;
  max-width: calc(100% - 18px - 5px);
}
.member-coupon .icon-check {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-check_s.png);
  margin-right: 5px;
}
.member-coupon .link {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #5bbfdd;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.member-coupon .link .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_right.svg);
}
.member-coupon .link:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .member-coupon .link:hover {
    filter: brightness(1.1);
  }
}
.member-coupon .form-switch {
  padding-left: 0;
  width: 30px;
  margin: 0 auto;
  min-height: 18px;
}
.member-coupon .form-switch .form-check-input {
  display: block;
}
.member-coupon .form-switch .form-check-input {
  width: 30px;
  height: 18px;
  margin-left: 0;
  border-radius: 16px;
  background-color: #999;
  margin: 0 auto;
  border: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.member-coupon .form-switch .form-check-input:checked {
  background-color: #5bbfdd;
}

.coupon-box {
  position: relative;
  margin-bottom: 30px;
}
.coupon-box:before {
  content: "";
  position: absolute;
  left: calc(50% - 91.428571428% / 2);
  bottom: -10px;
  width: 91.428571428%;
  height: 220px;
  opacity: 0.4;
  border-radius: 40px;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  background-color: #5bbfdd;
  z-index: 0;
  pointer-events: none;
}
.coupon-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9f7fa;
  z-index: -1;
  pointer-events: none;
}
.coupon-box .bg:before, .coupon-box .bg:after {
  content: "";
  position: absolute;
  top: 0;
  width: 200vw;
  height: 100%;
  background-color: #e9f7fa;
  z-index: -1;
}
.coupon-box .bg:before {
  left: -100%;
}
.coupon-box .bg:after {
  left: -100%;
  top: 135px;
  height: calc(100% - 135px);
  background-color: #fff;
}
.coupon-box .inner {
  position: relative;
  height: 220px;
  border-radius: 20px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url(../images/member-coupon-box.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  font-size: 18px;
  line-height: 24px;
  padding: 20px 40px;
  z-index: 2;
}
.coupon-box .top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 18px;
  color: #7c7c7c;
  margin-bottom: 30px;
}
.coupon-box .top-block__left {
  font-weight: 700;
  width: 140px;
  font-family: arial;
}
.coupon-box .top-block__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.coupon-box .top-block__right .hd {
  width: 70px;
}
.coupon-box .point {
  font-family: arial;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: #5bbfdd;
  margin-bottom: 10px;
}
.coupon-box .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 0;
}
.coupon-box .action .btn {
  width: 120px;
  margin: 0;
}
.coupon-box .action .btn + .btn {
  margin-left: 10px;
}
.coupon-box .account {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  pointer-events: none;
  width: calc(100% - 70px);
}
.coupon-box .account input {
  width: 160px;
  padding: 4px 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  text-align: right;
  color: #7c7c7c;
  pointer-events: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  height: 24px;
  font-family: arial;
  -webkit-border-radius: 0px;
}
.coupon-box .account input:disabled {
  color: #595757;
  opacity: 1;
}
.coupon-box .account .btn {
  margin: 0;
  border: 0;
  border-radius: 0;
  margin-left: 5px;
  -webkit-border-radius: 0px;
  pointer-events: auto;
}
.coupon-box .account.active .copy-text {
  display: block;
}
.coupon-box .account .copy-text {
  position: fixed;
  top: calc(50% - 40px / 2);
  left: calc(50% - 120px / 2);
  width: 120px;
  height: 40px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  pointer-events: none;
}
.coupon-box .btn-copy {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 0;
}
.coupon-box .icon-copy {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-copy.svg);
}

.coupon-inquiry {
  padding: 20px 0 40px;
  border-top: 1px solid #e4edee;
}
.coupon-inquiry .container {
  max-width: 740px;
}
.coupon-inquiry .heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 10px;
}
.coupon-inquiry .heading + .form-section {
  margin-top: 20px;
}
.coupon-inquiry .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
}
.coupon-inquiry .top-text + .form-section {
  margin-top: 20px;
}
.coupon-inquiry .form-section {
  max-width: 700px;
  margin: 0 auto;
}
.coupon-inquiry .form-section + .form-section {
  margin-top: 20px;
}
.coupon-inquiry .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 20px 0 0;
}
.coupon-inquiry .action .btn {
  max-width: 280px;
  margin: 0 auto;
}
.coupon-inquiry .form-label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 0;
}
.coupon-inquiry .form-label + p {
  margin-top: 6px;
}
.coupon-inquiry .form-label + .form-content {
  margin-top: 6px;
}
.coupon-inquiry .form-label + .form-control {
  margin-top: 6px;
}
.coupon-inquiry .highlight {
  color: #5bbfdd;
}

.coupon-inquiry-results .heading + .section {
  margin-top: 20px;
}
.coupon-inquiry-results .section {
  max-width: 700px;
  margin: 0 auto;
}
.coupon-inquiry-results .section + .section {
  margin-top: 20px;
}
.coupon-inquiry-results .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 30px 0 0;
}
.coupon-inquiry-results .action .btn {
  max-width: 280px;
  margin: 0 10px;
}
.coupon-inquiry-results .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 6px;
}
.coupon-inquiry-results .title + p {
  margin-top: 6px;
}
.coupon-inquiry-results .title + .info {
  margin-top: 10px;
}
.coupon-inquiry-results .title + .form-control {
  margin-top: 10px;
}
.coupon-inquiry-results .required {
  color: #ff6b6b;
}
.coupon-inquiry-results .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
  margin-bottom: 20px;
}
.coupon-inquiry-results .info {
  border-radius: 10px;
  background-color: #f1f8fa;
  word-wrap: break-word;
}
.coupon-inquiry-results .info + .info {
  margin-top: 10px;
}
.coupon-inquiry-results .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 13px;
  line-height: 24px;
  padding: 9px 20px;
}
.coupon-inquiry-results .plus-top-border {
  border-top: 1px solid #e4edee;
}
.coupon-inquiry-results .info-header {
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 0;
  width: 130px;
}
.coupon-inquiry-results .info-content {
  text-align: right;
  width: calc(100% - 130px);
}
.coupon-inquiry-results .highlight {
  color: #5bbfdd;
}
.coupon-inquiry-results a {
  color: #595757;
  text-decoration: underline;
}

.coupon-buy .top-info {
  font-size: 18px;
  line-height: 33px;
  font-weight: 700;
  color: #7c7c7c;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.coupon-buy .top-info .text {
  margin-right: 10px;
}
.coupon-buy .top-info .highlight {
  font-size: 30px;
  line-height: 33px;
  font-weight: 700;
  color: #5bbfdd;
  font-family: arial;
}
.coupon-buy .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 20px;
}
.coupon-buy .item {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  padding-right: 100px;
  overflow: hidden;
  color: #3e3a39;
}
.coupon-buy .item + .item {
  margin-top: 10px;
}
.coupon-buy .item-right {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background-color: #fff;
}
.coupon-buy .item .text {
  margin-right: 5px;
}
.coupon-buy .item .highlight {
  font-size: 18px;
  line-height: 24px;
  color: #5bbfdd;
  font-family: arial;
}
.coupon-buy .link {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #5bbfdd;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.coupon-buy .link .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_right.svg);
}
.coupon-buy .link:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .coupon-buy .link:hover {
    filter: brightness(1.1);
  }
}
.coupon-buy .link.disabled {
  color: #d8d8d8;
  pointer-events: none;
}
.coupon-buy .link.disabled .icon-arrow {
  background-image: url(../images/icon-arrow_right-gray.svg);
}

.coupon-record .empty-state {
  padding: 40px 0 0;
}
.coupon-record .empty-state .image {
  width: 60px;
  margin: 0 auto 20px;
}
.coupon-record .empty-state .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
}
.coupon-record .nav-pills {
  margin-bottom: 20px;
}
.coupon-record .nav-item + .nav-item {
  margin-left: 10px;
}
.coupon-record .nav-link {
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #a9a9a9;
  color: #a9a9a9;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}
.coupon-record .nav-link.active {
  color: #fff;
  border-color: #5bbfdd;
  background-color: #5bbfdd;
}
.coupon-record .item {
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: #fff;
  position: relative;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  overflow: hidden;
  color: #3e3a39;
}
.coupon-record .item + .item {
  margin-top: 10px;
}
.coupon-record .item-row {
  position: relative;
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.coupon-record .item-row + .item-row {
  border-top: 1px solid #e4edee;
}
.coupon-record .item .text {
  margin-right: 5px;
}
.coupon-record .item .price {
  font-size: 14px;
  line-height: 16px;
  font-family: arial;
}
.coupon-record .item .highlight {
  color: #2fcd83;
}
.coupon-record .link {
  position: absolute;
  top: 9px;
  right: 20px;
}
.coupon-record .link .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_right-black.svg);
}
.coupon-record .link:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .coupon-record .link:hover {
    filter: brightness(1.1);
  }
}
.coupon-record .group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.coupon-record .group .text {
  color: #3e3a39;
  font-weight: 400;
  margin: 0 5px 0 0;
}
.coupon-record .group .btn {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0px;
  pointer-events: auto;
}
.coupon-record .group.active .copy-text {
  display: block;
}
.coupon-record .group .copy-text {
  position: fixed;
  top: calc(50% - 40px / 2);
  left: calc(50% - 120px / 2);
  width: 120px;
  height: 40px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid #e4edee;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  pointer-events: none;
}
.coupon-record .btn-copy {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 0;
}
.coupon-record .icon-copy {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-copy-gray.svg);
}

.coupon-record-details {
  border-top: 1px solid #e4edee;
  padding: 20px 0 60px;
}
.coupon-record-details .container {
  max-width: 740px;
}
.coupon-record-details .link-back {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #5bbfdd;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.coupon-record-details .link-back .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-arrow_left.svg);
  margin-right: 5px;
}
.coupon-record-details .section {
  max-width: 700px;
  margin: 0 auto;
}
.coupon-record-details .section + .section {
  margin-top: 20px;
}
.coupon-record-details .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #3e3a39;
  margin-bottom: 6px;
}
.coupon-record-details .title + p {
  margin-top: 6px;
}
.coupon-record-details .title + .info {
  margin-top: 10px;
}
.coupon-record-details .title + .transaction-history {
  margin-top: 10px;
}
.coupon-record-details .top-text {
  font-size: 13px;
  line-height: 17px;
  color: #7c7c7c;
  margin-bottom: 20px;
}
.coupon-record-details .info {
  border-radius: 10px;
  background-color: #f1f8fa;
  word-wrap: break-word;
}
.coupon-record-details .info + .info {
  margin-top: 10px;
}
.coupon-record-details .info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 13px;
  line-height: 24px;
  padding: 9px 20px;
}
.coupon-record-details .info-header {
  font-size: 13px;
  line-height: 24px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 0;
  width: 130px;
}
.coupon-record-details .info-content {
  text-align: right;
  width: calc(100% - 130px);
}
.coupon-record-details .highlight {
  color: #5bbfdd;
}
.coupon-record-details .transaction-history {
  border: 1px solid #e4edee;
  word-wrap: break-word;
  border-radius: 10px;
}
.coupon-record-details .transaction-history .item + .item {
  border-top: 1px solid #e4edee;
}
.coupon-record-details .transaction-history .item-header {
  font-size: 12px;
  line-height: 16px;
  color: #3e3a39;
  border-bottom: 1px solid #e4edee;
  padding: 10px 20px;
}
.coupon-record-details .transaction-history .item-content {
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.coupon-record-details .transaction-history .text {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #3e3a39;
}
.coupon-record-details .transaction-history .point {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  font-family: arial;
}
.coupon-record-details .transaction-history .point--minus {
  color: #ff4500;
}
.coupon-record-details .transaction-history .point--plus {
  color: #2fcd83;
}
.coupon-record-details .bottom-text {
  font-size: 12px;
  line-height: 16px;
  color: #7c7c7c;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .member .member-header .heading {
    font-size: 30px;
    line-height: 40px;
  }
  .member .member-header .link-back {
    margin-bottom: 10px;
  }
  .member .member-content {
    padding: 20px 0 40px;
  }
  .member .action .btn {
    max-width: 100%;
  }
  .member .mobile-number .form-select {
    width: 53px;
    font-size: 12px;
  }
  .member .mobile-number .form-control {
    width: calc(100% - 53px - 5px);
  }
  .member .mobile-number .invalid-feedback {
    padding-left: 58px;
  }
  .member .form-label {
    font-size: 14px;
    line-height: 19px;
  }

  .member-coupon .member-header {
    padding: 20px 0;
  }
  .member-coupon .member-content {
    padding: 0 0 40px;
  }
  .member-coupon .title {
    font-size: 18px;
    line-height: 24px;
  }
  .member-coupon .form-content {
    font-size: 12px;
    line-height: 16px;
    padding-right: 60px;
  }
  .member-coupon .form-section-group {
    display: block;
    margin: 0;
  }
  .member-coupon .form-section-group .form-section {
    width: 100%;
    margin: 0;
  }
  .member-coupon .form-section-group .form-section + .form-section {
    margin-top: 20px;
  }
  .member-coupon .link {
    font-size: 12px;
    line-height: 16px;
  }

  .coupon-box {
    margin-bottom: 113px;
  }
  .coupon-box:before {
    left: calc(50% - 78.571428571% / 2);
    width: 78.571428571%;
    height: 160px;
  }
  .coupon-box .bg:after {
    top: 100px;
    height: calc(100% - 100px);
  }
  .coupon-box .inner {
    height: 160px;
    background-size: auto 100%;
    font-size: 14px;
    line-height: 16px;
    padding: 20px;
  }
  .coupon-box .top-block {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .coupon-box .top-block__left {
    font-weight: 700;
    width: 100%;
  }
  .coupon-box .top-block__right {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .coupon-box .top-block__right .hd {
    width: 48px;
  }
  .coupon-box .point {
    font-size: 30px;
  }
  .coupon-box .action {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 0;
  }
  .coupon-box .action .btn {
    width: 130px;
    margin: 0;
  }
  .coupon-box .action .btn + .btn {
    margin-left: 20px;
  }
  .coupon-box .account {
    width: calc(100% - 48px);
  }
  .coupon-box .account input {
    width: 135px;
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    height: 16px;
  }

  .coupon-inquiry .heading {
    font-size: 18px;
    line-height: 24px;
  }
  .coupon-inquiry .action .btn {
    max-width: 100%;
  }
  .coupon-inquiry .form-label {
    font-size: 14px;
    line-height: 19px;
  }
  .coupon-inquiry .form-label + p {
    margin-top: 10px;
  }
  .coupon-inquiry .form-label + .form-content {
    margin-top: 10px;
  }
  .coupon-inquiry .form-label + .form-control {
    margin-top: 10px;
  }

  .coupon-inquiry-results .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    min-height: calc(100svh - 100px);
  }
  .coupon-inquiry-results .section {
    max-width: 100%;
    margin: 0;
  }
  .coupon-inquiry-results .action {
    padding: 20px 0 0;
    margin-top: auto;
  }
  .coupon-inquiry-results .action .btn {
    max-width: 100%;
    margin: 0;
  }
  .coupon-inquiry-results .title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 10px;
  }
  .coupon-inquiry-results .title + p {
    margin-top: 10px;
  }
  .coupon-inquiry-results .title + .info {
    margin-top: 10px;
  }
  .coupon-inquiry-results .title + .form-control {
    margin-top: 10px;
  }
  .coupon-inquiry-results .info {
    border-radius: 10px;
    background-color: #f1f8fa;
    word-wrap: break-word;
  }
  .coupon-inquiry-results .info + .info {
    margin-top: 10px;
  }
  .coupon-inquiry-results .info-block {
    padding: 9px 10px;
  }

  .coupon-buy .top-info {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 20px;
  }
  .coupon-buy .top-info .highlight {
    font-size: 18px;
    line-height: 20px;
  }
  .coupon-buy .title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .coupon-buy .item {
    font-size: 12px;
    line-height: 18px;
  }
  .coupon-buy .item + .item {
    margin-top: 10px;
  }
  .coupon-buy .item .highlight {
    font-size: 14px;
    line-height: 24px;
  }
  .coupon-buy .link {
    font-size: 12px;
  }

  .coupon-record .empty-state {
    padding: 20px 0 0;
  }
  .coupon-record .nav-pills {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .coupon-record .page-pagination .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .coupon-record .item .item-row {
    padding: 10px;
  }
  .coupon-record .item .coupon-number {
    padding: 10px;
  }
  .coupon-record .item .coupon-number .item-row__left {
    margin-bottom: 5px;
    width: 100%;
  }
  .coupon-record .item .coupon-number .item-row__right {
    width: 100%;
  }
  .coupon-record .item .link {
    right: 10px;
  }

  .coupon-record-details {
    padding: 20px 0 40px;
  }
  .coupon-record-details .action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 30px 0 0;
  }
  .coupon-record-details .action .btn {
    max-width: 280px;
    margin: 0 10px;
  }
  .coupon-record-details .info {
    border-radius: 10px;
    background-color: #f1f8fa;
    word-wrap: break-word;
  }
  .coupon-record-details .info + .info {
    margin-top: 10px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
