@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

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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

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

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

.swiper-flip {
  overflow: visible;
}

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

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

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

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

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

.swiper-cards {
  overflow: visible;
}

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

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 54px;
}

.swiper-pagination {
  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;
}

.swiper-pagination-bullet {
  width: 17px;
  height: 5px;
  display: block;
  border-radius: 0;
  background-color: #C4C4C4;
  opacity: 1;
  margin: 0 2px;
}

.swiper-pagination-bullet-active {
  background-color: #44BAB1;
  width: 32px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 20px;
  height: 40px;
  margin-top: -20px;
  background-color: transparent;
  border-radius: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}

.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: .5;
  filter: grayscale(1);
}

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

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

.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;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}

.btn:disabled, .btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
  opacity: 1;
}

.btn-primary {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  padding: 4px 8px;
  width: 100%;
  border-radius: 35px;
  color: #fff;
  border: 1px solid #009df9;
  background-color: #009df9;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.btn-primary:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .btn-primary:hover {
    filter: brightness(1.1);
  }
}
.btn-secondary {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  padding: 4px 8px;
  width: 100%;
  border-radius: 35px;
  color: #fff;
  background-color: #999;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.btn-secondary:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .btn-secondary:hover {
    filter: brightness(1.1);
  }
}
.btn-danger {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  padding: 5px 8px;
  width: 100%;
  border-radius: 35px;
  color: #fff;
  background-color: #f47272;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.btn-danger:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .btn-danger:hover {
    filter: brightness(1.1);
  }
}
.btn-border {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 8px;
  width: 100%;
  border-radius: 40px;
  color: #666;
  border: 1px solid #666;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.btn-border:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .btn-border:hover {
    filter: brightness(1.1);
  }
}
.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

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: #666;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-family: 'Noto Sans TC', 'Noto Sans SC';
}

* {
  -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: #333;
  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: 1300px;
  padding: 0 20px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

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

.plus-header {
  padding-top: 60px;
}

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

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

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.form-control {
  padding: 7px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  background-color: #f3f3f3;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  overflow: hidden;
}

.form-control::placeholder {
  color: #666;
}

.form-control.is-invalid {
  box-shadow: none;
  background: none;
}

.form-control:focus {
  color: #666;
  border-color: none;
}

.form-select {
  padding: 8px 16px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  background-color: #fff;
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px auto;
  border: 0;
  border-radius: 10px;
  box-shadow: 0;
  margin: 5px 10px;
}

.form-switch {
  padding-left: 0;
  width: 42px;
  margin: 0 auto;
  min-height: 20px;
}

.form-switch .form-check-input {
  width: 42px;
  height: 20px;
  margin-left: 0;
  border-radius: 16px;
  background-color: #999;
  margin: 0 auto;
  border: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-color: #44BAB1;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #707070;
  background-color: #EFEFEF;
}

.form-check-input:checked[type="radio"] {
  background-image: url(../images/radio-check.svg);
  background-size: 16px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #44BAB1;
  border-color: #44BAB1;
}

.site-breadcrumb {
  padding: 30px 0;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  padding: 0;
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.pagination {
  padding: 0;
}

.pagination .icon {
  width: 24px;
  height: 24px;
  margin: 1px auto;
}

.pagination .icon-prev {
  background-image: url(../images/previous.svg);
}

.pagination .icon-next {
  background-image: url(../images/next.svg);
}

.pagination .page-item {
  margin: 0 6px;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #44BAB1;
}

.pagination .page-item.active .page-link:hover {
  color: #fff;
}

.pagination .page-link {
  min-width: 26px;
  height: 26px;
  font-size: 14px;
  line-height: 26px;
  border-radius: 50%;
  color: #999;
  border: 0;
  padding: 0;
  text-align: center;
}

.pagination .page-link:hover {
  color: #44BAB1;
  background-color: transparent;
}

.l-card {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.4));
}

.l-card:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (hover: hover) {
  .l-card:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.l-card .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
}

.l-card .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}

.l-card .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.l-card .name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #009df9;
  margin-bottom: 8px;
  font-family: 'Noto Sans TC';
}

.l-card .name a {
  color: #009df9;
}

.l-card .office {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #999;
  margin-bottom: 8px;
  height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-card .main-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-card .hashtags {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #999;
  margin-bottom: 8px;
  height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-card .top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.l-card .top-block .name {
  width: calc(100% - 20px);
  margin-bottom: 0;
}

.l-card .bottom-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.l-card .bottom-block .info {
  width: calc(100% - 20px);
}

.l-card .info {
  font-size: 12px;
  line-height: 18px;
  color: #939393;
}

.l-card .icon-more {
  width: 18px;
  height: 18px;
  background-size: 18px auto;
  background-image: url(../images/icon-more.png);
}

.l-card .btn-favourite {
  width: 20px;
  height: 20px;
}

.btn-favourite {
  transition: none;
}

.btn-favourite .icon-favourite {
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-favourite.svg);
}

.btn-favourite .icon-favourite:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icon-favourite-fill.svg);
  opacity: 0;
}

.btn-favourite.active .icon-favourite {
  background-image: none;
}

.btn-favourite.active .icon-favourite:before {
  opacity: 1;
}

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

  .sm-view {
    display: block;
  }

  .l-card {
    padding: 8px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.4));
  }

  .l-card .name {
    font-size: 12px;
    line-height: 18px;
  }

  .l-card .office {
    font-size: 11px;
    line-height: 16px;
  }

  .l-card .top-block {
    margin-bottom: 8px;
  }

  .l-card .top-block .name {
    width: 100%;
  }

  .l-card .bottom-block {
    padding-bottom: 28px;
  }

  .l-card .bottom-block .info {
    width: 100%;
  }

  .l-card .btn-more {
    position: absolute;
    bottom: 8px;
    right: 8px;
  }

  .l-card .btn-favourite {
    position: absolute;
    bottom: 8px;
    left: 8px;
  }
}
.plus-header {
  padding-top: 65px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.site-header--bg.sticky {
  background-color: #00acbb;
}

.site-header .container {
  height: 65px;
}

.site-header .logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 93px;
  height: 22px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/logo.svg);
  z-index: 2;
}

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

.site-header .language {
  position: relative;
  margin-left: 8px;
}

.site-header .icon {
  width: 36px;
  height: 36px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: 26px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.site-header .icon-language {
  background-image: url(../images/icon-earth.png);
}

.site-header .icon-user {
  background-image: url(../images/icon-user.png);
}

.site-header .collapse-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
}

.site-header .language-collapse {
  position: absolute;
  top: 40px;
  left: calc(50% - 88px / 2);
  width: 88px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .06em;
  text-align: center;
  overflow: hidden;
  padding: 4px 0;
}

.site-header .language-collapse a {
  padding: 4px 10px;
  color: #fff;
  display: block;
}

.site-header .btn-border {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  padding: 5px 8px;
  width: 100px;
  margin-left: 15px;
  border-radius: 35px;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.site-header .btn-border:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .site-header .btn-border:hover {
    filter: brightness(1.1);
  }
}
.site-menu {
  position: absolute;
  top: 15px;
  right: 32px;
  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;
}

.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-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: .06em;
}

.main-menu li {
  position: relative;
  padding: 0 25px;
}

.main-menu li:before {
  content: "";
  position: absolute;
  top: calc(50% - 15px / 2);
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #fff;
}

.main-menu li:first-child:before {
  display: none;
}

.main-menu a {
  position: relative;
  color: #fff;
  display: block;
}

@media (min-width: 961px) {
  .main-menu a {
    padding: 0 5px;
  }

  .main-menu a:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0;
  }

  .main-menu a.active {
    color: #fff;
  }

  .main-menu a.active:before {
    opacity: 1;
  }

  .main-menu a:active .menu-tip {
    display: block;
  }
}
@media (min-width: 961px) and (hover: hover) {
  .main-menu a:hover .menu-tip {
    display: block;
  }
}
@media (min-width: 961px) {
  .main-menu .menu-tip {
    line-height: 30px;
    height: 30px;
    display: block;
    background-color: #009dfa;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    top: calc(100% + 9px);
    left: calc(50% - 108px / 2);
    width: 108px;
    font-size: 14px;
    display: none;
  }

  .main-menu .menu-tip:before {
    content: "";
    position: absolute;
    top: -7px;
    left: calc(50% - 8px / 2);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 7px 4px;
    border-color: transparent transparent #009dfa transparent;
  }

  .main-menu .menu-collapse {
    position: absolute;
    top: 100%;
    left: calc(50% - 120px / 2);
    width: 125px;
  }

  .main-menu .sub-menu {
    margin-top: 5px;
    text-align: center;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .06em;
    overflow: hidden;
    padding: 4px 0;
  }

  .main-menu .sub-menu li {
    padding: 0;
  }

  .main-menu .sub-menu li:before {
    display: none;
  }

  .main-menu .sub-menu a {
    padding: 4px 10px;
    color: #fff;
    display: block;
  }
}
.menu-toggle {
  position: fixed;
  top: 16px;
  right: 24px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 5;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  display: none;
}

.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  position: fixed;
  top: 16px;
  right: 24px;
  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);
  display: none;
}

.menu-close:active {
  filter: brightness(1.1);
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@media (max-width: 1140px) and (min-width: 961px) {
  .main-menu li {
    padding: 0 10px;
  }
}
@media (max-width: 960px) {
  .plus-header {
    padding-top: 80px;
  }

  .site-header .logo {
    top: 24px;
    left: 25px;
  }

  .site-header .btn-signup {
    font-size: 14px;
    width: 80px;
    height: 30px;
    margin: 5px;
  }

  .site-header .header-group {
    position: absolute;
    top: 17px;
    right: 80px;
  }

  .site-menu {
    top: 0;
    right: 0;
  }

  .site-menu .menu-toggle {
    display: block;
  }

  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 45px;
    padding-bottom: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }

  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-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 .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }

  .site-menu.is-view .menu-panel .menu-close {
    display: block;
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background-image: url(../images/menu-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0b0b0b;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
    font-size: 21px;
    line-height: 36px;
  }

  .main-menu li {
    position: relative;
    padding: 30px 0;
    text-align: center;
    max-width: 182px;
    margin: 0 auto;
  }

  .main-menu li:before {
    display: none;
  }

  .main-menu li + li {
    border-top: 1px solid #fff;
  }

  .main-menu .comingSoon {
    pointer-events: none;
  }

  .main-menu .menu-tip {
    display: block;
    color: #009dfa;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    display: block;
  }

  .main-menu .menu-collapse {
    display: block !important;
    transition: none !important;
    height: inherit;
    overflow: visible;
  }

  .main-menu .collapse:not(.show) {
    display: block !important;
  }

  .main-menu .sub-menu li {
    position: relative;
    padding: 0;
    text-align: center;
    max-width: 182px;
    margin: 0 auto;
  }

  .main-menu .sub-menu li:before {
    display: none;
  }

  .main-menu .sub-menu li + li {
    border: 0;
  }

  .main-menu .sub-menu a {
    color: #009dfa;
    display: block;
  }
}
.site-footer {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  padding: 20px 0;
}

.site-footer--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.side-sticky {
  position: fixed;
  bottom: 80px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}

.side-sticky.is-view {
  display: block;
}

.side-sticky.is-view .totop {
  display: block;
}

.side-sticky.change-bottom {
  position: absolute;
}

.side-sticky a {
  cursor: pointer;
  display: block;
}

.side-sticky a:active {
  filter: brightness(1.1);
}

@media (hover: hover) {
  .side-sticky a:hover {
    filter: brightness(1.1);
  }
}
.side-sticky .donate {
  text-align: center;
  color: #fff;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.25));
}

.side-sticky .donate .block-top .main-text {
  font-size: 18px;
  line-height: 24px;
  text-indent: -.5em;
  margin-bottom: 20px;
  margin-right: -.75em;
  letter-spacing: .06em;
}

.side-sticky .donate .block-top .box {
  border: 3px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 8px;
  padding: 10px;
  position: relative;
}

.side-sticky .donate .block-top .box canvas {
  display: none;
  position: absolute;
  top: -7px;
  left: -7px;
  width: 68px;
  height: 68px;
}

.side-sticky .donate .block-top .text-lg {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.side-sticky .donate .block-top .text-lg:after {
  content: '張';
}

.side-sticky .donate .block-top .text-small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}

.side-sticky .donate .block-top .icon {
  width: 32px;
  height: 32px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  margin: 0 auto;
}

.side-sticky .donate .block-top .icon-camera {
  background-image: url(../images/icon-camera.png);
}

.side-sticky .donate .block-bottom {
  margin-top: 25px;
}

.side-sticky .donate .block-bottom .main-text {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.side-sticky .donate .block-bottom .text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
}

.side-sticky .donate .block-bottom .text .number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 5px auto;
  line-height: 30px;
  display: block;
  background-color: #009df9;
}

.side-sticky .donate .block-bottom .text-small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}

.side-sticky .totop {
  width: 18px;
  margin: 0 auto;
  margin-top: 50px;
  display: none;
}

.side-sticky .icon-top {
  width: 18px;
  height: 112px;
  background-image: url(../images/icon-top.png);
  display: block;
}

@media (max-width: 767px) {
  .site-footer--fixed {
    bottom: 48px;
  }

  .plus-sticky-bottom {
    padding-bottom: 70px;
  }

  .plus-sticky-bottom .side-sticky .totop {
    bottom: 118px;
  }

  .side-sticky {
    bottom: 35px;
    right: 0;
    width: 100%;
  }

  .side-sticky .donate {
    text-align: center;
    color: #fff;
    filter: none;
    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;
  }

  .side-sticky .donate .block-top {
    background-color: #009df9;
    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;
    line-height: 48px;
    order: 2;
  }

  .side-sticky .donate .block-top .main-text {
    font-size: 18px;
    line-height: 24px;
    text-indent: 0;
    margin-bottom: 0;
    margin-right: 5px;
    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;
  }

  .side-sticky .donate .block-top .main-text:before {
    content: "";
    width: 32px;
    height: 32px;
    overflow: hidden;
    background-size: 32px auto;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    background-image: url(../images/icon-camera.png);
    margin-right: 10px;
  }

  .side-sticky .donate .block-top .main-text br {
    display: none;
  }

  .side-sticky .donate .block-top .box {
    display: none;
  }

  .side-sticky .donate .block-top .text-lg {
    font-size: 15px;
    margin-right: 10px;
  }

  .side-sticky .donate .block-top .text-small {
    font-size: 15px;
  }

  .side-sticky .donate .block-bottom {
    margin-top: 0;
    background-color: #0186d5;
    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;
    line-height: 22px;
    order: 1;
  }

  .side-sticky .donate .block-bottom br {
    display: none;
  }

  .side-sticky .donate .block-bottom .main-text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .side-sticky .donate .block-bottom .text {
    font-size: 14px;
  }

  .side-sticky .donate .block-bottom .text .number {
    width: auto;
    height: auto;
    border-radius: 0;
    margin: 0;
    line-height: 22px;
    background-color: transparent;
    display: inline;
  }

  .side-sticky .donate .block-bottom .text-small {
    font-size: 14px;
  }

  .side-sticky .totop {
    position: fixed;
    bottom: 70px;
    right: 0;
    width: 18px;
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .site-footer--fixed {
    position: relative;
    bottom: 0;
    padding-bottom: 68px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 335px;
  margin: 0 auto;
}

.modal-content {
  position: relative;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background-color: #fff;
  margin: 20px auto;
}

.modal .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: url(../images/modal-close.png);
  background-size: 40px auto;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 5px;
  right: 5px;
}

.card-modal .modal-dialog {
  max-width: 476px;
}

.card-modal .modal-content {
  padding: 50px 20px 15px;
}

.card-modal .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

/*.card-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}*/
.card-modal .image img {
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
  /*height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;*/
}

.card-modal .name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #009df9;
  margin-bottom: 8px;
}

.card-modal .name a {
  color: #009df9;
  text-decoration: none;
}

.card-modal .office {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #999;
  margin-bottom: 8px;
}

.card-modal .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
  max-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-modal .sub-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 15px;
}

.card-modal .hashtags {
  font-size: 16px;
  line-height: 24px;
  color: #999;
  margin-bottom: 8px;
  overflow: hidden;
  height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-modal .top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.card-modal .top-block .name {
  width: calc(100% - 26px);
  margin-bottom: 0;
}

.card-modal .info {
  font-size: 14px;
  line-height: 20px;
  color: #939393;
}

.card-modal .btn-favourite {
  transition: none;
  width: 26px;
  height: 26px;
}

.card-modal .btn-favourite .icon-favourite {
  width: 26px;
  height: 26px;
}

.card-edit-modal .modal-dialog {
  max-width: 476px;
}

.card-edit-modal .modal-content {
  padding: 50px 20px 18px;
}

.card-edit-modal .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.card-edit-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}

.card-edit-modal .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.card-edit-modal .name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #009df9;
  margin-bottom: 8px;
}

.card-edit-modal .office {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #999;
  margin-bottom: 8px;
}

.card-edit-modal .form-control {
  background-color: #f3f3f3;
  border-radius: 10px;
}

.card-edit-modal .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #666;
  margin-bottom: 6px;
}

.card-edit-modal .sub-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 12px;
  height: 90px;
}

.card-edit-modal .hashtags {
  font-size: 16px;
  line-height: 24px;
  color: #999;
  margin-bottom: 8px;
  max-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-edit-modal .top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.card-edit-modal .top-block .name {
  width: calc(100% - 26px);
  margin-bottom: 0;
}

.card-edit-modal .info {
  font-size: 14px;
  line-height: 20px;
  color: #939393;
  text-align: right;
}

.card-edit-modal .action {
  margin-top: 10px;
}

.card-edit-modal .action .btn {
  width: 104px;
  margin: 0 auto;
  display: block;
}

.card-edit-modal .btn-favourite {
  width: 26px;
  height: 26px;
}

.card-edit-modal .btn-favourite .icon-favourite {
  width: 26px;
  height: 26px;
}

.delete-modal .modal-dialog {
  max-width: 350px;
}

.delete-modal .modal-content {
  padding: 50px 20px 36px;
}

.delete-modal .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.delete-modal .action {
  padding-top: 28px;
  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;
}

.delete-modal .action .btn {
  width: 72px;
  height: 35px;
  margin: 5px;
}

.delete-modal .action .btn + .btn {
  margin-left: 30px;
}

.upload-modal .modal-dialog {
  max-width: 665px;
}

.upload-modal .modal-content {
  background-color: #efefef;
  padding: 27px 37px 25px 25px;
}

.upload-modal .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.upload-modal .grid-left {
  width: 98px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.upload-modal .grid-right {
  width: calc(100% - 98px);
  padding-left: 30px;
  font-size: 18px;
  line-height: 26px;
}

.upload-modal .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 10px;
}

.upload-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}

.upload-modal .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.upload-modal .l-block + .l-block {
  margin-top: 18px;
}

.upload-modal .l-block__header {
  position: relative;
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  padding-left: 40px;
}

.upload-modal .l-block__header .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  color: #fff;
  background-color: #009df9;
}

.upload-modal .l-block__content {
  padding-left: 40px;
}

.upload-modal .form-control {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 18px;
}

.upload-modal textarea.form-control {
  height: 112px;
  padding: 10px 16px;
}

.upload-modal .form-select {
  padding: 10px 16px;
  font-size: 18px;
}

.upload-modal .select-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px 12px;
}

.upload-modal .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px 12px;
}

.upload-modal .form-group .form-control {
  width: calc(50% - 8px* 2);
  margin: 0 8px;
}

.upload-modal .select-group .form-select {
  width: calc(50% - 8px * 2);
  margin: 0 8px;
}

.upload-modal .form-section {
  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;
}

.upload-modal .form-section .form-lable {
  width: 56px;
}

.upload-modal .form-section .form-content {
  width: calc(100% - 56px);
}

.upload-modal .text-small {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 5px;
  color: #333;
}

.upload-modal .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 20px;
}

.upload-modal .action .btn {
  border-radius: 10px;
  width: 116px;
  height: 44px;
  font-size: 18px;
}

.upload-modal .action .btn + .btn {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .modal-dialog {
    width: calc(100% - 25px * 2);
    max-width: 325px;
  }

  .card-modal .modal-dialog {
    max-width: 325px;
  }

  .card-modal .modal-content {
    padding: 42px 15px 18px;
  }

  .card-modal .image {
    margin-bottom: 15px;
  }

  .card-modal .office {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .card-modal .main-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .card-modal .sub-text {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 15px;
  }

  .card-modal .hashtags {
    font-size: 15px;
  }

  .card-modal .info {
    font-size: 15px;
  }

  .card-edit-modal .modal-dialog {
    max-width: 325px;
  }

  .card-edit-modal .modal-content {
    padding: 42px 15px 18px;
  }

  .card-edit-modal .form-control {
    padding: 6px 12px;
  }

  .card-edit-modal .image {
    margin-bottom: 15px;
  }

  .card-edit-modal .office {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .card-edit-modal .main-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .card-edit-modal .sub-text {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 15px;
  }

  .card-edit-modal .hashtags {
    font-size: 15px;
  }

  .card-edit-modal .info {
    font-size: 15px;
  }

  .delete-modal .modal-dialog {
    max-width: 325px;
  }

  .delete-modal .modal-content {
    padding: 40px 20px 32px;
  }

  .upload-modal .modal-dialog {
    max-width: 325px;
  }

  .upload-modal .modal-content {
    padding: 20px 14px 20px 14px;
  }

  .upload-modal .grid {
    display: block;
  }

  .upload-modal .grid-left {
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
    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;
    font-size: 15px;
  }

  .upload-modal .grid-right {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
  }

  .upload-modal .image {
    margin-bottom: 0;
    margin-right: 10px;
    width: 120px;
    height: 120px;
  }

  .upload-modal .l-block + .l-block {
    margin-top: 15px;
  }

  .upload-modal .l-block__header {
    font-size: 15px;
  }

  .upload-modal .l-block__content {
    padding-left: 0;
  }

  .upload-modal .form-control {
    padding: 7px 16px;
    font-size: 15px;
  }

  .upload-modal textarea.form-control {
    height: 112px;
  }

  .upload-modal .form-select {
    padding: 7px 16px;
    font-size: 15px;
  }

  .upload-modal .select-group {
    display: block;
    margin: 0;
  }

  .upload-modal .select-group .form-select {
    width: 100%;
    margin: 0;
  }

  .upload-modal .select-group .form-select + .form-select {
    margin-top: 10px;
  }

  .upload-modal .select-group + .form-section {
    margin-top: 10px;
  }

  .upload-modal .form-section .form-lable {
    width: 52px;
  }

  .upload-modal .form-section .form-content {
    width: calc(100% - 52px);
  }

  .upload-modal .action {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 20px -10px 0;
  }

  .upload-modal .action .btn {
    width: calc(50% - 10px * 2);
    margin: 0 10px;
    height: 44px;
    font-size: 18px;
  }

  .upload-modal .action .btn + .btn {
    margin: 0 10px;
  }
}
.index {
  position: relative;
}

.index .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.kv {
  position: relative;
  padding-top: 70px;
  overflow: hidden;
  min-height: 100vh;
  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: 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;
}

.kv img {
  width: 100%;
  display: block;
}

.kv .container {
  max-width: 1000px;
  padding: 0;
}

.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kv .kv-shadow {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .3s;
}

.kv .kv-main {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .25s;
}

.kv .kv-logo {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .75s;
}

.kv .kv-slogan {
  -moz-animation: fadeInRight 1.2s both;
  -webkit-animation: fadeInRight 1.2s both;
  animation: fadeInRight 1.2s both;
  animation-delay: 1.25s;
  font-size: 36px;
  line-height: 1;
  font-weight: 100;
  color: #fff;
  position: absolute;
  top: 66.5%;
  left: 51.75%;
  display: block;
  filter: drop-shadow(0px 15px 15px black);
}

.kv .kv-scroll {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 1.75s;
  position: absolute;
  bottom: 90px;
  left: calc(50% - 26px / 2);
  width: 26px;
}

.kv .kv-scroll__arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: mouseScroll 1s linear infinite;
}

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

@keyframes mouseScroll {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 3px);
  }
  to {
    transform: translate(0, 0);
  }
}
.floating {
  animation-name: floating;
  animation-duration: 1.6s;
  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);
  }
}
.index-section-group {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  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: 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;
}

.index-section-group .swiper-button-prev {
  left: calc(50% - 1000px / 2 - 30px);
}

.index-section-group .swiper-button-next {
  right: calc(50% - 1000px / 2 - 30px);
}

.index-section-group .container {
  max-width: 100%;
  padding: 0;
}

.index-section-group .animated .swiper-slide-active .index-a .a-1 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-a .a-2 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .3s;
}

.index-section-group .animated .swiper-slide-active .index-a .a-2 img {
  animation-direction: alternate-reverse;
}

.index-section-group .animated .swiper-slide-active .index-a .a-3 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .45s;
}

.index-section-group .animated .swiper-slide-active .index-a .a-4 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .6s;
}

.index-section-group .animated .swiper-slide-active .index-a .a-5 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .75s;
}

.index-section-group .animated .swiper-slide-active .index-a .content {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-a .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .animated .swiper-slide-active .index-a .action .group {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-1 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-2 {
  -moz-animation: fadeInDown 1s both;
  -webkit-animation: fadeInDown 1s both;
  animation: fadeInDown 1s both;
  animation-delay: .3s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-3 {
  -moz-animation: fadeInRight 1s both;
  -webkit-animation: fadeInRight 1s both;
  animation: fadeInRight 1s both;
  animation-delay: .45s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-4 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-5 {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-b .a-5 img {
  animation-direction: alternate-reverse;
}

.index-section-group .animated .swiper-slide-active .index-b .content {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-b .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .animated .swiper-slide-active .index-b .action .group {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .animated .swiper-slide-active .index-c .a-1 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-c .a-2 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .3s;
}

.index-section-group .animated .swiper-slide-active .index-c .a-3 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .45s;
}

.index-section-group .animated .swiper-slide-active .index-c .a-4 {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .6s;
}

.index-section-group .animated .swiper-slide-active .index-c .content {
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  animation-delay: .15s;
}

.index-section-group .animated .swiper-slide-active .index-c .action {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .animated .swiper-slide-active .index-c .action .group {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: 1.2s;
}

.index-section-group .swiper-container {
  overflow: visible;
}

.index-section-group .gallery-top .group {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 100%;
  display: none;
}

.index-section-group .gallery-top .group .number {
  font-size: 24px;
  line-height: 32px;
  color: #009df9;
  font-family: century-gothic, arial sans-serif;
  margin-right: 15px;
}

.index-section-group .gallery-top .group .text {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.index-section-group .gallery-top .group .text .main-text {
  font-size: 16px;
  line-height: 24px;
  margin-right: 5px;
}

.index-section-group .gallery-top .group .text .sub-text {
  font-size: 14px;
  line-height: 20px;
}

.index-section-group .gallery-thumbs {
  width: 945px;
  position: absolute;
  bottom: 64px;
  left: calc(50% - 945px / 2 + 27px);
  padding-left: 200px;
}

.index-section-group .gallery-thumbs:before {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  width: calc(100% - 70px);
  height: 1px;
  background-color: #fff;
}

.index-section-group .gallery-thumbs:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background-image: url(../images/home.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.index-section-group .gallery-thumbs .swiper-slide {
  padding-top: 68px;
  cursor: pointer;
}

.index-section-group .gallery-thumbs .swiper-slide:nth-child(1) {
  width: 305px !important;
}

.index-section-group .gallery-thumbs .swiper-slide:nth-child(2) {
  width: 322px !important;
}

.index-section-group .gallery-thumbs .swiper-slide:nth-child(3) {
  width: 122px !important;
}

.index-section-group .gallery-thumbs .swiper-slide.swiper-slide-thumb-active .text-tip, .index-section-group .gallery-thumbs .swiper-slide:active .text-tip {
  -moz-animation: fadeIn 0.6s both;
  -webkit-animation: fadeIn 0.6s both;
  animation: fadeIn 0.6s both;
}

.index-section-group .gallery-thumbs .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;
}

.index-section-group .gallery-thumbs .number {
  font-size: 24px;
  color: #009df9;
  font-family: century-gothic, arial sans-serif;
  margin-right: 10px;
}

.index-section-group .gallery-thumbs .text {
  color: #fff;
  position: relative;
}

.index-section-group .gallery-thumbs .text .main-text {
  font-size: 16px;
  line-height: 24px;
}

.index-section-group .gallery-thumbs .text .sub-text {
  font-size: 14px;
  line-height: 20px;
}

.index-section-group .gallery-thumbs .text:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
}

.index-section-group .gallery-thumbs .text:after {
  content: "";
  position: absolute;
  top: -37px;
  left: -5px;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
}

.index-section-group .gallery-thumbs .text-tip {
  line-height: 30px;
  height: 30px;
  display: block;
  background-color: #009dfa;
  border-radius: 30px;
  text-align: center;
  position: absolute;
  bottom: calc(100% + 50px);
  left: calc(7px - 108px / 2);
  width: 108px;
  font-size: 14px;
  color: #fff;
  opacity: 0;
}

.index-section-group .gallery-thumbs .text-tip:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: calc(50% - 8px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #009efa transparent transparent transparent;
}

.index-section-group .gallery-thumbs .swiper-slide-thumb-active .text:after {
  opacity: 1;
}

.index-section {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.index-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.index-section img {
  width: 100%;
  display: block;
}

.index-section .content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  display: block;
  opacity: 0;
}

.index-section .content .main-text {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 15px;
}

.index-section .content .sub-text {
  font-size: 16px;
  line-height: 24px;
}

.index-section .content .sub-text a {
  color: #FFF;
  text-decoration: underline;
}

.index-section .btn {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: block;
  background-image: url(../images/index-btn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 15px;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.4));
}

.index-section .btn img {
  width: 36px;
  margin: 0 auto 5px;
  display: block;
}

.index-section .btn:active {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (hover: hover) {
  .index-section .btn:hover {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.index-section .text-tip {
  line-height: 30px;
  height: 30px;
  display: block;
  background-color: #009dfa;
  border-radius: 30px;
  text-align: center;
  position: absolute;
  bottom: calc(100% + 9px);
  left: calc(50% - 108px / 2);
  width: 108px;
  font-size: 14px;
  color: #fff;
}

.index-section .text-tip:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: calc(50% - 8px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #009efa transparent transparent transparent;
}

.index-a .content {
  top: 19.4%;
  left: 66.75%;
}

.index-a .action {
  position: absolute;
  top: 45%;
  left: 56%;
}

.index-b .content {
  top: 17.5%;
  left: 34.5%;
}

.index-b .action {
  position: absolute;
  top: 38%;
  left: 77.5%;
}

.index-b .btn {
  padding-top: 24px;
}

.index-c .content {
  top: 36.25%;
  left: 70%;
}

.index-c .action {
  position: absolute;
  top: 45.5%;
  left: 53.5%;
}

.index-c .a-2 {
  z-index: -1;
}

.global .index-a {
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}

@media (max-width: 1040px) and (min-width: 768px) {
  .index-section-group .swiper-button-prev {
    left: 10px;
  }

  .index-section-group .swiper-button-next {
    right: 10px;
  }

  .index-section-group .gallery-top .group {
    bottom: 11.538461538vw;
  }

  .index-section-group .gallery-thumbs {
    width: 90.865384615vw;
    bottom: 6.153846153vw;
    left: calc(50% - 90.865384615vw / 2 + 2.596153846vw);
    padding-left: 19.23076923vw;
  }

  .index-section-group .gallery-thumbs:before {
    width: calc(100% - 6.73076923vw);
  }

  .index-section-group .gallery-thumbs:after {
    width: 8.653846153vw;
    height: 8.653846153vw;
  }

  .index-section-group .gallery-thumbs .swiper-slide:nth-child(1) {
    width: 29.326923076vw !important;
  }

  .index-section-group .gallery-thumbs .swiper-slide:nth-child(2) {
    width: 30.961538461vw !important;
  }

  .index-section-group .gallery-thumbs .swiper-slide:nth-child(3) {
    width: 122px !important;
  }

  .index-section-group .gallery-thumbs .number {
    font-size: 2.307692307vw;
  }

  .index-section-group .gallery-thumbs .text .main-text {
    font-size: 1.538461538vw;
  }

  .index-section-group .gallery-thumbs .text .sub-text {
    font-size: 1.346153846vw;
  }

  .index-section .content {
    font-size: 1.538461538vw;
  }

  .index-section .content .main-text {
    font-size: 3.461538461vw;
  }

  .index-section .content .sub-text {
    font-size: 1.538461538vw;
  }

  .index-section .btn {
    width: 12.115384615vw;
    height: 12.115384615vw;
    font-size: 1.73076923vw;
    padding: 1.442307692vw;
  }

  .index-section .btn img {
    width: 3.461538461vw;
  }
}
@media (max-width: 767px) {
  .index .bg {
    background-image: url(../images/index-bg_s.jpg);
  }

  .kv {
    padding-top: 0;
    min-height: calc(100vh - 48px);
  }

  .kv .container {
    max-width: 375px;
    padding: 0;
  }

  .kv .kv-slogan {
    font-size: 30px;
    top: 69%;
    left: 0%;
    width: 100%;
    text-align: center;
  }

  .kv .kv-scroll {
    left: calc(50% - 18px / 2);
    width: 18px;
  }

  .index-section-group {
    min-height: calc(100vh - 48px);
  }

  .index-section-group .swiper-button-prev {
    left: 10px;
  }

  .index-section-group .swiper-button-next {
    right: 10px;
  }

  .index-section-group .gallery-top .group {
    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;
	top:0px;
  }

  .index-section-group .gallery-thumbs {
    display: none;
  }

  .index-section {
    max-width: 375px;
  }

  .index-section .content {
    font-size: 15px;
  }

  .index-section .content .main-text {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 10px;
  }

  .index-section .content .sub-text {
    font-size: 15px;
  }

  .index-section .action {
    width: 100%;
  }

  .index-section .btn {
    width: 98px;
    height: 98px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
  }

  .index-section .btn img {
    width: 24px;
  }

  .index-a .content {
    top: 4.5%;
    left: 6.5%;
  }

  .index-a .action {
    top: calc(100% - 98px);
    left: 0;
  }

  .index-a .btn {
    top: calc(100% - 98px);
    left: calc(50% - 98px / 2);
  }

  .index-b .content {
    top: 4.5%;
    left: 6.5%;
  }

  .index-b .action {
    top: calc(100% - 98px);
    left: 0;
  }

  .index-b .btn {
    top: calc(100% - 98px);
    left: calc(50% - 98px / 2);
    padding-top: 20px;
  }

  .index-c .content {
    top: 4.5%;
    left: 6.5%;
  }

  .index-c .action {
    top: calc(100% - 98px);
    left: 0;
  }

  .index-c .btn {
    top: calc(100% - 98px);
    left: calc(50% - 98px / 2);
  }

  .global .index-a {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (max-width: 640px) {
  .fp-responsive .fp-section,
  .fp-responsive .fp-slide,
  .fp-responsive .fp-tableCell {
    height: auto !important;
  }

  .kv {
    min-height: calc(100vh - 48px);
  }

  .index-section-group {
    min-height: inherit;
    padding: 48px 0;
  }
}
.liteon-photos {
  position: relative;
  overflow: hidden;
}

.liteon-photos .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/liteon-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.liteon-photos .container {
  max-width: 1150px;
  padding: 0 20px;
}

.liteon-photos-top {
  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;
  color: #fff;
  padding-top: 20px;
  margin-bottom: 60px;
}

.liteon-photos-top .col-left {
  width: calc(100% - 192px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.liteon-photos-top .col-right {
  width: 192px;
}

.liteon-photos-top .title {
  font-size: 36px;
  line-height: 44px;
  margin-right: 27px;
}

.liteon-photos-top .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

.liteon-photos-top .text .mobile-show {
  display: none;
}

.liteon-photos-top .text a {
  color: #FFF;
  text-decoration: underline;
}

.liteon-photos .search {
  position: relative;
}

.liteon-photos .search .form-control {
  padding: 5px 0;
  padding-right: 36px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  border-radius: 0;
}

.liteon-photos .search .form-control::placeholder {
  color: #fff;
}

.liteon-photos .search .form-control:focus {
  color: #fff;
}

.liteon-photos .search .btn {
  position: absolute;
  top: 0;
  right: -8px;
  padding: 0;
}

.liteon-photos .search .icon-search {
  width: 36px;
  height: 36px;
  background-size: 20px auto;
  background-image: url(../images/icon-search.png);
  filter: drop-shadow(0px 13px 13px rgba(0, 0, 0, 0.4));
}

.liteon-map {
  position: relative;
  margin-bottom: 0;
  width: 1132px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.liteon-map .item {
  position: absolute;
}

.liteon-map .item-GB {
  top: 5.5%;
  left: 2.4%;
}

.liteon-map .item-NL {
  top: 12.4%;
  left: 4.4%;
}

.liteon-map .item-DE {
  top: 19.75%;
  left: 5.75%;
}

.liteon-map .item-TH {
  top: 50%;
  left: 22.6%;
}

.liteon-map .item-SG {
  top: 65%;
  left: 29.6%;
}

.liteon-map .item-VN {
  top: 52%;
  left: 35.2%;
}

.liteon-map .item-CN {
  top: 31%;
  left: 31%;
}

.liteon-map .item-HK {
  top: 43%;
  left: 32.5%;
}

.liteon-map .item-TW {
  top: 44%;
  left: 41.7%;
}

.liteon-map .item-JP {
  top: 24.5%;
  left: 39.5%;
}

.liteon-map .item-US {
  top: 22.8%;
  left: 68.5%;
}

.liteon-map .item-MX {
  top: 46%;
  left: 67.25%;
}

.liteon-map .item-IE {
  top: 32.4%;
  left: 0.7%;
}

.liteon-map .item-CH {
  top: 38.8%;
  left: 4.4%;
}

.liteon-map .item-BR {
  top: 71.3%;
  left: 84.7%;
}

.liteon-map .btn-country {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  background-image: url(../images/btn-country.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}

.liteon-map .btn-country:active {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (hover: hover) {
  .liteon-map .btn-country:hover {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.liteon-map .action {
  position: absolute;
  top: 34%;
  right: 2%;
}

.liteon-map .btn-upload {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: block;
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 15px;
  text-align: center;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.4));
}

.liteon-map .btn-upload img {
  width: 36px;
  margin: 0 auto 5px;
  display: block;
}

.liteon-map .btn-upload:active {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (hover: hover) {
  .liteon-map .btn-upload:hover {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.liteon-section .section-header {
  max-width: 868px;
  margin: 0 auto 70px;
  position: relative;
  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;
}

.liteon-section .section-header:before, .liteon-section .section-header:after {
  content: "";
  position: relative;
  width: calc(100% / 2 - 30px * 2);
  height: 2px;
  background-color: #fff;
  display: block;
}

.liteon-section .section-header .inner {
  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;
  padding: 0 30px;
  width: 100%;
}

.liteon-section .section-header .main-text {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin-right: 30px;
}

.liteon-section .section-header .form-select {
  width: 244px;
  padding: 10px 15px;
}

.liteon-section .section-content .nopic {
  font-size: 30px;
  margin: 50px 0;
  color: #FFF;
  text-align: center;
}

.liteon-section .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: -15px;
}

.liteon-section .list .item {
  width: calc(100% / 4 - 15px * 2);
  margin: 15px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

@media (min-width: 768px) {
  .liteon-section .list .item:nth-child(1) {
    -moz-transform: translateX(120%) translateY(-5%) rotate(-10deg);
    -ms-transform: translateX(120%) translateY(-5%) rotate(-10deg);
    -webkit-transform: translateX(120%) translateY(-5%) rotate(-10deg);
    transform: translateX(120%) translateY(-5%) rotate(-10deg);
    transition-delay: .5s;
  }

  .liteon-section .list .item:nth-child(2) {
    -moz-transform: translateX(55%) translateY(-5%) rotate(10deg);
    -ms-transform: translateX(55%) translateY(-5%) rotate(10deg);
    -webkit-transform: translateX(55%) translateY(-5%) rotate(10deg);
    transform: translateX(55%) translateY(-5%) rotate(10deg);
    transition-delay: .5s;
  }

  .liteon-section .list .item:nth-child(3) {
    -moz-transform: translateX(-30%) translateY(-5%) rotate(-10deg);
    -ms-transform: translateX(-30%) translateY(-5%) rotate(-10deg);
    -webkit-transform: translateX(-30%) translateY(-5%) rotate(-10deg);
    transform: translateX(-30%) translateY(-5%) rotate(-10deg);
    transition-delay: .5s;
  }

  .liteon-section .list .item:nth-child(4) {
    -moz-transform: translateX(-90%) translateY(-5%) rotate(10deg);
    -ms-transform: translateX(-90%) translateY(-5%) rotate(10deg);
    -webkit-transform: translateX(-90%) translateY(-5%) rotate(10deg);
    transform: translateX(-90%) translateY(-5%) rotate(10deg);
    transition-delay: .5s;
  }
}
.liteon-section .list.animated .item:nth-child(1) {
  -moz-transform: translateX(0%) translateY(0%) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotate(0deg);
  transform: translateX(0%) translateY(0%) rotate(0deg);
}

.liteon-section .list.animated .item:nth-child(2) {
  -moz-transform: translateX(0%) translateY(0%) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotate(0deg);
  transform: translateX(0%) translateY(0%) rotate(0deg);
}

.liteon-section .list.animated .item:nth-child(3) {
  -moz-transform: translateX(0%) translateY(0%) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotate(0deg);
  transform: translateX(0%) translateY(0%) rotate(0deg);
}

.liteon-section .list.animated .item:nth-child(4) {
  -moz-transform: translateX(0%) translateY(0%) rotate(0deg);
  -ms-transform: translateX(0%) translateY(0%) rotate(0deg);
  -webkit-transform: translateX(0%) translateY(0%) rotate(0deg);
  transform: translateX(0%) translateY(0%) rotate(0deg);
}

.liteon-section .list-control {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}

.liteon-section .list-control .btn-more {
  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: 0 auto;
  color: #fff;
}

.liteon-section .list-control .icon-more {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url(../images/icon-more-white.png);
  background-size: 24px auto;
}

@media (max-width: 1150px) {
  .liteon-map {
    width: 98.434782608vw;
  }

  .liteon-map .btn-country {
    width: 3.478260869vw;
    height: 3.478260869vw;
    font-size: 1.565217391vw;
    line-height: 3.478260869vw;
  }

  .liteon-map .btn-upload {
    width: 9.739130434vw;
    height: 9.739130434vw;
    font-size: 1.565217391vw;
    line-height: 2.086956521vw;
    padding: 1.304347826vw;
  }

  .liteon-map .btn-upload img {
    width: 3.130434782vw;
  }
}
@media (max-width: 767px) {
  .liteon-photos .bg {
    background-image: url(../images/liteon-bg_s.jpg);
  }

  .liteon-photos .container {
    padding: 0 25px;
  }

  .liteon-photos-top {
    display: block;
    padding-top: 15px;
    max-width: 325px;
    margin: 0 auto 15px;
  }

  .liteon-photos-top .col-left {
    width: 100%;
    display: block;
  }

  .liteon-photos-top .col-right {
    margin: 0 auto;
    padding-top: 20px;
  }

  .liteon-photos-top .title {
    font-size: 30px;
    line-height: 44px;
    margin-right: 15px;
    width: 120px;
  }

  .liteon-photos-top .text {
    font-size: 15px;
    width: 100%;
  }

  .liteon-photos-top .text .mobile-show {
    display: inline;
  }

  .liteon-photos-top .text br {
    display: none;
  }

  .liteon-map {
    width: 375px;
    margin-bottom: 30px;
  }

  .liteon-map .item-GB {
    top: 0%;
    left: 1.8%;
  }

  .liteon-map .item-NL {
    top: 12.6%;
    left: 10.6%;
  }

  .liteon-map .item-DE {
    top: 45.9%;
    left: 5.7%;
  }

  .liteon-map .item-TH {
    top: 65%;
    left: 18.6%;
  }

  .liteon-map .item-SG {
    top: 83.8%;
    left: 27.9%;
  }

  .liteon-map .item-VN {
    top: 68%;
    left: 35.4%;
  }

  .liteon-map .item-CN {
    top: 32%;
    left: 29%;
  }

  .liteon-map .item-HK {
    top: 54.6%;
    left: 42.7%;
  }

  .liteon-map .item-TW {
    top: 38%;
    left: 47.5%;
  }

  .liteon-map .item-JP {
    top: 19%;
    left: 36.9%;
  }

  .liteon-map .item-US {
    top: 21.8%;
    left: 65.2%;
  }

  .liteon-map .item-MX {
    top: 66.7%;
    left: 68.75%;
  }

  .liteon-map .item-IE {
    top: 65.5%;
    left: 1.5%;
  }

  .liteon-map .item-CH {
    top: 36%;
    left: 15.6%;
  }

  .liteon-map .item-BR {
    top: 83.5%;
    left: 81%;
  }

  .liteon-map .btn-country {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
  }

  .liteon-map .btn-upload {
    width: 80px;
    height: 80px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    top: -10px;
  }

  .liteon-map .btn-upload img {
    width: 24px;
  }

  .liteon-section .section-header {
    margin: 0 auto 50px;
    max-width: 335px;
  }

  .liteon-section .section-header:before, .liteon-section .section-header:after {
    display: none;
  }

  .liteon-section .section-header .inner {
    padding: 0;
  }

  .liteon-section .section-header .main-text {
    font-size: 30px;
    margin-right: 20px;
    width: 60px;
  }

  .liteon-section .section-header .form-select {
    width: calc(100% - 60px - 20px);
    padding: 10px 16px;
  }

  .liteon-section .list {
    margin: -8px -4px;
  }

  .liteon-section .list .item {
    width: calc(100% / 2 - 4px * 2);
    margin: 8px 4px;
  }

  .liteon-section .list .item:nth-child(1) {
    -moz-transform: translateX(15%) translateY(-10%) rotate(-10deg);
    -ms-transform: translateX(15%) translateY(-10%) rotate(-10deg);
    -webkit-transform: translateX(15%) translateY(-10%) rotate(-10deg);
    transform: translateX(15%) translateY(-10%) rotate(-10deg);
    transition-delay: .5s;
  }

  .liteon-section .list .item:nth-child(2) {
    -moz-transform: translateX(-15%) translateY(-5%) rotate(10deg);
    -ms-transform: translateX(-15%) translateY(-5%) rotate(10deg);
    -webkit-transform: translateX(-15%) translateY(-5%) rotate(10deg);
    transform: translateX(-15%) translateY(-5%) rotate(10deg);
    transition-delay: .5s;
  }

  .liteon-section .list-control {
    padding-bottom: 25px;
  }
}
.search-results {
  position: relative;
}

.search-results .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.search-results .container {
  max-width: 1150px;
  padding: 0 20px;
}

.search-results .container .nodata {
  font-size: 30px;
  color: #FFF;
  margin: 50px 0;
}

.search-results .title {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  color: #fff;
  margin: 50px 0;
}

.search-results .l-section + .l-section {
  margin-top: 30px;
}

.search-results .l-section__header {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
  margin: 50px 0;
  position: relative;
  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;
}

.search-results .l-section__header h3 {
  margin-right: 32px;
  white-space: nowrap;
}

.search-results .l-section__header:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.search-results .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: -15px;
}

.search-results .item {
  width: calc(100% / 4 - 15px * 2);
  margin: 15px;
}

@media (max-width: 767px) {
  .search-results .bg {
    background-image: url(../images/index-bg_s.jpg);
  }

  .search-results .container {
    padding: 0 25px;
  }

  .search-results .title {
    font-size: 24px;
    line-height: 36px;
  }

  .search-results .l-section + .l-section {
    margin-top: 20px;
  }

  .search-results .l-section__header h3 {
    margin-right: 10px;
  }

  .search-results .list {
    margin: -8px -4px;
  }

  .search-results .item {
    width: calc(100% / 2 - 4px * 2);
    margin: 8px 4px;
  }
}
.personal {
  position: relative;
}

.personal .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.personal .container {
  max-width: 1150px;
  padding: 0 20px;
}

.personal .container .nodata {
  font-size: 30px;
  color: #FFF;
  margin: 50px 0;
}

.personal .title {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  color: #fff;
  margin: 50px 0;
}

.personal .l-section + .l-section {
  margin-top: 30px;
}

.personal .l-section__header {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #fff;
  margin: 50px 0;
  position: relative;
  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;
}

.personal .l-section__header h3 {
  margin-right: 32px;
  white-space: nowrap;
}

.personal .l-section__header:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.personal .controls {
  padding-top: 14px;
  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;
}

.personal .controls .btn {
  width: 68px;
  height: 35px;
  line-height: 33px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  background-color: transparent;
  border-radius: 35px;
}

.personal .controls .btn-edit:active {
  background-color: #009df9;
  border-color: #009df9;
}

@media (hover: hover) {
  .personal .controls .btn-edit:hover {
    background-color: #009df9;
    border-color: #009df9;
  }
}
.personal .controls .btn-delete:active {
  background-color: #f37272;
  border-color: #f37272;
}

@media (hover: hover) {
  .personal .controls .btn-delete:hover {
    background-color: #f37272;
    border-color: #f37272;
  }
}
.personal .controls .btn + .btn {
  margin-left: 10px;
}

.personal .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: -15px;
}

.personal .item {
  width: calc(100% / 4 - 15px * 2);
  margin: 15px;
}

@media (max-width: 767px) {
  .personal .bg {
    background-image: url(../images/index-bg_s.jpg);
  }

  .personal .container {
    padding: 0 25px;
  }

  .personal .title {
    font-size: 24px;
    line-height: 36px;
  }

  .personal .l-section + .l-section {
    margin-top: 20px;
  }

  .personal .l-section__header h3 {
    margin-right: 10px;
  }

  .personal .list {
    margin: -8px -4px;
  }

  .personal .item {
    width: calc(100% / 2 - 4px * 2);
    margin: 8px 4px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
.announcement {
  display: table;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
}

.announcement .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.announcement .now {
  background-color: rgba(5, 161, 179, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.announcement .former {
  background-color: #00acbb;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.announcement .rule {
  background-color: rgba(5, 161, 179, 0.1);
  border: 1px solid #ccc;
  padding: 10px 30px;
  height: 200px;
  overflow-y: scroll;
  margin-top: 20px;
  border-radius: 10px;
}

.announcement img {
  margin: 0 auto;
}

.announcement a {
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
}

.announcement a:hover {
  color: #FFF;
  text-decoration: underline;
}

.announcement .content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.announcement .main-text {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 20px;
  color: #FFF;
}

.announcement .sub-text {
  font-size: 16px;
  line-height: 32px;
  color: #FFF;
  text-align: left;
}

.announcement .small-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 26px;
  color: #00acbb;
}

.announcement .title {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #00acbb;
}

.announcement .intro {
  margin-top: 20px;
  font-size: 14px;
  line-height: 26px;
  color: #FFF;
  text-align: justify;
}

.announcement .intro .download {
  font-size: 16px;
  color: #00acbb;
}

.announcement .intro .download a {
  font-size: 16px;
  color: #00acbb;
}

.announcement .btn {
  color: #FFF;
  padding: 8px 15px;
  background-color: #00acbb;
  border-radius: 30px;
  font-size: 20px;
  margin-top: 20px;
  width: 150px;
}

.announcement input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}

.divider {
  width: 100%;
  margin: 30px auto;
  border: none;
  height: 1px;
  background-color: #FFF;
  position: relative;
}

.faq {
  margin: 50px 0;
}

.faq .title {
  font-size: 36px;
  margin: 0px;
}

.faq-item {
  font-size: 18px;
  margin-top: 30px;
  color: #FFF;
  background-color: #009dfa;
  border-radius: 30px;
  padding: 5px 20px;
  display: inline-block;
}

.faq-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 5px 0;
  color: #FFF;
  margin: 20px 0;
  font-size: 18px;
}

.faq-text {
  flex: 1;
  margin-right: 10px;
  text-align: justify;
}

.faq-title .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icon-more.png");
}

.faq-content {
  display: none;
  padding: 20px;
  border-top: none;
  background-color: rgba(0, 157, 250, 0.2);
  border-radius: 10px;
  color: #FFF;
  margin-top: 10px;
  line-height: 30px;
  text-align: justify;
}
.faq-content a {
  color: #009dfa;
}

.lottery {
  margin: 50px 0 0 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.lottery .title {
  font-size: 36px;
  margin: 0px;
}
.lottery ol{
  margin:0px;
  list-style:auto;
  padding-left: 0;
  list-style-position: inside;
}

.lottery li{
 margin:0px;
}

.lottery-item {
  font-size: 18px;
  margin-top: 30px;
  color: #FFF;
  background-color: #009dfa;
  border-radius: 30px;
  padding: 5px 20px;
  display: inline-block;
}
.lottery-title {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 5px 0;
  color: #FFF;
  margin: 20px 0;
  font-size: 18px;
}

.lottery-text {
  flex: 1;
  margin-right: 10px;
  text-align: justify;
}

.lottery-title .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icon-more.png");
}

.lottery span {
  color: #8ed2ff;
  padding-left:10px;
}

.lottery-content {
  font-size:16px;
  padding: 20px;
  border-top: none;
  background-color: rgba(0, 157, 250, 0.2);
  border-radius: 10px;
  color: #FFF;
  margin-top: 10px;
  line-height: 1.5em;
  text-align: justify;
}

.lottery-content a {
  color: #009dfa;
}

.lottery .table-container {
  display: grid;
}

.lottery .download {
  font-size: 16px;
  color: #00acbb;
  margin-top:20px;
}

.lottery .download a {
  font-size: 16px;
  color: #00acbb;
}

/* PC: 一列10個 */
@media (min-width: 768px) {
  .table-container {
   grid-template-columns: repeat(10, 1fr);
}
  .lottery .table-item {
 padding: 10px;
 text-align: left;
}
  .table-public {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
}

/* 手機: 一列5個 */
@media (max-width: 767px) {
.lottery-content {
padding: 5px;
	}
.table-container {
font-size: 12px;
grid-template-columns: repeat(5, 1fr);
}
.lottery .table-item {
 padding: 5px;
 text-align: left;
}
.table-public {
font-size: 12px;	
display: grid;
grid-template-columns: repeat(2, 1fr);
}
}

.traffic {
  margin: 50px 0 0 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.traffic .title {
  font-size: 36px;
  margin: 0px;
}
.traffic ol{
  margin:0px;
  list-style:auto;
  padding-left: 0;
  list-style-position: inside;
}

.traffic li{
 margin:0px;
}

.traffic-item {
  font-size: 18px;
  margin-top: 30px;
  color: #FFF;
  background-color: #009dfa;
  border-radius: 30px;
  padding: 5px 20px;
  display: inline-block;
}
.traffic-title {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 5px 0;
  color: #FFF;
  margin: 20px 0;
  font-size: 18px;
}

.traffic-text {
  flex: 1;
  margin-right: 10px;
  text-align: justify;
}

.traffic-title .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/icon-more.png");
}

.traffic span {
  color: #8ed2ff;
}

.traffic-content {
  font-size:16px;
  padding: 20px;
  border-top: none;
  background-color: rgba(0, 157, 250, 0.2);
  border-radius: 10px;
  color: #FFF;
  margin-top: 10px;
  line-height: 1.8em;
}

.traffic-content a {
  color: #009dfa;
}
.traffic-time {
  overflow-x: auto;
  margin-top:20px;
}
.traffic table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #FFF;
  border-radius: 20px;
  min-width:1000px;
}
.traffic th {
  color: #FFF;
  background-color: #009dfa;
  padding: 10px;
}
.traffic td {
  padding: 10px;
  border: 1px solid #FFF;
  background-color: transparent;
}

@media (max-width: 767px) {
  .announcement .content {
    text-align: left;
    position: relative;
  }

  .announcement .main-text {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
    color: #FFF;
  }

  .announcement .sub-text {
    font-size: 14px;
    line-height: 22px;
    color: #FFF;
  }

  .announcement .small-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 18px;
    color: #00acbb;
  }

  .announcement .btn {
    width: 100%;
    margin: 20px 0;
  }
}
.modal-content input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin: 15px 15px 20px 40px;
}

.modal-content a {
  color: #009df9;
  text-decoration: underline;
}

.modal-content p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .modal-content input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 10px;
  }

  .modal-content a {
    color: #009df9;
    text-decoration: underline;
  }

  .modal-content p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }
}
/* -------------------------------------------------------------
  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

------------------------------------------------------------- */
.daily-rewards {
  position: relative;
}
.daily-rewards .container {
  padding: 0;
  width: 1300px;
  height: 685px;
}
.daily-rewards .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/daily-rewards-bg.jpg);
  background-size: cover;
}
.daily-rewards .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.daily-rewards .billboard .number {
  position: absolute;
  top: 6.5%;
  right: 78.25%;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.daily-rewards .billboard-light img {
  -moz-animation: flash 3s infinite;
  -webkit-animation: flash 3s infinite;
  animation: flash 3s infinite;
}
.daily-rewards .grass {
  z-index: 0;
}
.daily-rewards .road {
  z-index: 1;
}
.daily-rewards .people {
  z-index: 1;
}
.daily-rewards .pin {
  z-index: 1;
}
.daily-rewards .stopSign {
  position: absolute;
  width: 46px;
  height: 85px;
  color: #6d6d6d;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  padding-top: 16px;
  background-image: url(../images/stopSign.png);
  background-size: 100% auto;
}
.daily-rewards .stopSign:before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  left: calc(50% - 69px / 2);
  width: 69px;
  height: 40px;
  background-image: url(../images/talk1.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 1000;
}
.daily-rewards .stopSign .number {
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  pointer-events: none;
}
.daily-rewards .stopSign.active {
  background-image: url(../images/stopSign-check.png);
  padding-top: 22px;
  color: #fff;
}
.daily-rewards .stopSign-26.active,
.daily-rewards .stopSign-27.active,
.daily-rewards .stopSign-28.active,
.daily-rewards .stopSign-29.active,
.daily-rewards .stopSign-30.active,
.daily-rewards .stopSign-31.active,
.daily-rewards .stopSign-32.active {
  background-image: url(../images/stopSign-check_gold.png);
}
.daily-rewards .stopSign.active_gold {
  background-image: url(../images/stopSign-check_gold.png);
  padding-top: 22px;
  color: #fff;
}
.daily-rewards .stopSign.today {
  /* background-image: url(../images/stopSign-check.png);
  padding-top: 22px;
  color: #fff; */
}
.daily-rewards .stopSign.today:before {
  opacity: 1;
  -moz-animation: floating 0.6s infinite;
  -webkit-animation: floating 0.6s infinite;
  animation: floating 0.6s infinite;
}
.daily-rewards .stopSign-1 {
  top: 73.2%;
  left: 81.5%;
}
.daily-rewards .stopSign-2 {
  top: 73.2%;
  left: 74.3%;
}
.daily-rewards .stopSign-3 {
  top: 73.3%;
  left: 67.3%;
}
.daily-rewards .stopSign-4 {
  top: 57%;
  left: 56.4%;
}
.daily-rewards .stopSign-5 {
  top: 57%;
  left: 50.25%;
}
.daily-rewards .stopSign-6 {
  top: 57%;
  left: 44%;
}
.daily-rewards .stopSign-7 {
  top: 57%;
  left: 37.9%;
}
.daily-rewards .stopSign-8 {
  top: 57%;
  left: 31.7%;
}
.daily-rewards .stopSign-9 {
  top: 57%;
  left: 25.6%;
}
.daily-rewards .stopSign-10 {
  top: 57%;
  left: 19.3%;
}
.daily-rewards .stopSign-11 {
  top: 57%;
  left: 13.2%;
}
.daily-rewards .stopSign-12 {
  top: 33.6%;
  left: 12.5%;
}
.daily-rewards .stopSign-13 {
  top: 33.6%;
  left: 19.6%;
}
.daily-rewards .stopSign-14 {
  top: 33.6%;
  left: 26.85%;
}
.daily-rewards .stopSign-15 {
  top: 33.6%;
  left: 34%;
}
.daily-rewards .stopSign-16 {
  top: 33.6%;
  left: 41.2%;
}
.daily-rewards .stopSign-17 {
  top: 33.6%;
  left: 48.4%;
}
.daily-rewards .stopSign-18 {
  top: 33.6%;
  left: 55.5%;
}
.daily-rewards .stopSign-19 {
  top: 33.6%;
  left: 62.7%;
}
.daily-rewards .stopSign-20 {
  top: 33.6%;
  left: 69.95%;
}
.daily-rewards .stopSign-21 {
  top: 33.6%;
  left: 77.05%;
}
.daily-rewards .stopSign-22 {
  top: 33.6%;
  left: 84.3%;
}
.daily-rewards .stopSign-23 {
  top: 12.3%;
  left: 83.8%;
}
.daily-rewards .stopSign-24 {
  top: 12.3%;
  left: 77.4%;
}
.daily-rewards .stopSign-25 {
  top: 12.3%;
  left: 71%;
}
.daily-rewards .stopSign-26 {
  top: 12.3%;
  left: 64.6%;
}
.daily-rewards .stopSign-27 {
  top: 12.3%;
  left: 58.2%;
}
.daily-rewards .stopSign-28 {
  top: 12.3%;
  left: 51.8%;
}
.daily-rewards .stopSign-29 {
  top: 12.3%;
  left: 45.4%;
}
.daily-rewards .stopSign-30 {
  top: 12.3%;
  left: 39%;
}
.daily-rewards .stopSign-31 {
  top: 12.3%;
  left: 32.6%;
}
.daily-rewards .stopSign-32 {
  top: 12.3%;
  left: 26.6%;
}
.daily-rewards .stopSign-32.active:before {
  background-image: url(../images/talk2.png);
}
.daily-rewards .bus {
  position: absolute;
  width: 186px;
  z-index: 2;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.daily-rewards .bus img {
  -moz-animation: floating 1s infinite;
  -webkit-animation: floating 1s infinite;
  animation: floating 1s infinite;
}
.daily-rewards .bus .bus-left {
  display: block;
}
.daily-rewards .bus .bus-right {
  display: none;
}
.daily-rewards .day1 .bus {
  top: 82%;
  right: 10%;
}
.daily-rewards .day2 .bus {
  top: 82%;
  right: 16.5%;
}
.daily-rewards .day3 .bus {
  top: 82%;
  right: 24.2%;
}
.daily-rewards .day4 .bus {
  top: 65.5%;
  right: 35%;
}
.daily-rewards .day5 .bus {
  top: 65.5%;
  right: 41%;
}
.daily-rewards .day6 .bus {
  top: 65.5%;
  right: 47%;
}
.daily-rewards .day7 .bus {
  top: 65.5%;
  right: 53%;
}
.daily-rewards .day8 .bus {
  top: 65.5%;
  right: 59%;
}
.daily-rewards .day9 .bus {
  top: 65.5%;
  right: 65.5%;
}
.daily-rewards .day10 .bus {
  top: 65.5%;
  right: 71.5%;
}
.daily-rewards .day11 .bus {
  top: 65.5%;
  right: 78.5%;
}
.daily-rewards .day12 .bus {
  top: 42%;
  right: 78.5%;
}
.daily-rewards .day12 .bus .bus-left {
  display: none;
}
.daily-rewards .day12 .bus .bus-right {
  display: block;
}
.daily-rewards .day13 .bus {
  top: 41%;
  right: 71.5%;
}
.daily-rewards .day13 .bus .bus-left {
  display: none;
}
.daily-rewards .day13 .bus .bus-right {
  display: block;
}
.daily-rewards .day14 .bus {
  top: 42%;
  right: 64.5%;
}
.daily-rewards .day14 .bus .bus-left {
  display: none;
}
.daily-rewards .day14 .bus .bus-right {
  display: block;
}
.daily-rewards .day15 .bus {
  top: 41%;
  right: 57%;
}
.daily-rewards .day15 .bus .bus-left {
  display: none;
}
.daily-rewards .day15 .bus .bus-right {
  display: block;
}
.daily-rewards .day16 .bus {
  top: 42%;
  right: 50%;
}
.daily-rewards .day16 .bus .bus-left {
  display: none;
}
.daily-rewards .day16 .bus .bus-right {
  display: block;
}
.daily-rewards .day17 .bus {
  top: 42%;
  right: 42.5%;
}
.daily-rewards .day17 .bus .bus-left {
  display: none;
}
.daily-rewards .day17 .bus .bus-right {
  display: block;
}
.daily-rewards .day18 .bus {
  top: 42%;
  right: 35.5%;
}
.daily-rewards .day18 .bus .bus-left {
  display: none;
}
.daily-rewards .day18 .bus .bus-right {
  display: block;
}
.daily-rewards .day19 .bus {
  top: 42%;
  right: 28%;
}
.daily-rewards .day19 .bus .bus-left {
  display: none;
}
.daily-rewards .day19 .bus .bus-right {
  display: block;
}
.daily-rewards .day20 .bus {
  top: 42%;
  right: 21%;
}
.daily-rewards .day20 .bus .bus-left {
  display: none;
}
.daily-rewards .day20 .bus .bus-right {
  display: block;
}
.daily-rewards .day21 .bus {
  top: 42%;
  right: 14%;
}
.daily-rewards .day21 .bus .bus-left {
  display: none;
}
.daily-rewards .day21 .bus .bus-right {
  display: block;
}
.daily-rewards .day22 .bus {
  top: 42%;
  right: 6.5%;
}
.daily-rewards .day22 .bus .bus-left {
  display: none;
}
.daily-rewards .day22 .bus .bus-right {
  display: block;
}
.daily-rewards .day23 .bus {
  top: 21%;
  right: 6.5%;
}
.daily-rewards .day23 .bus .bus-left {
  display: block;
}
.daily-rewards .day23 .bus .bus-right {
  display: none;
}
.daily-rewards .day24 .bus {
  top: 21%;
  right: 13.5%;
}
.daily-rewards .day25 .bus {
  top: 21%;
  right: 20.5%;
}
.daily-rewards .day26 .bus {
  top: 21%;
  right: 26.5%;
}
.daily-rewards .day27 .bus {
  top: 21%;
  right: 33%;
}
.daily-rewards .day28 .bus {
  top: 21%;
  right: 39.5%;
}
.daily-rewards .day29 .bus {
  top: 21%;
  right: 45.5%;
}
.daily-rewards .day30 .bus {
  top: 21%;
  right: 52.5%;
}
.daily-rewards .day31 .bus {
  top: 21%;
  right: 58%;
}
.daily-rewards .day32 .bus {
  top: 21%;
  right: 65%;
}
.daily-rewards .action {
  position: absolute;
  top: 51.5%;
  left: 85.5%;
  width: 124px;
  z-index: 10;
}
.daily-rewards .btn {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: block;
  background-image: url(../images/daily-rewards-btn.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 15px;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.4));
  text-align: center;
}
.daily-rewards .btn .top-text {
  width: 65px;
  border-bottom: 1px solid #f3dee3;
  font-weight: 700;
  padding-bottom: 8px;
  margin: 0 auto 8px;
}
.daily-rewards .l-content {
  position: absolute;
  top: 77.5%;
  left: 8%;
  width: 700px;
  color: #fff;
}
.daily-rewards .l-content .top-text {
  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;
}
.daily-rewards .l-content .top-text .title {
  font-size: 36px;
  line-height: 44px;
  margin-right: 25px;
}
.daily-rewards .l-content .top-text .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.daily-rewards .l-content .top-text .text a {
    color: #FFF;
    text-decoration: underline;
}
.daily-rewards .l-content .count {
  margin-top: 5px;
  padding-left: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.daily-rewards .l-content .count .bar {
  border-radius: 12px;
  border: 2px solid #fff;
  width: 140px;
  height: 12px;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25) inset;
  position: relative;
  margin: 0 15px;
}
.daily-rewards .l-content .count .bar-line {
  background-color: #00adbb;
  display: block;
  height: 8px;
  position: relative;
  border-radius: 12px;
}
.daily-rewards .l-content .count .bar-text {
  position: absolute;
  top: calc(100% + 10px);
  left: 100%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.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, -2px);
  }
  to {
    transform: translate(0, 0);
  }
}
.daily-rewards-modal .modal-dialog {
  max-width: 476px;
}
.daily-rewards-modal .modal-content {
  padding: 32px 25px 16px;
}
.daily-rewards-modal .title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #009df9;
}
.daily-rewards-modal .image {
  position: relative;
  margin-bottom: 15px;
}
.daily-rewards-modal .image img {
  width: 100%;
}
.daily-rewards-modal .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #009df9;
}
.daily-rewards-modal .bottom {
  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;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #666;
  border-top: 2px solid #b1b1b1;
  padding-top: 16px;
  margin-top: 18px;
}
.daily-rewards-modal .bottom .text {
  width: calc(100% - 72px);
  padding-right: 20px;
}
.daily-rewards-modal .bottom .action {
  width: 72px;
}
.daily-rewards-modal .bottom .text-lg {
  font-size: 24px;
  color: #009df9;
}
.daily-rewards-modal .btn-primary {
  color: #fff;
  text-decoration: none;
}

.liteon-moments {
  overflow: visible;
}
.liteon-moments .bg {
  background-image: url(../images/gold-bg.jpg);
}
.liteon-moments .bg-airBalloon {
  position: absolute;
  top: -65px;
  background-image: url(../images/bg-airBalloon.png);
  background-size: 1300px auto;
  background-position: center top;
}

.sticky-upload {
  position: fixed;
  top: 32%;
  right: 100px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.sticky-upload .btn-upload {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: block;
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 15px;
  text-align: center;
  filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.4));
}
.sticky-upload .btn-upload img {
  width: 36px;
  margin: 0 auto 5px;
  display: block;
}
.sticky-upload .btn-upload:active {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media (hover: hover) {
  .sticky-upload .btn-upload:hover {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

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

.upload-modal .radio-group .form-check {
  margin: 10px;
}

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

.form-radio .form-check-input:disabled + .form-check-label {
  color: #c2c2c2;
}
.form-radio .form-check-input:disabled + .form-check-label:before {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
}
.form-radio .form-check-label {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
  display: block;
  color: #000;
}
.form-radio .form-check-label:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 0;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 0;
  top: 3px;
  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: 14px;
  height: 14px;
  border: 0;
  background-color: #009df9;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 5px;
  top: 8px;
  border: 0;
  color: transparent;
  display: none;
}
.form-radio .form-check-label.checked:after {
  display: block;
}

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

@media (max-width: 1300px) and (min-width: 768px) {
  .daily-rewards .container {
    width: 100%;
    height: inherit;
  }
  .daily-rewards .billboard .number {
    font-size: 1.846153846vw;
  }
  .daily-rewards .stopSign {
    width: 3.538461538vw;
    height: 6.538461538vw;
    font-size: 0.923076923vw;
    padding-top: 1.23076923vw;
  }
  .daily-rewards .stopSign:before {
    bottom: calc(100% + 0.615384615vw);
    left: calc(50% - 5.307692307vw / 2);
    width: 5.307692307vw;
    height: 3.076923076vw;
    z-index: 1000;
  }
  .daily-rewards .stopSign.active {
    padding-top: 1.692307692vw;
  }
  .daily-rewards .stopSign.active_gold {
    padding-top: 1.692307692vw;
  }
  .daily-rewards .stopSign.today {
    /* padding-top: 1.692307692vw; */
  }
  .daily-rewards .bus {
    width: 14.307692307vw;
  }
  .daily-rewards .action {
    width: 9.538461538vw;
  }
  .daily-rewards .btn {
    width: 9.538461538vw;
    height: 9.538461538vw;
    font-size: 1.384615384vw;
    line-height: 1.3333;
    padding: 1.153846153vw;
  }
  .daily-rewards .btn .top-text {
    width: 5vw;
    padding-bottom: 0.615384615vw;
    margin: 0 auto 0.615384615vw;
  }
  .daily-rewards .l-content {
    width: 52.307692307vw;
  }
  .daily-rewards .l-content .top-text .title {
    font-size: 2.769230769vw;
    line-height: 1.2222;
    margin-right: 1.923076923vw;
  }
  .daily-rewards .l-content .top-text .text {
    font-size: 1.23076923vw;
    line-height: 1.5;
  }
  .daily-rewards .l-content .count {
    margin-top: 0.384615384vw;
    padding-left: 13.076923076vw;
    font-size: 1.23076923vw;
    line-height: 1.5;
  }
  .daily-rewards .l-content .count .bar {
    width: 10.769230769vw;
    height: 0.923076923vw;
    margin: 0 1.153846153vw;
  }
  .daily-rewards .l-content .count .bar-line {
    height: 0.615384615vw;
  }
  .daily-rewards .l-content .count .bar-text {
    font-size: 1.076923076vw;
    line-height: 1.428;
  }
}
@media (max-width: 767px) {
  .daily-rewards .container {
    padding: 0;
    width: 375px;
    height: 1015px;
  }
  .daily-rewards .bg {
    background-image: url(../images/daily-rewards-bg_s.jpg);
  }
  .daily-rewards .billboard .number {
    top: 17.75%;
    right: 56.25%;
    font-size: 18px;
  }
  .daily-rewards .people {
    display: none;
  }
  .daily-rewards .people-group {
    display: block;
  }
  .daily-rewards .stopSign {
    width: 40px;
    height: 58px;
    font-size: 12px;
    padding-top: 14px;
    background-image: url(../images/stopSign_s.png);
  }
  .daily-rewards .stopSign:before {
    bottom: calc(100% + 3px);
    left: calc(50% - 52px / 2);
    width: 52px;
    height: 30px;
    background-image: url(../images/talk1_s.png);
    z-index: 1000;
  }
  .daily-rewards .stopSign.active {
    background-image: url(../images/stopSign-check_s.png);
    padding-top: 19px;
  }
  .daily-rewards .stopSign.active_gold {
    background-image: url(../images/stopSign-check_gold_s.png);
    padding-top: 19px;
  }
.daily-rewards .stopSign-26.active,
.daily-rewards .stopSign-27.active,
.daily-rewards .stopSign-28.active,
.daily-rewards .stopSign-29.active,
.daily-rewards .stopSign-30.active,
.daily-rewards .stopSign-31.active,
.daily-rewards .stopSign-32.active {
  background-image: url(../images/stopSign-check_gold_s.png);
}
  .daily-rewards .stopSign.active .date {
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .daily-rewards .stopSign.today {
    /* background-image: url(../images/stopSign-check_s.png); */
    /* padding-top: 19px; */
  }
  .daily-rewards .stopSign-1 {
    top: 75.6%;
    left: 71.4%;
  }
  .daily-rewards .stopSign-2 {
    top: 75.6%;
    left: 56.4%;
  }
  .daily-rewards .stopSign-3 {
    top: 69.8%;
    left: 39.3%;
  }
  .daily-rewards .stopSign-4 {
    top: 69.8%;
    left: 21.3%;
  }
  .daily-rewards .stopSign-5 {
    top: 60.65%;
    left: 6.7%;
  }
  .daily-rewards .stopSign-6 {
    top: 60.65%;
    left: 23.7%;
  }
  .daily-rewards .stopSign-7 {
    top: 60.65%;
    left: 41%;
  }
  .daily-rewards .stopSign-8 {
    top: 60.65%;
    left: 58.2%;
  }
  .daily-rewards .stopSign-9 {
    top: 60.65%;
    left: 75.2%;
  }
  .daily-rewards .stopSign-10 {
    top: 52.5%;
    left: 82.5%;
  }
  .daily-rewards .stopSign-11 {
    top: 52.5%;
    left: 65.5%;
  }
  .daily-rewards .stopSign-12 {
    top: 52.5%;
    left: 48.5%;
  }
  .daily-rewards .stopSign-13 {
    top: 52.5%;
    left: 31.5%;
  }
  .daily-rewards .stopSign-14 {
    top: 52.5%;
    left: 14.5%;
  }
  .daily-rewards .stopSign-15 {
    top: 44.2%;
    left: 6.8%;
  }
  .daily-rewards .stopSign-16 {
    top: 44.2%;
    left: 24%;
  }
  .daily-rewards .stopSign-17 {
    top: 44.2%;
    left: 41%;
  }
  .daily-rewards .stopSign-18 {
    top: 44.2%;
    left: 58%;
  }
  .daily-rewards .stopSign-19 {
    top: 44.2%;
    left: 74.8%;
  }
  .daily-rewards .stopSign-20 {
    top: 36.1%;
    left: 82.8%;
  }
  .daily-rewards .stopSign-21 {
    top: 36.1%;
    left: 65.5%;
  }
  .daily-rewards .stopSign-22 {
    top: 36.1%;
    left: 48.5%;
  }
  .daily-rewards .stopSign-23 {
    top: 36.1%;
    left: 31.5%;
  }
  .daily-rewards .stopSign-24 {
    top: 36.1%;
    left: 14.5%;
  }
  .daily-rewards .stopSign-25 {
    top: 28.1%;
    left: 6.8%;
  }
  .daily-rewards .stopSign-26 {
    top: 28.1%;
    left: 23.8%;
  }
  .daily-rewards .stopSign-27 {
    top: 28.1%;
    left: 40.8%;
  }
  .daily-rewards .stopSign-28 {
    top: 28.1%;
    left: 57.8%;
  }
  .daily-rewards .stopSign-29 {
    top: 28.1%;
    left: 75%;
  }
  .daily-rewards .stopSign-30 {
    top: 19.9%;
    left: 82.4%;
  }
  .daily-rewards .stopSign-31 {
    top: 19.9%;
    left: 65.4%;
  }
  .daily-rewards .stopSign-32 {
    top: 19.9%;
    left: 48.3%;
  }
  .daily-rewards .stopSign-32.active:before {
    background-image: url(../images/talk2_s.png);
  }
  .daily-rewards .bus {
    width: 91px;
  }
  .daily-rewards .day1 .bus {
    top: 80.5%;
    right: 11%;
  }
  .daily-rewards .day2 .bus {
    top: 80.5%;
    right: 26.5%;
  }
  .daily-rewards .day3 .bus {
    top: 74.2%;
    right: 43.5%;
  }
  .daily-rewards .day4 .bus {
    top: 74.2%;
    right: 61.5%;
  }
  .daily-rewards .day5 .bus {
    top: 65.5%;
    right: 75.5%;
  }
  .daily-rewards .day5 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day5 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day6 .bus {
    top: 65.5%;
    right: 59.5%;
  }
  .daily-rewards .day6 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day6 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day7 .bus {
    top: 65.5%;
    right: 42.5%;
  }
  .daily-rewards .day7 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day7 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day8 .bus {
    top: 65.5%;
    right: 25.5%;
  }
  .daily-rewards .day8 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day8 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day9 .bus {
    top: 65.5%;
    right: 8.5%;
  }
  .daily-rewards .day9 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day9 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day10 .bus {
    top: 57.5%;
    right: 0.5%;
  }
  .daily-rewards .day10 .bus .bus-left {
    display: block;
  }
  .daily-rewards .day10 .bus .bus-right {
    display: none;
  }
  .daily-rewards .day11 .bus {
    top: 57.5%;
    right: 17.5%;
  }
  .daily-rewards .day12 .bus {
    top: 57.5%;
    right: 34.5%;
  }
  .daily-rewards .day13 .bus {
    top: 57.5%;
    right: 51.5%;
  }
  .daily-rewards .day14 .bus {
    top: 57.5%;
    right: 68.5%;
  }
  .daily-rewards .day15 .bus {
    top: 49%;
    right: 75.5%;
  }
  .daily-rewards .day15 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day15 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day16 .bus {
    top: 49%;
    right: 58.5%;
  }
  .daily-rewards .day16 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day16 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day17 .bus {
    top: 49%;
    right: 42.5%;
  }
  .daily-rewards .day17 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day17 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day18 .bus {
    top: 49%;
    right: 24.5%;
  }
  .daily-rewards .day18 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day18 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day19 .bus {
    top: 49%;
    right: 7.5%;
  }
  .daily-rewards .day19 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day19 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day20 .bus {
    top: 41%;
    right: 0.5%;
  }
  .daily-rewards .day20 .bus .bus-left {
    display: block;
  }
  .daily-rewards .day20 .bus .bus-right {
    display: none;
  }
  .daily-rewards .day21 .bus {
    top: 41%;
    right: 17.5%;
  }
  .daily-rewards .day22 .bus {
    top: 41%;
    right: 34.5%;
  }
  .daily-rewards .day23 .bus {
    top: 41%;
    right: 51.5%;
  }
  .daily-rewards .day24 .bus {
    top: 41%;
    right: 69.5%;
  }
  .daily-rewards .day25 .bus {
    top: 32.8%;
    right: 75.5%;
  }
  .daily-rewards .day25 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day25 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day26 .bus {
    top: 32.8%;
    right: 59.5%;
  }
  .daily-rewards .day26 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day26 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day27 .bus {
    top: 32.8%;
    right: 42.5%;
  }
  .daily-rewards .day27 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day27 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day28 .bus {
    top: 32.8%;
    right: 25.5%;
  }
  .daily-rewards .day28 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day28 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day29 .bus {
    top: 32.8%;
    right: 8.5%;
  }
  .daily-rewards .day29 .bus .bus-left {
    display: none;
  }
  .daily-rewards .day29 .bus .bus-right {
    display: block;
  }
  .daily-rewards .day30 .bus {
    top: 24.5%;
    right: 0%;
  }
  .daily-rewards .day30 .bus .bus-left {
    display: block;
  }
  .daily-rewards .day30 .bus .bus-right {
    display: none;
  }
  .daily-rewards .day31 .bus {
    top: 24.5%;
    right: 18%;
  }
  .daily-rewards .day32 .bus {
    top: 24.5%;
    right: 35%;
  }
  .daily-rewards .action {
    position: fixed;
    top: 95px;
    left: calc(50% + 75px);
    width: 95px;
  }
  .daily-rewards .btn {
    width: 95px;
    height: 95px;
    background-image: url(../images/daily-rewards-btn_s.png);
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
  }
  .daily-rewards .btn .top-text {
    width: 55px;
    padding-bottom: 5px;
    margin: 0 auto 5px;
  }
  .daily-rewards .l-content {
    position: static;
    top: 0;
    left: 0;
    width: auto;
  }
  .daily-rewards .l-content .top-text {
    position: absolute;
    top: 0px;
    left: 22px;
    display: block;
    width: 235px;
  }
  .daily-rewards .l-content .top-text .title {
    font-size: 30px;
    line-height: 40px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .daily-rewards .l-content .top-text .text {
    font-size: 15px;
    line-height: 24px;
  }
  .daily-rewards .l-content .top-text .text a {
    color: #FFF;
    text-decoration: underline;
  }
  .daily-rewards .l-content .count {
    position: absolute;
    margin-top: 0;
    padding-left: 0;
    left: 0;
    bottom: 50px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .daily-rewards .l-content .count span {
    display: inline-block;
  }
  .daily-rewards .l-content .count .bar {
    position: relative;
    margin: 0 40px 0 15px;
  }
  .daily-rewards .l-content .count .bar + span {
    margin-top: 10px;
    display: block;
  }
  .daily-rewards .l-content .count .bar-line {
    background-color: #00adbb;
    display: block;
    height: 8px;
    position: static;
    border-radius: 12px
  }
  .daily-rewards .l-content .count .bar-text {
    top: calc(50% - 10px);
    left: calc(100% + 10px);
    transform: none;
  }

  .daily-rewards-modal .modal-dialog {
    max-width: 326px;
  }
  .daily-rewards-modal .modal-content {
    padding: 35px 15px 34px;
  }
  .daily-rewards-modal .title {
    margin-bottom: 18px;
  }
  .daily-rewards-modal .image {
    margin-bottom: 10px;
  }
  .daily-rewards-modal .bottom {
    display: block;
    padding-top: 15px;
  }
  .daily-rewards-modal .bottom .text {
    width: 100%;
    padding-right: 0;
  }
  .daily-rewards-modal .bottom .action {
    width: 100%;
    margin-top: 18px;
  }
  .daily-rewards-modal .btn-primary {
    margin: 0 auto;
    max-width: 77px;
    display: block;
  }

  .liteon-moments .bg-airBalloon {
    top: -65px;
    background-image: url(../images/bg-airBalloon_s.png);
    background-size: 1000px auto;
  }
  .liteon-moments .liteon-photos-top {
    padding-top: 0;
    margin-bottom: 50px;
  }
  .liteon-moments .liteon-photos-top .title {
    font-size: 30px;
    line-height: 44px;
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .liteon-moments .liteon-photos-top .text br {
    display: inline;
  }
  .liteon-moments .liteon-photos-top .col-right {
    display: none;
  }

  .sticky-upload {
    top: 130px;
    right: 15px;
  }
  .sticky-upload .btn-upload {
    width: 95px;
    height: 92px;
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
  }
  .sticky-upload .btn-upload img {
    width: 32px;
    margin: 0 auto;
  }

  .upload-modal .agreeCheckbox {
    margin-top: 20px;
  }

  .upload-modal .radio-group {
    margin: -6px;
  }

  .upload-modal .radio-group .form-check {
    margin: 6px;
  }

  .form-radio .form-check-label {
    padding-left: 28px;
    font-size: 15px;
    line-height: 24px;
  }
  .form-radio .form-check-label:before {
    width: 21px;
    height: 21px;
    top: 2px;
  }
  .form-radio .form-check-label:after {
    width: 13px;
    height: 13px;
    left: 4px;
    top: 6px;
  }
}

.footer-announcement {
    background-color: #000;
    padding: 10px;
    font-size: 16px;
    color: #05acbc;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    white-space: nowrap;
	z-index: 100;
}
.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
