@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, -100%, 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;
  border-radius: 0;
  padding: 0;
  border: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.btn--anm {
  -moz-animation: btn-anm 1s infinite;
  -webkit-animation: btn-anm 1s infinite;
  animation: btn-anm 1s infinite;
  -moz-animation-timing-function: step-start;
  -webkit-animation-timing-function: step-start;
  animation-timing-function: step-start;
}

@-webkit-keyframes btn-anm {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes btn-anm {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.btn-primary {
  font-size: 16px;
  line-height: 39px;
  height: 39px;
  font-weight: 400;
  color: #fff005;
  background-color: #2a65b0;
  border: 0;
  text-align: center;
  border-radius: 8px;
  padding: 0 10px;
  display: block;
}
.btn-primary:hover, .btn-primary:active {
  color: #fff;
  background-color: #f8b62b;
  filter: brightness(1.2);
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
}
.icon-pen {
  background-image: url(../images/pen.png);
  width: 36px;
  height: 36px;
}
.icon-pen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-image: url(../images/pen-hover.png);
  opacity: 0;
}
.icon-check {
  background-image: url(../images/icon-check.png);
  width: 17px;
  height: 17px;
}
.icon-like {
  background-image: url(../images/icon-like.svg);
  width: 30px;
  height: 30px;
}

.btn-row {
  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;
}
.btn-row .btn {
  margin: 0 10px;
}

.form-control {
  padding: 0 .75em;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  color: #666;
  background-color: #fff;
  border: 1px solid #57c1f0;
  border-radius: 8px;
  width: 100%;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control--md {
  max-width: 487px;
}
.form-control::placeholder {
  color: #666;
  opacity: 1;
}

.radio-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;
}

.radio-item {
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.radio-item input[type="radio"] {
  display: none;
}
.radio-item label {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 48px;
  white-space: nowrap;
  cursor: pointer;
  display: block;
}
.radio-item label:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: 2px solid #614c3f;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  left: 0;
  top: 10px;
  box-shadow: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.radio-item label:after {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 8px;
  top: 18px;
  display: none;
}
.radio-item input:checked + label:before {
  background: #fff;
}
.radio-item input:checked + label:after {
  display: block;
}
.radio-item input + label {
  transition: .7s ease;
}

.checkbox-item {
  position: relative;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  padding: 0 0 0 45px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  display: block;
}
.checkbox-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 1px solid #2a65b0;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.checkbox-item label:after {
  content: '';
  background-image: url(../images/check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px;
  position: absolute;
  border-radius: 0;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  left: 0;
  top: 0;
  display: none;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: .7s ease;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #2a65b0;
  background-color: #fff;
}

.select {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  color: #666;
  background-color: #fff;
  border: 1px solid #57c1f0;
  border-radius: 10px;
}
.select--md {
  max-width: 487px;
}
.select:before {
  content: "";
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0)', endColorStr='white', gradientType='1');
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select:after {
  content: "";
  width: 52px;
  height: 52px;
  background: url(../images/arrow-down.svg) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select .form-control {
  width: calc(100% + 40px);
  border: 0;
  height: 49px;
  line-height: 49px;
}
.select:first-child {
  margin-left: 0;
}
.select:last-child {
  margin-right: 0;
}

.form {
  font-size: 16px;
  line-height: 48px;
  color: #666;
}
.form a {
  color: #666;
}
.form .desc {
  margin-bottom: 20px;
  line-height: 1;
  color: #57c1f0;
}
.form .desc .required {
  color: #57c1f0;
}
.form .section-group {
  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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -10px;
}
.form .section-group .form-section {
  width: calc(100% / 2 - 10px * 2);
  margin: 0 10px 16px;
}
.form .form-section {
  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;
  margin-bottom: 16px;
  word-wrap: break-word;
  word-break: break-all;
}
.form .form-label {
  width: 232px;
  font-size: 18px;
  line-height: 48px;
  position: relative;
  color: #2a65b0;
}
.form .form-label--sm {
  line-height: 21px;
  margin-top: 4px;
}
.form .form-content {
  width: calc(100% - 232px);
}
.form .btn-group {
  width: 100%;
}
.form .btn-group .btn {
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  width: 117px;
  height: 38px;
  border-radius: 8px;
}
.form .btn-group .btn:hover, .form .btn-group .btn:active {
  opacity: .6;
}
.form .btn-primary {
  height: 38px;
  line-height: 34px;
}
.form .required {
  color: #2a65b0;
}
.form .add-text {
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.form .add-text--name {
  padding-left: 0;
  padding-top: 15px;
}
.form .add-text--category {
  display: block;
  padding: 12px 0 0;
}
.form .add-text--category strong {
  padding-top: 5px;
}
.form .add-text--link {
  padding: 12px 0;
  display: block;
}
.form .check-row {
  padding-top: 20px;
  padding-bottom: 55px;
  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;
  color: #2a65b0;
}
.form .check-row .checkbox-item label {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}
.form .check-row a {
  text-decoration: underline;
  color: #2a65b0;
}
.form .form-bottom {
  position: relative;
}
.form .captcha {
  max-width: 453px;
}
.form.preview {
  line-height: 24px;
}
.form.preview .section-group .form-section {
  margin-bottom: 24px;
}
.form.preview .form-section {
  margin-bottom: 24px;
}
.form.preview .form-label {
  line-height: 24px;
}
.form.preview .form-label--sm {
  margin-top: -10px;
}
.form.preview .btn-row {
  padding-top: 30px;
  border-top: 1px solid #57c1f0;
}
.form.preview .add-text {
  line-height: 24px;
}
.form.preview .add-text.upload {
  display: block;
  padding: 0;
  margin-bottom: 10px;
}
.form.preview .add-text.link {
  padding: 0;
}
.form.preview .form-section-bottom .form-label {
  line-height: 48px;
}
.form.preview .form-section-bottom .add-text {
  margin-top: 10px;
  display: block;
}
.form .section-line {
  height: 1px;
  display: block;
  background-color: #57c1f0;
  margin: 40px 0;
}
.form textarea {
  min-height: 100px;
  line-height: 24px;
  padding: .5em .75em;
}
.form .btn-row {
  padding-bottom: 35px;
}
.form .btn-primary {
  min-width: 132px;
  height: 39px;
  line-height: 39px;
  border-radius: 39px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px #ff8a00;
  background-color: #ff8a00;
  font-size: 24px;
  margin: 0 20px;
  color: #fff;
  font-weight: 700;
}
.form .custom-select {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  color: #666;
  background-color: #fff;
  border: 1px solid #57c1f0;
  border-radius: 10px;
  text-align: left;
  background-image: none;
  padding: 0 15px;
}
.form .custom-select:before {
  content: "";
  width: 52px;
  height: 52px;
  background: url(../images/arrow-down.svg) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.form .dropdown-menu {
  width: 100%;
  background-color: #fff;
  border: 1px solid #57c1f0;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  margin-top: -8px !important;
  padding-top: 8px;
  transform: none !important;
  top: 48px !important;
}
.form .dropdown-item {
  color: #666;
  white-space: inherit;
}

.form-section-bottom .add-text {
  color: #666;
}
.form-section-bottom a {
  color: #0e57ac;
  font-weight: 700;
  text-decoration: underline;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #bfbfbf;
  opacity: 1;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #2f357c;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/**
 * Bootstrap Multiselect (http://davidstutz.de/bootstrap-multiselect/)
 *
 * Apache License, Version 2.0:
 * Copyright (c) 2012 - 2022 David Stutz
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a
 * copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *
 * BSD 3-Clause License:
 * Copyright (c) 2012 - 2022 David Stutz
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *    - Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *    - Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *    - Neither the name of David Stutz nor the names of its contributors may be
 *      used to endorse or promote products derived from this software without
 *      specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
span.multiselect-native-select {
  position: relative;
}

span.multiselect-native-select select {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px -1px -1px -3px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  left: 50%;
  top: 30px;
}

.multiselect.dropdown-toggle:after {
  display: none;
}

.multiselect {
  overflow: hidden;
  text-overflow: ellipsis;
}

.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.multiselect-container .multiselect-reset .input-group {
  width: 93%;
}

.multiselect-container .multiselect-filter > .fa-search {
  z-index: 1;
  padding-left: 0.75rem;
}

.multiselect-container .multiselect-filter > input.multiselect-search {
  border: none;
  border-bottom: 1px solid lightgrey;
  padding-left: 2rem;
  margin-left: -1.625rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.multiselect-container .multiselect-filter > input.multiselect-search:focus {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.multiselect-container .multiselect-filter > .multiselect-moz-clear-filter {
  margin-left: -1.5rem;
  display: none;
}

.multiselect-container .multiselect-option.multiselect-group-option-indented-full {
  padding-left: 2.6rem;
}

.multiselect-container .multiselect-option.multiselect-group-option-indented {
  padding-left: 1.8rem;
}

.multiselect-container .multiselect-group {
  cursor: pointer;
}

.multiselect-container .multiselect-group.closed .dropdown-toggle::after {
  transform: rotate(-90deg);
}

.multiselect-container .multiselect-group .caret-container ~ .form-check {
  margin-left: 0.5rem;
}

.multiselect-container .multiselect-option,
.multiselect-container .multiselect-group,
.multiselect-container .multiselect-all {
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
}

.multiselect-container .multiselect-option.dropdown-item,
.multiselect-container .multiselect-group.dropdown-item,
.multiselect-container .multiselect-all.dropdown-item,
.multiselect-container .multiselect-option.dropdown-toggle,
.multiselect-container .multiselect-group.dropdown-toggle,
.multiselect-container .multiselect-all.dropdown-toggle {
  cursor: pointer;
}

.multiselect-container .multiselect-option .form-check-label,
.multiselect-container .multiselect-group .form-check-label,
.multiselect-container .multiselect-all .form-check-label {
  cursor: pointer;
}

.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback),
.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active,
.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active {
  background-color: lightgrey;
  color: #666;
}

.multiselect-container .multiselect-option:hover,
.multiselect-container .multiselect-group:hover,
.multiselect-container .multiselect-all:hover,
.multiselect-container .multiselect-option:focus,
.multiselect-container .multiselect-group:focus,
.multiselect-container .multiselect-all:focus {
  background-color: darkgray !important;
}

.multiselect-container .multiselect-option .form-check,
.multiselect-container .multiselect-group .form-check,
.multiselect-container .multiselect-all .form-check {
  padding: 0 5px 0 0;
}

.multiselect-container .multiselect-option:focus,
.multiselect-container .multiselect-group:focus,
.multiselect-container .multiselect-all:focus {
  outline: none;
}

.form-inline .multiselect-container span.form-check {
  padding: 3px 20px 3px 40px;
}

.input-group.input-group-sm > .multiselect-native-select .multiselect {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-right: 1.75rem;
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group > .multiselect-native-select {
  flex: 1 1 auto;
  width: 1%;
}

.input-group > .multiselect-native-select > div.btn-group {
  width: 100%;
}

.input-group > .multiselect-native-select:not(:first-child) .multiselect {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .multiselect-native-select:not(:last-child) .multiselect {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Noto Sans TC', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  background-color: #0e57ac;
  color: #666;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -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 {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}

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;
  font-size: 16px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 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;
}

#container {
  overflow: hidden;
  width: 100%;
  background: #75cef3;
}

.container {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 20px;
  position: relative;
}

.inview {
  opacity: 0;
}

.site-content {
  position: relative;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.site-header .container {
  height: 100px;
  z-index: 1;
}
.site-header.sticky {
  background-color: white;
}

.logo {
  position: absolute;
  top: 17px;
  left: 20px;
  width: 161px;
  height: 72px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.png);
  font-size: 0;
}

.site-menu {
  position: absolute;
  top: 26px;
  right: 16px;
}

.menu-panel {
  z-index: 10;
  position: relative;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.main-menu li {
  position: relative;
  margin: 0 4px;
}
.main-menu a {
  cursor: pointer;
}
.main-menu .has-sub:hover .menu-item, .main-menu .has-sub:active .menu-item {
  filter: brightness(1.1);
}
.main-menu .has-sub:hover .sub-menu-panel, .main-menu .has-sub:active .sub-menu-panel {
  display: block;
}
.main-menu .has-sub.is-view .sub-menu-panel {
  display: block;
}
.main-menu .sub-menu-tigger {
  display: none;
}
.is-mobile .main-menu .sub-menu-tigger {
  display: block;
}
.main-menu .has-sub__tigger {
  position: relative;
}
.main-menu .has-sub__tigger.active > .menu-item {
  color: #086dae;
  background-color: #fff883;
}
.main-menu .has-sub__tigger .sub-menu-tigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  cursor: pointer;
}
.main-menu .menu-item {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 40px;
  color: #086dae;
  padding: 0 10px;
  border-radius: 40px;
  font-weight: 500;
  background-color: #fff883;
  border: 2px solid #259ae5;
  min-width: 100px;
  text-align: center;
  box-shadow: 3px 3px 0 0 #259ae5;
}
.main-menu .menu-item:hover, .main-menu .menu-item:active {
  filter: brightness(1.1);
}

.sub-menu-panel {
  position: absolute;
  top: 42px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  display: none;
  padding-top: 8px;
  width: 160px;
}
.sub-menu-panel.is-view {
  display: block;
}

.sub-menu {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 15px;
  background-color: #fff883;
  border: 2px solid #259ae5;
  box-shadow: 3px 3px 0 0 #259ae5;
  overflow: hidden;
  padding: 5px 0;
}
.sub-menu li {
  margin: 0;
}
.sub-menu a {
  color: #086dae;
  display: block;
  padding: 8px 4px;
  line-height: 27px;
}
.sub-menu a:hover, .sub-menu a:active, .sub-menu a.active {
  opacity: .8;
}
.sub-menu .text-small {
  font-size: 12px;
}

.kv {
  position: relative;
  width: 100%;
  background-color: #2dabe7;
  background-image: url(../images/kv-bg_lg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
}
.kv .container {
  max-width: 1300px;
  padding: 0;
}
.kv .image {
  visibility: visible;
}
.kv .image img {
  width: 100%;
}
.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0;
  font-size: 0;
}
.kv .layer-1 {
  background-image: url(../images/kv-layer1.png);
}
.kv .layer-2 {
  background-image: url(../images/kv-layer2.png);
}
.kv .layer-3 {
  background-image: url(../images/kv-layer3.png);
}
.kv .layer-4 {
  background-image: url(../images/kv-layer4.png);
}
.kv .floating {
  opacity: 1;
}
.kv .kv-btn {
  position: absolute;
  bottom: 4%;
  left: 60.461538461%;
  width: 11.307692307%;
  max-width: 147px;
  opacity: 0;
  cursor: pointer;
}
.kv .kv-btn:hover, .kv .kv-btn:active {
  filter: brightness(1.1);
}

.site-footer {
  width: 100%;
  position: relative;
  background: #0e57ac;
  color: #fff;
  padding: 20px 0;
  line-height: 30px;
  font-size: 16px;
  letter-spacing: .05em;
}
.site-footer .container {
  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;
}
.site-footer .copyright {
  text-align: center;
}
.site-footer .text-block {
  display: inline-block;
}
.site-footer .border {
  border: 1px solid #fff;
  font-size: 13px;
  line-height: 18px;
  display: inline-block;
  padding: 0 5px;
  margin-left: 18px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.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;
}
.footer-menu li {
  position: relative;
  padding: 0 16px;
}
.footer-menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 1px;
  height: 16px;
  background-color: #fff;
}
.footer-menu li:first-child:before {
  display: none;
}
.footer-menu a {
  color: #fff;
}
.footer-menu a:hover, .footer-menu a:active {
  color: #fff100;
}

.l-box {
  background-color: #e0f6ff;
  border: 2px solid #259ae5;
  border-radius: 15px;
  padding: 15px 28px;
  box-shadow: 3px 3px 0 0 #259ae5;
  margin: 0 auto;
  max-width: 980px;
  width: calc(100% - 15px * 2);
  min-height: 400px;
}

.page-banner {
  position: relative;
  pointer-events: none;
}
.page-banner .floating {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: none;
}

.breadcrumb {
  position: relative;
  margin-bottom: 15px;
}

.page {
  position: relative;
  background-image: url(../images/page-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center top;
  background-color: #57c1f0;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .05em;
}
.page .container {
  padding: 0;
  max-width: 1110px;
}
.page h3 img {
  margin: 0;
}
.page-title {
  margin-bottom: 30px;
}
.page-title img {
  display: block;
  margin: 0 auto;
  max-height: 40px;
}
.page .btn-link {
  background-color: #fff100;
  border: 3px solid #614c3f;
  color: #614c3f;
  font-weight: 700;
  padding: 0 5px;
  line-height: 32px;
  display: inline-block;
  border-radius: 8px;
}
.page p {
  text-align: justify;
  word-wrap: break-word;
  word-break: break-all;
}
.page a:hover, .page a:active {
  opacity: .8;
}
.page .btn:hover, .page .btn:active {
  opacity: 1;
}

.main {
  min-height: 220px;
}

.main-heading {
  color: #259ae5;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-left: 30px;
  display: block;
  margin: 0 auto 25px;
  margin-top: -10px;
  padding-left: 0;
  width: 100%;
  text-align: center;
  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;
}
.main-heading:before {
  content: "";
  position: relative;
  top: -3px;
  left: 0;
  width: 22px;
  height: 31px;
  background-image: url(../images/lightBulb.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: -11px;
  margin-right: 10px;
}
.main-heading:after {
  display: none;
}
.main-heading span {
  padding: 0;
}

.sub-heading {
  color: #2a65b0;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  margin-left: 30px;
  position: relative;
  display: inline-block;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.sub-heading:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 22px;
  height: 31px;
  background-image: url(../images/lightBulb.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.sub-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #fff883;
}
.sub-heading span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
}

.highlight {
  color: #2a65b0;
}

.text-md {
  font-size: 18px;
}

.text-lg {
  font-size: 24px;
}

.decimal-list {
  list-style: decimal;
  padding-left: 1.25em;
  line-height: 24px;
  word-wrap: break-word;
  word-break: break-all;
}

.customer-service .top-text {
  text-align: center;
  margin-bottom: 25px;
}
.customer-service .top-text span {
  display: inline-block;
}
.customer-service .section {
  margin-bottom: 25px;
}

.rule .section {
  position: relative;
  margin-bottom: 25px;
}
.rule .section-3 .image {
  margin-top: 45px;
  position: relative;
}
.rule .section-3 .link {
  position: absolute;
  width: 33.3333%;
  height: 50%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  font-size: 0;
}
.rule .section-3 .link:hover, .rule .section-3 .link:active {
  background-color: rgba(224, 246, 255, 0.2);
}
.rule .section-3 .link-1 {
  top: 0;
  left: 0;
}
.rule .section-3 .link-2 {
  top: 0;
  left: 33.3333%;
}
.rule .section-3 .link-3 {
  top: 0;
  left: 66.6666%;
}
.rule .section-3 .link-4 {
  top: 50%;
  left: 0;
}
.rule .section-3 .link-5 {
  top: 50%;
  left: 33.3333%;
}
.rule .section-3 .link-6 {
  top: 50%;
  left: 66.6666%;
}
.rule .section-5 .image {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 57.931034482%;
  max-width: 504px;
}
.rule .section-5 a {
  color: #2a65b0;
}
.rule .section-6 .block {
  padding-left: 0;
  margin-top: 10px;
}
.rule .section-6 h4 {
  color: #2a65b0;
}
.rule .section-6 .image {
  padding: 10px 0;
}
.rule .section-6 ol {
  margin-bottom: 1em;
}
.rule .section-6 ol:last-child {
  margin-bottom: 0;
}
.rule .section-7 .highlight,
.rule .section-7 strong {
  color: #2a65b0;
}
.rule .section-7 .pl {
  padding-left: 1em;
}
.rule .section-7 .block {
  margin: 0 auto;
  max-width: 730px;
}
.rule .section-7 .block img {
  display: block;
  margin: 20px auto;
}
.rule .section-7 .table-warp {
  overflow: hidden;
  overflow-x: auto;
  margin: 0 auto;
}
.rule .section-7 .table-warp img {
  max-width: 100%;
  margin: 0;
}
.rule .section-7 .table1 {
  max-width: 730px;
}
.rule .section-7 .table2 {
  max-width: 730px;
}
.rule .section-7 .image1 img {
  max-width: 730px;
}
.rule .section-7 .image2 img {
  max-width: 730px;
}
.rule .section-7 .note {
  color: #2a65b0;
  padding: 10px 0 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}
.rule .section-9 a {
  color: #666;
}

.online-register__top {
  margin-bottom: 35px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .05em;
}
.online-register .list li {
  position: relative;
  padding-left: 20px;
}
.online-register .list .icon {
  position: absolute;
  top: 2px;
  left: 0;
}
.online-register .team .form-label {
  letter-spacing: -.05em;
}

.upload {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 4px;
}

.upload-work {
  padding-top: 48px;
  padding-left: 234px;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.upload-work .upload-wrapper {
  position: static;
}
.upload-work .border {
  position: absolute;
  top: 0;
  left: 0;
  width: 206px;
  height: 86px;
  background-color: #fff;
  border: 1px solid #57c1f0;
  border-radius: 8px;
  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;
}
.upload-work .btn {
  transition: opacity 0.5s ease;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  width: 100px;
  height: 38px;
  border-radius: 8px;
  color: #fff005;
  background-color: #2a65b0;
  border: 1px solid #2a65b0;
  margin-right: 0;
  font-weight: 700;
  cursor: pointer;
}
.upload-work .btn.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.upload-work .btn.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.upload-work .btn.success.uploaded .file-success-text span {
  display: none;
}
.upload-work .btn.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: none;
}

.file-upload-name {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #666;
  vertical-align: top;
  line-height: 24px;
}

.upload-wrapper {
  position: relative;
  cursor: pointer;
  transition: 0.2s linear all;
  text-align: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.upload-wrapper.btn {
  transition: opacity 0.5s ease;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  width: 100px;
  height: 38px;
  border-radius: 8px;
  color: #fff005;
  background-color: #2a65b0;
  border: 1px solid #2a65b0;
  margin-right: 20px;
  font-weight: 700;
  cursor: pointer;
}
.upload-wrapper input[type="file"] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}
.upload-wrapper .file-upload-text {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all;
  cursor: pointer;
}
.upload-wrapper .file-success-text {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
}
.upload-wrapper.uploaded {
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}
.upload-wrapper.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}
.upload-wrapper.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.upload-wrapper.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.upload-wrapper.success.uploaded .file-success-text span {
  display: none;
}
.upload-wrapper.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: none;
}

.tabs-wrap {
  margin-bottom: 15px;
}
.tabs-wrap .nav {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tabs-wrap .nav-item {
  margin: 0 8px;
}
.tabs-wrap .nav-item span:first-child {
  display: block;
}
.tabs-wrap .nav-item span:last-child {
  display: none;
}
.tabs-wrap .nav-item.active span:first-child {
  display: none;
}
.tabs-wrap .nav-item.active span:last-child {
  display: block;
}
.tabs-wrap .nav-link {
  padding: 0;
}
.tabs-wrap .nav-link span:first-child {
  display: block;
}
.tabs-wrap .nav-link span:last-child {
  display: none;
}
.tabs-wrap .nav-link.active span:first-child {
  display: none;
}
.tabs-wrap .nav-link.active span:last-child {
  display: block;
}

.news .nav-item img {
  max-width: 130px;
}

.news-list .item {
  position: relative;
  padding: 30px 0;
  padding-right: 100px;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .05em;
  color: #666;
  min-height: 125px;
}
.news-list .item .date {
  color: #259ae5;
}
.news-list .item .main-text {
  color: #2a65b0;
  font-size: 22px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 0;
}
.news-list .item .action {
  position: absolute;
  right: 0;
  top: 65px;
}
.news-list .item .btn {
  width: 74px;
  line-height: 35px;
  height: 35px;
  display: block;
  padding: 0;
  font-size: 14px;
  background-color: #2a65b0;
  border: 0;
  color: #fff005;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}
.news-list .item .btn:hover, .news-list .item .btn:active {
  filter: brightness(1.2);
}

.pagination {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 0;
  padding: 35px 0;
}

.page-item {
  margin: 5px;
}
.page-item:first-child .page-link {
  border-radius: 50%;
}
.page-item:last-child .page-link {
  border-radius: 50%;
}
.page-item.disabled .page-link {
  color: #54c2f0;
  background-color: transparent;
  border: 0;
  opacity: .5;
}

.page-link {
  padding: 0;
  line-height: 24px;
  width: 24px;
  text-align: center;
  margin-left: 0;
  color: #54c2f0;
  border: 0;
  border-radius: 50%;
  font-size: 14px;
  background-color: transparent;
  letter-spacing: 0;
}
.page-link:hover, .page-link.active {
  color: #fff;
  background-color: #54c2f0;
}

.article {
  font-size: 15px;
  line-height: 24px;
}
.article-header {
  margin-bottom: 10px;
  padding: 20px 0 0;
}
.article-header .date {
  color: #259ae5;
  line-height: 30px;
}
.article-header .main-text {
  color: #2a65b0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
}
.article-header .sub-text {
  font-size: 15px;
  line-height: 24px;
}
.article-content p {
  margin-bottom: 1.5em;
}
.article-footer {
  padding: 20px 0;
}
.article-footer .btn-back {
  display: block;
  margin: 0 auto;
  width: 102px;
  font-size: 16px;
  line-height: 39px;
  height: 39px;
  font-weight: 400;
  color: #fff005;
  background-color: #2a65b0;
  border: 0;
  text-align: center;
  border-radius: 8px;
  padding: 0 10px;
  display: block;
}

.activity {
  padding-bottom: 20px;
}

.activity-gallery {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 20px;
}
.activity-gallery__bottom {
  position: relative;
}
.activity-gallery .gallery-top {
  margin-bottom: 30px;
}
.activity-gallery .gallery-top .swiper-slide {
  position: relative;
}
.activity-gallery .image {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  background-color: #eee;
}
.activity-gallery .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100%;
  max-width: inherit;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.activity-gallery .gallery-thumbs {
  margin: 0 -10px;
}
.activity-gallery .gallery-thumbs .image {
  background-color: #000;
}
.activity-gallery .gallery-thumbs .swiper-slide {
  padding: 0 10px;
  cursor: pointer;
}
.activity-gallery .gallery-thumbs .swiper-slide-thumb-active:before {
  content: "";
  box-shadow: 0 0 0 3px #259ae5 inset;
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  width: calc(100% - 10px * 2);
  height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}
.activity-gallery .gallery-thumbs .mask {
  left: 10px;
  right: 10px;
  width: auto;
  background-size: 40px;
}
.activity-gallery .swiper-button-prev,
.activity-gallery .swiper-button-next {
  width: 24px;
  height: 42px;
  margin-top: -21px;
  background-size: contain;
}
.activity-gallery .swiper-button-prev {
  left: -6%;
  background-image: url(../images/swiper-prev.png);
}
.activity-gallery .swiper-button-next {
  right: -6%;
  background-image: url(../images/swiper-next.png);
}
.activity-gallery .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/vote-play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45px;
  cursor: pointer;
  z-index: 0;
}

.related {
  padding: 20px 0;
}

.related-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -20px;
}
.related-list .item {
  margin: 20px;
}
.related-list a {
  display: block;
}

.vote-rule img {
  margin: 0;
  width: 100%;
}
.vote-rule .image {
  margin: 20px 0;
}
.vote-rule .image-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;
  -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;
}
.vote-rule .image-group img {
  margin: 0 20px 20px;
}
.vote-rule strong {
  font-weight: 400;
}
.vote-rule .image1 {
  max-width: 409px;
  margin: 0 auto;
}
.vote-rule .image2 {
  max-width: 540px;
  margin: 0 auto;
}
.vote-rule .image3 {
  max-width: 409px;
}
.vote-rule .image4 {
  max-width: 220px;
}

.vote {
  position: relative;
}
.vote .nav-item img {
  max-width: 92px;
}
.vote .top-link {
  position: absolute;
  top: -72px;
  left: calc(50% + 400px / 2 + 20px);
}
.vote .top-link .btn {
  width: 82px;
  height: 38px;
  line-height: 34px;
  display: block;
  font-size: 16px;
  padding: 0;
}
.vote .select {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 38px;
  height: 38px;
  border: 2px solid #57c1f0;
  border-radius: 4px;
  background-color: #fff;
  margin: 0 5px;
}
.vote .select:before {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(255, 255, 255, 0)', endColorStr='white', gradientType='1');
}
.vote .select:after {
  width: 38px;
  height: 38px;
}
.vote .select .form-control {
  height: 38px;
  line-height: 38px;
  border-radius: 0;
  background-color: #fff;
  color: #666;
  font-size: 16px;
  font-weight: 700;
  padding: 0 10px;
  padding-right: 32px;
}

.vote-top {
  position: relative;
  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;
  margin-bottom: 15px;
  color: #666;
  font-size: 18px;
  line-height: 36px;
}
.vote-top .remaining {
  position: relative;
}
.vote-top .remaining .number {
  color: #35d0e2;
  display: inline-block;
}
.vote-top .select-group {
  margin: 0 auto 35px;
  max-width: 445px;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.vote-top .select-group .select {
  border-radius: 42px;
  border: 2px solid #259ae5;
  margin: 0;
  line-height: 42px;
  height: 42px;
}
.vote-top .select-group .select:after {
  background: url(../images/arrow-down2.svg) center no-repeat;
}
.vote-top .select-group option:disabled {
  display: none;
}
.vote-top .select-group .form-control {
  font-weight: 400;
  font-size: 15px;
  padding-left: 15px;
}
.vote-top .select-group .year {
  width: 137px;
  margin-right: 12px;
}
.vote-top .select-group .group {
  width: calc(100% - 137px - 12px);
}
.vote-top .select {
  min-width: 106px;
}
.vote-top__right .btn {
  font-size: 18px;
  line-height: 44px;
  width: 120px;
  font-weight: 700;
  color: #fff;
  background-color: #35d0e2;
  text-align: center;
  height: 44px;
  border-radius: 10px;
  padding: 0 20px;
  display: block;
  box-shadow: 0 6px 0 0 #1ea4b4;
}

.vote-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  margin: -10px;
}
.vote-list.history .item .inner {
  padding: 14px 12px;
}
.vote-list .item {
  position: relative;
  width: calc(100% / 3 - 10px * 2);
  margin: 10px;
}
.vote-list .item .inner {
  background-color: #fff;
  padding: 14px 12px;
  border: 3px solid #57c1f0;
  border-radius: 15px;
  position: relative;
  padding-bottom: 70px;
}
.vote-list .item .image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  margin-bottom: 8px;
  background-color: #e6e6e6;
}
.vote-list .item .image a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vote-list .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vote-list .item .video {
  background-color: #000;
}
.vote-list .item .video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background-size: 100%;
  background-image: url(../images/icon-play.png);
  z-index: 1;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.vote-list .item .category {
  margin-left: 15px;
  background-color: #2a65b0;
  border-radius: 15px 15px 0 0;
  color: #fff;
  width: 108px;
  height: 41px;
  box-shadow: 2px 2px 0 2px #57c1f0;
  text-align: center;
  line-height: 41px;
  font-size: 18px;
}
.vote-list .item .l-row {
  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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.vote-list .item .l-row .hd {
  white-space: nowrap;
}
.vote-list .item .number {
  position: absolute;
  left: 12px;
  bottom: 20px;
  font-weight: 700;
  color: #2a65b0;
  font-size: 24px;
}
.vote-list .item .action {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.vote-list .item .btn-primary {
  width: 108px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px #ff8a00;
  background-color: #ff8a00;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0;
  display: block;
  font-weight: 700;
}

.vote-bottom {
  position: relative;
  color: #666;
  padding: 0 125px;
  margin: 40px 0 20px;
}
.vote-bottom .pagination {
  padding: 0;
}
.vote-bottom .page-jump {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
}
.vote-bottom .select {
  min-width: 83px;
}

.vote-login {
  padding-bottom: 40px;
}
.vote-login .main-heading {
  margin-bottom: 20px;
}
.vote-login .btn-fb {
  max-width: 264px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.vote-login .btn-fb img {
  display: block;
}
.vote-login .btn-fb:hover, .vote-login .btn-fb:active {
  opacity: .8;
}
.vote-login .fb-login {
  color: #2a65b0;
  text-align: center;
}
.vote-login .fb-login p {
  font-size: 15px;
  text-align: center;
  margin-bottom: 20px;
}
.vote-login .fb-login .title {
  color: #2a65b0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}
.vote-login .fb-login span {
  display: inline-block;
}
.vote-login__top {
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 24px;
  color: #2a65b0;
}
.vote-login__top span {
  display: inline-block;
}
.vote-login__top h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}
.vote-login__top p {
  text-align: center;
}
.vote-login .form {
  max-width: 635px;
  margin: 0 auto;
}
.vote-login .form .form-label {
  width: 80px;
  font-size: 16px;
}
.vote-login .form .form-content {
  width: calc(100% - 80px);
}
.vote-login .form .check-row {
  padding: 10px 0 35px;
}
.vote-login .birthday {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -10px;
}
.vote-login .custom-select {
  max-width: 136px;
  width: calc(100% / 3 - 10px * 2);
  margin: 0 10px;
  background: url(../images/arrow-down.svg) no-repeat #fff right 0.75rem center/16px 16px;
}
.vote-login .code {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 400px;
  color: #2a65b0;
  font-size: 14px;
}
.vote-login .code .form-control {
  width: calc(100% - 100px);
  max-width: 136px;
}
.vote-login .code .image {
  margin-left: 12px;
  max-width: 100px;
  margin-right: 12px;
}
.vote-login .code .text span {
  display: inline-block;
}
.vote-login .text-small {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 10px;
  color: #2a65b0;
  letter-spacing: .025em;
}

.single-page {
  line-height: 36px;
  font-size: 16px;
}
.single-page h4 {
  color: #614c3f;
  font-size: 18px;
  font-weight: 700;
}

.modal .close {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 52px;
  height: 52px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/modal-close.png);
  box-shadow: 3px 3px 0 0 #259ae5;
  border-radius: 50%;
  font-size: 0;
  border: 2px solid #259ae5;
  background-color: #fff883;
  cursor: pointer;
}
.modal .close:hover, .modal .close:active, .modal .close.active {
  filter: brightness(1.1);
}
.modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 920px;
}
.modal .modal-content {
  background-color: #e0f6ff;
  border: 2px solid #259ae5;
  border-radius: 20px;
  display: block;
  color: #333;
  box-shadow: 3px 3px 0 0 #259ae5;
  font-size: 15px;
  line-height: 24px;
}
.modal .modal-body {
  padding: 30px 35px;
}
.modal h4 {
  color: #2a65b0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.modal p {
  margin-bottom: 1em;
  text-align: justify;
}
.modal p:last-child {
  margin-bottom: 0;
}
.modal.copyright .modal-body, .modal.privacyPolicy .modal-body, .modal.securityPolicy .modal-body {
  padding: 25px 35px;
}

.comingSoon-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 480px;
}
.comingSoon-modal .modal-content {
  background-color: #fff;
}
.comingSoon-modal .modal-body {
  padding: 30px 35px;
}
.comingSoon-modal p {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: .1em;
  text-indent: .1em;
  font-weight: 700;
  color: #2a65b0;
  padding: 1.5em 0;
  margin: 0;
}

.form-complete-modal .modal-dialog {
  max-width: 600px;
}
.form-complete-modal .modal-content {
  min-height: 320px;
}
.form-complete-modal .modal-body {
  padding-top: 60px;
}
.form-complete-modal .title {
  font-size: 24px;
  line-height: 30px;
  color: #2a65b0;
  font-weight: 700;
  margin-bottom: 25px;
}
.form-complete-modal .content {
  color: #333;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 40px;
}
.form-complete-modal p {
  margin-bottom: 0;
}
.form-complete-modal .btn-primary {
  min-width: 208px;
  height: 39px;
  line-height: 39px;
  border-radius: 39px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px #ff8a00;
  background-color: #ff8a00;
  font-size: 24px;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
}

.vote-modal .modal-body {
  padding: 80px 15px;
}
.vote-modal .modal-dialog {
  max-width: 600px;
}
.vote-modal .title {
  padding: 0;
  color: #2a65b0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
}
.vote-modal .title span {
  display: inline-block;
}
.vote-modal .highlight {
  color: #2a65b0;
}
.vote-modal .content {
  padding: 20px 0 0;
}
.vote-modal p {
  color: #666;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 0;
  font-weight: 500;
}
.vote-modal .btn-row {
  margin-top: 80px;
}
.vote-modal .btn {
  height: 38px;
  line-height: 34px;
}
.vote-modal .btn-fb {
  max-width: 345px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.vote-modal .btn-fb img {
  display: block;
}
.vote-modal .btn-fb:hover, .vote-modal .btn-fb:active {
  opacity: .8;
}

#voteModal .title {
  padding: 0;
  margin: 0;
}
#voteModal .content {
  padding: 0;
}

#fbLoginModal .modal-body {
  padding: 60px 15px;
}
#fbLoginModal .title {
  padding: 0;
  margin-bottom: 30px;
}
#fbLoginModal .content {
  padding: 0;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.c-hamburger {
  display: none;
  position: fixed;
  top: 10px;
  right: 12px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 999;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/menu-toggle.png);
}

.side-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 80px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view {
  bottom: 20px;
}
.side-sticky.is-view .link-register {
  margin-bottom: 20px;
}
.side-sticky.is-view .link-top {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
  bottom: 20px;
}
.side-sticky span {
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  background-size: contain;
}
.side-sticky a {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  display: block;
}
.side-sticky a:hover {
  filter: brightness(1.1);
}
.side-sticky .link-top {
  width: 69px;
  height: 69px;
  background-image: url(../images/side-top.png);
  margin: 0;
  display: none;
  border-radius: 50%;
  border: 2px solid #2a65b0;
  box-shadow: 3px 3px 0 0 #0e57ac;
}

.mobile-alert {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.mobile-alert__text {
  position: absolute;
  top: 50%;
  width: 100%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  letter-spacing: .05em;
  text-indent: .05em;
  text-align: center;
}

.is-mobile .mobile-alert {
  display: block;
}

.floating {
  animation-name: floating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, -10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.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;
  }
}
@media (min-width: 1300px) {
  .kv .image {
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .rule .section-3 .image {
    width: 100%;
  }
}
@media (max-width: 1140px) {
  .logo {
    top: 20px;
    width: 150px;
    height: 56px;
  }

  .main-menu li {
    margin: 0 5px;
  }
}
@media (max-width: 1048px) {
  .menu-toggle {
    display: block;
  }

  .scroll--hidden {
    overflow: hidden;
  }

  .site-header .container {
    height: 70px;
    z-index: 1;
  }
  .site-header.sticky .logo {
    top: 5px;
    left: 20px;
    width: 136px;
    height: 60px;
  }
  .site-header.sticky .c-hamburger {
    top: 15px;
    background-image: url(../images/menu-toggle_dark.png);
  }

  .logo {
    top: 15px;
    left: 22px;
    width: 136px;
    height: 60px;
  }

  .site-menu .menu-panel {
    display: none;
  }
  .site-menu.is-view {
    display: block;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    /* with viewportHeight */
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 60px;
    z-index: 10;
  }
  .site-menu.is-view .c-hamburger {
    display: block;
    background-image: url(../images/menu-close.png);
    right: 15px;
  }
  .site-menu.is-view .menu-panel {
    display: block;
  }

  .is-toggle {
    display: block;
  }

  .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    /* with viewportHeight */
    position: fixed;
    top: 0;
    left: 0;
    padding: 60px 55px;
  }

  .site-menu ul,
  .site-menu li {
    position: relative;
  }

  .main-menu {
    display: block;
    width: 100%;
    margin-bottom: 0;
    background-color: #fff883;
    border: 1px solid #259ae5;
    box-shadow: 2px 2px 0 0 #259ae5;
    border-radius: 20px;
    overflow: hidden;
  }
  .main-menu li {
    margin: 0;
    display: block;
  }
  .main-menu li + li {
    border-top: 1px solid #259ae5;
  }
  .main-menu .menu-item {
    display: block;
    text-align: center;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 18px;
    padding: 20px 0;
    line-height: 20px;
  }
  .main-menu .has-sub__tigger .icon-plus {
    display: inline-block;
  }

  .sub-menu-panel {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    padding-top: 0;
  }

  .sub-menu {
    border: none;
    text-align: center;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-top: 1px solid #259ae5;
    padding: 5px 0;
  }
  .sub-menu li {
    margin: 0;
    margin-left: 0;
    border: 0;
  }
  .sub-menu li + li {
    border: 0;
  }
  .sub-menu a {
    padding: 8px 0;
  }

  .site-footer .container {
    display: block;
  }

  .footer-menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }

  .activity-gallery {
    padding: 0 40px;
  }

  .vote-list {
    margin: -12px -17px;
  }
  .vote-list .item {
    width: calc(100% / 2 - 17px * 2);
  }

  .vote-bottom {
    padding: 0;
    margin: 0;
  }
  .vote-bottom .pagination {
    padding: 30px 0;
  }
  .vote-bottom .page-jump {
    position: relative;
    bottom: 0;
    right: 0;
    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;
  }
}
@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .decimal-list {
    line-height: 24px;
  }

  .kv .layer-1 {
    background-image: url(../images/kv-layer1_s.png);
  }
  .kv .layer-2 {
    background-image: url(../images/kv-layer2_s.png);
  }
  .kv .layer-3 {
    background-image: url(../images/kv-layer3_s.png);
  }
  .kv .layer-4 {
    background-image: url(../images/kv-layer4_s.png);
  }
  .kv .kv-btn {
    bottom: 2.1%;
    left: 32.266666666%;
    width: 35.733333333%;
    max-width: 268px;
  }

  .form-control--md {
    max-width: 100%;
  }

  .select--md {
    max-width: 100%;
  }

  .form {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
  .form .desc {
    margin-bottom: 10px;
  }
  .form .section-group {
    display: block;
    margin: 0;
  }
  .form .section-group .form-section {
    width: 100%;
    margin: 0 0 10px;
  }
  .form .radio-item {
    padding-right: 15px;
  }
  .form .radio-item label {
    line-height: 30px;
  }
  .form .radio-item label:before {
    top: 0;
  }
  .form .radio-item label:after {
    top: 7px;
    left: 7px;
  }
  .form .form-section {
    margin-bottom: 10px;
    display: block;
  }
  .form .add-text {
    font-size: 14px;
    display: block;
    padding-top: 10px !important;
  }
  .form .add-text--name {
    padding-left: 0;
    padding-top: 6px;
  }
  .form .add-text--category {
    padding-top: 6px;
  }
  .form .add-text--category strong {
    padding-top: 5px;
  }
  .form .add-text--link {
    padding: 6px 0;
  }
  .form .form-label {
    width: 100%;
    font-size: 15px;
    line-height: 40px;
  }
  .form .form-content {
    width: 100%;
  }
  .form .section-line {
    margin: 15px 0;
  }
  .form .upload {
    display: block;
  }
  .form .check-row {
    padding-bottom: 30px;
    line-height: 24px;
  }
  .form .btn-row .btn-primary {
    margin: 0 8px;
  }
  .form .form-section-bottom {
    display: block;
  }
  .form .form-section-bottom .form-label {
    width: 100%;
  }
  .form .form-section-bottom .form-content {
    width: 100%;
  }
  .form.preview {
    line-height: 24px;
  }
  .form.preview .section-group .form-section {
    margin-bottom: 20px;
  }
  .form.preview .form-section {
    margin-bottom: 20px;
  }
  .form.preview .form-label {
    line-height: 24px;
  }
  .form.preview .btn-row {
    padding-top: 26px;
    border-top: 0;
    margin: 0 -20px;
  }
  .form.preview .add-text--link {
    padding: 0;
  }
  .form.preview .form-section-bottom .form-label {
    margin-bottom: 15px;
    line-height: 48px;
  }
  .form.preview .form-section-bottom .add-text {
    padding-top: 15px;
  }
  .form.preview .btn-primary:last-child {
    min-width: 104px;
  }
  .form .btn-primary {
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px #ff8a00;
  }

  .side-sticky {
    position: fixed;
    bottom: 30px;
    right: 5px;
    width: 48px;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    z-index: 3;
  }
  .side-sticky.is-view {
    bottom: 20px;
  }
  .side-sticky.change-bottom {
    position: absolute;
    bottom: 10px;
  }
  .side-sticky .link-top {
    width: 48px;
    height: 48px;
    border: 1px solid #2a65b0;
    box-shadow: 2px 2px 0 0 #0e57ac;
  }

  .site-footer {
    padding: 15px 0;
    font-size: 12px;
    letter-spacing: 0;
  }
  .site-footer .border {
    font-size: 12px;
    margin-left: 10px;
  }

  .footer-menu li {
    position: relative;
    padding: 0 10px;
  }
  .footer-menu li:before {
    top: 9px;
    height: 12px;
  }

  .breadcrumb {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .page {
    background-image: url(../images/page-bg_s.jpg);
    background-size: 100% auto;
  }

  .l-box {
    border: 1px solid #259ae5;
    padding: 10px 15px 20px;
    box-shadow: 2px 2px 0 2px #259ae5;
    margin: 0 15px;
    min-height: 200px;
  }

  .sub-heading {
    font-size: 20px;
  }
  .sub-heading:after {
    bottom: 2px;
  }

  .rule .section {
    margin-bottom: 20px;
  }
  .rule .section-3 .image {
    width: 100%;
    padding: 10px 0;
  }
  .rule .section-3 .link {
    width: 50%;
    height: 33.3333%;
  }
  .rule .section-3 .link-1 {
    top: 0;
    left: 0;
  }
  .rule .section-3 .link-2 {
    top: 0;
    left: 50%;
  }
  .rule .section-3 .link-3 {
    top: 33.3333%;
    left: 0;
  }
  .rule .section-3 .link-4 {
    top: 33.3333%;
    left: 50%;
  }
  .rule .section-3 .link-5 {
    top: 66.6666%;
    left: 0;
  }
  .rule .section-3 .link-6 {
    top: 66.6666%;
    left: 50%;
  }
  .rule .section-5 {
    padding-bottom: 0;
  }
  .rule .section-5 .image {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 15px 0 0;
  }
  .rule .section-7 .block {
    margin: 0;
  }
  .rule .section-7 .block img {
    max-width: 100%;
  }
  .rule .section-7 .table-warp {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-x: auto;
    margin: 0 auto;
  }
  .rule .section-7 .table-warp img {
    max-width: inherit;
    min-height: 250px;
  }
  .rule .section-7 .table1 img {
    min-width: 706px;
  }
  .rule .section-7 .table2 img {
    min-width: 567px;
  }
  .rule .section-9 a {
    color: #81a700;
  }

  .upload-work {
    padding-top: 0;
    padding-left: 0;
  }
  .upload-work .upload-wrapper {
    display: block;
  }
  .upload-work .border {
    position: relative;
    width: 206px;
    height: 86px;
    margin-bottom: 15px;
  }

  .modal .close {
    top: -18px;
    right: -12px;
    width: 45px;
    height: 45px;
    box-shadow: 2px 2px 0 0 #259ae5;
    border: 1px solid #259ae5;
  }
  .modal .modal-dialog {
    width: calc(100% - 15px * 2);
    margin: 25px auto;
  }
  .modal .modal-content {
    border: 1px solid #259ae5;
    box-shadow: 2px 2px 0 0 #259ae5;
    font-size: 12px;
    line-height: 18px;
  }
  .modal .modal-body {
    padding: 18px;
    padding-top: 40px;
  }
  .modal h4 {
    font-size: 15px;
    line-height: 18px;
  }
  .modal.copyright .modal-body, .modal.privacyPolicy .modal-body, .modal.securityPolicy .modal-body {
    padding: 40px 18px 18px;
  }

  .comingSoon-modal .modal-body {
    padding: 60px 15px;
  }
  .comingSoon-modal p {
    padding: 0;
  }

  .form-complete-modal .modal-dialog {
    max-width: 342px;
  }
  .form-complete-modal .title {
    margin-bottom: 25px;
  }
  .form-complete-modal .content {
    margin-bottom: 40px;
  }
  .form-complete-modal .btn-primary {
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px #ff8a00;
  }

  .vote-modal .modal-body {
    padding: 40px 15px;
  }
  .vote-modal .modal-dialog {
    max-width: 335px;
  }
  .vote-modal .title {
    padding: 0;
    margin-bottom: 10px;
  }
  .vote-modal .content {
    margin-bottom: 0;
  }
  .vote-modal .btn-row {
    margin: 20px 0;
  }
  .vote-modal .btn-fb {
    margin: 0 auto;
  }

  #fbLoginModal .modal-body {
    padding: 35px 15px;
  }

  .activity-gallery {
    max-width: 100%;
    padding: 0 10px;
  }
  .activity-gallery .gallery-top {
    margin-bottom: 20px;
  }
  .activity-gallery .gallery-thumbs {
    margin: 0 -5px;
  }
  .activity-gallery .gallery-thumbs .swiper-slide {
    padding: 0 5px;
    cursor: pointer;
  }
  .activity-gallery .gallery-thumbs .swiper-slide-thumb-active:before {
    box-shadow: 0 0 0 2px #259ae5 inset;
    left: 5px;
    right: 5px;
    width: calc(100% - 5px * 2);
  }
  .activity-gallery .gallery-thumbs .mask {
    left: 5px;
    right: 5px;
    background-size: 24px;
  }
  .activity-gallery .swiper-button-prev,
  .activity-gallery .swiper-button-next {
    background-size: auto 20px;
  }
  .activity-gallery .swiper-button-prev {
    left: -26px;
  }
  .activity-gallery .swiper-button-next {
    right: -26px;
  }
  .activity-gallery .mask {
    background-size: 40px;
  }

  .tabs-wrap .nav-item {
    margin: 0 8px;
  }
  .tabs-wrap .nav-link img {
    max-width: 108px;
  }

  .news-list {
    margin-top: -25px;
  }
  .news-list .item {
    padding: 25px 0;
    min-height: inherit;
  }
  .news-list .item .date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .news-list .item .main-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .news-list .item .action {
    position: relative;
    top: inherit;
    padding-top: 15px;
  }
  .news-list .item .btn {
    width: 74px;
    line-height: 35px;
    height: 35px;
  }

  .pagination {
    padding: 30px 0;
  }

  .related {
    padding: 0 20px 20px;
  }

  .related-list {
    margin: -15px;
  }
  .related-list .item {
    margin: 15px;
    width: calc(50% - 15px * 2);
  }

  .vote-rule .image-group {
    display: block;
  }
  .vote-rule .image-group img {
    margin: 0 auto 20px;
  }
  .vote-rule .image1 {
    max-width: 307px;
  }
  .vote-rule .image2 {
    max-width: 318px;
  }
  .vote-rule .image3 {
    max-width: 307px;
  }
  .vote-rule .image4 {
    max-width: 250px;
  }

  .vote .tabs-wrap {
    max-width: 320px;
    margin: 0 auto 15px;
    margin-top: 20px;
  }
  .vote .nav {
    margin: 0 -6px;
  }
  .vote .nav-item {
    width: calc(100% / 3 - 6px * 2);
    margin: 0 6px;
  }
  .vote .nav-item img {
    max-width: 92px;
  }
  .vote .top-link {
    top: 0;
    left: calc(100% - 82px);
  }
  .vote .top-link .btn {
    width: 82px;
    height: 38px;
    line-height: 38px;
  }

  .vote-top {
    position: relative;
    margin-bottom: 20px;
  }
  .vote-top .select-group {
    margin: 0 auto 15px;
    max-width: 313px;
    display: block;
  }
  .vote-top .select-group .select {
    border-radius: 40px;
    border: 1px solid #259ae5;
    line-height: 40px;
    height: 40px;
  }
  .vote-top .select-group .form-control {
    font-weight: 400;
    font-size: 15px;
  }
  .vote-top .select-group .year {
    width: 132px;
    margin-right: 0;
  }
  .vote-top .select-group .group {
    width: 100%;
    margin-top: 10px;
  }
  .vote-top .main-heading {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .vote-top .remaining {
    width: 100%;
  }
  .vote-top__right {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .vote-top__right .btn {
    font-size: 14px;
    line-height: 34px;
    width: 90px;
    height: 34px;
    padding: 0 10px;
    box-shadow: 0 5px 0 0 #1ea4b4;
  }

  .vote-list {
    margin: 0;
    display: block;
  }
  .vote-list .item {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .vote-list .item .inner {
    border: 2px solid #57c1f0;
  }
  .vote-list .item .btn-primary {
    width: 103px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px #ff8a00;
  }
  .vote-list .item + .item {
    margin-top: 20px;
  }

  .vote-bottom {
    font-size: 15px;
    line-height: 38px;
  }

  .vote-login__top {
    margin-bottom: 15px;
  }
  .vote-login .form {
    max-width: 100%;
  }
  .vote-login .form .form-label {
    width: 100%;
  }
  .vote-login .form .form-content {
    width: 100%;
  }
  .vote-login .form .text-small {
    font-size: 12px;
  }
  .vote-login .form .checkbox-item label {
    font-size: 15px;
    line-height: 26px;
    padding: 0 0 0 36px;
  }
  .vote-login .form .checkbox-item label:before {
    width: 26px;
    height: 26px;
  }
  .vote-login .code .form-control {
    max-width: 140px;
  }
  .vote-login .code .image {
    margin-left: 12px;
  }
  .vote-login .code .image img {
    max-height: 36px;
  }
  .vote-login .code .text {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 414px) {
  .main-heading {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .site-footer .border {
    margin: 0 auto;
  }
}
