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

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

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

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

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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

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

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

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

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

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

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn.disabled, .btn:disabled {
  color: #fff;
  background: #87816b;
  pointer-events: none;
  opacity: 1;
}

.btn-primary {
  font-size: 36px;
  line-height: 84px;
  border-radius: 42px;
  height: 84px;
  padding: 0 15px;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: #5C4F23;
}
.btn-primary:active {
  background-color: #5C4F23;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-primary:hover {
    background-color: #5C4F23;
    filter: brightness(1.2);
  }
}

.icon {
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.icon-collapse {
  background-image: url(../images/icon-collapse.png);
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

input[type="text"].form-control,
.form-control {
  padding: 10px 26px;
  list-height: 40px;
  height: 60px;
  color: #666;
  border: 0;
  font-size: 26px;
  font-weight: 500;
  border-radius: 30px !important;
  width: 100%;
  background-color: #fff;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
input[type="text"].form-control:focus,
.form-control:focus {
  box-shadow: 0 0 0 5px #F5CE1E;
}
input[type="text"].form-control.is-invalid,
.form-control.is-invalid {
  background: none;
}
input[type="text"].form-control:disabled,
.form-control:disabled {
  background-color: #f2f2f2;
}

.form-select {
  padding: 10px 26px;
  padding-right: 60px;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  color: #666;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
  border: 0;
  border-radius: 30px !important;
}

.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:checked + .form-check-label:before {
  background-color: #F5CE1E;
}
.form-check .form-check-input + .form-check-label {
  transition: .7s ease;
}

.form-radio .form-check-label {
  position: relative;
  padding-left: 36px;
  font-size: 26px;
  line-height: 40px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  color: #fff;
}
.form-radio .form-check-label:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0;
  background: #fff;
  border: 0;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 0;
  top: 6px;
  box-shadow: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-radio .form-check-label:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 0;
  background: #F5CE1E;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 0;
  top: 6px;
  box-shadow: 0 0 0 5px #fff inset, 0 0 0 3px #F5CE1E;
  border: 0;
  color: transparent;
  display: none;
}

.form-checkbox .form-check-label {
  position: relative;
  padding-left: 55px;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
  display: block;
}
.form-checkbox .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 0;
  top: 3px;
  box-sizing: border-box;
  border-radius: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border: 3px solid #5C4F23;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  border-radius: 5px;
}
.form-checkbox .form-check-label:after {
  content: '';
  background-image: url(../images/icon-check.svg);
  background-size: 24px auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  left: 0;
  top: 3px;
  display: none;
}

.form {
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  margin: 0 auto;
}
.form .required {
  color: #fff;
}
.form .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.form .form-label {
  width: 200px;
  position: relative;
  font-size: 26px;
  line-height: 60px;
  font-weight: 500;
  margin: 0;
}
.form .form-content {
  width: calc(100% - 200px);
}
.form .check-row {
  padding-top: 25px;
  padding-bottom: 20px;
  position: relative;
}
.form .check-row .form-checkbox .form-check-label {
  padding-left: 55px;
  font-size: 18px;
  line-height: 33px;
  font-weight: 500;
}
.form .check-row .form-checkbox .form-check-label:before {
  background: #fff;
  left: 0;
  top: 2px;
  width: 33px;
  height: 33px;
  border: 2px solid #27aade;
  border-radius: 0;
}
.form .check-row .form-checkbox .form-check-label:after {
  background-size: 24px auto;
  width: 33px;
  height: 33px;
  top: 2px;
}

.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;
  -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;
  padding: 10px 0;
}
.radio-group .form-radio {
  margin-right: 20px;
}

.check-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: 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;
  padding: 10px 0;
}
.check-group .form-check {
  margin-right: 20px;
}

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-color: #fbedb0;
}

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

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

:focus {
  outline: none;
}

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

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

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

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

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

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

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

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

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

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

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

.scroll-hidden {
  overflow: hidden;
}

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

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

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
@media (max-width: 750px) {
  .site-content {
    min-height: calc(100vh - 36px);
  }

  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }
}
.site-footer {
  position: relative;
  font-size: 26px;
  line-height: 24px;
  color: #fff;
  background-color: #ff6600;
  padding: 30px 0;
  text-align: center;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../images/footer-top.png);
  background-size: 100% 100%;
  background-position: center top;
  pointer-events: none;
}

.side-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
  display: none;
}
.side-sticky a {
  cursor: pointer;
  display: block;
}
.side-sticky a:hover, .side-sticky a:active {
  filter: brightness(1.08);
}
.side-sticky .totop {
  background-color: #27aade;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.side-sticky .icon-top {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon-top.png);
}

@media (max-width: 750px) {
  .site-footer {
    font-size: 12px;
    line-height: 20px;
    padding: 8px 0;
  }

  .side-sticky {
    bottom: 10px;
    right: 10px;
  }
  .side-sticky.is-view {
    bottom: -20px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1150px;
  margin: 150px auto 20px;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background-color: transparent;
}
.modal .btn-close {
  width: 82px;
  height: 82px;
  padding: 0;
  background: url(../images/modal-close.png);
  background-size: 100% auto;
  border: 0;
  opacity: 1;
  position: absolute;
  top: -123px;
  right: calc(50% - 82px / 2);
  box-shadow: none;
  border-radius: 50%;
  overflow: hidden;
}

.sport-modal img {
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 750px) {
  .modal-dialog {
    max-width: 698px;
    margin: 100px auto 20px;
  }
  .modal .btn-close {
    width: 50px;
    height: 50px;
    top: -70px;
    right: calc(50% - 50px / 2);
  }
}
.body-bg {
  background-image: url(../images/bg.jpg);
  background-position: center top;
  background-size: 1920px auto;
  background-color: #fbedb0;
  background-repeat: no-repeat;
}

.page {
  opacity: 0;
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .5s;
}
.page-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -28px;
  margin-top: 56px;
}
.page-bottom .btn {
  width: calc(100% / 2 - 28px * 2);
  margin: 0 28px;
  padding: 0 40px;
}
.page-bottom .btn .arrow {
  position: absolute;
  top: calc(50% - 24px);
}
.page-bottom .btn .arrow-left {
  left: 25px;
}
.page-bottom .btn .arrow-right {
  right: 25px;
}

.kv {
  position: relative;
}
.kv .logo {
  position: absolute;
  top: 60px;
  left: 30px;
  max-width: 325px;
}
.kv .container {
  max-width: 1200px;
  padding: 0;
}
.kv.active .kv-main img {
  -moz-animation: zoomIn 1s both;
  -webkit-animation: zoomIn 1s both;
  animation: zoomIn 1s both;
  transform-origin: 50% 50%;
}

.survey {
  padding-bottom: 200px;
}
.survey .title {
  margin-top: 25px;
  margin-bottom: 25px;
}
.survey .section {
  position: relative;
  margin: 0 auto;
  font-size: 26px;
  line-height: 40px;
  max-width: 1150px;
}
.survey .section-header {
  position: relative;
  background-color: #6c5c2c;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
}
.survey .section-header + .section-content {
  border-radius: 0 10px 10px 10px;
}
.survey .section-content {
  background-color: #6c5c2c;
  border-radius: 10px;
  padding: 55px 25px;
}
.survey .section .heading {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #fbedb0;
}
.survey .section .required-text {
  position: absolute;
  top: 0;
  right: 0;
  color: #5c4f23;
  font-weight: 500;
}
.survey .section + .section {
  margin-top: 50px;
}
.survey .page-bottom .btn {
  width: 326px;
}

.section-a .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -10px;
}
.section-a .form-section {
  width: calc(33% - 10px * 2);
  margin: 10px;
}
.section-a .form-label {
  width: 146px;
}
.section-a .form-content {
  width: calc(100% - 146px);
}

.section-b .top-block {
  position: absolute;
  top: 10px;
  left: calc(100% + 20px);
}
.section-b .top-block .form-checkbox .form-check-label {
  font-size: 36px;
  line-height: 36px;
  color: #5C4F23;
  font-weight: 700;
  white-space: nowrap;
}
.section-b .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -20px;
}
.section-b .form-section {
  width: calc(50% - 20px * 2);
  margin: 20px;
}
.section-b .form-label {
  width: 146px;
}
.section-b .form-content {
  width: calc(100% - 146px);
}

.section-main .highlight {
  color: #F5CE1E;
}
.section-main .form-checkbox .form-check-label {
  padding-left: 35px;
}
.section-main .form-checkbox .form-check-label:before {
  top: 8px;
  width: 28px;
  height: 28px;
  border: 2px solid #5C4F23;
}
.section-main .form-checkbox .form-check-label:after {
  background-size: 20px auto;
  width: 28px;
  height: 28px;
  top: 8px;
}
.section-main .form-section {
  margin-left: 60px;
}
.section-main .form-section + .form-section {
  margin-top: 15px;
}
.section-main .form-label {
  width: auto;
  position: relative;
}
.section-main .form-label .number {
  position: absolute;
  top: 0;
  right: 100%;
  white-space: nowrap;
}
.section-main .form-content {
  width: auto;
}
.section-main .q2 .form-select {
  width: 115px;
  max-width: 100%;
}
.section-main .q3 .form-select {
  width: 115px;
}
.section-main .q4 .form-label {
  width: 250px;
}
.section-main .q4 .form-content {
  width: calc(100% - 250px);
}
.section-main .q4 .radio-group .form-radio {
  margin-right: 18px;
}
.section-main .q6 {
  display: block;
}
.section-main .q6 .form-control {
  width: calc(100% - 200px - 20px);
  margin-left: 20px;
}
.section-main .q7 {
  display: block;
}
.section-main .q7 .form-control {
  width: 80px;
  margin: 0 5px;
}
.section-main .q8 {
  display: block;
}
.section-main .q8 .form-control {
  width: 80px;
  margin: 0 5px;
}
.section-main .q9 {
  display: block;
}
.section-main .q9 .form-label {
  width: 100%;
}
.section-main .q9 .form-content {
  width: 100%;
}
.section-main .q9 .form-control {
  width: 80px;
  margin: 0 5px;
}
.section-main .q9 .note {
  color: #FBEEB0;
  margin-bottom: 10px;
}
.section-main .q10 {
  display: block;
}
.section-main .q10 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 35px;
}
.section-main .q10 .form-content {
  width: 100%;
}
.section-main .q10 .btn {
  background-color: #FF6600;
  width: 100%;
  max-width: 340px;
  height: 65px;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 26px;
  line-height: 65px;
  color: #fff;
  font-weight: 700;
  border-radius: 33px;
}
.section-main .q11 {
  display: block;
}
.section-main .q11 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q11 .form-content {
  width: 100%;
}
.section-main .q11 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q11 .check-group .form-checkbox {
  width: calc(60% - 10px * 2);
  margin: 10px;
}
.section-main .q11 .check-group .form-checkbox:nth-child(2n) {
  width: calc(40% - 10px * 2);
}
.section-main .q11 .check-group .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  max-width: calc(100% - 3em);
}
.section-main .q12 {
  display: block;
}
.section-main .q12 .form-label {
  width: 100%;
}
.section-main .q12 .form-content {
  width: 100%;
}
.section-main .q12 .form-control {
  width: 120px;
}
.section-main .q13 {
  display: block;
}
.section-main .q13 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q13 .form-content {
  width: 100%;
}
.section-main .q13 .sub-section {
  margin-left: -20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section-main .q7-1 {
  display: block;
}
.section-main .q7-1 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q7-1 .form-content {
  width: 100%;
}
.section-main .q7-1 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q7-1 .check-group .form-checkbox {
  width: calc(65% - 10px * 2);
  margin: 10px;
}
.section-main .q7-1 .check-group .form-checkbox:nth-child(2n) {
  width: calc(35% - 10px * 2);
}
.section-main .q7-1 .check-group .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  max-width: calc(100% - 3em);
}
.section-main .q7-2 {
  display: block;
}
.section-main .q7-2 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q7-2 .form-content {
  width: 100%;
}
.section-main .q7-2 .form-control {
  max-width: 120px;
}
.section-main .q7-2 .example {
  background-color: rgba(251, 237, 176, 0.3);
  padding: 15px 10px;
  border-radius: 10px;
  font-size: 26px;
  margin-top: 20px;
  font-weight: 700;
}
.section-main .q7-2 .d-flex + .d-flex {
  margin-top: 10px;
}
.section-main .q7-3 {
  display: block;
}
.section-main .q7-3 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q7-3 .form-content {
  width: 100%;
}
.section-main .q7-3 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q7-3 .check-group .form-checkbox {
  width: calc(65% - 10px * 2);
  margin: 10px;
}
.section-main .q7-3 .check-group .form-checkbox:nth-child(2n) {
  width: calc(35% - 10px * 2);
}
.section-main .q7-3 .check-group .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  max-width: calc(100% - 3em);
}
.section-main .q7-4 {
  display: block;
}
.section-main .q7-4 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q7-4 .form-content {
  width: 100%;
}
.section-main .q7-4 .form-control {
  max-width: 120px;
}
.section-main .q7-4 .example {
  background-color: rgba(251, 237, 176, 0.3);
  padding: 15px 10px;
  border-radius: 10px;
  font-size: 26px;
  margin-top: 20px;
  font-weight: 700;
}
.section-main .q7-4 .d-flex + .d-flex {
  margin-top: 10px;
}
.section-main .q14 {
  display: block;
}
.section-main .q14 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q14 .form-content {
  width: 100%;
}
.section-main .q14 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q14 .check-group .form-checkbox {
  width: calc(60% - 10px * 2);
  margin: 10px;
}
.section-main .q14 .check-group .form-checkbox:nth-child(2n) {
  width: calc(40% - 10px * 2);
}
.section-main .q14 .check-group .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  max-width: calc(100% - 3em);
}
.section-main .q15 {
  display: block;
}
.section-main .q15 .form-label {
  width: 100%;
}
.section-main .q15 .form-content {
  width: 100%;
}
.section-main .q15 .form-control {
  width: 120px;
}
.section-main .q15 .sub-section {
  margin-top: 20px;
}
.section-main .q15-1 {
  display: block;
}
.section-main .q15-1 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q15-1 .form-content {
  width: 100%;
}
.section-main .q15-1 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q15-1 .check-group .form-checkbox {
  width: calc(50% - 10px * 2);
  margin: 10px;
}
.section-main .q15-1 .check-group .form-checkbox:nth-child(2n) {
  width: calc(50% - 10px * 2);
}
.section-main .q15-1 .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  width: 100%;
  max-width: calc(100% - 4em);
}
.section-main .q16 {
  display: block;
}
.section-main .q16 .form-label {
  width: 100%;
}
.section-main .q16 .form-content {
  width: 100%;
}
.section-main .q16 .form-control {
  width: 120px;
}
.section-main .q16 .sub-section {
  margin-top: 20px;
}
.section-main .q16-1 {
  display: block;
}
.section-main .q16-1 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q16-1 .form-content {
  width: 100%;
}
.section-main .q16-1 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q16-1 .check-group .form-checkbox {
  width: calc(50% - 10px * 2);
  margin: 10px;
}
.section-main .q16-1 .check-group .form-checkbox:nth-child(2n) {
  width: calc(50% - 10px * 2);
}
.section-main .q16-1 .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  width: 100%;
  max-width: calc(100% - 4em);
}
.section-main .q17 {
  display: block;
}
.section-main .q17 .form-label {
  width: 100%;
}
.section-main .q17 .form-content {
  width: 100%;
}
.section-main .q17 .form-control {
  width: 120px;
}
.section-main .q17 .sub-section {
  margin-top: 20px;
}
.section-main .q17-1 {
  display: block;
}
.section-main .q17-1 .form-label {
  width: 100%;
  line-height: 40px;
  margin-bottom: 20px;
}
.section-main .q17-1 .form-content {
  width: 100%;
}
.section-main .q17-1 .check-group {
  padding: 0;
  margin: -10px;
}
.section-main .q17-1 .check-group .form-checkbox {
  width: calc(50% - 10px * 2);
  margin: 10px;
}
.section-main .q17-1 .check-group .form-checkbox:nth-child(2n) {
  width: calc(50% - 10px * 2);
}
.section-main .q17-1 .form-control {
  margin-top: -20px;
  top: 10px;
  position: relative;
  width: 100%;
  max-width: calc(100% - 4em);
}
.section-main .q18 {
  display: block;
}
.section-main .q18 > .form-label {
  width: 100%;
  line-height: 40px;
}
.section-main .q18 .form-content {
  width: 100%;
}
.section-main .q18 .form-section {
  margin: 0;
}
.section-main .q18 .form-section + .form-section {
  margin-top: 12px;
}
.section-main .q18 .form-section .form-label {
  width: 564px;
}
.section-main .q18 .form-section .form-content {
  width: calc(100% - 564px);
}
.section-main .q18 .form-select {
  width: 216px;
}
.section-main .q19 {
  display: block;
}
.section-main .q19 .form-label {
  width: 100%;
}
.section-main .q19 .form-content {
  width: 100%;
}
.section-main .q20 {
  display: block;
}
.section-main .q20 .form-label {
  width: 100%;
}
.section-main .q20 .form-content {
  width: 100%;
}
.section-main .q20 .form-control {
  height: 210px;
  border-radius: 10px !important;
  padding: 10px 26px;
  line-height: 40px;
}
.section-main .q21 {
  display: block;
}
.section-main .q21 .form-label {
  width: 100%;
  line-height: 40px;
}
.section-main .q21 .form-content {
  width: 100%;
}
.section-main .q21 .form-select {
  width: 190px;
  margin-top: -20px;
  top: 10px;
  position: relative;
}

.check-row {
  margin-top: 40px;
}
.check-row a {
  color: #5C4F23;
  text-decoration: underline;
}

.l-table {
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0 20px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
}
.l-table__header {
  background-color: #c9a823;
  color: #5C4F23;
  padding: 10px 20px;
}
.l-table__content {
  background-color: #9d8428;
  padding: 10px 20px;
}
.l-table__content .item {
  padding: 5px 0;
}
.l-table .item {
  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;
}
.l-table .item + .item {
  border-top: 2px dashed #fff;
}
.l-table .item-col:nth-child(1) {
  width: 15%;
}
.l-table .item-col:nth-child(2) {
  width: 20%;
}
.l-table .item-col:nth-child(3) {
  width: 30%;
}
.l-table .item-col:nth-child(4) {
  width: 35%;
}

.sport-section-group {
  margin-top: 50px;
  margin-bottom: 75px;
}
.sport-section-group .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -27px;
  margin-top: 75px;
}
.sport-section-group .btn {
  background-color: #F5CE1E;
  width: 340px;
  height: 84px;
  text-align: center;
  display: block;
  margin: 0 27px;
  font-size: 36px;
  line-height: 84px;
  color: #5C4F23;
  font-weight: 700;
  border-radius: 42px;
}
.sport-section-group .btn img {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
}
.sport-section-group .btn span {
  font-size: 30px;
  line-height: 38px;
  display: block;
  width: 4.4em;
  margin: 0 auto;
  padding: 4px 0;
}

.sport-section {
  background-color: #fceeb1;
  padding: 45px 35px;
  border-radius: 10px;
  color: #5C4F23;
}
.sport-section + .sport-section {
  margin-top: 40px;
}
.sport-section .form-section {
  margin-left: 0;
}
.sport-section .form-section + .form-section {
  margin-top: 30px;
}
.sport-section .form-label {
  width: 135px;
}
.sport-section .form-content {
  width: calc(100% - 135px);
}
.sport-section .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 30px;
}
.sport-section .form-section-group .form-section {
  width: calc(50% - 15px * 2);
  margin: 0 15px;
}
.sport-section .form-section-group .form-label {
  width: 180px;
}
.sport-section .form-section-group .form-content {
  width: calc(100% - 180px);
}
.sport-section .layout-a .form-select {
  max-width: 392px;
}
.sport-section .layout-b .form-content {
  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;
}
.sport-section .layout-b .form-select {
  max-width: 392px;
}
.sport-section .layout-b .form-control {
  max-width: calc(100% - 392px - 28px);
  margin-left: 28px;
}
.sport-section .layout-c .form-control {
  max-width: 240px;
}
.sport-section .layout-d .form-label {
  width: 240px;
}
.sport-section .layout-d .form-content {
  width: calc(100% - 240px);
}
.sport-section .layout-d .form-control {
  width: 100%;
  max-width: 190px;
}

.survey-confirm {
  padding-bottom: 200px;
}
.survey-confirm .title {
  margin-bottom: 25px;
}
.survey-confirm .box {
  padding: 38px 25px;
  border-radius: 10px;
  background-color: #fff;
}
.survey-confirm .section {
  position: relative;
  margin: 0 auto;
  font-size: 32px;
  line-height: 60px;
  max-width: 1150px;
}
.survey-confirm .section-header {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 10px 45px;
  border-radius: 10px;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  color: #FF6600;
  border: 4px solid #FF6600;
}
.survey-confirm .section-content {
  padding: 25px;
  padding-left: 45px;
  padding-right: 0;
}
.survey-confirm .item {
  color: #808080;
  position: relative;
  margin-left: 30px;
}
.survey-confirm .item .number {
  position: absolute;
  top: 0;
  right: 100%;
  padding-right: 8px;
  white-space: nowrap;
}
.survey-confirm .item .text {
  margin-right: .5em;
}
.survey-confirm .item .highlight {
  color: #1A1A1A;
  display: inline-block;
}
.survey-confirm .page-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -28px;
  margin-top: 96px;
}
.survey-confirm .page-bottom .btn {
  width: calc(100% / 2 - 28px * 2);
  margin: 0 28px;
  padding: 0 40px;
}
.survey-confirm .page-bottom .btn-edit {
  text-align: center;
}
.survey-confirm .page-bottom .btn-submit {
  text-align: left;
}
.survey-confirm .page-bottom .btn .arrow {
  position: absolute;
  top: calc(50% - 24px);
}
.survey-confirm .page-bottom .btn .arrow-left {
  left: 25px;
}
.survey-confirm .page-bottom .btn .arrow-right {
  right: 25px;
}

.complete {
  position: relative;
  margin: 0 auto;
  font-size: 36px;
  line-height: 56px;
  font-weight: 700;
  max-width: 1150px;
  text-align: center;
  color: #5C4F23;
  padding-top: 60px;
  padding-bottom: 164px;
}
.complete a {
  color: #5C4F23;
}
.complete .title {
  font-size: 48px;
  color: #FF6600;
  margin-bottom: 40px;
}
.complete .action {
  margin-top: 56px;
}
.complete .btn {
  max-width: 326px;
  margin: 0 auto;
  color: #fff;
}

@media (max-width: 1200px) {
  .body-bg {
    background-size: 160% auto;
  }

  .kv {
    position: relative;
  }
  .kv .logo {
    top: 2.5vw;
    left: 2.5vw;
    max-width: 27.083333333%;
  }
}
@media (max-width: 1140px) and (min-width: 1081px) {
  .survey-confirm .page-bottom .btn {
    font-size: 30px;
  }
}
@media (max-width: 1080px) and (min-width: 751px) {
  .survey-confirm .page-bottom {
    display: block;
    margin: 0;
    margin-top: 50px;
  }
  .survey-confirm .page-bottom .btn {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .survey-confirm .page-bottom .btn + .btn {
    margin-top: 20px;
  }
  .survey-confirm .page-bottom .btn .arrow {
    position: relative;
    top: 0;
  }
  .survey-confirm .page-bottom .btn .arrow-left {
    left: 0;
    margin-right: 10px;
  }
  .survey-confirm .page-bottom .btn .arrow-right {
    right: 0;
    margin-left: 10px;
  }
}
@media (max-width: 750px) {
  .body-bg {
    background-image: url(../images/bg_s.jpg);
    background-size: 100% auto;
    background-color: #fbedb0;
  }

  .btn-primary {
    font-size: 23px;
    line-height: 60px;
    border-radius: 30px;
    height: 60px;
  }

  .kv {
    position: relative;
  }
  .kv .logo {
    top: 4vw;
    left: 4vw;
    max-width: 43.333333333%;
  }
  .kv .container {
    max-width: 100%;
    padding: 0;
  }

  .radio-group {
    padding: 0;
  }
  .radio-group .form-radio {
    margin-right: 10px;
  }

  .check-group {
    padding: 0;
  }
  .check-group .form-check {
    margin-right: 10px;
  }

  .survey {
    padding-bottom: 100px;
    font-size: 20px;
    line-height: 36px;
  }
  .survey .title {
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .survey .section {
    font-size: 20px;
    line-height: 36px;
  }
  .survey .section-header {
    padding: 10px 10px;
  }
  .survey .section-content {
    padding: 25px 10px;
  }
  .survey .section .heading {
    font-size: 25px;
    line-height: 40px;
  }
  .survey .section .required-text {
    top: 10px;
  }
  .survey .section + .section {
    margin-top: 35px;
  }
  .survey .d-flex {
    font-size: 20px;
    line-height: 36px;
  }
  .survey .form-label {
    font-size: 20px;
    line-height: 36px;
  }
  .survey .page-bottom .btn {
    width: 100%;
    font-size: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .survey .page-bottom .btn img {
    width: 24px;
    position: relative;
    top: 0;
    right: 0;
    margin-left: 10px;
  }
  .survey input[type="text"].form-control,
  .survey .form-control {
    font-size: 20px;
    padding: 5px 26px;
    list-height: 30px;
    height: 40px;
  }
  .survey .form-select {
    font-size: 20px;
    padding: 5px 26px;
    padding-right: 50px;
    line-height: 30px;
  }
  .survey .form-radio .form-check-label {
    font-size: 20px;
    line-height: 36px;
  }
  .survey .form-radio .form-check-label:before {
    width: 28px;
    height: 28px;
  }
  .survey .form-radio .form-check-label:after {
    width: 28px;
    height: 28px;
    box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #F5CE1E;
  }
  .survey .form-checkbox .form-check-label {
    font-size: 20px;
    line-height: 36px;
  }
  .survey .form-checkbox .form-check-label:before {
    width: 28px;
    height: 28px;
  }
  .survey .form-checkbox .form-check-label:after {
    width: 28px;
    height: 28px;
  }

  .section-a .form {
    display: block;
    margin: 0;
  }
  .section-a .form-section {
    width: 100%;
    margin: 0;
    display: block;
  }
  .section-a .form-section + .form-section {
    margin-top: 20px;
  }
  .section-a .form-label {
    width: 100%;
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .section-a .form-content {
    width: 100%;
  }

  .section-b .top-block {
    top: 14px;
  }
  .section-b .top-block .form-checkbox .form-check-label {
    font-size: 25px;
    line-height: 28px;
    padding-left: 40px;
  }
  .section-b .top-block .form-checkbox .form-check-label:after {
    background-size: 20px auto;
  }
  .section-b .form {
    display: block;
    margin: 0;
  }
  .section-b .form-section {
    width: 100%;
    margin: 0;
    display: block;
  }
  .section-b .form-section + .form-section {
    margin-top: 20px;
  }
  .section-b .form-label {
    width: 100%;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .section-b .form-content {
    width: 100%;
  }

  .section-main .form-section {
    margin-left: 45px;
  }
  .section-main .q3 {
    display: block;
  }
  .section-main .q3 .form-select {
    width: 115px;
  }
  .section-main .q4 {
    display: block;
  }
  .section-main .q4 .form-label {
    width: 100%;
  }
  .section-main .q4 .form-content {
    width: 100%;
  }
  .section-main .q4 .radio-group {
    margin: -10px;
  }
  .section-main .q4 .radio-group .form-radio {
    width: calc(50% - 10px * 2);
    margin: 10px;
  }
  .section-main .q5 {
    display: block;
  }
  .section-main .q5 .form-label {
    line-height: 36px;
  }
  .section-main .q5 .radio-group {
    margin: -10px;
  }
  .section-main .q5 .radio-group .form-radio {
    width: calc(50% - 10px * 2);
    margin: 10px;
  }
  .section-main .q6 .form-label {
    line-height: 36px;
  }
  .section-main .q6 .form-control {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
  .section-main .q7 .mb-hide {
    display: none;
  }
  .section-main .q7 .radio-group {
    display: block;
  }
  .section-main .q7 .d-flex {
    display: block !important;
  }
  .section-main .q7 .d-flex .d-flex {
    display: flex !important;
  }
  .section-main .q7 .d-flex .d-flex + .d-flex {
    margin-top: 10px;
  }
  .section-main .q8 .mb-hide {
    display: none;
  }
  .section-main .q8 .radio-group {
    display: block;
  }
  .section-main .q8 .d-flex {
    display: block !important;
  }
  .section-main .q8 .d-flex .d-flex {
    display: flex !important;
  }
  .section-main .q8 .d-flex .d-flex + .d-flex {
    margin-top: 10px;
  }
  .section-main .q9 .mb-hide {
    display: none;
  }
  .section-main .q9 .radio-group {
    display: block;
  }
  .section-main .q9 .note {
    font-size: 20px;
  }
  .section-main .q9 .d-flex {
    display: block !important;
  }
  .section-main .q9 .d-flex .d-flex {
    display: flex !important;
  }
  .section-main .q9 .d-flex .d-flex + .d-flex {
    margin-top: 10px;
  }
  .section-main .q10 .form-label {
    line-height: 36px;
    margin-bottom: 20px;
  }
  .section-main .q10 .btn {
    height: 60px;
    font-size: 20px;
    line-height: 60px;
  }
  .section-main .q11 .form-label {
    width: 100%;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q11 .check-group {
    padding: 0;
    margin: -5px;
    display: block;
  }
  .section-main .q11 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q11 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q11 .check-group .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q13 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q13 .sub-section {
    margin-left: 0;
  }
  .section-main .q13 .sub-section .number {
    position: relative;
    right: 0;
  }
  .section-main .q13 .sub-section .form-section {
    margin-left: 0;
  }
  .section-main .q7-1 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q7-1 .check-group {
    margin: -5px;
  }
  .section-main .q7-1 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q7-1 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q7-1 .check-group .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q7-2 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q7-2 .form-control {
    max-width: 120px;
  }
  .section-main .q7-2 .example {
    font-size: 20px;
  }
  .section-main .q7-3 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q7-3 .check-group {
    margin: -5px;
  }
  .section-main .q7-3 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q7-3 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q7-3 .check-group .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q7-4 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q7-4 .example {
    font-size: 20px;
  }
  .section-main .q14 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q14 .check-group {
    margin: -5px;
  }
  .section-main .q14 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q14 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q14 .check-group .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q15 .sub-section {
    margin-left: 0;
  }
  .section-main .q15 .sub-section .number {
    position: relative;
    right: 0;
  }
  .section-main .q15 .sub-section .form-section {
    margin-left: 0;
  }
  .section-main .q15-1 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q15-1 .check-group {
    margin: -5px;
  }
  .section-main .q15-1 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q15-1 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q15-1 .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q16 .sub-section {
    margin-left: 0;
  }
  .section-main .q16 .sub-section .number {
    position: relative;
    right: 0;
  }
  .section-main .q16 .sub-section .form-section {
    margin-left: 0;
  }
  .section-main .q16-1 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q16-1 .check-group {
    margin: -5px;
  }
  .section-main .q16-1 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q16-1 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q16-1 .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q17 .sub-section {
    margin-left: 0;
  }
  .section-main .q17 .sub-section .number {
    position: relative;
    right: 0;
  }
  .section-main .q17 .sub-section .form-section {
    margin-left: 0;
  }
  .section-main .q17-1 .form-label {
    line-height: 36px;
    margin-bottom: 10px;
  }
  .section-main .q17-1 .check-group {
    margin: -5px;
  }
  .section-main .q17-1 .check-group .form-checkbox {
    width: calc(100% - 5px * 2);
    margin: 5px;
  }
  .section-main .q17-1 .check-group .form-checkbox:nth-child(2n) {
    width: calc(100% - 5px * 2);
  }
  .section-main .q17-1 .form-control {
    max-width: calc(100% - 4em);
  }
  .section-main .q18 > .form-label {
    line-height: 36px;
  }
  .section-main .q18 .form-section {
    margin: 0;
    display: block;
  }
  .section-main .q18 .form-section + .form-section {
    margin-top: 10px;
  }
  .section-main .q18 .form-section .form-label {
    width: 100%;
  }
  .section-main .q18 .form-section .form-content {
    width: 100%;
  }
  .section-main .q19 .form-label {
    line-height: 36px;
  }
  .section-main .q19 .radio-group {
    display: block;
  }
  .section-main .q19 .radio-group .form-radio {
    margin-right: 0;
  }
  .section-main .q19 .radio-group .form-radio + .form-radio {
    margin-top: 10px;
  }
  .section-main .q20 .form-control {
    height: 200px;
    font-size: 20px;
    line-height: 36px;
  }
  .section-main .q21 .form-label {
    line-height: 36px;
  }
  .section-main .q21 .radio-group {
    display: block;
  }
  .section-main .q21 .radio-group .form-radio {
    margin-right: 0;
  }
  .section-main .q21 .radio-group .form-radio + .form-radio {
    margin-top: 10px;
  }
  .section-main .q21 .d-flex {
    display: block !important;
  }
  .section-main .q21 .form-select {
    width: 100%;
    margin-top: 10px;
    top: 0;
    display: block;
  }

  .l-table {
    font-size: 20px;
    line-height: 36px;
  }
  .l-table__header {
    display: none;
  }
  .l-table__content {
    padding: 10px 20px;
  }
  .l-table__content .item {
    padding: 5px 0;
  }
  .l-table .item {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .l-table .item-col:nth-child(1) {
    width: 20px;
  }
  .l-table .item-col:nth-child(2) {
    width: calc(100% - 20px);
  }
  .l-table .item-col:nth-child(3) {
    width: 100%;
    padding-left: 20px;
  }
  .l-table .item-col:nth-child(4) {
    width: 100%;
    padding-left: 20px;
  }

  .sport-section-group {
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .sport-section-group .action {
    display: block;
    margin: 0;
    margin-top: 45px;
  }
  .sport-section-group .btn {
    width: 100%;
    margin: 0;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
  .sport-section-group .btn + .btn {
    margin-top: 20px;
  }
  .sport-section-group .btn img {
    top: 10px;
    right: 15px;
    width: 40px;
  }
  .sport-section-group .btn span {
    font-size: 24px;
    line-height: 27px;
    padding: 3px 0;
  }

  .sport-section {
    padding: 25px 10px;
  }
  .sport-section .form-section {
    margin-left: 0;
    display: block;
  }
  .sport-section .form-section + .form-section {
    margin-top: 15px;
  }
  .sport-section .form-label {
    width: 100%;
  }
  .sport-section .form-content {
    width: 100%;
  }
  .sport-section .form-section-group {
    display: block;
    margin: 0;
    margin-top: 15px;
  }
  .sport-section .form-section-group .form-section {
    width: 100%;
    margin: 0;
  }
  .sport-section .form-section-group .form-section + .form-section {
    margin-top: 15px;
  }
  .sport-section .form-section-group .form-label {
    width: 100%;
  }
  .sport-section .form-section-group .form-content {
    width: 100%;
  }
  .sport-section .layout-a .form-select {
    max-width: 100%;
  }
  .sport-section .layout-b {
    display: block;
  }
  .sport-section .layout-b .d-flex {
    width: 100%;
    display: block !important;
  }
  .sport-section .layout-b .form-select {
    max-width: 100%;
  }
  .sport-section .layout-b .form-control {
    max-width: 100%;
    margin-left: 0;
    display: block;
    margin-top: 20px;
  }
  .sport-section .layout-c .form-control {
    max-width: calc(100% - 40px);
  }
  .sport-section .layout-d .form-control {
    max-width: calc(100% - 40px);
  }

  .survey-confirm .title {
    margin-bottom: 20px;
  }
  .survey-confirm .box {
    padding: 25px 10px;
  }
  .survey-confirm .section {
    font-size: 23px;
    line-height: 48px;
    max-width: 100%;
  }
  .survey-confirm .section-header {
    padding: 10px 15px;
    font-size: 25px;
    border: 2px solid #FF6600;
  }
  .survey-confirm .section-content {
    padding: 15px 0 25px;
  }
  .survey-confirm .item {
    margin-left: 0;
  }
  .survey-confirm .item .number {
    position: relative;
    right: 0;
    padding-right: 4px;
  }
  .survey-confirm .page-bottom {
    display: block;
    margin: 0;
    margin-top: 50px;
  }
  .survey-confirm .page-bottom .btn {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 23px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .survey-confirm .page-bottom .btn + .btn {
    margin-top: 20px;
  }
  .survey-confirm .page-bottom .btn .arrow {
    position: relative;
    top: 0;
    width: 24px;
  }
  .survey-confirm .page-bottom .btn .arrow-left {
    left: 0;
    margin-right: 10px;
  }
  .survey-confirm .page-bottom .btn .arrow-right {
    right: 0;
    margin-left: 10px;
  }

  .complete {
    font-size: 27px;
    line-height: 40px;
    padding-top: 60px;
    padding-bottom: 150px;
  }
}
@media (max-width: 480px) {
  .btn-primary {
    font-size: 4.791666666vw;
  }

  .survey .q1 {
    display: block;
  }
  .survey .q2 {
    display: block;
  }
  .survey .q2 .form-select {
    width: 100%;
  }

  .survey-confirm .page-bottom .btn {
    font-size: 4.791666666vw;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
