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

.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: #082b4a;
  display: block;
}
.btn-primary:active {
  color: #fff;
  background: #082b4a;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #fff;
    background: #082b4a;
    filter: brightness(1.1);
  }
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background: #eee;
}

.btn-secondary {
  color: #595757;
  background: #e3ecf3;
}
.btn-secondary:active {
  color: #595757;
  background: #e3ecf3;
  filter: brightness(1.01);
}
@media (hover: hover) {
  .btn-secondary:hover {
    color: #595757;
    background: #e3ecf3;
    filter: brightness(1.01);
  }
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  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;
}

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 - 237px);
}

.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: #092c4c;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}
.form-control.is-invalid {
  background: none;
  color: #ff4500;
  border-color: #ff0016;
}
.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: #ff0016;
  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;
  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;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 6px;
  top: 6px;
  border: 1px solid #e4edee;
  color: transparent;
  display: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 2px #fff inset, 0 0 0 4px #fff inset, 0 0 0 15px #092c4c 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: 50px;
  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.png);
  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: 19px;
    left: 20px;
    width: 29px;
    height: 22px;
  }

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

.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: #092c4c;
  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: #092c4c;
  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: #092c4c;
}
.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: 310px;
  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: #092c4c;
  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-blue.svg);
}

.payment-result .error {
  margin: 0 auto 20px;
}
.payment-result .info {
  background-color: #eef2f5;
  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: #092c4c;
  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: #082b4a;
  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: #082b4a;
}
.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: #082b4a;
  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: #082b4a;
  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: #082b4a;
  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: #082b4a;
}

.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: #082b4a;
  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: #082b4a;
  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: #082b4a;
}

.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: #eef2f5;
  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: #082b4a;
}
.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: #082b4a;
  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: #082b4a;
  font-family: arial;
}
.coupon-buy .link {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  color: #082b4a;
  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: #082b4a;
  background-color: #082b4a;
}
.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: #082b4a;
  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: #eef2f5;
  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: #082b4a;
}
.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: #eef2f5;
    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: #eef2f5;
    word-wrap: break-word;
  }
  .coupon-record-details .info + .info {
    margin-top: 10px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
