@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: 0.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.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-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;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn:hover {
    filter: brightness(1.2);
  }
}
.btn:disabled, .btn.disabled {
  filter: grayscale(100%);
  pointer-events: none;
  opacity: 0.3;
}

.icon {
  width: 25px;
  height: 25px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-line {
  background-image: url(../images/icon-Line.png);
}
.icon-en {
  width: 36px;
  height: 36px;
  background-image: url(../images/EN.png);
  background-color: #00af7c;
  border-radius: 50%;
}
.icon-ch {
  width: 36px;
  height: 36px;
  background-image: url(../images/CH.png);
  background-color: #00af7c;
  border-radius: 50%;
}

.form-control {
  padding: 10px 26px;
  font-size: 20px;
  line-height: 32px;
  height: 52px;
  color: #000;
  background-color: #FFEEE6;
  border: 0;
  border-radius: 26px !important;
  width: 100%;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Helvetica, sans-serif, "Microsoft YaHei";
}
.form-control::placeholder {
  color: #999;
  opacity: 1;
}

.form-select {
  padding: 10px 26px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  height: 52px;
  background-color: #FFEEE6;
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 33px center;
  background-size: 17px auto;
  border: 0;
  border-radius: 26px !important;
}
.form-select:focus {
  box-shadow: none;
}

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

.form-radio .form-check-label {
  position: relative;
  padding-left: 48px;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
  display: block;
  min-height: 32px;
}
.form-radio .form-check-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 2px solid #707070;
  background: #fff;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.form-radio .form-check-label:after {
  content: "";
  background-image: url(../images/icon-check2.png);
  background-size: 32px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FF9D03;
  border-radius: 0;
  position: absolute;
  border: 2px solid #707070;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  display: none;
}

.form-checkbox .form-check-label {
  position: relative;
  padding-left: 45px;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  display: block;
}
.form-checkbox .form-check-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border-radius: 0;
  border: 2px solid #003C9D;
  background: #FF9D03;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.form-checkbox .form-check-label:after {
  content: "";
  background-image: url(../images/icon-check.png);
  background-size: 25px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border-radius: 0;
  position: absolute;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  display: none;
}

.form .form-control {
  border-radius: 26px;
}
.form .form-control:focus {
  background-color: #FFEEE6;
}
.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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.form .form-section + .form-section {
  margin-top: 20px;
}
.form .form-label {
  width: 74px;
  font-size: 20px;
  line-height: 52px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.form .form-label img {
  height: 24px;
  margin: 0;
}
.form .form-content {
  width: calc(100% - 74px);
}
.form .required {
  color: #16509b;
}
.form .action {
  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;
  margin-top: 40px;
}

@media (max-width: 750px) {
  .form-control {
    padding: 10px 14px;
    font-size: 17px;
    line-height: 24px;
    height: 48px;
  }
}
html {
  min-width: 100%;
}

body {
  font: 1em/1.6 "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Arial, Helvetica, sans-serif, "Microsoft YaHei";
  min-width: 320px;
  overflow-x: hidden;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-size: 100px auto;
  background-position: center top;
  background-image: url(../images/bg-body.jpg);
}

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

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -webkit-transition: color, opacity, background-color 0.5s ease;
  -khtml-transition: color, opacity, background-color 0.5s ease;
  -moz-transition: color, opacity, background-color 0.5s ease;
  -ms-transition: color, opacity, background-color 0.5s ease;
  -o-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;
}

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;
  border-radius: 0;
  font-size: 23px;
  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;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow: hidden;
  width: 100%;
}

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

.text-block {
  display: inline-block;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

/* fade image in while loading and show a spinner as background image (good for progressive images) */
.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7;
}

.site-content {
  position: relative;
  z-index: 1;
}

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

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 5px);
  }
  to {
    transform: translate(0, 0);
  }
}
.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 (max-width: 750px) {
  .site-content {
    padding-top: 0;
  }
  .lg-view {
    display: none;
  }
  .sm-view {
    display: block;
  }
  .container {
    padding: 0;
    max-width: 100%;
  }
}
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
}
.site-header .logo {
  position: absolute;
  top: 30px;
  left: 65px;
  z-index: 16;
  width: 253px;
}
.site-header.sticky {
  background-color: rgba(252, 208, 178, 0.87);
  height: 110px;
}

.site-menu {
  position: absolute;
  top: 14px;
  right: 10px;
  display: none;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.main-menu li {
  position: relative;
  padding: 0;
}
.main-menu a {
  display: block;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.main-menu .menu-item {
  width: 162px;
  margin: 0 auto;
}
.main-menu .menu-item:active, .main-menu .menu-item:focus {
  filter: brightness(1.025);
}
@media (hover: hover) {
  .main-menu .menu-item:hover {
    filter: brightness(1.025);
  }
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 11px;
  right: 15px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
}

.menu-close {
  display: block;
  position: fixed;
  top: 11px;
  right: 15px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
}

@media (max-width: 750px) {
  .site-header {
    background-color: rgba(252, 208, 178, 0.87);
    height: 68px;
  }
  .site-header .container {
    max-width: 100%;
  }
  .site-header .logo {
    top: 15px;
    left: 20px;
    width: 158px;
  }
  .site-header.sticky {
    height: 68px;
  }
  .site-menu {
    top: 0;
    right: 0;
    width: 100%;
  }
  .site-menu .menu-toggle {
    display: block;
  }
  .site-menu .menu-close {
    display: block;
  }
  .site-menu.is-view .logo {
    display: block;
  }
  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 115px;
    padding-bottom: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-menu.is-view .menu-panel .main-menu li {
    -webkit-animation: fadeInUp 0.3s both;
    -khtml-animation: fadeInUp 0.3s both;
    -moz-animation: fadeInUp 0.3s both;
    -ms-animation: fadeInUp 0.3s both;
    -o-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-menu.is-view .menu-panel .menu-close {
    -webkit-animation: fadeInDown 0.3s both;
    -khtml-animation: fadeInDown 0.3s both;
    -moz-animation: fadeInDown 0.3s both;
    -ms-animation: fadeInDown 0.3s both;
    -o-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }
  .menu-panel {
    display: none;
    background-color: #fff;
    background-size: cover;
    background-position: center top;
    background-image: url(../images/menu-bg.png);
  }
  .menu-panel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: rgba(252, 208, 178, 0.87);
  }
  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .main-menu li {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .main-menu li + li {
    margin-top: 8px;
  }
  .main-menu .menu-item {
    width: 190px;
  }
}
.site-footer {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
.site-footer .container {
  padding-top: 4px;
  padding-bottom: 4px;
  max-width: 1105px;
}
.site-footer img {
  max-height: 36px;
  margin: 0;
}
.site-footer .logo-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -10px;
}
.site-footer .logo-group .logo {
  margin: 10px;
  display: block;
}
.site-footer .logo-1 {
  max-width: 157px;
}
.site-footer .logo-2 {
  max-width: 176px;
}
.site-footer .l-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.site-footer .l-grid__left {
  width: 33.755656108%;
}
.site-footer .l-grid__right {
  max-width: 66.244343892%;
  margin-left: 30px;
}

@media (max-width: 750px) {
  .site-footer .container {
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 375px;
  }
  .site-footer img {
    max-height: 36px;
    margin: 0;
  }
  .site-footer .copyright {
    max-width: 293px;
    margin: 0 auto;
  }
  .site-footer .copyright img {
    max-height: initial;
  }
  .site-footer .logo-group {
    display: block;
    margin: 0 auto;
  }
  .site-footer .logo-group .logo {
    margin: 0 auto;
  }
  .site-footer .logo-1 {
    max-width: 157px;
    margin-bottom: 5px;
  }
  .site-footer .logo-2 {
    max-width: 176px;
  }
  .site-footer .l-grid {
    display: block;
    width: 100%;
  }
  .site-footer .l-grid__left {
    width: 100%;
    margin-bottom: 10px;
  }
  .site-footer .l-grid__right {
    max-width: 100%;
    margin-left: 0;
  }
}
.modal-backdrop {
  background-color: #fcd0b2;
}
.modal-backdrop.show {
  opacity: 0.87;
}

.modal {
  overflow-y: auto;
  background-color: transparent;
}
.modal-dialog {
  max-width: 1200px;
  margin: 60px auto;
  width: calc(100% - 40px);
}
.modal-body {
  padding: 0;
}
.modal-content {
  border-radius: 35px;
  padding: 0;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  line-height: 30px;
  word-break: break-all;
  border: 0;
}
.modal .btn-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background-size: 100% auto;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/modal-close.png);
  opacity: 1;
  z-index: 2;
}
.modal .btn-close:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .modal .btn-close:hover {
    filter: brightness(1.2);
  }
}

.login-modal .modal-dialog {
  max-width: 566px;
}
.login-modal .modal-content {
  padding: 20px 56px;
}
.login-modal .title {
  max-width: 450px;
  margin: 0 auto 20px;
}
.login-modal .action {
  margin-top: 35px;
}
.login-modal .btn {
  max-width: 166px;
  margin: 0 auto;
  display: block;
}
.login-modal .bottom {
  max-width: 210px;
  margin: 0 auto;
  margin-top: 20px;
}
.login-modal .bottom a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .login-modal .bottom a:hover {
    opacity: 0.8;
  }
}

.statement-modal .modal-dialog {
  max-width: 976px;
}
.statement-modal .modal-content {
  padding: 0 45px 32px;
}
.statement-modal .title {
  max-width: 740px;
  margin: 0 auto 25px;
  margin-top: -50px;
}
.statement-modal .content {
  background-color: #ffeee6;
  border-radius: 26px;
  padding: 25px 20px 20px 52px;
}
.statement-modal .action {
  margin-top: 32px;
}
.statement-modal .btn {
  max-width: 194px;
  margin: 0 auto;
  display: block;
}
.statement-modal .scroll-box {
  overflow: auto;
  overflow-x: hidden;
  padding-right: 20px;
  position: relative;
  height: 362px;
}
.statement-modal .scroll-box::-webkit-scrollbar-track {
  border-radius: 6px;
  background-color: transparent;
}
.statement-modal .scroll-box::-webkit-scrollbar {
  width: 12px;
  background-color: transparent;
}
.statement-modal .scroll-box::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #ff9d03;
}
.statement-modal .scroll-box img {
  width: 100%;
  max-width: 760px;
  margin: 0;
}

.question-modal .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 1;
}
.question-modal .form-check-input[disabled] ~ .form-check-label,
.question-modal .form-check-input:disabled ~ .form-check-label {
  opacity: 1;
}
.question-modal .modal-dialog {
  max-width: 976px;
}
.question-modal .modal-content {
  padding: 0 40px 30px;
  background-color: #ff9d03;
}
.question-modal .btn-close {
  background-image: url(../images/modal-close-white.png);
}
.question-modal .title {
  max-width: 896px;
  margin: 0 auto;
  margin-top: -26px;
}
.question-modal .content {
  border-radius: 37px;
  padding: 28px 58px;
  background-color: #fff;
  min-height: 440px;
}
.question-modal .question {
  max-width: 760px;
  margin: 0 auto;
}
.question-modal .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;
  margin: -10px -20px;
  margin-top: 30px;
}
.question-modal .form-check .form-check-input:checked + .form-check-label:after {
  display: none;
}
.question-modal .form-check .form-check-input:checked + .form-check-label .default {
  display: none;
}
.question-modal .form-check .form-check-input:checked + .form-check-label .checked {
  display: block;
}
.question-modal .form-radio {
  max-width: 370px;
  width: calc(50% - 40px);
  margin: 10px 20px;
}
.question-modal .form-radio .form-check-label {
  padding-left: 0;
}
.question-modal .form-radio .form-check-label img {
  max-height: 70px;
}
.question-modal .form-radio .form-check-label:before {
  display: none;
}
.question-modal .form-radio .form-check-label:after {
  display: none;
}
.question-modal .form-radio .checked {
  display: none;
}
.question-modal .form-radio .form-check-label.correct-answer {
  position: relative;
}
.question-modal .form-radio .form-check-label.correct-answer::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
}
.question-modal .form-radio .form-check-label.wrong-answer {
  position: relative;
}
.question-modal .form-radio .form-check-label.wrong-answer .default {
  display: none;
}
.question-modal .form-radio .form-check-label.wrong-answer .checked {
  display: block;
}
.question-modal .form-radio .form-check-input:checked + .form-check-label.wrong-answer {
  filter: grayscale(100%) !important;
  opacity: 0.6 !important;
}
.question-modal .form-radio .form-check-input:checked + .form-check-label.wrong-answer .default img,
.question-modal .form-radio .form-check-input:checked + .form-check-label.wrong-answer .checked img {
  filter: grayscale(100%) !important;
}
.question-modal .form-radio .form-check-label.grayscale {
  filter: grayscale(100%) !important;
  opacity: 0.6 !important;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.question-modal .form-radio .form-check-label.grayscale .default img,
.question-modal .form-radio .form-check-label.grayscale .checked img {
  filter: grayscale(100%) !important;
}
.question-modal .form-radio .form-check-input:checked + .form-check-label.grayscale {
  filter: grayscale(100%) !important;
  opacity: 0.6 !important;
}
.question-modal .form-radio .form-check-input:checked + .form-check-label.grayscale .default img,
.question-modal .form-radio .form-check-input:checked + .form-check-label.grayscale .checked img {
  filter: grayscale(100%) !important;
}
.question-modal .bottom {
  max-width: 760px;
  margin: 0 auto;
  margin-top: 20px;
}
.question-modal .action {
  margin-top: 20px;
}
.question-modal .btn {
  max-width: 194px;
  margin: 0 auto;
  display: block;
}
.question-modal .q1-4 .radio-group {
  max-width: 466px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q1-5 .radio-group {
  max-width: 558px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q2-1 .radio-group {
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q2-2 .radio-group {
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q2-3 .radio-group {
  max-width: 678px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q2-4 .radio-group {
  max-width: 708px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q2-4 .form-radio .form-check-label img {
  max-height: 86px;
}
.question-modal .q3-1 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q3-3 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q3-3 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q3-3 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q3-6 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q3-6 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q3-6 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q4-1 .radio-group {
  max-width: 642px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q4-2 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q4-2 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q4-2 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q4-3 .radio-group {
  max-width: 602px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q4-4 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q4-4 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q4-4 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q4-5 .radio-group {
  max-width: 602px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q5-1 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q5-1 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q5-1 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q5-2 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q5-2 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q5-2 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q5-3 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q5-3 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q5-3 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q5-4 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q5-4 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q5-4 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q5-5 .radio-group {
  max-width: 602px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q6-5 .radio-group {
  max-width: 602px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q7-1 .radio-group {
  max-width: 616px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q7-2 .radio-group {
  max-width: 664px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q7-3 .radio-group {
  max-width: 664px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q7-4 .radio-group {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q7-5 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q7-5 .form-radio {
  max-width: 389px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q7-5 .form-radio .form-check-label img {
  max-height: 134px;
}
.question-modal .q7-6 .radio-group {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q8-1 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q8-1 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q8-1 .form-radio .form-check-label img {
  max-height: 106px;
}
.question-modal .q8-2 .radio-group {
  max-width: 554px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q8-3 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q8-3 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q8-3 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q8-4 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q8-4 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q8-4 .form-radio .form-check-label img {
  max-height: 170px;
}
.question-modal .q8-5 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q8-5 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q8-5 .form-radio .form-check-label img {
  max-height: 134px;
}
.question-modal .q9-1 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-1 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-1 .form-radio .form-check-label img {
  max-height: 73px;
}
.question-modal .q9-2 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-2 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-2 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q9-3 .radio-group {
  max-width: 568px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q9-4 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-4 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-4 .form-radio .form-check-label img {
  max-height: 99px;
}
.question-modal .q9-5 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-5 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-5 .form-radio .form-check-label img {
  max-height: 134px;
}
.question-modal .q9-6 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-6 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-6 .form-radio .form-check-label img {
  max-height: 134px;
}
.question-modal .q9-7 .radio-group {
  max-width: 568px;
  margin-left: auto;
  margin-right: auto;
}
.question-modal .q9-8 .radio-group {
  width: calc(100% + 18px);
  margin-left: -5px;
  margin-right: -5px;
}
.question-modal .q9-8 .form-radio {
  max-width: 400px;
  width: calc(50% - 10px);
  margin-left: 5px;
  margin-right: 5px;
}
.question-modal .q9-8 .form-radio .form-check-label img {
  max-height: 73px;
}

.finish-modal .modal-dialog {
  max-width: 722px;
}
.finish-modal .modal-content {
  padding: 40px 20px 58px;
}
.finish-modal .content {
  max-width: 520px;
  margin: 0 auto;
}
.finish-modal .action {
  margin-top: 28px;
}
.finish-modal .btn {
  max-width: 550px;
  margin: 0 auto;
  display: block;
}

.result-modal .modal-dialog {
  max-width: 722px;
}
.result-modal .modal-content {
  padding: 40px 80px;
}
.result-modal .title {
  max-width: 400px;
  margin: 0 auto 30px;
}
.result-modal .content {
  background-color: #003c9d;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 12px 15px;
}
.result-modal .block {
  border-radius: 13px;
  padding: 20px;
  width: 100%;
}
.result-modal .block-left {
  width: 63.267175572%;
  background-color: #fffaea;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.result-modal .block-right {
  width: calc(36.732824428% - 10px);
  border-radius: 0;
  padding: 0;
}
.result-modal .info {
  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;
}
.result-modal .info + .info {
  margin-top: 10px;
}
.result-modal .info-content {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #464646;
}
.result-modal .info img {
  max-height: 24px;
}
.result-modal .info-1 {
  margin-bottom: 16px;
  margin-bottom: auto;
}
.result-modal .info-1 .info-header {
  margin-right: 20px;
  margin-top: 4px;
}
.result-modal .info-1 .info-content {
  font-size: 31px;
  line-height: 34px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #003c9d;
}
.result-modal .scores {
  border-radius: 13px;
  padding: 16px 10px 10px;
  width: 100%;
  background-color: #ff9d03;
}
.result-modal .scores + .scores {
  margin-top: 10px;
}
.result-modal .scores .scores-header {
  margin-bottom: 5px;
}
.result-modal .scores img {
  max-height: 24px;
  margin: 0 auto;
}
.result-modal .scores .scores-content {
  font-size: 51px;
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
  color: #003c9d;
}
.result-modal .bottom {
  max-width: 510px;
  margin: 0 auto;
  margin-top: 10px;
}
.result-modal .action {
  margin-top: 30px;
}
.result-modal .btn {
  max-width: 187px;
  margin: 0 auto;
  display: block;
}

.winner-modal .modal-content {
  padding: 20px 45px;
}
.winner-modal .title {
  max-width: 730px;
  margin: 0 auto 16px;
}
.winner-modal .action {
  margin-top: 32px;
}
.winner-modal .btn {
  max-width: 166px;
  margin: 0 auto;
  display: block;
}
.winner-modal .bottom {
  max-width: 348px;
  margin: 0 auto;
  margin-top: 12px;
}
.winner-modal .bottom a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .winner-modal .bottom a:hover {
    opacity: 0.8;
  }
}


.winner-modal2 .modal-content {
  padding: 20px 45px;
}
.winner-modal2 .title {
  max-width: 730px;
  margin: 0 auto 16px;
}
.winner-modal2 .action {
  margin-top: 32px;
}
.winner-modal2 .btn {
  max-width: 166px;
  margin: 0 auto;
  display: block;
}
.winner-modal2 .bottom {
  max-width: 348px;
  margin: 0 auto;
  margin-top: 12px;
}
.winner-modal2 .bottom a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .winner-modal2 .bottom a:hover {
    opacity: 0.8;
  }
}












@media (max-width: 750px) {
  .modal-dialog {
    max-width: 335px;
    margin: 20px auto;
  }
  .modal .btn-close {
    top: 20px;
    right: 20px;
  }
  .login-modal .modal-dialog {
    max-width: 335px;
  }
  .login-modal .modal-content {
    padding: 48px 40px 30px;
  }
  .login-modal .title {
    max-width: 255px;
    margin: 0 auto 12px;
  }
  .login-modal .form .form-section {
    display: block;
  }
  .login-modal .form .form-label {
    width: 100%;
    margin-bottom: 16px;
  }
  .login-modal .form .form-label img {
    height: 24px;
    margin: 0 auto;
  }
  .login-modal .form .form-content {
    width: 100%;
  }
  .login-modal .action {
    margin-top: 20px;
  }
  .login-modal .btn {
    max-width: 151px;
  }
  .login-modal .bottom {
    max-width: 192px;
  }
  .statement-modal .modal-dialog {
    max-width: 335px;
  }
  .statement-modal .modal-content {
    padding: 48px 20px 40px;
  }
  .statement-modal .title {
    max-width: 250px;
    margin: 0 auto 20px;
  }
  .statement-modal .content {
    padding: 34px 8px 26px 30px;
  }
  .statement-modal .action {
    margin-top: 20px;
  }
  .statement-modal .btn {
    max-width: 151px;
  }
  .statement-modal .scroll-box {
    padding-right: 15px;
    height: 290px;
  }
  .statement-modal .scroll-box::-webkit-scrollbar {
    width: 10px;
  }
  .statement-modal .scroll-box img {
    max-width: 232px;
    margin: 0;
  }
  .question-modal .modal-dialog {
    max-width: 327px;
  }
  .question-modal .modal-content {
    padding: 0 28px 16px;
    border-radius: 21px;
  }
  .question-modal .btn-close {
    top: 16px;
    right: 10px;
  }
  .question-modal .title {
    max-width: 270px;
    width: 270px;
    position: relative;
    left: calc(50% - 135px);
    margin-top: -4px;
  }
  .question-modal .content {
    border-radius: 21px;
    padding: 28px 16px;
    min-height: 482px;
  }
  .question-modal .question {
    max-width: 236px;
    margin: 0 auto;
  }
  .question-modal .radio-group {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 100%;
    text-align: center;
  }
  .question-modal .form-radio {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .question-modal .form-radio + .form-radio {
    margin-top: 20px;
  }
  .question-modal .form-radio .form-check-label img {
    max-height: 40px;
  }
  .question-modal .bottom {
    max-width: 236px;
    margin-top: 10px;
  }
  .question-modal .action {
    margin-top: 20px;
  }
  .question-modal .btn {
    max-width: 151px;
  }
  .question-modal .q2-4 .form-radio .form-check-label img {
    max-height: 51px;
  }
  .question-modal .q3-1 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q3-3 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q3-3 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q3-3 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q3-6 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q3-6 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q3-6 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q4-2 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q4-2 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q4-2 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q4-4 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q4-4 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q4-4 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q5-1 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-1 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-1 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q5-2 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-2 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-2 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q5-3 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-3 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-3 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q5-4 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-4 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q5-4 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q7-5 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q7-5 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q7-5 .form-radio .form-check-label img {
    max-height: 77px;
  }
  .question-modal .q8-1 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-1 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-1 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q8-3 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-3 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-3 .form-radio .form-check-label img {
    max-height: 56px;
  }
  .question-modal .q8-4 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-4 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-4 .form-radio .form-check-label img {
    max-height: 92px;
  }
  .question-modal .q8-5 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-5 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q8-5 .form-radio .form-check-label img {
    max-height: 80px;
  }
  .question-modal .q9-1 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-1 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-1 .form-radio .form-check-label img {
    max-height: 40px;
  }
  .question-modal .q9-2 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-2 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-2 .form-radio .form-check-label img {
    max-height: 54px;
  }
  .question-modal .q9-4 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-4 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-4 .form-radio .form-check-label img {
    max-height: 40px;
  }
  .question-modal .q9-5 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-5 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-5 .form-radio .form-check-label img {
    max-height: 76px;
  }
  .question-modal .q9-6 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-6 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-6 .form-radio .form-check-label img {
    max-height: 76px;
  }
  .question-modal .q9-8 .radio-group {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-8 .form-radio {
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .question-modal .q9-8 .form-radio .form-check-label img {
    max-height: 40px;
  }
  .finish-modal .modal-dialog {
    max-width: 320px;
  }
  .finish-modal .modal-content {
    padding: 45px 20px 30px;
  }
  .finish-modal .content {
    max-width: 300px;
  }
  .finish-modal .action {
    margin-top: 16px;
  }
  .finish-modal .btn {
    max-width: 270px;
  }
  .result-modal .modal-dialog {
    max-width: 320px;
  }
  .result-modal .modal-content {
    padding: 45px 20px 25px;
  }
  .result-modal .title {
    max-width: 200px;
    margin: 0 auto 20px;
  }
  .result-modal .content {
    display: block;
    padding: 10px 12px;
  }
  .result-modal .block {
    padding: 12px 16px;
    width: 100%;
  }
  .result-modal .block-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .result-modal .block-right {
    width: 100%;
    padding: 0;
  }
  .result-modal .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .result-modal .info img {
    max-height: 20px;
  }
  .result-modal .info + .info {
    margin-top: 10px;
  }
  .result-modal .info-content {
    font-size: 17px;
    line-height: 19px;
  }
  .result-modal .info-1 {
    margin-bottom: 12px;
  }
  .result-modal .info-1 .info-header {
    margin-right: 18px;
  }
  .result-modal .info-1 .info-content {
    font-size: 24px;
    line-height: 27px;
  }
  .result-modal .scores {
    padding: 12px 16px;
  }
  .result-modal .scores + .scores {
    margin-top: 5px;
  }
  .result-modal .scores .scores-header {
    margin-bottom: 5px;
  }
  .result-modal .scores .scores-content {
    font-size: 40px;
  }
  .result-modal .bottom {
    max-width: 262px;
  }
  .result-modal .action {
    margin-top: 16px;
  }
  .result-modal .btn {
    max-width: 163px;
  }
  .winner-modal .modal-content {
    padding: 15px 5px 25px;
  }
  .winner-modal .title {
    max-width: 325px;
    margin: 0 auto 12px;
  }
  .winner-modal .action {
    margin-top: 20px;
  }
  .winner-modal .btn {
    max-width: 140px;
  }
  .winner-modal .bottom {
    max-width: 292px;
    margin-top: 10px;
  }
  .winner-modal2 .modal-content {
    padding: 15px 5px 25px;
  }
  .winner-modal2 .title {
    max-width: 325px;
    margin: 0 auto 12px;
  }
  .winner-modal2 .action {
    margin-top: 20px;
  }
  .winner-modal2 .btn {
    max-width: 140px;
  }
  .winner-modal2 .bottom {
    max-width: 292px;
    margin-top: 10px;
  }
}
.page {
  position: relative;
  z-index: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  word-break: break-all;
  min-height: 917px;
  padding-top: 116px;
  background-color: #FBDED0;
}
.page.in-view {
  opacity: 1;
  animation: none;
}
.page-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  background-color: transparent;
}
.page a {
  text-decoration: none;
}
.page .container {
  padding: 0;
}
.page .section-content {
  margin: 0 auto;
}

.kv {
  position: relative;
  width: 100%;
  z-index: 0;
  padding: 0;
  min-height: inherit;
}
.kv .bg {
  background-image: url(../images/kv-bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
}
.kv .container {
  padding: 0;
  max-width: 1280px;
}
.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  opacity: 0;
  font-size: 0;
}
.kv .layer img {
  width: 100%;
  height: auto;
}
.kv .action {
  position: absolute;
  top: 65%;
  left: 59.8%;
  width: 29.140625%;
}
.kv .link {
  position: absolute;
  top: 78%;
  left: 65.8%;
  width: 16.796875%;
}
.kv .action img {
  -webkit-animation: pulse 0.8s infinite;
  -khtml-animation: pulse 0.8s infinite;
  -moz-animation: pulse 0.8s infinite;
  -ms-animation: pulse 0.8s infinite;
  -o-animation: pulse 0.8s infinite;
  animation: pulse 0.8s infinite;
}
.kv.active .kv-main {
  -webkit-animation: fadeInLeft 0.8s both;
  -khtml-animation: fadeInLeft 0.8s both;
  -moz-animation: fadeInLeft 0.8s both;
  -ms-animation: fadeInLeft 0.8s both;
  -o-animation: fadeInLeft 0.8s both;
  animation: fadeInLeft 0.8s both;
}
.kv.active .kv-slogan {
  -webkit-animation: fadeInRight 0.8s both;
  -khtml-animation: fadeInRight 0.8s both;
  -moz-animation: fadeInRight 0.8s both;
  -ms-animation: fadeInRight 0.8s both;
  -o-animation: fadeInRight 0.8s both;
  animation: fadeInRight 0.8s both;
  animation-delay: 0.2s;
}
.kv.active .kv-sub {
  -webkit-animation: fadeInUp 0.8s both;
  -khtml-animation: fadeInUp 0.8s both;
  -moz-animation: fadeInUp 0.8s both;
  -ms-animation: fadeInUp 0.8s both;
  -o-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 0.6s;
}
.kv.active .kv-layer1 {
  -webkit-animation: fadeIn 0.8s both;
  -khtml-animation: fadeIn 0.8s both;
  -moz-animation: fadeIn 0.8s both;
  -ms-animation: fadeIn 0.8s both;
  -o-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 0.2s;
}
.kv.active .kv-layer1 img {
  -webkit-animation: floating 0.8s infinite;
  -khtml-animation: floating 0.8s infinite;
  -moz-animation: floating 0.8s infinite;
  -ms-animation: floating 0.8s infinite;
  -o-animation: floating 0.8s infinite;
  animation: floating 0.8s infinite;
}
.kv.active .action {
  -webkit-animation: fadeInUp 0.8s both;
  -khtml-animation: fadeInUp 0.8s both;
  -moz-animation: fadeInUp 0.8s both;
  -ms-animation: fadeInUp 0.8s both;
  -o-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 1s;
}
.kv.active .link {
  -webkit-animation: fadeInUp 0.8s both;
  -khtml-animation: fadeInUp 0.8s both;
  -moz-animation: fadeInUp 0.8s both;
  -ms-animation: fadeInUp 0.8s both;
  -o-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 1.2s;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .kv .bg {
    background-size: 160vw auto;
  }
}
@media (max-width: 750px) {
  .kv .bg {
    background-image: url(../images/kv-bg_s.jpg);
    background-size: 100% auto;
  }
  .kv .action {
    top: 42.7%;
    left: 13.33335%;
    width: 73.3333%;
  }
  .kv .link {
    top: 51.7%;
    left: 21.3333333335%;
    width: 57.333333333%;
  }
}
.register {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-bottom: 40px;
}
.register .bg {
  background-image: url(../images/page-bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
}
.register .container {
  max-width: 1160px;
}
.register .box {
  border-radius: 35px;
  background-color: #fff;
  padding: 20px 20px 45px;
  position: relative;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.register .title {
  max-width: 405px;
  margin: 0 auto 20px;
}
.register .form {
  max-width: 655px;
  margin: 0 auto;
}
.register .schoolName {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.register .schoolName .form-label {
  margin-top: 14px;
}
.register .form-label {
  width: 156px;
}
.register .form-label img {
  height: 24px;
  margin: 0;
}
.register .form-content {
  width: calc(100% - 156px);
}
.register .class {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -8px;
}
.register .class .block {
  width: 148px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 8px;
}
.register .class .form-control {
  max-width: 104px;
  text-align: center;
}
.register .class img {
  height: 24px;
  margin: 0;
}
.register .btn-dropdown {
  padding: 10px 26px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  height: 52px;
  background-color: #FFEEE6;
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 33px center;
  background-size: 17px auto;
  border: 0;
  border-radius: 26px !important;
  width: 100%;
}
.register .btn-dropdown img {
  max-height: 24px;
  margin: 0;
}
.register .dropdown-toggle::after {
  display: none;
}
.register .dropdown-menu {
  background-color: #FFCA86;
  border-radius: 26px !important;
  width: 100%;
  border: 0;
  height: 192px;
  overflow: auto;
  padding: 0;
}
.register .dropdown-menu img {
  max-height: 24px;
  margin: 0 auto;
  display: block;
}
.register .dropdown-menu li + li {
  margin-top: 0;
}
.register .dropdown-item {
  padding: 20px 5px;
  display: block;
  background-color: #FFCA86;
}
.register .dropdown-item:hover, .register .dropdown-item:focus {
  background-color: #FF9D03;
  opacity: 1;
}
.register .dropdown-item.active {
  background-color: #FF9D03;
}
.register .form-checkbox {
  max-width: 495px;
  margin: 0 auto;
  margin-top: 36px;
}
.register .form-checkbox img {
  max-height: 28px;
  margin: 0;
}
.register .action {
  margin-top: 32px;
}
.register .btn {
  max-width: 194px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .register .bg {
    background-size: 160vw auto;
  }
}
@media (max-width: 750px) {
  .register .bg {
    background-image: url(../images/page-bg_s.jpg);
    background-size: 100% auto;
  }
  .register .box {
    padding: 48px 40px 25px;
    max-width: 335px;
  }
  .register .title {
    max-width: 255px;
    margin: 0 auto 12px;
  }
  .register .form {
    max-width: 252px;
  }
  .register .form-section {
    display: block;
  }
  .register .form-label {
    width: 100%;
    margin-bottom: 16px;
  }
  .register .form-label img {
    height: 24px;
    margin: 0 auto;
  }
  .register .form-content {
    width: 100%;
  }
  .register .class .block {
    width: 117px;
  }
  .register .class .form-control {
    max-width: 80px;
  }
  .register .btn-dropdown {
    padding: 10px 20px;
    height: 48px;
    background-position: right 20px center;
  }
  .register .btn-dropdown img {
    max-height: 18px;
    margin: 0;
  }
  .register .dropdown-menu {
    padding: 0;
  }
  .register .dropdown-menu img {
    max-height: 18px;
    margin: 0 auto;
  }
  .register .dropdown-item {
    padding: 16px 5px;
  }
  .register .form-checkbox {
    width: 268px;
    max-width: 268px;
    margin: 0;
    margin-top: 28px;
  }
  .register .form-checkbox img {
    max-height: 50px;
    margin: 0;
  }
  .register .action {
    margin-top: 24px;
  }
  .register .btn {
    max-width: 151px;
  }
}
.health {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-bottom: 40px;
}
.health .bg {
  background-image: url(../images/page-bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
}
.health .container {
  max-width: 1160px;
}
.health .box {
  border-radius: 35px;
  background-color: #fff;
  padding: 20px 20px 45px;
  position: relative;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.health .title {
  max-width: 592px;
  margin: 0 auto 30px;
}
.health .form {
  max-width: 1002px;
  margin: 0 auto;
}
.health .form-label {
  width: calc(100% - 184px);
}
.health .form-label img {
  max-height: 24px;
  height: initial;
  margin: 0;
}
.health .form-content {
  width: 184px;
  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;
}
.health .form-radio {
  max-width: 495px;
  margin: 0 auto;
}
.health .form-radio .form-check-label {
  padding-top: 4px;
}
.health .form-radio img {
  max-height: 24px;
  margin: 0;
}
.health .action {
  margin-top: 40px;
}
.health .btn {
  max-width: 415px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .health .bg {
    background-size: 160vw auto;
  }
}
@media (max-width: 750px) {
  .health .bg {
    background-image: url(../images/page-bg_s.jpg);
    background-size: 100% auto;
  }
  .health .box {
    padding: 30px 15px 32px;
    max-width: 335px;
  }
  .health .title {
    max-width: 290px;
    margin: 0 auto 45px;
  }
  .health .form {
    max-width: 100%;
  }
  .health .form-section {
    display: block;
    max-width: 260px;
    margin: 0 auto;
  }
  .health .form-label {
    width: 100%;
    margin-bottom: 16px;
  }
  .health .form-label img {
    max-height: initial;
    margin: 0;
    width: 100%;
  }
  .health .form-content {
    width: 100%;
    max-width: 154px;
    margin: 0 0 0 28px;
  }
  .health .form-radio {
    max-width: 100%;
    margin: 0;
  }
  .health .form-radio .form-check-label {
    padding-top: 6px;
    padding-left: 36px;
  }
  .health .form-radio .form-check-label {
    padding-top: 6px;
    padding-left: 36px;
    line-height: 30px;
    min-height: 30px;
  }
  .health .form-radio .form-check-label:before {
    width: 30px;
    height: 30px;
  }
  .health .form-radio .form-check-label:after {
    background-size: 30px auto;
    width: 30px;
    height: 30px;
  }
  .health .form-radio img {
    max-height: 20px;
  }
  .health .action {
    margin-top: 24px;
  }
  .health .btn {
    max-width: 304px;
  }
}
.game {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-top: 44px;
  padding-bottom: 40px;
  padding-left: 110px;
  overflow: hidden;
}
.game .bg {
  background-image: url(../images/game-bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
}
.game .container {
  max-width: 1160px;
}
.game .pinball-main .pinball-path {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.game .pinball-path-group {
  position: absolute;
  top: 28px;
  left: 25px;
  height: 492px;
  width: 87%;
}
@media screen and (max-width: 750px) {
  .game .pinball-path-group {
    top: 13px;
    left: 10px;
    height: 250px;
    width: 88%;
  }
}
.game .pinball-path path {
  fill: none;
  stroke: transparent;
  stroke-width: 2;
}
.game #svg0 {
  top: 25px;
  left: -10px;
  height: 77.2357723577%;
}
.game #svg1 {
  top: 70px;
  left: 20px;
  height: 69.1056910569%;
}
.game #svg2 {
  top: 30px;
  left: 50px;
  height: 77.2357723577%;
}
.game #svg3 {
  top: 45px;
  left: 75px;
  height: 73.1707317073%;
}
.game #svg4 {
  top: 50px;
  left: 90px;
  height: 71.1382113821%;
}
.game #svg5 {
  top: 40px;
  left: 80px;
  height: 75.2032520325%;
}
.game #svg6 {
  top: 30px;
  left: 80px;
  height: 79.2682926829%;
}
.game #svg7 {
  top: 50px;
  left: 120px;
  height: 75.2032520325%;
}
.game #svg8 {
  top: 60px;
  left: 70px;
  height: 68.0894308943%;
}
@media screen and (max-width: 750px) {
  .game #svg0 {
    top: 16px;
    left: -3px;
    height: 78%;
  }
  .game #svg1 {
    top: 40px;
    left: 15px;
    height: 68%;
  }
  .game #svg2 {
    top: 20px;
    left: 28px;
    height: 76%;
  }
  .game #svg3 {
    top: 25px;
    left: 40px;
    height: 72%;
  }
  .game #svg4 {
    top: 30px;
    left: 45px;
    height: 72%;
  }
  .game #svg5 {
    top: 15px;
    left: 43px;
    height: 74.8%;
  }
  .game #svg6 {
    top: 15px;
    left: 41px;
    height: 78%;
  }
  .game #svg7 {
    top: 30px;
    left: 63px;
    height: 72%;
  }
  .game #svg8 {
    top: 35px;
    left: 38px;
    height: 66%;
  }
}
.game .pinball {
  position: relative;
  width: 647px;
  margin: 0 auto;
}
.game .pinball-main {
  position: relative;
}
.game .pinball-control {
  position: absolute;
  bottom: -172px;
  right: 48px;
  width: 70px;
  cursor: pointer;
}
.game .pinball-panel {
  position: absolute;
  top: 518px;
  left: 0;
  width: calc(100% - 27px);
  height: 142px;
  background-color: #ff9d03;
  padding: 10px 26px;
}
.game .pinball-left {
  width: 156px;
  position: absolute;
  top: 65%;
  right: 95%;
  pointer-events: none;
}
.game .content {
  background-color: #003c9d;
  border-radius: 20px;
  padding: 10px 14px;
  max-width: 505px;
}
.game .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  background-color: #fffaea;
  border-radius: 13px;
  overflow: hidden;
}
.game .block {
  padding: 14px 20px;
}
.game .block-left {
  width: 80%;
  padding: 14px 0 14px 20px;
}
.game .block-right {
  width: 20%;
  padding: 14px;
}
.game .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.game .info {
  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;
}
.game .info-content {
  font-size: 15px;
  line-height: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #464646;
}
.game .info img {
  max-height: 20px;
}
.game .info-1 {
  margin-bottom: 16px;
}
.game .info-1 .info-header {
  margin-right: 5px;
  margin-top: 4px;
}
.game .info-1 .info-content {
  font-size: 28px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #003c9d;
}
.game .info-2 {
  width: 40%;
}
.game .info-3 {
  width: 60%;
}
.game .remaining .remaining-header {
  margin-bottom: 4px;
}
.game .remaining img {
  max-height: 16px;
  margin: 0 auto;
}
.game .remaining .remaining-content {
  font-size: 32px;
  line-height: 46px;
  font-weight: 900;
  text-align: center;
  color: #fffaea;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: #003c9d;
}
.game .ball {
  position: absolute;
  width: 36px;
}
.game .ball-1 {
  top: 63%;
  left: 83%;
}
.game .ball-2 {
  top: 67.5%;
  left: 74%;
}
.game .ball-3 {
  top: 67%;
  left: 68%;
}
.game .ball-4 {
  top: 66%;
  left: 61.5%;
}
.game .ball-5 {
  top: 65.5%;
  left: 55%;
}
.game .ball-6 {
  top: 65%;
  left: 49%;
}
.game .action {
  position: absolute;
  top: 98%;
  left: 44.8%;
  width: 35.239567233%;
}
.game .action a {
  cursor: default;
}
.game .action img {
  -webkit-animation: pulse 0.8s infinite;
  -khtml-animation: pulse 0.8s infinite;
  -moz-animation: pulse 0.8s infinite;
  -ms-animation: pulse 0.8s infinite;
  -o-animation: pulse 0.8s infinite;
  animation: pulse 0.8s infinite;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .game .bg {
    background-size: 160vw auto;
  }
}
@media (max-width: 750px) {
  .game {
    padding-top: 106px;
    padding-bottom: 92px;
    padding-left: 0;
    min-height: initial;
  }
  .game .bg {
    background-image: url(../images/page-bg_s.jpg);
    background-size: 100% auto;
  }
  .game .pinball {
    width: 327px;
  }
  .game .pinball-control {
    bottom: -88px;
    right: 25px;
    width: 36px;
  }
  .game .pinball-panel {
    top: 262px;
    height: 110px;
    padding: 5px 13px;
  }
  .game .pinball-left {
    width: 56px;
    top: 56.5%;
    right: 90%;
  }
  .game .content {
    padding: 5px 7px;
    max-width: 256px;
  }
  .game .block {
    padding: 6px 10px;
  }
  .game .block-left {
    width: 63%;
    padding: 6px 0 6px 10px;
  }
  .game .block-right {
    width: 37%;
    padding: 6px 8px;
  }
  .game .info-group {
    display: block;
  }
  .game .info-content {
    font-size: 12px;
    line-height: 12px;
  }
  .game .info img {
    max-height: 12px;
  }
  .game .info-1 {
    margin-bottom: 6px;
  }
  .game .info-1 .info-header {
    margin-top: 2px;
  }
  .game .info-1 .info-content {
    font-size: 18px;
    line-height: 20px;
  }
  .game .info-2 {
    width: 100%;
    margin-bottom: 8px;
  }
  .game .info-3 {
    width: 100%;
  }
  .game .remaining .remaining-header {
    margin-bottom: 6px;
  }
  .game .remaining img {
    max-height: 14px;
  }
  .game .remaining .remaining-content {
    font-size: 23px;
    line-height: 36px;
    width: 36px;
    height: 36px;
  }
  .game .ball {
    width: 18px;
  }
  .game .ball-1 {
    top: 56%;
    left: 83%;
  }
  .game .ball-2 {
    top: 60.5%;
    left: 74%;
  }
  .game .ball-3 {
    top: 60%;
    left: 68%;
  }
  .game .ball-4 {
    top: 59%;
    left: 61.5%;
  }
  .game .ball-5 {
    top: 58.5%;
    left: 55%;
  }
  .game .ball-6 {
    top: 58%;
    left: 49%;
  }
  .game .action {
    top: 102%;
    left: 24.8%;
    width: 53.211009174%;
  }
}
.result {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-bottom: 60px;
}
.result .bg {
  background-image: url(../images/page-bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
}
.result .container {
  max-width: 1920px;
}
.result .box {
  border-radius: 35px;
  background-color: #fff;
  padding: 24px 20px 45px;
  position: relative;
  margin: 0 auto;
}
.result .title {
  max-width: 780px;
  margin: 0 auto 32px;
}
.result .content {
  max-width: 1226px;
  margin: 0 auto;
}
.result .action {
  margin-top: 45px;
}
.result .btn {
  max-width: 525px;
  margin: 0 auto;
  display: block;
}
.result .result-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -20px -10px;
}
.result .result-list .item {
  position: relative;
  width: calc(33.3333333333% - 20px);
  margin: 20px 10px;
}
.result .result-list .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.result .result-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: inherit;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .result .bg {
    background-size: 160vw auto;
  }
}
@media (max-width: 750px) {
  .result .bg {
    background-image: url(../images/page-bg_s.jpg);
    background-size: 100% auto;
  }
  .result .box {
    padding: 24px 10px 38px;
  }
  .result .title {
    max-width: 350px;
    margin: 0 auto 12px;
  }
  .result .content {
    max-width: 335px;
    margin: 0 auto;
  }
  .result .action {
    margin-top: 24px;
  }
  .result .btn {
    max-width: 270px;
  }
  .result .result-list {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    max-width: 335px;
  }

  .result .result-list + .result-list {
    margin-top: 20px;
  }

  .result .result-list .item {
    width: 100%;
    margin: 0 auto;
  }
  .result .result-list .item + .item {
    margin-top: 20px;
  }
  .result .result-list .image img {
    top: initial;
    height: initial;
    width: 100%;
    bottom: 0;
  }
}

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