@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

------------------------------------------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 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(100%, 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, 100px, 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;
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  border-radius: 0;
  position: relative;
}
.icon-close {
  background-image: url(../images/icon-close.svg);
}
.icon-share {
  background-image: url(../images/icon-share.svg);
}
.icon-login {
  background-image: url(../images/icon-login.svg);
}
.icon-help {
  background-image: url(../images/icon-help.svg);
}
.icon-facebook {
  background-image: url(../images/icon-facebook.svg);
  width: 25px;
  height: 25px;
}
.icon-instagram {
  background-image: url(../images/icon-instagram.svg);
}
.icon-line {
  background-image: url(../images/icon-line.svg);
}
.icon-google {
  background-image: url(../images/icon-google.svg);
  width: 25px;
  height: 25px;
}
.icon-apple {
  background-image: url(../images/icon-apple.svg);
  width: 25px;
  height: 25px;
}
.icon-mail {
  background-image: url(../images/icon-mail.svg);
}
.icon-lock {
  background-image: url(../images/icon-lock.svg);
}
.icon-user {
  background-image: url(../images/icon-user.svg);
}
.icon-phone {
  background-image: url(../images/icon-phone.svg);
}
.icon-notice {
  background-image: url(../images/icon-notice.svg);
}
.icon-coin {
  background-image: url(../images/icon-circleCoin.svg);
  margin-right: 5px;
}
.icon-alert {
  background-image: url(../images/icon-alert.svg);
}
.icon-dropdown {
  background-image: url(../images/icon-dropdown.svg);
}
.icon-more {
  background-image: url(../images/icon-more.svg);
}
.icon-plus {
  background-image: url(../images/icon-plus.svg);
}
.icon-tick {
  background-image: url(../images/icon-tick.svg);
}
.icon-like {
  background-image: url(../images/icon-like.svg);
}
.icon-error {
  background-image: url(../images/icon-error.svg);
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}
.icon-transfer {
  background-image: url(../images/icon-transfer.svg);
  width: 100px;
  height: 14px;
  background-size: 75px 14px;
  top: -2px;
}
.icon-arrow {
  background-image: url(../images/icon-arrow_right.svg);
}
.icon-arrowLeft {
  background-image: url(../images/icon-arrow_left.svg);
}
.icon-arrowDown {
  background-image: url(../images/icon-arrowDown.svg);
}
.icon-link {
  background-image: url(../images/icon-link.svg);
}
.icon-calendar {
  background-image: url(../images/icon-calendar.svg);
}
.icon-calculator {
  background-image: url(../images/icon-calculator.svg);
}
.icon-spuerPonit {
  background-image: url(../images/icon-spuerPonit.svg);
}
.icon-menu-calculator {
  background-image: url(../images/icon-calculator-blue.svg);
}
.icon-menu-target {
  background-image: url(../images/icon-target-blue.svg);
}
.icon-menu-about {
  background-image: url(../images/icon-about-blue.svg);
}
.icon-gift {
  background-image: url(../images/icon-gift.svg);
}
.icon-timeout {
  background-image: url(../images/icon-timeout.svg);
}
.icon-reload {
  background-image: url(../images/icon-reload.svg);
}
.icon-delete {
  background-image: url(../images/icon-delete.svg);
}
.icon-free {
  background-image: url(../images/icon-free.svg);
}

.btn-row {
  text-align: center;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  padding: 0;
  border: 0;
  -webkit-transition: background color 0.5s ease;
  -khtml-transition: background color 0.5s ease;
  -moz-transition: background color 0.5s ease;
  -ms-transition: background color 0.5s ease;
  -o-transition: background color 0.5s ease;
  transition: background color 0.5s ease;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  font-weight: 700;
  margin: 0;
  font-size: 18px;
  letter-spacing: .01em;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.btn:disabled {
  background-color: #e0e0e0 !important;
  color: #c2c2c2 !important;
  pointer-events: none;
  opacity: 1;
}

.btn-primary {
  color: #fff;
  background-color: #1db2e5;
}
.btn-primary:hover, .btn-primary:active {
  color: #fff;
  background-color: #78d1f0;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #18a1d1;
}

.btn-secondary {
  color: #fff;
  background-color: #27d086;
}
.btn-secondary:hover, .btn-secondary:active {
  color: #fff;
  background-color: #37da92;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #23bb78;
}

.btn-light {
  color: #1db2e5;
  background-color: #eaeff7;
}
.btn-light:hover, .btn-light:active {
  color: #1db2e5;
  background-color: #d8e1f0;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active {
  color: #1db2e5;
  background-color: #d8e1f0;
}

.btn-dark {
  color: #fff;
  background-color: #9c9c9c;
}
.btn-dark:hover, .btn-dark:active {
  color: #fff;
  background-color: #b6b6b6;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #b6b6b6;
}

.btn-danger {
  color: #fff;
  background-color: #ff6b6b;
}
.btn-danger:hover, .btn-danger:active {
  color: #fff;
  background-color: #ff9e9e;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ff9e9e;
}

/**
 * Swiper 5.3.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 10, 2020
 */
@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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * 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-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.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: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.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-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.has-float-label {
  display: block;
  position: relative;
}

.has-float-label label, .has-float-label > span {
  position: absolute;
  left: 0;
  top: 10px;
  cursor: text;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 700;
  opacity: 1;
  margin-bottom: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: #fff;
  width: calc(100% - 40px);
}

.has-float-label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.has-float-label textarea {
  width: 100%;
}

.has-float-label input, .has-float-label select, .has-float-label textarea {
  padding-top: 0;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.has-float-label input::-webkit-input-placeholder, .has-float-label select::-webkit-input-placeholder, .has-float-label textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.has-float-label input::-moz-placeholder, .has-float-label select::-moz-placeholder, .has-float-label textarea::-moz-placeholder {
  opacity: 1;
  transition: all .2s;
}

.has-float-label input:-ms-input-placeholder, .has-float-label select:-ms-input-placeholder, .has-float-label textarea:-ms-input-placeholder {
  opacity: 1;
  transition: all .2s;
}

.has-float-label input::placeholder, .has-float-label select::placeholder, .has-float-label textarea::placeholder {
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.has-float-label input:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-moz-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus)::placeholder, .has-float-label select:placeholder-shown:not(:focus)::placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus) + *, .has-float-label select:placeholder-shown:not(:focus) + *, .has-float-label textarea:placeholder-shown:not(:focus) + * {
  font-size: 14px;
  color: #595757;
  top: 5px;
  background-color: transparent;
  width: auto;
}

.has-float-label input:focus, .has-float-label select:focus, .has-float-label textarea:focus {
  outline: none;
  border-bottom: 2px solid #1db2e5;
}

.has-float-label select {
  padding-right: 1em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.5em bottom 0.25em;
  background-size: 8px 10px;
}

.has-float-label .form-control:focus + label, .has-float-label .form-control:not(:placeholder-shown) + label {
  top: -20px;
  color: #9c9c9c;
}

html {
  min-width: 100%;
  scroll-behavior: smooth;
}

body {
  font: 1em/1.5 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Helvetica, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  color: #5d5d5d;
  background-color: #f4f7fc;
  image-rendering: -webkit-optimize-contrast;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
}
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;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

p {
  line-break: anywhere;
}
p:last-child {
  margin-bottom: 0;
}

.inview {
  opacity: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .scroll--hidden {
    overflow: hidden;
  }
}
.sp-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.6);
  display: block;
}
.sp-loading__box {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.sp-loading__box img {
  display: block;
  margin: 0 auto 15px;
  max-width: 74px;
}

.sp-point {
  color: #1db2e5;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80px;
  z-index: 99;
}
.site-header .desktop-hidden {
  display: none;
}
.site-header .menu-trigger {
  border: 0;
  background: none;
  display: none;
  line-height: 40px;
  padding: 0;
}
.site-header__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 247px;
  height: 40px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/logo.png);
  font-size: 0;
  z-index: 1;
}
.site-header__menu {
  position: absolute;
  top: 21px;
  right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__menu a {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
}
.site-header__menu a:hover {
  opacity: .8;
}
.site-header__menu .btn-login {
  color: #fff;
  background-color: #27d086;
  width: 120px;
  border-radius: 5px;
  padding: 0;
  height: 40px;
  font-weight: 700;
}
.site-header__menu .btn-login:hover {
  text-decoration: none;
  background-color: #37da92;
  opacity: 1;
}
.site-header__menu .btn-primary {
  color: #fff;
  width: 120px;
  border-radius: 5px;
  padding: 0;
  height: 40px;
}
.site-header__menu .btn-primary:hover {
  text-decoration: none;
  opacity: 1;
}
.site-header__menu li {
  padding: 0 10px;
  position: relative;
}
.site-header .icon {
  margin-right: 5px;
  width: 30px;
  height: 30px;
}
.site-header.sticky, .site-header.has-h {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.site-header.sticky a, .site-header.has-h a {
  color: #9c9c9c;
}
.site-header.sticky .btn-login, .site-header.has-h .btn-login {
  color: #fff;
}
.site-header.sticky .btn-primary, .site-header.has-h .btn-primary {
  color: #fff;
}
.site-header.sticky .counter, .site-header.has-h .counter {
  display: inline-block;
  position: relative;
  height: 30px;
}
.site-header.sticky .counter-number, .site-header.has-h .counter-number {
  position: absolute;
  top: 4px;
  right: 2px;
  background: #f86128;
  border-radius: 16px;
  min-width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  color: #fff;
  font-size: 12px;
  padding: 0 2px;
}
.site-header.sticky .notice-dropdown a, .site-header.has-h .notice-dropdown a {
  color: #1db2e5;
}
.site-header.sticky .notice-dropdown .btn, .site-header.has-h .notice-dropdown .btn {
  color: #fff;
}
.site-header .collapse:not(.show) {
  display: block;
}
.site-header .multi-collapse {
  margin: 0 -10px;
}
.site-header .multi-collapse ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .multi-collapse li {
  padding: 0 10px;
}
.site-header .multi-collapse a {
  display: block;
  text-align: center;
}
.site-header .multi-collapse:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3px 5px 3px;
  border-color: transparent transparent #27d087 transparent;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -3px;
  opacity: 0;
  display: block;
}
.site-header .dropdown-menu {
  min-width: 340px;
  overflow: auto;
}
.site-header .notice-dropdown {
  padding: 0;
  color: #595757;
  font-size: 16px;
  line-height: 30px;
}
.site-header .notice-dropdown a {
  color: #1db2e5;
  font-size: 16px;
  line-height: 30px;
  text-decoration: underline;
}
.site-header .notice-dropdown .counter {
  background-color: #ff836b;
  height: 24px;
  line-height: 24px;
  width: auto;
  min-width: 24px;
  border-radius: 24px;
  color: #fff;
  font-size: 18px;
  margin-right: 5px;
  text-align: center;
  padding: 0 .25em;
}
.site-header .notice-dropdown .btn {
  color: #fff;
  text-decoration: none;
  width: 89px;
  margin-right: 10px;
  line-height: 31px;
  height: 31px;
  font-size: 14px;
}
.site-header .notice-dropdown .btn:hover {
  opacity: 1;
}
.site-header .notice-dropdown__header {
  position: relative;
  padding: 15px 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-header .notice-dropdown__header h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-header .notice-dropdown__content {
  padding: 0 20px;
  max-height: 305px;
  overflow-y: auto;
  overflow-x: hidden;
}
.site-header .notice-dropdown__row {
  position: relative;
  padding: 15px 0;
  padding-right: 20px;
  border-bottom: 1px solid #eaeff7;
}
.site-header .notice-dropdown__row:last-child {
  border-bottom: 0;
}
.site-header .notice-dropdown__row .point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 28px;
  right: 0;
  background-color: #ff836b;
}
.site-header .notice-dropdown__footer {
  padding: 0 20px;
  background-color: #eaeff7;
}
.site-header .notice-dropdown__footer a {
  display: block;
  text-decoration: none;
  line-height: 42px;
}
.site-header .notice-dropdown .btn-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding-top: 10px;
}
.site-header .notice-dropdown .icon-tick {
  background-image: url(../images/icon-tick_blue.svg);
  width: 16px;
  height: 16px;
}

.header-menu-tigger {
  position: absolute;
  top: 20px;
  right: 8px;
  width: 40px;
  height: 40px;
  display: none;
  z-index: 2;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}
.header-menu-tigger:before {
  content: "";
  width: 1px;
  height: 39px;
  position: absolute;
  top: 0;
  left: -6px;
  background-color: #b6b6b6;
  display: block;
}
.header-menu-tigger span {
  width: 22px;
  height: 2px;
  position: relative;
  background-color: #53b4d6;
  display: block;
  border-radius: 2px;
  margin: 18px auto;
  -webkit-transition: transform 0s 0.3s;
  -khtml-transition: transform 0s 0.3s;
  -moz-transition: transform 0s 0.3s;
  -ms-transition: transform 0s 0.3s;
  -o-transition: transform 0s 0.3s;
  transition: transform 0s 0.3s;
}
.header-menu-tigger span:before, .header-menu-tigger span:after {
  content: "";
  width: 22px;
  height: 2px;
  position: absolute;
  background-color: #53b4d6;
  display: block;
  border-radius: 2px;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.header-menu-tigger span:before {
  top: -6px;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.header-menu-tigger span:after {
  bottom: -6px;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.header-menu-tigger.active span {
  background: none;
}
.header-menu-tigger.active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-menu-tigger.active span:after {
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-menu-tigger.active span:before, .header-menu-tigger.active span:after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.header-menu-wrap {
  position: absolute;
  top: 21px;
  right: 405px;
}
.header-menu-wrap.is-view {
  display: block;
}
.header-menu-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-menu-wrap .header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: 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;
}
.header-menu-wrap .header-menu li {
  padding: 0 10px;
}
.header-menu-wrap .header-menu a {
  color: #555;
  line-height: 40px;
  display: block;
}
.header-menu-wrap .header-menu a:hover, .header-menu-wrap .header-menu a:active {
  opacity: .8;
}
.header-menu-wrap li {
  position: relative;
}
.header-menu-wrap .sub-menu-tigger {
  display: none;
}
.is-mobile .header-menu-wrap .sub-menu-tigger {
  display: block;
}
.header-menu-wrap .has-sub__tigger {
  position: relative;
  cursor: pointer;
}
.header-menu-wrap .has-sub__tigger.active > a {
  color: #555;
}
.header-menu-wrap .has-sub__tigger .sub-menu-tigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.header-menu-wrap .sub-menu-wrap {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  width: 620px;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 10px;
  animation-duration: .3s;
  animation-fill-mode: both;
  display: none;
}
.header-menu-wrap .is-view .sub-menu-wrap {
  display: block;
  animation-name: fadeIn;
}
.header-menu-wrap .sub-menu {
  margin-top: 25px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 27px rgba(0, 0, 0, 0.2);
  padding: 50px 0;
  padding-left: 262px;
  background-image: url(../images/header-menu-wrap.png);
  background-repeat: no-repeat;
  background-position: 25px bottom;
  background-size: 210px auto;
  min-height: 270px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.header-menu-wrap .sub-menu:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 30px;
  left: 260px;
  height: calc(100% - 30px * 2);
  background-color: #eaeff7;
  width: 1px;
}
.header-menu-wrap .sub-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header-menu-wrap .sub-menu a {
  line-height: 40px;
}
.header-menu-wrap .menu {
  padding: 0 30px;
  position: relative;
}
.header-menu-wrap .menu li {
  padding: 0;
}
.header-menu-wrap .icon {
  display: none;
}

@media (max-width: 1140px) {
  .header-menu-wrap {
    right: 385px;
  }
  .header-menu-wrap .menu li {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .header-menu-wrap .header-menu li {
    padding: 0 8px;
  }
  .header-menu-wrap .menu li {
    padding: 0;
  }
}
@media (min-width: 941px) {
  .header-menu-wrap .has-sub:hover .sub-menu-wrap {
    display: block;
    animation-name: fadeIn;
  }
}
@media (max-width: 1080px) {
  .header-menu-tigger {
    display: block;
  }

  .site-header__menu {
    right: 65px;
  }
  .site-header__menu.no-header-menu {
    right: 10px;
  }

  .header-menu-wrap {
    display: none;
    top: 75px;
    right: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 15px 0;
    height: 100vh;
    overflow: auto;
    position: fixed;
  }
  .header-menu-wrap .header-menu {
    display: block;
    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: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    padding-bottom: 32px;
    width: 100%;
  }
  .header-menu-wrap .header-menu li {
    padding: 0;
    border-bottom: 1px solid #eaeff7;
    width: 100%;
    position: relative;
  }
  .header-menu-wrap .header-menu .has-sub {
    order: 3;
    border-bottom: 0;
  }
  .header-menu-wrap .header-menu .is-view .has-sub__tigger > a {
    color: #1db2e5;
  }
  .header-menu-wrap .header-menu a {
    color: #595757;
    padding: 8px 0 8px 20px;
    line-height: 32px;
    font-weight: 700;
  }
  .header-menu-wrap .header-menu .icon {
    position: absolute;
    left: -2px;
    top: 16px;
    width: 16px;
    height: 16px;
  }
  .header-menu-wrap .sub-menu-tigger:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/header-submenu-tigger.svg);
    background-repeat: no-repeat;
    background-position: right center;
    width: 100%;
    height: 100%;
    display: block;
  }
  .header-menu-wrap .has-sub.is-view .sub-menu-tigger {
    transform: rotateX(180deg);
  }
  .header-menu-wrap .sub-menu-wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: none;
    -khtml-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    padding-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0;
    margin-bottom: 15px;
  }
  .header-menu-wrap .sub-menu {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: block;
  }
  .header-menu-wrap .sub-menu:before, .header-menu-wrap .sub-menu:after {
    display: none;
  }
  .header-menu-wrap .menu {
    padding: 0;
  }
  .header-menu-wrap .menu:before {
    display: none;
  }
  .header-menu-wrap .menu a {
    background-image: url(../images/header-submenu-arrow.svg);
    background-repeat: no-repeat;
    background-position: -3px 10px;
    padding-left: 20px;
    line-height: 24px;
    font-weight: 400;
  }
  .header-menu-wrap .menu li {
    border-bottom: 0;
  }
  .header-menu-wrap .icon {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .header-menu-tigger {
    display: block;
    top: 8px;
  }

  .header-menu-wrap {
    top: 56px;
    max-height: calc(100vh - 56px);
  }
}
.main-menu-wrap {
  position: relative;
  background: #0184ff;
  background: linear-gradient(270deg, #0184ff 0%, #1db2e5 100%);
  height: 60px;
  color: #fff;
  padding: 10px 0;
  line-height: 40px;
  letter-spacing: .01em;
}
.main-menu-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/main-menu-bg.png);
  display: block;
  background-position: center left;
  background-repeat: no-repeat;
}
.main-menu-wrap .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.main-menu-wrap .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.main-menu-wrap .main-menu a {
  color: #fff;
  padding: 0 20px;
  display: block;
  border-radius: 40px;
  overflow: hidden;
  white-space: nowrap;
}
.main-menu-wrap .main-menu .active {
  background-color: rgba(244, 247, 252, 0.3);
  font-weight: 700;
}
.main-menu-wrap .available-points {
  font-weight: 700;
  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;
}
.main-menu-wrap .available-points__number {
  font-size: 24px;
  font-family: arial;
}
.main-menu-wrap .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
}
.main-menu-wrap .icon-coin {
  background-image: url(../images/icon-coin_white.svg);
  background-size: auto;
}
.main-menu-wrap .main-menu-trigger {
  font-size: 15px;
  padding: 10px 18px;
  position: relative;
  display: none;
  line-height: 28px;
}
.main-menu-wrap .main-menu-trigger .c-hamburger {
  background-image: url(../images/header-submenu-tigger.svg);
  background-repeat: no-repeat;
  background-position: center center;
  right: 10px;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.main-menu-wrap .main-menu-trigger .c-hamburger span {
  display: none;
}
.main-menu-wrap .main-menu-trigger.active .c-hamburger {
  transform: rotateX(180deg);
}
.main-menu-wrap .main-menu-panel.is-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .main-menu-wrap .main-menu-panel.is-toggle {
    display: block;
  }
}
.c-hamburger {
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: transform 0.3s;
  -khtml-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  -webkit-transition: transform 0s 0.3s;
  -khtml-transition: transform 0s 0.3s;
  -moz-transition: transform 0s 0.3s;
  -ms-transition: transform 0s 0.3s;
  -o-transition: transform 0s 0.3s;
  transition: transform 0s 0.3s;
}
.c-hamburger span::before,
.c-hamburger span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  height: 2px;
  background-color: #fff;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  top: -7px;
  right: 0;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger span::after {
  bottom: -7px;
  right: 0;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.c-hamburger.active span {
  background: none;
}
.c-hamburger.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger.active span::after {
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger.active span::before, .c-hamburger.active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.site-content {
  position: relative;
  min-height: calc(100vh - 80px);
}
.site-content.plus-header {
  padding-top: 80px;
}

.site-footer {
  position: relative;
  background: #595757;
  background: linear-gradient(315deg, #595757 0%, #494949 100%);
  color: #c2c2c2;
  text-transform: uppercase;
  overflow: hidden;
}
.site-footer .container {
  padding-top: 40px;
  padding-bottom: 10px;
}
.site-footer__logo {
  position: absolute;
  bottom: 15px;
  left: 20px;
  width: 40px;
  height: 28px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/footer-logo.svg);
  background-size: contain;
  font-size: 0;
  z-index: 1;
  opacity: .7;
}
.site-footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 150px;
  padding-bottom: 10px;
}
.site-footer__block {
  width: 100%;
  max-width: 140px;
  padding-right: 20px;
  margin-bottom: 20px;
}
.site-footer a {
  color: #fefefe;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  font-size: 12px;
}
.site-footer li + li {
  margin-top: 10px;
}
.site-footer li a {
  color: #dbdbdb;
}
.site-footer__heading {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}
.site-footer .copyright {
  text-align: right;
  font-size: 12px;
  letter-spacing: .01em;
}
.site-footer .collapse:not(.show) {
  display: block;
}
.site-footer .collapse-trigger {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  background: none;
  border: 0;
  height: 40px;
  width: 48px;
  padding: 5px;
}
.site-footer .icon-collapse {
  width: 15px;
  height: 15px;
  display: block;
  margin: 0 auto;
  background-image: url(../images/icon-collapse_open.svg);
}
.site-footer button[aria-expanded="false"] .icon-collapse {
  background-image: url(../images/icon-collapse_open.svg);
}
.site-footer button[aria-expanded="true"] .icon-collapse,
.site-footer .collapsed .icon-collapse {
  background-image: url(../images/icon-collapse_close.svg);
}
.site-footer__links {
  position: absolute;
  right: 20px;
  top: 40px;
  margin: 0 -10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-footer__links a {
  display: block;
  margin: 0 10px;
}
.site-footer__links .icon {
  width: 20px;
  height: 20px;
}
.site-footer__links .icon-facebook {
  background-image: url(../images/footer-facebook.svg);
}
.site-footer__links .icon-instagram {
  background-image: url(../images/icon-instagram.svg);
}
.site-footer__links .icon-line {
  background-image: url(../images/footer-line.svg);
}

.search-input {
  position: relative;
}
.search-input input::-ms-clear {
  /* Remove IE default X */
  display: none;
}
.search-input ::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-input .form-control {
  border-color: #eaeff7;
  font-size: 16px;
  padding-left: 40px;
}
.search-input .form-control::-webkit-search-decoration {
  -webkit-appearance: none;
}
.search-input .form-control::placeholder {
  color: #c2c2c2;
}
.search-input__btn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  padding: 10px;
  pointer-events: none;
}
.search-input__btn:active .icon {
  transform: scale(0.9);
}
.search-input__btn .icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.2s;
}
.search-input .form-control-clear {
  z-index: 10;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  pointer-events: auto;
  line-height: 1;
}
.search-input .icon-clear {
  width: 20px;
  height: 20px;
  user-select: none;
  cursor: pointer;
  background-image: url(../images/icon-search-clear.svg);
  background-size: 100%;
}
.search-input .hidden {
  display: none !important;
}

.section-header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}
.section-header .heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #595757;
  letter-spacing: .01em;
  margin-right: 10px;
  margin-bottom: 0;
}
.section-header .dropdown-toggle {
  background-color: #eaeff7;
  width: 25px;
  height: 25px;
  border-radius: 5px;
}
.section-header .dropdown-toggle:after {
  display: none;
}
.section-header .dropdown-toggle .icon-dropdown {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
}
.section-header .filter {
  position: relative;
}
.section-header .custom-select {
  width: 140px;
  max-width: 140px;
  background-color: #eaeff7;
  border-color: #eaeff7;
  border-radius: 10px;
  background-image: url(../images/icon-select-arrow2.svg);
  background-size: 20px 20px;
  background-position: right 10px center;
}
.section-header .search-input {
  margin-right: 20px;
  width: 100%;
  max-width: 200px;
}

.modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 588px;
  margin: 1.75rem auto;
}
.modal .modal-header {
  border: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.modal .close {
  padding: 10px;
  margin: 0;
  opacity: 1;
}
.modal .modal-body {
  padding: 20px;
}
.modal .modal-footer {
  border: 0;
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: 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;
}

.sp-table {
  width: 100%;
}
.sp-table th {
  padding: 15px 20px;
  color: #9c9c9c;
  font-size: 16px;
  font-weight: 700;
}
.sp-table td {
  padding: 20px;
  color: #595757;
  font-size: 18px;
}
.sp-table tbody tr:nth-child(2n - 1) td {
  background-color: #f7faff;
}

.sp-page {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 30px 50px;
  margin-bottom: 35px;
  color: #5d5d5d;
}
.sp-page ol {
  list-style: decimal;
  padding-left: 1.25em;
  margin-bottom: 1.25em;
}
.sp-page p {
  margin-bottom: 1.25em;
}
.sp-page .heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  color: #595757;
  color: #1db2e5;
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.sp-page table {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.sp-page table th, .sp-page table td {
  border: 1px solid #ccc;
  padding: .25em;
}

.member-service .lg-view {
  max-width: 1010px;
}
.member-service .sm-view {
  display: none;
  max-width: 375px;
}

.error-page {
  text-align: center;
  padding: 30px 0 80px;
  max-width: 600px;
  margin: 0 auto;
}
.error-page .image {
  margin-bottom: 20px;
}
.error-page h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.error-page p:last-child {
  margin-bottom: 0;
}
.error-page p a {
  color: #1db2e5;
  text-decoration: underline;
  margin: 0 .075em;
}
.error-page p a:hover {
  text-decoration: none;
}
.error-page .text-lg {
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 10px;
}
.error-page .text-sm {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 8px;
}
.error-page .btn-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.error-page .btn-row .btn:first-child {
  margin-left: 0;
}
.error-page .btn-row .btn:last-child {
  margin-right: 0;
}
.error-page .btn {
  max-width: 200px;
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
}
.error-page .bottom {
  border-top: 1px solid #eaeff7;
  max-width: 310px;
  margin: 20px auto 0;
  padding: 25px 0;
}
.error-page .bottom p:last-child {
  margin-bottom: 0;
}

.fix-btn-container {
  position: fixed;
  top: 50%;
  right: 10px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fix-btn-container .fix-btn-calculator {
  background-color: #27d086;
}
.fix-btn-container .fix-btn-download {
  background-color: #1db2e5;
}
.fix-btn-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fix-btn-container li {
  margin-bottom: 10px;
  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;
}
.fix-btn-container li:last-child {
  margin-bottom: 0;
}
.fix-btn-container a {
  position: relative;
  display: block;
  line-height: 36px;
  border-radius: 40px;
  width: 40px;
  min-height: 40px;
  color: #fff;
  padding: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: hidden;
}
.fix-btn-container a span {
  position: absolute;
  top: 2px;
  left: 36px;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.fix-btn-container a:hover, .fix-btn-container a:active {
  width: 120px;
}
.fix-btn-container a:hover span, .fix-btn-container a:active span {
  opacity: 1;
}
.fix-btn-container .icon {
  width: 36px;
  height: 36px;
  background-size: 24px 24px;
}

.cooperation {
  padding-top: 40px;
  padding-bottom: 80px;
  font-size: 14px;
  line-height: 24px;
}
.cooperation .section-banner {
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
.cooperation .section-banner img {
  display: block;
  width: 100%;
}
.cooperation .section-banner .lg-view {
  display: block;
}
.cooperation .section-banner .sm-view {
  display: none;
}
.cooperation .section-header {
  margin-bottom: 15px;
}
.cooperation .section-content {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.cooperation .section-footer {
  text-align: center;
}
.cooperation .section-footer .btn {
  max-width: 200px;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
  background-color: #27d086;
}
.cooperation .section-footer .btn:hover, .cooperation .section-footer .btn:active {
  color: #fff;
  background-color: #37da92;
}
.cooperation .title {
  font-size: 18px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 25px;
}
.cooperation .form-control {
  font-size: 16px;
  line-height: 24px;
}
.cooperation .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.cooperation .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.cooperation .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.cooperation .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.cooperation .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}
.cooperation .note a {
  color: #ff6b6b;
  text-decoration: underline;
}
.cooperation .note a:hover, .cooperation .note a:active {
  text-decoration: none;
}
.cooperation .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -10px;
}
.cooperation .form-section .form-group {
  margin: 0 10px 35px;
  width: calc(100% / 3 - 10px * 2);
}
.cooperation select {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto;
  width: 100%;
}
.cooperation select:disabled {
  opacity: .3;
}

.cooperation-modal {
  text-align: center;
}
.cooperation-modal .modal-dialog {
  max-width: 386px;
}
.cooperation-modal .main-text {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}
.cooperation-modal p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}
.cooperation-modal .btn {
  max-width: 200px;
  margin: 0 auto;
}

.gpt-iframe {
  position: relative;
  padding-top: 25.773195876%;
  height: 0;
  margin: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.gpt-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 940px) {
  .main-menu-bg {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1;
  }
  .main-menu-bg.is-view {
    display: block;
  }

  .main-menu-wrap {
    height: inherit;
    padding: 0;
    position: relative;
    z-index: 1;
    line-height: 35px;
  }
  .main-menu-wrap:before {
    height: 48px;
  }
  .main-menu-wrap .container {
    display: block;
    padding: 0;
  }
  .main-menu-wrap .main-menu {
    display: block;
    padding: 15px;
    text-align: center;
    width: 100%;
  }
  .main-menu-wrap .main-menu li {
    padding: 15px 0;
  }
  .main-menu-wrap .main-menu a {
    white-space: normal;
  }
  .main-menu-wrap .main-menu-trigger {
    display: block;
  }
  .main-menu-wrap .main-menu-panel {
    display: none;
    border-top: 1px solid #fff;
  }
  .main-menu-wrap .main-menu-panel.is-toggle:before {
    display: block;
  }
  .main-menu-wrap .available-points {
    border-top: 1px solid #fff;
    padding: 20px 15px;
    text-align: center;
    display: block;
    font-size: 15px;
    line-height: 1.5;
  }
  .main-menu-wrap .available-points__heading {
    display: block;
  }
  .main-menu-wrap .available-points__number {
    font-size: 18px;
  }
  .main-menu-wrap .available-points .icon {
    width: 20px;
    height: 20px;
    background-size: 70%;
  }

  .section-header {
    display: block;
    margin-bottom: 10px;
  }
  .section-header .btn {
    height: 40px;
    font-size: 12px;
    margin-left: 5px;
    line-height: 40px;
  }
  .section-header .section-heading {
    margin-bottom: 0;
  }
  .section-header .heading {
    font-size: 21px;
  }
  .section-header .dropdown-toggle {
    width: 20px;
    height: 20px;
    padding: 2px;
  }
  .section-header .dropdown-toggle .icon-dropdown {
    width: 16px;
    height: 16px;
  }
  .section-header .filter {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }
  .section-header .search-input {
    width: 100%;
    max-width: calc(50% - 5px);
    margin-right: 5px;
  }
  .section-header .search-input__btn {
    height: 40px;
    width: 40px;
    padding: 7px;
  }
  .section-header .search-input .form-control {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .section-header .search-input .icon {
    width: 16px;
    height: 16px;
  }
  .section-header .custom-select {
    width: 100%;
    max-width: 50%;
    height: 40px;
    font-size: 12px;
  }

  .nav-tabs {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    padding: 0 20px;
    width: calc(100% + 20px * 2);
    position: relative;
    z-index: 1;
  }
  .nav-tabs .nav-item {
    margin-right: 20px;
  }
  .nav-tabs .nav-item:last-child {
    padding-right: 20px;
  }
  .nav-tabs .nav-link {
    font-size: 12px;
    line-height: 40px;
  }
  .nav-tabs .nav-link .point {
    top: 14px;
    right: -7px;
  }

  .page-link {
    font-size: 12px;
    line-height: 30px;
    min-width: 30px;
    border-radius: 30px;
    margin: 4px;
  }
  .page-link--more {
    min-width: inherit;
  }

  .page-item:first-child .page-link {
    margin-right: 16px;
  }
  .page-item:last-child .page-link {
    margin-left: 16px;
  }

  .btn {
    height: 31px;
    line-height: 31px;
    font-size: 13px;
  }

  .modal .modal-dialog {
    width: calc(100% - 18px * 2);
  }
  .modal .modal-header {
    top: 0;
    right: 5px;
  }
  .modal .close {
    padding: 5px;
  }
  .modal .close .icon {
    width: 20px;
    height: 20px;
  }
  .modal .modal-body {
    padding: 10px;
  }
  .modal .modal-footer {
    padding: 0 10px 10px;
  }
}
@media (max-width: 767px) {
  .site-content {
    min-height: calc(100vh - 56px);
  }
  .site-content.plus-header {
    padding-top: 56px;
  }

  .site-header {
    height: 56px;
  }
  .site-header__logo {
    top: 15px;
    left: 16px;
    width: 180px;
    height: 32px;
  }
  .site-header__menu {
    top: 6px;
    right: 60px;
  }
  .site-header__menu.no-header-menu {
    right: 14px;
  }
  .site-header__menu li {
    padding: 0 6px;
  }
  .site-header .mobile-hidden {
    display: none;
  }
  .site-header .desktop-hidden {
    display: block;
  }
  .site-header .icon {
    margin-right: 0;
  }
  .site-header .menu-trigger {
    display: block;
  }
  .site-header .collapse:not(.show) {
    display: none;
  }
  .site-header .multi-collapse {
    background-color: #27d086;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 110px;
    border-radius: 5px;
    margin: 0;
  }
  .site-header .multi-collapse:before {
    opacity: 1;
  }
  .site-header .multi-collapse .icon {
    display: none;
  }
  .site-header .multi-collapse ul {
    padding: 0;
  }
  .site-header .multi-collapse a {
    padding: 0 10px;
    color: #fff;
  }
  .site-header .multi-collapse li {
    width: 50%;
    padding: 0;
    position: relative;
  }
  .site-header .multi-collapse li:after {
    content: "";
    width: 1px;
    height: 25px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .site-header .multi-collapse li:first-child:after {
    display: none;
  }
  .site-header .btn {
    width: initial;
  }
  .site-header .btn:hover, .site-header .btn:active {
    opacity: .8;
    background-color: transparent;
  }
  .site-header.sticky a {
    color: #fff;
  }
  .site-header.sticky .header-menu-wrap a {
    color: #595757;
  }

  .site-footer .container {
    padding: 0;
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .site-footer__logo {
    width: 38px;
    height: 27px;
    display: block;
  }
  .site-footer__menu {
    display: block;
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(219, 219, 219, 0.2);
  }
  .site-footer__menu a {
    padding: 0 20px;
    line-height: 40px;
    display: block;
  }
  .site-footer__block {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
  .site-footer__block:first-child .site-footer__heading {
    border-top: 0;
  }
  .site-footer__heading {
    margin-bottom: 0;
    border-top: 1px solid rgba(219, 219, 219, 0.2);
  }
  .site-footer .copyright {
    font-size: 12px;
    line-height: 16px;
    padding: 0 20px;
  }
  .site-footer .collapse:not(.show) {
    display: none;
  }
  .site-footer .collapse-trigger {
    display: block;
  }
  .site-footer ul {
    border-top: 1px solid rgba(219, 219, 219, 0.2);
  }
  .site-footer ul a {
    line-height: 32px;
  }
  .site-footer li + li {
    margin-top: 0;
  }
  .site-footer__links {
    position: relative;
    right: 0;
    top: 0;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .sp-page {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 20px;
  }
  .sp-page .heading {
    font-size: 21px;
    margin-bottom: 0;
  }

  .member-service .lg-view {
    display: none;
  }
  .member-service .sm-view {
    display: block;
  }

  .dropdown-menu-right {
    right: auto;
    left: auto;
    -webkit-transform: translate(-70%, -3%);
    transform: translate(-70%, 3%);
  }

  .error-page {
    padding: 15px 0 40px;
  }
  .error-page .image {
    margin-bottom: 20px;
  }
  .error-page h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .error-page .text-lg {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .error-page .text-sm {
    font-size: 14px;
    line-height: 24px;
  }
  .error-page .btn {
    max-width: 200px;
    margin: 0 10px;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
  }
  .error-page .bottom {
    padding: 20px 0;
  }

  .cooperation {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .cooperation .section-banner {
    margin-bottom: 10px;
  }
  .cooperation .section-banner .lg-view {
    display: none;
  }
  .cooperation .section-banner .sm-view {
    display: block;
  }
  .cooperation .section-header {
    margin-bottom: 10px;
  }
  .cooperation .section-content {
    padding: 10px;
    margin-bottom: 25px;
  }
  .cooperation .section-footer .btn {
    max-width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .cooperation .title {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .cooperation .form-control {
    font-size: 15px;
  }
  .cooperation .invalid-feedback {
    position: relative;
    top: 0;
  }
  .cooperation .form-section {
    display: block;
    margin: 0;
  }
  .cooperation .form-section .form-group {
    margin: 0 0 35px;
    width: 100%;
  }

  .cooperation-modal .modal-dialog {
    max-width: 284px;
  }
  .cooperation-modal.form-modal .main-text {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .cooperation-modal.form-modal p {
    font-size: 12px;
    padding: 0 1em;
  }
  .cooperation-modal.form-modal p br {
    display: none;
  }
  .cooperation-modal.form-modal .btn {
    max-width: 100%;
    display: block;
  }
}
@media (max-height: 740px) {
  .main-menu-wrap .main-menu-panel {
    overflow: auto;
    height: calc(100vh - 56px - 48px);
  }

  .dropdown-menu-right {
    -webkit-transform: translate(-64%, -3%);
    transform: translate(-64%, 3%);
  }

  .site-header .dropdown-menu {
    min-width: 300px;
  }
}
input:disabled, textarea:disabled,
input:disabled::placeholder,
textarea:disabled::placeholder {
  -webkit-text-fill-color: #cdcdcd;
  /* 1. sets text fill to current `color` for safari */
  opacity: 1;
  /* 2. correct opacity on iOS */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group .icon {
  position: absolute;
  top: 10px;
  right: 0;
  opacity: .4;
  width: 20px;
  height: 20px;
}
.form-group.focused label {
  top: -20px;
  color: #9c9c9c;
}

.form-control {
  border: 0;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #c2c2c2;
  padding: 0;
  font-size: 16px;
  color: #595757;
  font-weight: 400;
}
.form-control:focus {
  color: #595757;
  border-color: #1db2e5 !important;
}
.form-control:disabled {
  background-color: transparent;
  color: #cdcdcd;
  -webkit-text-fill-color: #cdcdcd;
  opacity: 1;
  /* required on iOS */
}
.form-control.error {
  color: #ff6b6b;
  font-weight: 700;
  border-bottom: 2px solid #ff6b6b;
}
.form-control.error:focus {
  font-weight: 400;
  color: #495057;
  border-color: #1db2e5;
}
.form-control::placeholder {
  font-weight: 400 !important;
  color: #9c9c9c;
}

select.form-control:required:invalid {
  color: #9c9c9c;
  font-weight: 400;
}
select.form-control option[value=""][disabled] {
  display: none;
}
select.form-control option {
  color: #595757;
}
select.form-control.error:required:invalid {
  font-weight: 700;
  color: #ff6b6b;
}
select.form-control.error:focus {
  font-weight: 400;
  color: #495057;
  border-color: #1db2e5;
}

.login {
  background-color: #fff;
  padding: 100px 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.login .container {
  max-width: 1240px;
}
@media (min-width: 768px) {
  .login:before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 50%;
    height: 100%;
    background-image: url(../images/login-bg.png);
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: auto 100%;
  }
  .login .site-header__logo {
    left: calc(100% - 20px - 247px);
  }
  .login .copyright {
    position: fixed;
    bottom: 30px;
    left: calc(50% - 1240px / 2);
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
  }
}
@media (max-width: 1240px) and (min-width: 768px) {
  .login .copyright {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}
.login-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.login-inner__block {
  width: 50%;
}
.login .copyright {
  font-size: 12px;
  color: #9c9c9c;
  text-align: right;
}
.login .form-control::placeholder {
  font-weight: 700 !important;
  color: #808080;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .login {
    padding: 150px 0;
    display: block;
  }
}
.login-form {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
  color: #595757;
  font-size: 14px;
  min-height: 640px;
}
.login-form__header {
  width: 100%;
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  position: relative;
}
.login-form__header-link {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 16px;
  line-height: 36px;
}
.login-form__footer {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
}
.login-form__footer p {
  margin-bottom: 10px;
}
.login-form a {
  color: #1db2e5;
  text-decoration: underline;
}
.login-form a:hover {
  text-decoration: none;
  color: #4bc2ea;
}
.login-form .form-row {
  margin-right: 0;
  margin-left: 0;
}
.login-form .btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
}
.login-form .btn + .btn {
  margin-top: 10px;
}
.login-form .btn-secondary {
  background-color: #27d086;
}
.login-form .btn-secondary:hover, .login-form .btn-secondary:active {
  background-color: #37da92;
}
.login-form .input-checkbox {
  display: none;
}
.login-form .label-checkbox {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 26px;
  margin: 0;
  cursor: pointer;
}
.login-form .label-checkbox:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-image: none;
  background-size: 80%;
  background-position: center;
  border: 1px solid #c2c2c2;
  left: 0;
  top: 0;
}
.login-form .input-checkbox:checked + .label-checkbox::before {
  background-image: url(../images/icon-tick_blue.svg);
}
.login-form .checkbox {
  margin-top: 10px;
  margin-bottom: 20px;
}
.login-form .login-form-social {
  margin-bottom: 30px;
}
.login-form .login-form-social__title {
  position: relative;
  color: #9c9c9c;
  text-align: center;
  font-size: 14px;
  margin: 20px 0 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.login-form .login-form-social__title span {
  background-color: transparent;
  position: relative;
  padding: 0 10px;
}
.login-form .login-form-social__title:before, .login-form .login-form-social__title:after {
  content: "";
  position: relative;
  background-color: #9c9c9c;
  height: 1px;
  z-index: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.login-form .social-login .btn {
  height: 50px;
  width: 100%;
  line-height: 48px;
  color: #595757;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid #000;
}
.login-form .social-login .btn + .btn {
  margin-top: 10px;
}
.login-form .social-login .btn .icon {
  margin-right: 10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
}
.login-form .social-login .btn--apple {
  background-color: #000;
  color: #fff;
}
.login-form .password-strength {
  margin-bottom: 30px;
  color: #9c9c9c;
}
.login-form .progressbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 8px 0;
}
.login-form .progressbar .strength-box {
  width: 90px;
  height: 4px;
  border-radius: 4px;
  margin-right: 3px;
}
.login-form .progressbar .strength-box--none {
  background-color: #eaeff7;
}
.login-form .progressbar .strength-box--weak {
  background-color: #ff6b6b;
}
.login-form .progressbar .strength-box--good {
  background-color: #ffd735;
}
.login-form .progressbar .strength-box--strong {
  background-color: #23bb78;
}
.login-form .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.login-form .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.login-form .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.login-form .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.login-form .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}
.login-form select {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto;
}
.login-form .form-group p {
  margin-top: 9px;
}
.login-form .form-control {
  font-weight: 700;
}
.login-form .mobileNumber {
  margin-bottom: 10px;
}
.login-form .mobileNumber .form-group {
  margin-bottom: 0;
}
.login-form .mobileNumber .form-group:first-child {
  width: 100px;
}
.login-form .mobileNumber .form-group:last-child {
  width: calc(100% - 100px - 20px);
  margin-left: 20px;
}
.login-form .sms-verification {
  margin-bottom: 10px;
}
.login-form .sms-verification .form-group {
  width: calc(100% - 95px);
  padding-right: 9px;
  margin-bottom: 0;
}
.login-form .sms-verification .btn-row {
  width: 95px;
}
.login-form .sms-verification .btn {
  line-height: 30px;
  height: 30px;
  font-size: 12px;
  margin: 10px 0 0;
}
.login-form .remind {
  font-size: 11px;
  margin-top: 20px;
  padding: 10px;
  background-color: #F0F8FF;
  border-radius: 6px;
}
.login-form .mt-0 {
  margin-top: 0;
}
.login-form .mt-10 {
  margin-top: 10px;
}
.login-form .mt-20 {
  margin-top: 20px;
}
.login-form .mt-30 {
  margin-top: 30px;
}
.login-form .mt-40 {
  margin-top: 40px;
}
.login-form .mb-0 {
  margin-bottom: 0;
}
.login-form .mb-10 {
  margin-bottom: 10px;
}
.login-form .mb-20 {
  margin-bottom: 20px;
}
.login-form .mb-30 {
  margin-bottom: 30px;
}
.login-form .mb-40 {
  margin-bottom: 40px;
}

.signup-mobile .login-form__footer {
  margin-top: 25px;
  margin-bottom: 25px;
}
.signup-mobile .login-form__footer p {
  margin-bottom: 10px;
}
.signup-mobile .bottom-blank {
  padding-bottom: 300px;
}

.login-mobile .login-form__footer {
  margin-top: 40px;
  margin-bottom: 160px;
}
.login-mobile .login-form__footer p {
  margin-bottom: 10px;
}

.signup-success .content {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 150px;
}
.signup-success .content img {
  display: block;
  margin: 0 auto 10px;
}
.signup-success .content .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.signup-success .content p {
  font-size: 14px;
  line-height: 1.71;
  color: #595757;
}
.signup-success .login-form__footer {
  margin-top: 10px;
  margin-bottom: 28px;
}
.signup-success .login-form__footer p {
  margin-bottom: 10px;
}
.signup-success .bottom-blank {
  padding-bottom: 200px;
}

.login-swiper {
  text-align: center;
  color: #fff;
  pointer-events: none;
}
.login-swiper .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.login-swiper .swiper-pagination-bullet-active {
  background-color: #fff;
}
.login-swiper .swiper-item {
  padding: 40px 0;
}
.login-swiper .swiper-item__image img {
  margin: 0 auto;
  display: block;
}
.login-swiper .swiper-item__main-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.login-swiper .swiper-item__sub-text {
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
  line-break: auto;
}

.forget-password .complete-message {
  font-size: 16px;
  line-height: 1.625;
  margin-top: -20px;
}
.forget-password .complete-message .main-text {
  font-size: 24px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 15px;
}
.forget-password .complete-message .mail {
  color: #1db2e5;
  text-decoration: underline;
}
.forget-password .complete-message p {
  margin: 0;
}
.forget-password .complete-message .btn-row {
  padding: 40px 0;
}

.contact .has-float-label select {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto;
}
.contact .message-wrap {
  padding-top: 15px;
}
.contact .message {
  border: 1px solid #c2c2c2;
  border-radius: 4px;
  height: 64px;
  font-size: 14px;
  padding: 0 10px;
  color: #595757;
}
.contact .btn-row {
  margin: 0 -10px 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact .btn-row .btn {
  width: calc(100% / 2 - 10px * 2);
  margin: 0 10px;
}

.identify-success {
  min-height: inherit;
}
.identify-success .btn-row {
  margin-bottom: 70px;
}

.success-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin-bottom: 33px;
}
.success-box__image {
  width: 110px;
}
.success-box__image img {
  margin-left: -10px;
}
.success-box__content {
  width: calc(100% - 110px);
}
.success-box .main-text {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 20px;
}
.success-box p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .has-float-label label, .has-float-label > span {
    font-size: 12px;
    top: 4px;
  }

  .has-float-label input:placeholder-shown:not(:focus) + *,
  .has-float-label select:placeholder-shown:not(:focus) + *,
  .has-float-label textarea:placeholder-shown:not(:focus) + * {
    font-size: 12px;
  }

  .form-group {
    margin-bottom: 25px;
  }
  .form-group .icon {
    top: 5px;
    width: 16px;
    height: 16px;
  }

  .form-control {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .login {
    padding: 80px 0 10px;
    display: block;
    background: #fff;
  }
  .login-inner {
    display: block;
    min-height: calc(100svh - 80px - 10px - 40px);
  }
  .login-inner__block {
    width: 100%;
  }
  .login .login-swiper-block {
    display: none;
  }
  .login .copyright {
    text-align: center;
    margin-top: 20px;
  }

  .login-form {
    font-size: 12px;
    min-height: inherit;
  }
  .login-form__header {
    font-size: 21px;
    margin-bottom: 40px;
  }
  .login-form__header-link {
    font-size: 15px;
    line-height: 25px;
  }
  .login-form__footer {
    margin-bottom: 70px;
  }
  .login-form .btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .login-form .login-form-social {
    margin-bottom: 20px;
  }
  .login-form .login-form-social__title {
    font-size: 12px;
  }
  .login-form .label-checkbox {
    font-size: 12px;
  }
  .login-form .social-login .btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .login-form .social-login .btn .icon {
    width: 20px;
    height: 20px;
  }
  .login-form .note {
    font-size: 12px;
  }
  .login-form .sms-verification .btn {
    margin: 0;
  }

  .signup-success .content {
    padding-top: 75px;
  }

  .forget-password .complete-message {
    font-size: 14px;
    margin-top: -20px;
  }
  .forget-password .complete-message .main-text {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact .message-wrap {
    padding-top: 0;
  }
  .contact .message {
    font-size: 12px;
  }

  .success-box {
    margin-bottom: 20px;
  }
  .success-box .main-text {
    font-size: 21px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
  .success-box p {
    font-size: 12px;
  }
}
.index-section {
  position: relative;
}
.index-section a {
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.index-section .floating {
  animation-name: floating;
  animation-duration: 2s;
  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, -15px);
  }
  to {
    transform: translate(0, 0);
  }
}
.index-kv {
  position: relative;
  background-color: #f4f7fc;
}
.index-kv img {
  width: 100%;
}
.index-kv .lg-view {
  display: block;
}
.index-kv .sm-view {
  display: none;
}
.index-kv__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url(../images/index/kv-bottom.png);
  background-size: 100% 100%;
}
.index-kv a {
  display: block;
}
.index-kv .kv-swiper {
  position: relative;
  z-index: 0;
}
.index-kv .swiper-button-prev,
.index-kv .swiper-button-next {
  width: 40px;
  height: 40px;
  top: calc(50% - 40px / 2);
  opacity: .8;
  background-size: contain;
}
.index-kv .swiper-button-prev:after,
.index-kv .swiper-button-next:after {
  display: none;
}
.index-kv .swiper-button-prev.swiper-button-disabled,
.index-kv .swiper-button-next.swiper-button-disabled {
  opacity: .3;
}
.index-kv .swiper-button-prev {
  left: 30px;
  background-image: url(../images/index/swiper-prev.png);
}
.index-kv .swiper-button-next {
  right: 30px;
  background-image: url(../images/index/swiper-next.png);
}
.index-kv .swiper-pagination {
  bottom: 75px;
  position: absolute;
  width: 100%;
  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;
}
.index-kv .swiper-pagination-bullet {
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.index-kv .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff;
}

.index-features {
  padding-top: 9px;
  background-color: #f4f7fc;
  background-image: url(../images/index/index-features-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-size: auto 590px;
}
.index-features .diamand {
  position: absolute;
}
.index-features .diamand-1 {
  width: 80px;
  top: 0;
  right: calc(50% - 1440px / 2 + 187px);
}
.index-features .diamand-2 {
  width: 100px;
  bottom: 47px;
  left: calc(50% - 1440px / 2 + 86px);
  z-index: 1;
}
.index-features .drhead {
  position: absolute;
  width: 180px;
  bottom: 134px;
  right: calc(50% - 1440px / 2 + 168px);
  overflow: hidden;
}
.index-features__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 155px;
  background-image: url(../images/index/index-features-bottom.png);
  background-size: 100% 100%;
}
.index-features .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  max-width: 880px;
  margin: 0 auto;
}
.index-features .image {
  width: 50%;
  padding-right: 20px;
}
.index-features .content {
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 120px;
}
.index-features .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 -10px;
}
.index-features .item {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 10px;
  display: block;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.index-features .item.active {
  background-color: #2396ec;
}
.index-features .item.active .icon-features1 {
  background-image: url(../images/index/icon-discount_w.png);
}
.index-features .item.active .icon-features2 {
  background-image: url(../images/index/icon-finding_w.png);
}
.index-features .item.active .icon-features3 {
  background-image: url(../images/index/icon-coupon_w.png);
}
.index-features .item.active .icon-features4 {
  background-image: url(../images/index/icon-exchange_w.png);
}
.index-features .icon {
  width: 48px;
  height: 48px;
  display: block;
  background-size: 30px 30px;
}
.index-features .icon-features1 {
  background-image: url(../images/index/icon-discount.png);
}
.index-features .icon-features2 {
  background-image: url(../images/index/icon-finding.png);
}
.index-features .icon-features3 {
  background-image: url(../images/index/icon-coupon.png);
}
.index-features .icon-features4 {
  background-image: url(../images/index/icon-exchange.png);
}
.index-features .top-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #1eb1e4;
  margin-bottom: 10px;
}
.index-features .main-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #353c52;
  margin-bottom: 10px;
}
.index-features .sub-text {
  font-size: 20px;
  line-height: 1.35;
  color: #595757;
  margin-bottom: 40px;
  max-width: 320px;
}
.index-features .swiper-slide-active {
  opacity: 1;
}
.index-features .swiper-slide-active .image {
  animation: fadeInUp .5s forwards;
}
.index-features .swiper-slide-active .phone-1 .sprite {
  animation: loopSprite4 3.6s steps(29) forwards;
}
.index-features .swiper-slide-active .phone-2 .sprite {
  animation: loopSprite4 3.6s steps(29) forwards;
}
.index-features .swiper-slide-active .phone-3 .sprite {
  animation: loopSprite4 3.6s steps(29) forwards;
}
.index-features .swiper-slide-active .phone-4 .sprite {
  animation: loopSprite4 3.6s steps(29) forwards;
}
.index-features .sprite {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
}
.index-features .parent {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  z-index: 0;
}
.index-features .parent:before {
  content: "";
  display: block;
  position: relative;
  padding-top: 172.75%;
}
.index-features .phone {
  width: 100%;
  position: relative;
  max-width: 400px;
  margin-left: 20px;
}
.index-features .phone-1 .sprite {
  background-image: url(../images/index/index-phone-1.png);
}
.index-features .phone-2 .sprite {
  background-image: url(../images/index/index-phone-2.png);
}
.index-features .phone-3 .sprite {
  background-image: url(../images/index/index-phone-3.png);
}
.index-features .phone-4 .sprite {
  background-image: url(../images/index/index-phone-4.png);
}

.index-activity {
  background-color: #fff;
  padding: 30px 0 80px;
  position: relative;
}
.index-activity .index-section__heading {
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  color: #353c52;
  margin-bottom: 46px;
  position: relative;
}
.index-activity .index-section__heading:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(50% - 40px / 2);
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background-color: #1eb1e4;
  display: block;
}
.index-activity .index-section__content {
  margin: 0 -10px;
}
.index-activity .swiper-slide {
  width: calc(100% / 3);
}
.index-activity .item {
  margin: 0 10px;
}
.index-activity a {
  color: #595757;
}
.index-activity .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
.index-activity .image:before {
  content: "";
  padding-top: 56.21761658%;
  display: block;
}
.index-activity .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-activity .main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.index-activity .sub-text {
  font-size: 16px;
  line-height: 1.63;
  margin-bottom: 10px;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3.26em;
}
.index-activity .date {
  font-size: 14px;
}
.index-activity .date .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: -2px;
}
.index-activity .activity-swiper {
  margin-bottom: 40px;
}
.index-activity .btn {
  width: 250px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #27d086;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.index-discount {
  padding: 40px 0;
  background-color: #f4f7fc;
}
.index-discount .diamand {
  position: absolute;
}
.index-discount .diamand-1 {
  width: 60px;
  top: -65px;
  left: calc(50% - 1440px / 2 + 399px);
}
.index-discount .diamand-2 {
  width: 80px;
  bottom: -95px;
  right: calc(50% - 1440px / 2 + 226px);
  z-index: 1;
}
.index-discount__bg {
  position: absolute;
  top: 0;
  left: calc(50% + 110px);
  width: 420px;
  height: 100%;
  background-image: url(../images/index/index-discount.png);
  background-size: 100% auto;
  background-position: center top;
}
.index-discount .index-section__header {
  position: relative;
  margin-bottom: 20px;
}
.index-discount .index-section__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #353c52;
  margin-bottom: 10px;
}
.index-discount .index-section__header p {
  font-size: 16px;
  color: #9c9c9c;
}
.index-discount .index-section__header .link {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index-discount .index-section__header .link a {
  font-size: 18px;
  font-weight: 700;
  color: #53b0e0;
  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-discount .index-section__header .link .icon {
  width: 18px;
  height: 18px;
  background-color: #1cb1e4;
  border-radius: 50%;
  margin-left: 6px;
  background-image: url(../images/index/icon-arrow_right.png);
  background-size: 15px auto;
  background-position: center center;
}
.index-discount .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 -10px;
}
.index-discount .item {
  position: relative;
  margin: 0 10px;
  width: calc(100% / 3 - 10px * 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.index-discount .item:before, .index-discount .item:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f4f7fc;
  position: absolute;
  right: calc(50% - 20px / 2);
  z-index: 1;
}
.index-discount .item:before {
  top: -10px;
}
.index-discount .item:after {
  bottom: -10px;
}
.index-discount .item:nth-child(3):before {
  background-color: #e8f3fe;
}
.index-discount .item:nth-child(3):after {
  background-color: #dceaf9;
}
.index-discount .item__label {
  position: absolute;
  top: 8px;
  right: 8px;
  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;
}
.index-discount .item .label {
  color: #fff;
  line-height: 22px;
  height: 22px;
  border-radius: 30px;
  padding: 0 5px;
  font-size: 12px;
  margin: 2px;
}
.index-discount .item .label--blue {
  background-color: #364fcc;
}
.index-discount .item .label--green {
  background-color: #27d086;
}
.index-discount .item .label--pink {
  background-color: #ff2c9c;
}
.index-discount .item .label--orange {
  background-color: #ff836b;
}
.index-discount .item .label--yellow {
  background-color: #f7cb1d;
}
.index-discount .item .sold-out {
  width: 68px;
  height: 68px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 68px;
  border-radius: 50%;
}
.index-discount .item.disabled {
  pointer-events: none;
}
.index-discount .image {
  width: 50%;
  position: relative;
  height: 93px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.index-discount .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.index-discount .content {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 0 10px;
}
.index-discount .main-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.31;
  color: #595757;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.62em;
  margin-bottom: 0;
  width: 100%;
}
.index-discount .main-text + .sub-text {
  margin-top: 5px;
}
.index-discount .sub-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  color: #2396ec;
  width: 100%;
}

.index-section-group {
  position: relative;
  background-color: #fff;
}
.index-section-group__bg {
  position: absolute;
  top: 195px;
  left: 0;
  width: 100%;
  height: calc(100% - 195px);
  background-image: url(../images/index/index-section-group.png);
  background-size: 100% auto;
  background-position: center top;
  min-width: 1440px;
}
.index-section-group .dog {
  position: absolute;
  width: 160px;
  top: 149px;
  right: calc(50% - 1440px / 2 + 10px);
}

.index-cash {
  padding: 40px 0 63px;
}
.index-cash .coin {
  position: absolute;
}
.index-cash .coin-1 {
  width: 50px;
  top: -65px;
  left: calc(50% - 1440px / 2 + 59px);
}
.index-cash .index-section__header {
  position: relative;
  margin-bottom: 20px;
}
.index-cash .index-section__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #353c52;
  margin-bottom: 10px;
}
.index-cash .index-section__header p {
  font-size: 16px;
  color: #9c9c9c;
}
.index-cash .index-section__header .link {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index-cash .index-section__header .link a {
  font-size: 18px;
  font-weight: 700;
  color: #53b0e0;
  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-cash .index-section__header .link .icon {
  width: 18px;
  height: 18px;
  background-color: #1cb1e4;
  border-radius: 50%;
  margin-left: 6px;
  background-image: url(../images/index/icon-arrow_right.png);
  background-size: 15px auto;
  background-position: center center;
}
.index-cash .card-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: -10px;
}
.index-cash .card-item {
  position: relative;
  margin: 10px;
  width: calc(100% / 4 - 10px * 2);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
  min-height: 251px;
  padding-bottom: 0;
}
.index-cash .card-item__image {
  position: relative;
  overflow: hidden;
}
.index-cash .card-item__content {
  padding: 14px 20px 20px;
}
.index-cash .card-item__main-text {
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  margin-bottom: 10px;
}
.index-cash .card-item__sub-text {
  font-size: 16px;
  line-height: 1.5;
  color: #595757;
  margin-top: 5px;
}
.index-cash .card-item__price-group {
  margin-top: 10px;
}
.index-cash .card-item__price {
  font-size: 20px;
}
.index-cash .card-item .extra {
  margin-bottom: 0;
}
.index-cash .card-item .main-price {
  color: #1db2e5;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.index-cash .card-item .main-price .icon-coin {
  width: 24px;
  height: 24px;
  margin-top: -5px;
}
.index-cash .icon-coin {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background-image: url(../images/icon-circleCoin.svg);
}
.index-cash .original-price {
  font-size: 14px;
  color: #9c9c9c;
  position: relative;
  line-height: 24px;
  display: inline-block;
  margin-left: 5px;
}
.index-cash .original-price:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #9c9c9c;
  z-index: 1;
}
.index-cash .original-price .icon {
  width: 16px;
  height: 16px;
  filter: grayscale(100%);
  margin-top: -4px;
}
.index-cash .text-plus,
.index-cash .price {
  font-size: 20px;
  line-height: 24px;
  color: #595757;
  font-weight: 700;
  display: inline-block;
}

.index-feedback {
  padding: 0 0 95px;
}
.index-feedback .index-section__header {
  position: relative;
  margin-bottom: 28px;
}
.index-feedback .index-section__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.index-feedback .index-section__header p {
  font-size: 16px;
  color: #fff;
}
.index-feedback .index-section__header .link {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index-feedback .index-section__header .link a {
  font-size: 18px;
  font-weight: 700;
  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-feedback .index-section__header .link .icon {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 6px;
  background-image: url(../images/index/icon-arrow_right-blue.png);
  background-size: 15px auto;
  background-position: center center;
}
.index-feedback .coin {
  position: absolute;
}
.index-feedback .coin-1 {
  width: 50px;
  top: -62px;
  right: calc(50% - 1440px / 2 + 28px);
}
.index-feedback .coin-2 {
  width: 79px;
  bottom: -125px;
  left: calc(50% - 209px);
}
.index-feedback .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: -10px;
}
.index-feedback .item {
  position: relative;
  margin: 10px;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.index-feedback .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.index-download {
  padding: 60px 0 80px;
}
.index-download .box {
  width: 100%;
  max-width: 982px;
  min-height: 440px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  text-align: center;
  padding: 30px 20px 25px;
  position: relative;
}
.index-download .diamand {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
.index-download .diamand-1 {
  background-image: url(../images/index/index-download-bg1.png);
  width: 279px;
  height: 222px;
  bottom: 0;
  right: 0;
}
.index-download .diamand-2 {
  background-image: url(../images/index/index-download-bg2.png);
  width: 131px;
  height: 125px;
  bottom: 0;
  left: 0;
  opacity: .3;
}
.index-download .diamand-3 {
  background-image: url(../images/index/index-download-bg3.png);
  width: 320px;
  height: 126px;
  top: 0;
  left: 37px;
  opacity: .5;
}
.index-download .missco {
  position: absolute;
  width: 160px;
  top: 160px;
  left: 90px;
}
.index-download .missco img {
  animation: misscoAnim 4s forwards infinite;
  animation-delay: .5s;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}
.index-download .sprite {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
}
.index-download .parent {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  z-index: 0;
}
.index-download .parent:before {
  content: "";
  display: block;
  position: relative;
}
.index-download .drhead {
  position: absolute;
  width: 70px;
  top: 261px;
  left: calc(50% + 70px);
}
.index-download .drhead .sprite {
  background-image: url(../images/index/drhead_reading-sprites.png);
  animation: drheadSprite 4s steps(15) forwards infinite;
  animation-delay: 1.2s;
}
.index-download .drhead .parent:before {
  padding-top: 114.285714286%;
}
.index-download .dog {
  position: absolute;
  width: 120px;
  top: 280px;
  right: 90px;
}
.index-download .dog .sprite {
  background-image: url(../images/index/dog_sayhi-sprite.png);
  animation: dogSprite 4s steps(15) forwards infinite;
  animation-delay: 2.2s;
}
.index-download .dog .parent:before {
  padding-top: 183.333333333%;
}
.index-download .fomo {
  position: absolute;
  width: 140px;
  top: 39px;
  right: -40px;
}
.index-download .fomo .sprite {
  background-image: url(../images/index/fomo-sprite.png);
  animation: fomoSprite 4s steps(15) forwards infinite;
  animation-delay: 1.7s;
}
.index-download .fomo .parent:before {
  padding-top: 107.142857143%;
}
.index-download .index-section__header {
  position: relative;
  margin-bottom: 55px;
}
.index-download .index-section__header:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: calc(50% - 40px / 2);
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background-color: #1eb1e4;
  display: block;
}
.index-download .index-section__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #353c52;
  margin-bottom: 10px;
}
.index-download .index-section__header h2 span {
  display: inline-block;
}
.index-download .index-section__header p {
  font-size: 18px;
  line-height: 1.44;
  color: #595757;
}
.index-download .qrcode {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: relative;
}
.index-download .links {
  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;
  position: relative;
}
.index-download .item {
  margin: 0 10px;
  width: 155px;
}
.index-download .item img {
  max-width: 144px;
  display: block;
  margin: 0 auto;
}
.index-download .item span {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.67;
  color: #9c9c9c;
  display: block;
}

@keyframes misscoAnim {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(0, -15px);
  }
  20% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fomoSprite {
  0% {
    background-position: 0 0%;
  }
  25% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes dogSprite {
  0% {
    background-position: 0 0%;
  }
  25% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes drheadSprite {
  0% {
    background-position: 0 0%;
  }
  25% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@media (max-width: 767px) {
  .index-section .container {
    max-width: 375px;
  }
  .index-section__content {
    overflow: hidden;
  }

  .index-kv .lg-view {
    display: none;
  }
  .index-kv .sm-view {
    display: block;
  }
  .index-kv__bottom {
    height: 10px;
    bottom: 0;
    background-image: url(../images/index/kv-bottom_s.png);
    background-size: 100% 100%;
  }
  .index-kv .swiper-button-prev,
  .index-kv .swiper-button-next {
    width: 24px;
    height: 24px;
    top: calc(50% - 24px / 2);
  }
  .index-kv .swiper-button-prev {
    left: 10px;
  }
  .index-kv .swiper-button-next {
    right: 10px;
  }
  .index-kv .swiper-pagination {
    bottom: 15px;
  }
  .index-kv .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 2.5px;
  }

  .index-features {
    padding-top: 15px;
    background-size: auto 360px;
    background-position: 23.5% 13%;
  }
  .index-features .diamand-1 {
    width: 30px;
    top: 0;
    right: calc(50% - 375px / 2 + 33px);
  }
  .index-features .diamand-2 {
    width: 40px;
    bottom: 236px;
    left: calc(50% - 375px / 2 + 10px);
  }
  .index-features .drhead {
    position: absolute;
    width: 80px;
    bottom: 262px;
    right: calc(50% - 375px / 2 + 4px);
  }
  .index-features__bottom {
    height: 270px;
    background-image: url(../images/index/index-features-bottom_s.png);
  }
  .index-features .group {
    display: block;
    max-width: 375px;
  }
  .index-features .image {
    width: 100%;
    padding-right: 0;
  }
  .index-features .content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .index-features .item {
    width: 36px;
    height: 36px;
  }
  .index-features .icon {
    width: 36px;
    height: 36px;
    background-size: 24px 24px;
  }
  .index-features .top-text {
    font-size: 13px;
    line-height: 17px;
  }
  .index-features .main-text {
    font-size: 21px;
  }
  .index-features .sub-text {
    font-size: 15px;
    line-height: 20px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .index-features .sub-text br {
    display: none;
  }
  .index-features .phone {
    max-width: 224px;
    margin: 0 auto;
  }

  .index-activity {
    padding: 0 0 60px;
  }
  .index-activity .container {
    padding: 0;
    max-width: 100%;
  }
  .index-activity .index-section__heading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 45px;
  }
  .index-activity .index-section__heading:before {
    bottom: -15px;
    left: calc(50% - 30px / 2);
    width: 30px;
  }
  .index-activity .index-section__content {
    overflow: hidden;
    margin: 0;
  }
  .index-activity .swiper-slide {
    width: 300px;
  }
  .index-activity .main-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .index-activity .sub-text {
    font-size: 12px;
    line-height: 20px;
    max-height: 40px;
  }
  .index-activity .date {
    font-size: 12px;
  }
  .index-activity .btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .index-discount {
    padding: 20px 0 60px;
    min-height: 481px;
  }
  .index-discount .diamand-1 {
    width: 40px;
    top: -50px;
    left: calc(50% - 375px / 2 + 66px);
  }
  .index-discount .diamand-2 {
    width: 60px;
    bottom: -80px;
    right: calc(50% - 375px / 2 + 86px);
  }
  .index-discount__bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: calc(50% + 400px / 2 - 95px) 272px;
    background-size: 400px auto;
    background-repeat: no-repeat;
  }
  .index-discount .index-section__header h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .index-discount .index-section__header p {
    font-size: 12px;
    line-height: 16px;
  }
  .index-discount .index-section__header .link a {
    font-size: 13px;
  }
  .index-discount .list {
    display: block;
    margin: 0 auto;
    max-width: 335px;
  }
  .index-discount .item {
    margin: 0;
    width: 100%;
  }
  .index-discount .item + .item {
    margin-top: 25px;
  }
  .index-discount .item:nth-child(3):before {
    background-color: #f4f7fc;
  }
  .index-discount .item:nth-child(3):after {
    background-color: #f0f6fd;
  }
  .index-discount .item .sold-out {
    width: 48px;
    height: 48px;
    font-size: 12px;
    line-height: 48px;
  }
  .index-discount .main-text {
    font-size: 12px;
    line-height: 20px;
    max-height: 40px;
  }
  .index-discount .sub-text {
    font-size: 12px;
    line-height: 20px;
  }

  .index-section-group__bg {
    top: 364px;
    height: calc(100% - 364px);
    background-image: url(../images/index/index-section-group_s.png);
    background-size: 100% auto;
    min-width: inherit;
  }
  .index-section-group .dog {
    display: none;
  }

  .index-cash {
    padding: 20px 0 60px;
  }
  .index-cash .coin-1 {
    display: none;
  }
  .index-cash .index-section__header h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .index-cash .index-section__header p {
    font-size: 12px;
    line-height: 16px;
  }
  .index-cash .index-section__header .link a {
    font-size: 13px;
  }
  .index-cash .card-list {
    margin: -10px;
  }
  .index-cash .card-list .card-item {
    margin: 10px;
    width: calc(100% / 2 - 10px * 2);
  }
  .index-cash .card-item {
    min-height: inherit;
  }
  .index-cash .card-item__content {
    padding: 10px;
  }
  .index-cash .card-item__main-text {
    font-size: 12px;
  }
  .index-cash .card-item__sub-text {
    font-size: 12px;
  }
  .index-cash .card-item__price {
    font-size: 15px;
    line-height: 18px;
    min-height: 18px;
  }
  .index-cash .card-item .main-price {
    font-size: 15px;
    line-height: 18px;
  }
  .index-cash .card-item .main-price .icon-coin {
    width: 18px;
    height: 18px;
  }
  .index-cash .icon-coin {
    width: 18px;
    height: 18px;
  }
  .index-cash .original-price {
    font-size: 12px;
    line-height: 18px;
  }
  .index-cash .original-price:before {
    top: 8px;
  }
  .index-cash .original-price .icon {
    width: 10px;
    height: 10px;
    margin-top: -3px;
  }
  .index-cash .text-plus,
  .index-cash .price {
    font-size: 15px;
    line-height: 18px;
  }

  .index-feedback {
    padding: 0 0 60px;
  }
  .index-feedback .index-section__header h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .index-feedback .index-section__header p {
    font-size: 12px;
    line-height: 16px;
  }
  .index-feedback .index-section__header .link a {
    font-size: 13px;
  }
  .index-feedback .coin-1 {
    width: 50px;
    top: -82px;
    right: calc(50% - 375px / 2 + 1px);
  }
  .index-feedback .coin-2 {
    width: 40px;
    bottom: -70px;
    left: calc(50% - 375px / 2 + 12px);
  }
  .index-feedback .list {
    margin: -5px;
  }
  .index-feedback .item {
    margin: 5px;
    width: 40px;
    height: 40px;
  }

  .index-download {
    padding: 40px 0 60px;
  }
  .index-download .box {
    max-width: 335px;
    min-height: 377px;
    padding: 20px 10px 60px;
  }
  .index-download .diamand-1 {
    background-image: url(../images/index/index-download-bg1_s.png);
    width: 93px;
    height: 143px;
  }
  .index-download .diamand-2 {
    background-image: url(../images/index/index-download-bg2_s.png);
    width: 90px;
    height: 180px;
    bottom: 20px;
  }
  .index-download .diamand-3 {
    background-image: url(../images/index/index-download-bg3_s.png);
    width: 213px;
    height: 44px;
    left: 0;
  }
  .index-download .missco {
    width: 100px;
    top: 192px;
    left: -10px;
  }
  .index-download .drhead {
    width: 50px;
    top: 327px;
    left: calc(50% - 50px / 2);
  }
  .index-download .dog {
    width: 70px;
    top: 277px;
    right: 0;
  }
  .index-download .fomo {
    width: 80px;
    top: -65px;
    right: 2px;
  }
  .index-download .index-section__header {
    margin-bottom: 45px;
  }
  .index-download .index-section__header:before {
    bottom: -15px;
    left: calc(50% - 30px / 2);
    width: 30px;
  }
  .index-download .index-section__header h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .index-download .index-section__header p {
    font-size: 13px;
    line-height: 23px;
  }
  .index-download .qrcode {
    display: none;
  }
  .index-download .links {
    display: block;
  }
  .index-download .item {
    margin: 0 auto;
    width: 155px;
  }
  .index-download .item + .item {
    margin-top: 20px;
  }
}
.ExRate-table {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}
.ExRate-table .ExRate-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #595757;
  font-size: 18px;
}
.ExRate-table .ExRate-item:nth-child(2n-1) {
  background-color: #f7faff;
}
.ExRate-table .col {
  padding: 20px;
}
.ExRate-table .col:nth-child(1) {
  width: 32.5%;
}
.ExRate-table .col:nth-child(2) {
  width: 24.25%;
}
.ExRate-table .col:nth-child(3) {
  width: 19.5%;
  text-align: center;
}
.ExRate-table .col:nth-child(4) {
  width: 23.75%;
}
.ExRate-table .col:nth-child(4) .d-flex {
  width: 100%;
}
.ExRate-table .image {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
}
.ExRate-table .ExRate {
  color: #1db2e5;
  font-size: 24px;
}
.ExRate-table .ExRate .icon {
  background-size: auto;
  margin-top: -5px;
}
.ExRate-table .time {
  color: #9c9c9c;
  font-size: 14px;
}
.ExRate-table__header {
  color: #9c9c9c;
  line-height: 54px;
  font-weight: 700;
}
.ExRate-table__header .col {
  padding: 0 20px;
}
.ExRate-table .btn .icon {
  display: block;
  width: 40px;
  height: 40px;
  background-size: auto;
}
.ExRate-table .icon-coin {
  background-image: url(../images/icon-circleCoin.svg);
  margin: 0 5px;
}
.ExRate-table .btn-primary {
  margin-right: 10px;
  font-weight: 700;
  max-width: calc(100% - 40px * 2 - 10px * 2);
  font-size: 0.8em;
}
.ExRate-table .btn-group-toggle {
  width: 40px;
  margin-right: 10px;
}
.ExRate-table .btn-attention {
  width: 40px;
  background-color: #c1f5de;
}
.ExRate-table .btn-attention:hover, .ExRate-table .btn-attention:active {
  background-color: #abf1d2;
}
.ExRate-table .btn-attention .icon-check {
  display: none;
}
.ExRate-table .btn-attention.active {
  background-color: #27d086;
}
.ExRate-table .btn-attention.active .icon-plus {
  display: none;
}
.ExRate-table .btn-attention.active .icon-check {
  display: block;
}
.ExRate-table .dropdown {
  width: 40px;
}
.ExRate-table .btn-more {
  width: 40px;
  background-color: #eef2f9;
}
.ExRate-table .btn-more:hover, .ExRate-table .btn-more:active {
  background-color: #dbe4f2;
}

.exRate-modal {
  text-align: center;
}
.exRate-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 588px;
  margin: 1.75rem auto;
}
.exRate-modal .main-text {
  color: #595757;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}
.exRate-modal .btn {
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
  max-width: 200px;
  font-weight: 700;
}
.exRate-modal .latest-update {
  color: #9c9c9c;
  font-size: 14px;
  border-bottom: 1px solid #eaeff7;
  margin: 0 -20px 25px;
  padding: 20px 0;
}
.exRate-modal .ExRate {
  color: #1db2e5;
  font-size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  letter-spacing: -1px;
}
.exRate-modal .ExRate .icon {
  margin: 0 5px;
}
.exRate-modal .main-block {
  text-align: left;
}
.exRate-modal .text-group {
  padding-left: 20px;
}
.exRate-modal .name {
  font-size: 18px;
}
.exRate-modal .image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 5px;
}
.exRate-modal .image img {
  width: 100%;
}

.serialNumber-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 391px;
  margin: 1.75rem auto;
}
.serialNumber-modal .main-text {
  color: #595757;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.serialNumber-modal .member-form .form-group {
  width: 100%;
  margin: 0 auto 25px;
  max-width: 400px;
}
.serialNumber-modal .btn {
  width: calc(100% / 2 - 10px * 2);
  max-width: 200px;
  line-height: 40px;
  height: 40px;
  margin: 0 10px;
}
.serialNumber-modal .top-block {
  text-align: center;
  padding-bottom: 10px;
}
.serialNumber-modal .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.serialNumber-modal .text-lg {
  font-size: 24px;
  font-weight: 700;
}
.serialNumber-modal img {
  display: block;
  margin: 0 auto;
}
.serialNumber-modal .sp-point {
  font-size: 30px;
  text-align: center;
  color: #1db2e5;
  font-weight: 700;
}
.serialNumber-modal .sp-point .icon {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
.serialNumber-modal .bottom-block {
  margin: 0 -20px;
  width: calc(100% + 20px * 2);
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #eaeff7;
}
.serialNumber-modal p {
  color: #9c9c9c;
}
.serialNumber-modal.serialNumber1 .modal-dialog {
  max-width: 391px;
}
.serialNumber-modal.serialNumber1 .btn {
  margin: 0 auto;
}

@media (max-width: 940px) {
  .ExRate-table {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 40px;
  }
  .ExRate-table .ExRate-item {
    display: block;
    font-size: 13px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
  }
  .ExRate-table .ExRate-item:nth-child(2n-1) {
    background-color: #fff;
  }
  .ExRate-table .ExRate {
    font-size: 16px;
  }
  .ExRate-table .time {
    font-size: 12px;
  }
  .ExRate-table .image {
    width: 20px;
    height: 20px;
  }
  .ExRate-table .btn {
    line-height: 30px;
  }
  .ExRate-table .btn .icon {
    width: 30px;
    height: 30px;
  }
  .ExRate-table .btn-primary {
    font-size: 13px;
    height: 30px;
    width: 100%;
    max-width: calc(100% - 30px * 2 - 10px * 2);
  }
  .ExRate-table .btn-group-toggle {
    width: 30px;
  }
  .ExRate-table .btn-attention {
    width: 30px;
    height: 30px;
  }
  .ExRate-table .dropdown {
    width: 30px;
  }
  .ExRate-table .dropdown-menu {
    font-size: 12px;
  }
  .ExRate-table .btn-more {
    width: 30px;
    height: 30px;
  }
  .ExRate-table .col {
    padding: 10px;
  }
  .ExRate-table .col:nth-child(1), .ExRate-table .col:nth-child(2), .ExRate-table .col:nth-child(3) {
    padding-left: 110px;
  }
  .ExRate-table .col:nth-child(1):before, .ExRate-table .col:nth-child(2):before, .ExRate-table .col:nth-child(3):before {
    content: attr(data-value) "";
    text-align: left;
    width: 110px;
    font-size: 12px;
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .ExRate-table .col:nth-child(1) {
    width: 100%;
  }
  .ExRate-table .col:nth-child(2) {
    width: 100%;
  }
  .ExRate-table .col:nth-child(3) {
    width: 100%;
    text-align: left;
  }
  .ExRate-table .col:nth-child(4) {
    width: 100%;
  }
  .ExRate-table__header {
    display: none;
  }
}
@media (max-width: 764px) {
  .exRate-modal .main-text {
    font-size: 15px;
    text-align: left;
    margin-bottom: 20px;
  }
  .exRate-modal .input-number-wrap .number-input {
    margin: 0 10px;
  }
  .exRate-modal .input-number-wrap .input-number {
    width: 60px;
  }
  .exRate-modal .modal-footer {
    display: block;
  }
  .exRate-modal .btn {
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 10px 0 0;
  }
  .exRate-modal .input-number-wrap .number {
    display: none;
  }
  .exRate-modal .latest-update {
    margin: 0 -10px 20px;
    padding: 10px 0;
  }
  .exRate-modal .ExRate {
    font-size: 20px;
  }
  .exRate-modal .ExRate .icon {
    width: 20px;
    height: 20px;
  }
  .exRate-modal .text-group {
    padding-left: 15px;
  }
  .exRate-modal .name {
    font-size: 16px;
  }
  .exRate-modal .image {
    width: 50px;
    height: 50px;
  }

  .serialNumber-modal .main-text {
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
  }
  .serialNumber-modal .modal-footer {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .serialNumber-modal .btn {
    width: 100%;
    max-width: 100%;
    line-height: 31px;
    height: 31px;
    margin: 10px 0 0;
  }
  .serialNumber-modal .member-form .form-group {
    margin: 0 auto;
    max-width: 100%;
  }
  .serialNumber-modal .hd {
    font-size: 13px;
  }
  .serialNumber-modal .text-lg {
    font-size: 15px;
  }
  .serialNumber-modal .sp-point {
    font-size: 21px;
  }
  .serialNumber-modal .sp-point .icon {
    width: 16px;
    height: 16px;
    margin-top: -3px;
  }
  .serialNumber-modal .bottom-block {
    margin: 0 -10px;
    width: calc(100% + 10px * 2);
    font-size: 12px;
  }
}
.redeem_point .lg-view {
  display: block;
}
.redeem_point .sm-view {
  display: none;
}
.redeem_point .section-header {
  margin-bottom: 30px;
}

.result-empty {
  margin-bottom: 30px;
}
.result-empty__image {
  margin-bottom: 11px;
}
.result-empty__image img {
  display: block;
  margin: 0 auto;
  max-width: 120px;
}
.result-empty__text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
  color: #595757;
}

.card-list {
  margin: 0 -12px;
  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;
}
.card-list .card-item {
  width: calc(100% / 4 - 12px * 2);
}

.card-item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 12px 30px;
  width: calc(100% - 12px * 2);
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.card-item.disabled .card-item__inner {
  pointer-events: none;
}
.card-item__inner {
  padding-bottom: 48px;
  cursor: pointer;
  display: block;
}
.card-item__image {
  position: relative;
  background-color: #e3e3e3;
  padding-top: 49.5%;
  overflow: hidden;
}
.card-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
.card-item__content {
  padding: 10px 20px 0;
}
.card-item__main-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #595757;
  height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card-item__sub-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #595757;
  margin-top: 5px;
  max-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card-item__price-group {
  margin-top: 10px;
}
.card-item__price {
  font-size: 15px;
  color: #9c9c9c;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  line-height: 30px;
  display: block;
}
.card-item__price + .card-item__price {
  margin-top: 5px;
}
.card-item .main-price {
  color: #1db2e5;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  display: inline;
}
.card-item .main-price .icon {
  width: 20px;
  height: 20px;
  margin-top: -5px;
  margin-right: 5px;
  background-image: url(../images/icon-circleCoin.svg);
}
.card-item .original-price {
  font-size: 14px;
  color: #9c9c9c;
  position: relative;
  line-height: 30px;
  top: -2px;
  display: inline-block;
  margin-left: 5px;
}
.card-item .original-price:before {
  content: "";
  position: absolute;
  top: 13px;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #9c9c9c;
  z-index: 1;
}
.card-item .original-price .icon {
  width: 16px;
  height: 16px;
  filter: grayscale(100%);
  margin-top: -4px;
}
.card-item .text-plus,
.card-item .price {
  font-size: 20px;
  line-height: 30px;
  color: #595757;
  font-weight: 700;
  display: inline;
}
.card-item__label {
  position: absolute;
  top: 8px;
  right: 8px;
  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;
}
.card-item .label {
  color: #fff;
  line-height: 30px;
  height: 30px;
  border-radius: 30px;
  padding: 0 11px;
  font-size: 14px;
  margin: 2px;
}
.card-item .label--blue {
  background-color: #364fcc;
}
.card-item .label--green {
  background-color: #27d086;
}
.card-item .label--pink {
  background-color: #ff2c9c;
}
.card-item .label--orange {
  background-color: #ff836b;
}
.card-item .label--yellow {
  background-color: #f7cb1d;
}
.card-item .btn {
  font-weight: 700;
}
.card-item .btn .icon {
  display: block;
  width: 40px;
  height: 40px;
  background-size: auto;
}
.card-item .btn-primary {
  margin-right: 10px;
  width: calc(100% - 40px - 10px);
  max-width: 100%;
}
.card-item .btn-primary.disabled {
  pointer-events: none;
  background-color: #e0e0e0;
  color: #c2c2c2;
}
.card-item .btn-primary.disabled:hover, .card-item .btn-primary.disabled:active {
  background-color: #e0e0e0;
}
.card-item .btn-group-toggle {
  width: 40px;
}
.card-item .sold-out {
  width: 68px;
  height: 68px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 68px;
  border-radius: 50%;
}
.card-item .extra {
  padding: 0 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  background-color: #2fcd83;
  margin-top: 5px;
}
.card-item .action {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.card-item .notice {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 107, 107, 0.8);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  padding: 2px 5px;
  padding-left: 45px;
}
.card-item .notice .icon-timeout {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 20px;
}
.card-item .free {
  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: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #1eb1e4;
  margin-top: 10px;
}
.card-item .free .icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.btn-favorite {
  width: 40px;
}
.btn-favorite .icon {
  display: block;
  width: 40px;
  height: 40px;
  background-size: auto;
}
.btn-favorite.active .icon-like {
  background-image: url(../images/icon-like--fill.svg);
}
.btn-favorite.disabled {
  pointer-events: none;
}

.redeem-virtual .card-item {
  padding-bottom: 0;
}
.redeem-virtual .card-item__inner {
  padding-bottom: 20px;
  color: #595757;
}
.redeem-virtual .card-item__main-text {
  height: auto;
  margin-bottom: 5px;
}
.redeem-virtual .card-item__text {
  font-size: 12px;
  line-height: 1.67;
  color: #595757;
  margin-top: 10px;
}
.redeem-virtual .card-item__text span {
  display: inline-block;
}
.redeem-virtual .card-item .action {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: inherit;
  width: calc(100% - 20px * 2);
}
.redeem-virtual .card-item .btn-primary {
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

.ad-block {
  position: relative;
  margin-bottom: 40px;
}
.ad-block img {
  border-radius: 5px;
}
.ad-block .swiper-container {
  overflow: inherit;
}
.ad-block .swiper-wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.ad-block .swiper-pagination {
  position: relative;
  bottom: 0;
  padding: 20px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.ad-block .swiper-pagination-bullet {
  opacity: 1;
  background: #ddd;
  width: 10px;
  height: 10px;
  margin: 0 4px;
}
.ad-block .swiper-pagination-bullet-active {
  opacity: 1;
  background: #27d086;
}
.ad-block .swiper-button-prev,
.ad-block .swiper-button-next {
  width: 36px;
  height: 48px;
  top: calc(50% - 48px / 2);
}
.ad-block .swiper-button-prev:after,
.ad-block .swiper-button-next:after {
  display: none;
}
.ad-block .swiper-button-prev.swiper-button-disabled,
.ad-block .swiper-button-next.swiper-button-disabled {
  opacity: .3;
}
.ad-block .swiper-button-prev {
  left: -36px;
  background-image: url(../images/swiper-button-prev.svg);
}
.ad-block .swiper-button-next {
  right: -36px;
  background-image: url(../images/swiper-button-next.svg);
}

.card-swiper-control {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.card-swiper-control .swiper-button-prev,
.card-swiper-control .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  border-radius: 5px;
  margin: 0;
  font-size: 24px;
  color: #1db2e5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  opacity: 1;
}
.card-swiper-control .swiper-button-prev:after,
.card-swiper-control .swiper-button-next:after {
  display: none;
}
.card-swiper-control .swiper-button-prev {
  margin-right: 10px;
}

.card-swiper-wrap {
  position: relative;
  z-index: 0;
}
.card-swiper-wrap .card-swiper {
  margin: 0 -12px;
}

.input-number-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 24px;
  color: #1db2e5;
  font-weight: 700;
}
.input-number-wrap .number-input {
  margin: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.input-number-wrap .input-number {
  border: 1px solid #eaeff7;
  margin: 0 10px;
  width: 120px;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: #595757;
}
.input-number-wrap .input-number:before {
  content: "X";
}
.input-number-wrap .input-number,
.input-number-wrap .input-number-decrement,
.input-number-wrap .input-number-increment {
  height: 40px;
  user-select: none;
  border-radius: 5px;
}
.input-number-wrap .input-number-decrement,
.input-number-wrap .input-number-increment {
  display: block;
  width: 40px;
  line-height: 36px;
  background: #eef2f9;
  color: #1db2e5;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
  font-size: 24px;
}
.input-number-wrap .input-number-decrement:active,
.input-number-wrap .input-number-increment:active {
  background: #ddd;
}

.redeem-modal {
  text-align: center;
}
.redeem-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 588px;
  margin: 1.75rem auto;
}
.redeem-modal .main-text {
  color: #595757;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-right: 50px;
}
.redeem-modal .point-number {
  color: #ff836b;
}
.redeem-modal .btn {
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
  max-width: 200px;
  font-weight: 700;
}
.redeem-modal .transfer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
}
.redeem-modal .transfer .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  margin-bottom: 5px;
}
.redeem-modal .transfer .icon-transfer {
  margin-top: 5px;
  margin-bottom: 15px;
}
.redeem-modal .transfer .sp-point {
  color: #595757;
  font-weight: 700;
  font-size: 30px;
}
.redeem-modal .transfer .sp-point .icon {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
.redeem-modal .transfer__left {
  padding: 0 20px 0 0;
  width: calc(100% / 2 - 140px / 2);
  text-align: right;
}
.redeem-modal .transfer__left .sp-point {
  color: #1db2e5;
}
.redeem-modal .transfer__middle {
  text-align: center;
}
.redeem-modal .transfer__middle .sp-point {
  color: #1db2e5;
}
.redeem-modal .transfer__middle .number-input {
  margin: 0 auto;
}
.redeem-modal .transfer__right {
  padding: 0 0 0 20px;
  width: calc(100% / 2 - 140px / 2);
  text-align: left;
}
.redeem-modal .transfer__right .sp-point {
  color: #ff6b6b;
}
.redeem-modal .bottom-row {
  color: #9c9c9c;
  font-size: 16px;
  margin: 0 -20px;
  padding: 0 40px 5px;
  text-align: left;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.redeem-modal .bottom-row .icon {
  width: 16px;
  height: 16px;
  margin-top: -4px;
}
.redeem-modal .bottom-row__left {
  width: calc(100% / 2 - 220px / 2);
}
.redeem-modal .bottom-row__left .sp-point {
  color: #595757;
}
.redeem-modal .bottom-row__left .icon {
  filter: grayscale(1);
  margin-left: 5px;
}
.redeem-modal .bottom-row__middle {
  padding: 0 20px;
  text-align: center;
}
.redeem-modal .bottom-row__middle .sp-point {
  color: #ff6b6b;
}
.redeem-modal .bottom-row__middle .text-sm {
  font-size: 14px;
}
.redeem-modal .bottom-row__right {
  width: calc(100% / 2 - 220px / 2);
}
.redeem-modal .bottom-row__right .sp-point {
  color: #1db2e5;
}
.redeem-modal .m-transfer {
  display: none;
  margin-bottom: 15px;
}
.redeem-modal .m-transfer__left {
  padding: 0 10px 0 0;
  width: calc(100% / 2 - 50px / 2);
  text-align: right;
}
.redeem-modal .m-transfer__middle {
  width: 50px;
}
.redeem-modal .m-transfer__right {
  padding: 0 0 0 10px;
  width: calc(100% / 2 - 50px / 2);
  text-align: left;
}
.redeem-modal .m-transfer .hd {
  font-size: 13px;
  font-weight: 700;
  color: #9c9c9c;
  margin-bottom: 5px;
}
.redeem-modal .m-transfer .sp-point {
  color: #1db2e5;
  font-weight: 700;
  font-size: 21px;
}
.redeem-modal .m-transfer .sp-point .icon {
  width: 16px;
  height: 16px;
  margin-top: -3px;
}
.redeem-modal .m-transfer .number {
  font-weight: 700;
  font-size: 21px;
  color: #ff836b;
}
.redeem-modal .input-radio {
  display: none;
}
.redeem-modal .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.redeem-modal .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 0;
}
.redeem-modal .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 5px;
}
.redeem-modal .input-radio:disabled ~ .label-radio {
  color: #c2c2c2;
  pointer-events: none;
}
.redeem-modal .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.redeem-modal .top-block {
  text-align: left;
  margin: 0 20px 20px;
  border-bottom: 1px solid #eaeff7;
  padding: 0 0 20px;
  font-size: 14px;
}
.redeem-modal .top-block .title {
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.redeem-modal .note {
  color: #595757;
  font-size: 12px;
  position: relative;
  padding-left: 26px;
}
.redeem-modal .note .highlight {
  color: #ff6b6b;
}
.redeem-modal .note .icon-alert {
  background-image: url(../images/icon-alert--light.svg);
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
}
.redeem-modal .note a {
  color: #2396ec;
  text-decoration: underline;
}
.redeem-modal .note a:hover {
  text-decoration: none;
}
.redeem-modal.step1 .bottom-row {
  margin-bottom: 25px;
}
.redeem-modal.step1 .bottom-row__left {
  padding-top: 40px;
}
.redeem-modal.step2 .transfer__left {
  padding: 0 40px 0 0;
}
.redeem-modal.step2 .transfer__right {
  padding: 0 0 0 40px;
}
.redeem-modal.step2 .count {
  font-size: 30px;
  color: #1db2e5;
  font-weight: 700;
  text-transform: uppercase;
}
.redeem-modal.step2 .bottom-row__left {
  text-align: right;
}
.redeem-modal.step3 .serial-number {
  text-align: center;
  font-size: 14px;
  color: #9c9c9c;
}
.redeem-modal.step3 .serial-number__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.redeem-modal.step3 .serial-number .input-group {
  border: 1px solid #eaeff7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  border-radius: 5px;
  width: 310px;
  margin: 0 auto 15px;
}
.redeem-modal.step3 .serial-number .form-control {
  width: calc(100% - 146px);
  border: 0;
  font-size: 16px;
  padding-left: 20px;
}
.redeem-modal.step3 .serial-number .btn {
  margin: 0;
  line-height: 41px;
  height: 41px;
  max-width: 146px;
}
.redeem-modal.step3 .serial-number .validity-period {
  margin: 0 auto 25px;
}
.redeem-modal.step3 .serial-number .bottom-info {
  color: #595757;
  margin: 0 auto 10px;
}
.redeem-modal.step3 .serial-number .bottom-info a {
  color: #1db2e5;
  text-decoration: underline;
}
.redeem-modal.step3 .serial-number .qr-code {
  width: 200px;
  margin: 0 auto 15px;
}
.redeem-modal.complete a {
  font-weight: 700;
  text-decoration: underline;
  color: #027DB4;
}
.redeem-modal.complete a:hover {
  text-decoration: none;
}
.redeem-modal.complete .main-text {
  margin-bottom: 0;
}
.redeem-modal.complete .scroll-box {
  height: 245px;
  padding: 15px 20px;
}
.redeem-modal.complete p {
  line-height: 24px;
}
.redeem-modal .scroll-box {
  height: 175px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 14px;
  color: #555;
  line-height: 24px;
  text-align: left;
  padding: 0 20px;
  padding-right: 10px;
}
.redeem-modal .scroll-box .title {
  color: #9c9c9c;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.search-container {
  margin-bottom: 40px;
  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: -80px;
}
.search-container .search-input {
  max-width: 200px;
  position: relative;
}
.search-container .form-control {
  border-radius: 10px;
  padding-right: 40px;
}
.search-container .form-control:focus {
  box-shadow: none;
  border-color: #eaeff7 !important;
}

.plus-filter {
  width: calc(100% - 140px - 20px);
}

.menu-swiper {
  position: relative;
  max-width: 1040px;
  margin: 0;
}
@media (max-width: 1240px) {
  .menu-swiper {
    max-width: calc(100vw - 220px);
  }
}
.menu-swiper .swiper-slide {
  width: auto;
}
.menu-swiper .swiper-button-prev {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #eaeff7;
  margin-top: -10px;
  left: 0;
}
.menu-swiper .swiper-button-prev:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 40px;
  background: #f4f7fc;
  background: linear-gradient(-90deg, rgba(244, 247, 252, 0) 0%, #f4f7fc 61%);
}
.menu-swiper .swiper-button-prev:after {
  width: 20px;
  height: 20px;
  background-color: #eaeff7;
  background-image: url(../images/icon-dropdown.svg);
  font-size: 0;
  border-radius: 5px;
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.menu-swiper .swiper-button-next {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #eaeff7;
  margin-top: -10px;
  right: 0;
}
.menu-swiper .swiper-button-next:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 60px;
  height: 40px;
  background: #f4f7fc;
  background: linear-gradient(90deg, rgba(244, 247, 252, 0) 0%, #f4f7fc 61%);
}
.menu-swiper .swiper-button-next:after {
  width: 20px;
  height: 20px;
  background-color: #eaeff7;
  background-image: url(../images/icon-dropdown.svg);
  font-size: 0;
  border-radius: 5px;
  -webkit-transform: rotate(-90deg);
  -khtml-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.menu-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.menu-swiper .btn {
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  margin: 0 5px;
  background-color: #eaeff7;
  color: #3a3a3a;
  white-space: nowrap;
  min-width: initial;
  overflow: initial;
}
.menu-swiper .btn-attention .icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: -2px;
}
.menu-swiper .btn-attention .icon-like {
  background-image: url(../images/icon-like-blue.svg);
}
.menu-swiper .btn-attention.active .icon-like {
  background-image: url(../images/icon-like--fill.svg);
}
.menu-swiper .dropdown-toggle {
  padding-right: 24px;
}
.menu-swiper .dropdown-toggle:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #3a3a3a transparent transparent transparent;
  position: absolute;
  top: 18px;
  right: 11px;
  display: block;
}
.menu-swiper .dropdown-toggle.active:after {
  border-color: #fff transparent transparent transparent;
}
.menu-swiper .btn-group {
  margin: 0 5px;
}
.menu-swiper .btn-group .btn {
  margin: 0;
}
.menu-swiper .active {
  background-color: #1db2e5;
  color: #fff;
}
.menu-swiper .dropdown-item {
  text-align: left;
  color: #3a3a3a;
}
.menu-swiper .btn-group {
  position: static;
}

.dropdown-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 -5px;
  z-index: 1;
}
.dropdown-group .btn {
  line-height: 40px;
  height: 40px;
  font-size: 16px;
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  margin: 0 5px;
  background-color: #eaeff7;
  color: #3a3a3a;
  white-space: nowrap;
  min-width: initial;
  overflow: initial;
}
.dropdown-group .btn-attention .icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: -2px;
}
.dropdown-group .btn-attention .icon-like {
  background-image: url(../images/icon-like-blue.svg);
}
.dropdown-group .btn-attention.active .icon-like {
  background-image: url(../images/icon-like--fill.svg);
}
.dropdown-group .dropdown-toggle {
  padding-right: 24px;
}
.dropdown-group .dropdown-toggle:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #3a3a3a transparent transparent transparent;
  position: absolute;
  top: 18px;
  right: 11px;
  display: block;
}
.dropdown-group .dropdown-toggle.active:after {
  border-color: #fff transparent transparent transparent;
}
.dropdown-group .btn-group {
  margin: 0 5px;
}
.dropdown-group .btn-group .btn {
  margin: 0;
}
.dropdown-group .active {
  background-color: #1db2e5;
  color: #fff;
}
.dropdown-group .dropdown-item {
  text-align: left;
  color: #3a3a3a;
}
.dropdown-group .btn-group {
  position: static;
}

@media (max-width: 1280px) {
  .ad-block .swiper-button-prev {
    left: 0;
  }
  .ad-block .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 1160px) {
  .redeem_point .lg-view {
    display: none;
  }
  .redeem_point .sm-view {
    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;
  }
}
@media (max-width: 940px) {
  .redeem_point .section-header {
    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 -12px 24px;
  }
  .redeem_point .section-heading {
    width: 50%;
    padding: 0 12px;
  }
  .redeem_point .filter {
    width: 50%;
    max-width: 50%;
    padding: 0 12px;
    margin: 0;
  }
  .redeem_point .custom-select {
    max-width: 100%;
    height: 40px;
  }

  .result-empty {
    margin-bottom: 40px;
  }
  .result-empty__image {
    margin-bottom: 20px;
  }
  .result-empty__image img {
    max-width: 60px;
  }
  .result-empty__text {
    font-size: 16px;
    line-height: 21px;
  }

  .search-container {
    margin-bottom: 16px;
    margin-top: 0;
    max-width: 100%;
  }
  .search-container .search-input {
    width: 100%;
    max-width: 100%;
  }
  .search-container .search-input__btn {
    height: 40px;
    width: 30px;
    padding: 10px 0 10px 10px;
  }
  .search-container .search-input .form-control {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding-left: 35px;
  }
  .search-container .search-input .icon {
    width: 20px;
    height: 20px;
  }

  .dropdown-group {
    width: calc(100% + 20px * 2);
    margin: 0 -20px;
    overflow-x: auto;
    padding: 0 20px 2px;
  }
  .dropdown-group .btn {
    font-size: 12px;
    line-height: 28px;
    height: 28px;
    padding: 0 12px;
  }
  .dropdown-group .btn-attention .icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    margin-top: -2px;
  }
  .dropdown-group .dropdown-toggle {
    padding-right: 16px;
  }
  .dropdown-group .dropdown-toggle:after {
    border-width: 4px 3px 0 3px;
    top: 12px;
    right: 7px;
  }
  .dropdown-group .dropdown-toggle.active:after {
    border-color: #fff transparent transparent transparent;
  }
  .dropdown-group .dropdown-menu {
    margin-top: 26px;
  }
  .dropdown-group .dropdown-item {
    font-size: 12px;
  }

  .card-list .card-item {
    width: calc(100% / 2 - 12px * 2);
  }

  .card-item {
    margin-bottom: 10px;
    min-height: initial;
  }
  .card-item__inner {
    padding-bottom: 38px;
  }
  .card-item__content {
    padding: 10px 10px 0;
  }
  .card-item__main-text {
    font-size: 12px;
    line-height: 21px;
    height: 42px;
  }
  .card-item__sub-text {
    font-size: 12px;
  }
  .card-item__price {
    font-size: 12px;
    height: inherit;
    max-height: 50px;
    -webkit-line-clamp: 2;
    line-height: 25px;
    white-space: inherit;
    padding-left: 23px;
    text-indent: -23px;
  }
  .card-item .main-price {
    font-size: 15px;
    line-height: 25px;
  }
  .card-item .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -3px;
  }
  .card-item .original-price {
    font-size: 12px;
    line-height: 25px;
    text-indent: 0;
  }
  .card-item .original-price:before {
    top: 11px;
  }
  .card-item .original-price .icon {
    width: 10px;
    height: 10px;
    margin-top: -3px;
  }
  .card-item .text-plus,
  .card-item .price {
    font-size: 15px;
    line-height: 25px;
    text-indent: 0;
  }
  .card-item .text-plus {
    display: inline-block;
  }
  .card-item .label {
    line-height: 20px;
    height: 20px;
    border-radius: 20px;
    padding: 0 8px;
    font-size: 12px;
  }
  .card-item .btn {
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .card-item .btn .icon {
    display: block;
    width: 30px;
    height: 30px;
    background-size: auto;
  }
  .card-item .action {
    right: 4px;
    bottom: 4px;
  }
  .card-item .btn-group-toggle {
    width: 30px;
  }
  .card-item .sold-out {
    width: 48px;
    height: 48px;
    font-size: 12px;
    line-height: 48px;
  }
  .card-item .extra {
    font-size: 12px;
    line-height: 22px;
  }
  .card-item .notice {
    padding-left: 28px;
  }
  .card-item .notice .icon-timeout {
    left: 10px;
  }
  .card-item .free {
    font-size: 15px;
    line-height: 25px;
  }
  .card-item .free .icon {
    width: 18px;
    height: 18px;
  }

  .btn-favorite {
    width: 30px;
  }
  .btn-favorite .icon {
    display: block;
    width: 30px;
    height: 30px;
    background-size: auto;
  }

  .redeem-virtual .card-item {
    padding-bottom: 0;
    font-size: 12px;
  }
  .redeem-virtual .card-item__inner {
    padding-bottom: 10px;
  }
  .redeem-virtual .card-item__main-text {
    height: auto;
  }
  .redeem-virtual .card-item__text {
    font-size: 12px;
    line-height: 1.67;
    margin-top: 10px;
  }
  .redeem-virtual .card-item__price-group {
    margin-top: 5px;
  }
  .redeem-virtual .card-item__price {
    font-size: 15px;
    line-height: 1.67;
  }
  .redeem-virtual .card-item .action {
    left: 10px;
    width: calc(100% - 10px * 2);
  }
  .redeem-virtual .card-item .btn-primary {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 764px) {
  .ad-block .swiper-button-prev,
  .ad-block .swiper-button-next {
    display: none;
  }
  .ad-block .swiper-pagination {
    padding: 10px 0 0;
  }

  .card-swiper-control {
    top: 5px;
  }
  .card-swiper-control .swiper-button-prev,
  .card-swiper-control .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .input-number-wrap .input-number,
  .input-number-wrap .input-number-decrement,
  .input-number-wrap .input-number-increment {
    height: 30px;
  }
  .input-number-wrap .input-number-decrement,
  .input-number-wrap .input-number-increment {
    width: 30px;
    line-height: 26px;
    font-size: 20px;
  }

  .redeem-modal .main-text {
    font-size: 16px;
    text-align: left;
  }
  .redeem-modal .point-number {
    color: inherit;
  }
  .redeem-modal .input-number-wrap .number-input {
    margin: 0 10px;
  }
  .redeem-modal .input-number-wrap .input-number {
    width: 60px;
  }
  .redeem-modal .modal-footer {
    display: block;
  }
  .redeem-modal .btn {
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 10px 0 0;
  }
  .redeem-modal .transfer {
    display: none;
  }
  .redeem-modal .input-number-wrap {
    margin-top: 15px;
  }
  .redeem-modal .input-number-wrap .number {
    display: none;
  }
  .redeem-modal .bottom-row {
    margin: 0 -10px;
    padding: 10px 10px 0;
    font-size: 14px;
  }
  .redeem-modal .m-transfer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .redeem-modal.step1 .transfer__left {
    padding: 0 20px 0 0;
  }
  .redeem-modal.step1 .transfer__right {
    padding: 0 0 0 20px;
  }
  .redeem-modal.step1 .bottom-row {
    display: block;
  }
  .redeem-modal.step1 .bottom-row__left {
    padding-top: 0;
  }
  .redeem-modal.step1 .bottom-row__middle {
    padding: 10px 0;
  }
  .redeem-modal.step1 .bottom-row__left, .redeem-modal.step1 .bottom-row__right {
    width: 100%;
    text-align: center;
  }
  .redeem-modal.step2 .transfer__left {
    padding: 0 20px 0 0;
  }
  .redeem-modal.step2 .transfer__right {
    padding: 0 0 0 20px;
  }
  .redeem-modal.step2 .bottom-row {
    display: block;
  }
  .redeem-modal.step2 .bottom-row__middle {
    padding: 10px 0;
  }
  .redeem-modal.step2 .bottom-row__left, .redeem-modal.step2 .bottom-row__right {
    width: 100%;
    text-align: center;
  }
  .redeem-modal.step2 .count {
    font-size: 24px;
  }
  .redeem-modal.step3 .serial-number {
    font-size: 12px;
  }
  .redeem-modal.step3 .serial-number__title {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .redeem-modal.step3 .serial-number .input-group {
    width: 100%;
  }
  .redeem-modal.step3 .serial-number .form-control {
    padding-left: 10px;
  }
  .redeem-modal.step3 .serial-number .btn-light {
    width: 89px;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
  }
  .redeem-modal.complete .scroll-box {
    height: 245px;
    padding: 10px 0;
    padding-right: 10px;
  }
  .redeem-modal .top-block {
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 20px;
  }
  .redeem-modal .top-block .title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .redeem-modal .scroll-box {
    padding: 0;
    padding-right: 10px;
    font-size: 12px;
    line-height: 20px;
  }
  .redeem-modal .scroll-box .title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .icon-transfer {
    width: 40px;
    background-size: auto 14px;
    background-position: right center;
    margin: 0 5px;
  }
}
@media (max-width: 480px) {
  .redeem_point .section-header {
    margin: 0 -5px 24px;
  }
  .redeem_point .section-heading {
    padding: 0 5px;
  }
  .redeem_point .filter {
    padding: 0 5px;
  }

  .card-list {
    align-items: stretch;
    margin: 0 -5px;
  }
  .card-list .card-item {
    width: calc(50% - 5px * 2);
    margin: 0 5px 10px;
  }
}
.fix-float-label label {
  top: -20px;
  color: #9c9c9c;
}
.fix-float-label.has-float-label input:placeholder-shown:not(:focus) + * {
  top: -20px;
  color: #9c9c9c;
}
.fix-float-label.has-float-label input:placeholder-shown:not(:focus) + * input:placeholder {
  color: #000;
}

.info-personal {
  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: 0 -12px;
  margin-bottom: 30px;
}
.info-personal .section {
  width: calc(50% - 12px * 2);
  margin: 0 12px;
}
.info-personal .section-content {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.info-personal .basic-info .section-content {
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.info-personal .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 0 20px;
}
.info-personal .info-group__left {
  width: 120px;
}
.info-personal .info-group__right {
  width: calc(100% - 120px);
  padding-left: 15px;
}
.info-personal .avatar {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  cursor: pointer;
}
.info-personal .avatar__upload {
  border: 2px dashed #eaeff7;
  height: 120px;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.3);
}
.info-personal .avatar__upload img {
  display: block;
  margin: 0 auto 10px;
}
.info-personal .avatar:hover .icon-close {
  opacity: 1;
}
.info-personal .avatar:hover .avatar__image img {
  opacity: .8;
}
.info-personal .avatar__image {
  width: 120px;
  height: 120px;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.info-personal .avatar .icon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='24px' height='24px' viewBox='0 0 24 24' enable-background='new 0 0 24 24' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M13.414,12l9.714-9.714c0.391-0.391,0.391-1.023,0-1.414s-1.023-0.391-1.414,0L12,10.586L2.286,0.872 c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.023,0,1.414L10.586,12l-9.714,9.714c-0.391,0.391-0.391,1.023,0,1.414 c0.195,0.195,0.451,0.293,0.707,0.293s0.512-0.098,0.707-0.293L12,13.414l9.714,9.714c0.195,0.195,0.451,0.293,0.707,0.293 s0.512-0.098,0.707-0.293c0.391-0.391,0.391-1.023,0-1.414L13.414,12z'/%3E%3C/svg%3E");
}
.info-personal .avatar .verified-list {
  margin: 0;
}
.info-personal .advanced .section-content {
  background-color: transparent;
  border: 2px solid #fff;
  padding-right: 200px;
  font-size: 16px;
}
.info-personal .advanced .section-content:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 100%;
  background: #0184ff;
  background: linear-gradient(0deg, #0184ff 0%, #1db2e5 100%);
  border-radius: 0 5px 5px 0;
}
.info-personal .advanced .section-content:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 100%;
  background-image: url(../images/info-personal-advanced.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}
.info-personal .advanced .verified-list {
  list-style: none;
  padding: 0;
  max-width: 235px;
  margin: 0 0 20px;
}
.info-personal .advanced .verified-list.w-100 {
  max-width: 100%;
}
.info-personal .advanced .verified-list li {
  position: relative;
  padding-right: 80px;
  margin-bottom: 20px;
  line-height: 25px;
}
.info-personal .advanced .verified-list li:last-child {
  margin-bottom: 0;
}
.info-personal .advanced .verified-list .label {
  border: 1px solid #27d086;
  font-size: 14px;
  line-height: 23px;
  height: 25px;
  width: 75px;
  color: #27d086;
  text-align: center;
  display: block;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
}
.info-personal .advanced .verified-list .label--undone {
  border: 1px solid #ff6b6b;
  color: #ff6b6b;
}
.info-personal .advanced .btn {
  width: 120px;
  height: 40px;
}
.info-personal .advanced .icon-tick {
  background-image: url(../images/icon-tick_green.png);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.info-personal .advanced .highlight {
  margin: 0;
  margin-right: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-align: left;
  color: #27d086;
}
.info-personal .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.info-personal .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.info-personal .note.transparent {
  background-color: transparent;
  padding: 0;
  padding-left: 25px;
  font-size: 12px;
}
.info-personal .note.transparent .icon {
  top: 0;
  left: 0;
}
.info-personal .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.info-personal .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.info-personal .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}

.info-partner .basic-info .section-content {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.info-partner .basic-info .has-float-label label, .info-partner .basic-info .has-float-label > span {
  background-color: transparent;
}
.info-partner .basic-info .form-control {
  background-color: transparent;
}

.member-id {
  min-height: 36px;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #eaeff7;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.member-id__header {
  font-size: 16px;
  font-weight: 700;
  color: #1db2e5;
  margin-right: 10px;
}

.member-form a {
  color: #1db2e5;
  text-decoration: underline;
}
.member-form a:hover {
  text-decoration: none;
  color: #4bc2ea;
}
.member-form .form-row {
  position: relative;
  margin: 0 0 35px;
}
.member-form .form-row:first-child {
  margin-top: 15px;
}
.member-form .form-row:last-child {
  margin-bottom: 0;
}
.member-form .form-group {
  margin-bottom: 0;
}
.member-form .invalid-feedback {
  position: absolute;
  top: 40px;
  left: 0;
  width: auto;
  display: block;
  pointer-events: none;
}
.member-form .invalid-feedback--valid {
  color: #27d086;
}
.member-form .invalid-feedback--invalid {
  color: #ff6b6b;
}
.member-form .btn {
  display: block;
  width: 122px;
  height: 40px;
  margin-left: 18px;
}
.member-form .form-group {
  width: calc(100% - 140px);
}
.member-form .phone .invalid-feedback {
  top: 5px;
  display: none;
  font-size: 16px;
}
.member-form .phone .empty {
  display: block;
}
.member-form .email {
  margin-bottom: 55px;
}
.member-form .upload .invalid-feedback {
  top: 6px;
  display: none;
  font-size: 14px;
}
.member-form .upload .empty {
  display: block;
}
.member-form .icon-error {
  width: 16px;
  height: 16px;
}
.member-form .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.member-form .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.member-form .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.member-form .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.member-form .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}

.cross-table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 0 60px;
  overflow-y: hidden;
}
.cross-table .cross-swiper {
  margin: 0 -12px;
}
.cross-table .cross-item {
  border-radius: 5px;
  margin: 0 12px;
  text-align: center;
  font-weight: 700;
}
.cross-table .cross-item__header {
  min-height: 150px;
  color: #fff;
  border-radius: 5px 5px 0 0;
  padding-top: 15px;
  font-size: 24px;
}
.cross-table .cross-item__header img {
  display: block;
  margin: 0 auto;
}
.cross-table .cross-item__content {
  background-color: #fff;
}
.cross-table .cross-item__block {
  padding: 25px 0;
  min-height: 84px;
}
.cross-table .cross-item__block:before {
  content: attr(data-value) "";
  color: #595757;
  font-size: 12px;
  display: none;
}
.cross-table .cross-item__block:nth-child(3n-1) {
  background-color: #f7faff;
}
.cross-table__header {
  width: 217px;
  font-size: 20px;
}
.cross-table__header .cross-item {
  color: #fff;
  margin: 0;
  margin-right: 24px;
  font-weight: 700;
}
.cross-table__header .cross-item__content {
  background-color: #595757;
  border-radius: 5px 0 0 5px;
}
.cross-table__header .cross-item__block {
  padding-left: 35px;
  text-align: left;
}
.cross-table__header .cross-item__block:nth-child(3n-1) {
  background-color: #595757;
}
.cross-table__content {
  width: calc(100% - 180px);
  font-size: 18px;
}
.cross-table .unverified {
  color: #4f4f4f;
}
.cross-table .unverified .cross-item__header {
  background: #d6deeb;
  background: linear-gradient(150deg, #d6deeb 0%, #bbcadf 100%);
}
.cross-table .basic {
  color: #27d086;
}
.cross-table .basic .cross-item__header {
  background: #27d086;
  background: linear-gradient(150deg, #27d086 0%, #1bbc76 100%);
}
.cross-table .verified {
  color: #1db2e5;
}
.cross-table .verified .cross-item__header {
  background: #1db2e5;
  background: linear-gradient(150deg, #1db2e5 0%, #0184ff 100%);
}

.modal {
  color: #595757;
  background-color: rgba(93, 93, 93, 0.5);
}

.form-modal .member-form .form-row {
  position: relative;
  margin: 0 0 35px;
}
.form-modal .member-form .form-row:last-child {
  margin-bottom: 0;
}
.form-modal .member-form .IDNumber {
  margin: 0 0 20px;
}
.form-modal .member-form .IDNumber-company {
  margin: 0 0 35px;
}
.form-modal .member-form .form-group {
  width: 100%;
}
.form-modal .btn {
  max-width: 200px;
  line-height: 50px;
  height: 50px;
  margin: 0 10px;
}
.form-modal .row {
  width: calc(100% + 10px * 2);
  margin-right: -10px;
  margin-left: -10px;
}
.form-modal .col {
  padding: 0 10px;
}
.form-modal p {
  line-height: 1.625;
}
.form-modal .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}
.form-modal .has-float-label select {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto;
}
.form-modal .btn-group-toggle {
  margin: 0 -10px;
  width: calc(100% + 10px * 2);
}
.form-modal .btn-group-toggle > .btn:not(:last-child):not(.dropdown-toggle),
.form-modal .btn-group-toggle > .btn-group:not(:last-child) > .btn {
  border-radius: 5px;
}
.form-modal .btn-group-toggle .btn {
  background-color: #f4f7fc;
  color: #9c9c9c;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  width: calc(100% / 3 - 10px * 2);
  border-radius: 5px;
}
.form-modal .btn-group-toggle .btn.active {
  background-color: #1db2e5;
  color: #fff;
}
.form-modal .input-checkbox {
  display: none;
}
.form-modal .label-checkbox {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}
.form-modal .label-checkbox:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-image: none;
  background-size: 80%;
  background-position: center;
  border: 1px solid #c2c2c2;
  left: 0;
  top: 0;
}
.form-modal .input-checkbox:checked + .label-checkbox::before {
  background-image: url(../images/icon-tick_blue.svg);
}
.form-modal.step1 .modal-dialog {
  max-width: 588px;
}
.form-modal.step1 .birthday {
  margin: 0 0 20px;
}
.form-modal.step1 .heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
}
.form-modal.step1 .heading .form-checkbox {
  position: absolute;
  top: 0;
  right: 0;
}
.form-modal.step1 .heading .label-checkbox {
  font-size: 14px;
  font-weight: 400;
}
.form-modal.step1 .btn {
  max-width: 220px;
}
.form-modal.step3 .main-text {
  margin-bottom: 10px;
}
.form-modal.step3 .list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 10px;
}
.form-modal.step3 .list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
.form-modal.step3 .list li span {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  background-color: #1db2e5;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  line-height: 20px;
  border-radius: 50%;
}
.form-modal.upload-modal .main-text {
  margin-bottom: 10px;
}
.form-modal .upload-block {
  border: 2px dashed #eaeff7;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}
.form-modal .upload-block__image {
  margin-bottom: 5px;
}
.form-modal .upload-block__text {
  margin-bottom: 15px;
}
.form-modal .upload-block .btn {
  display: block;
  margin: 0 auto 10px;
  max-width: 146px;
  height: 40px;
  line-height: 40px;
}
.form-modal.step4 {
  text-align: center;
}
.form-modal.step4 .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.form-modal.step4 img {
  display: block;
  margin: 30px auto 10px;
}
.form-modal.step4 .modal-dialog {
  max-width: 386px;
}
.form-modal.mail-edit .unverified {
  position: absolute;
  top: -25px;
  left: 40px;
  margin: 0;
  background-color: transparent;
}
.form-modal.phone-confirm .modal-dialog {
  max-width: 588px;
}
.form-modal.phone-confirm .mobileNumber .form-group {
  width: calc(100% - 140px);
}
.form-modal.phone-confirm .mobileNumber .btn-row {
  width: 140px;
}
.form-modal.phone-confirm .mobileNumber .btn {
  display: block;
  width: 122px;
  height: 40px;
  line-height: 40px;
  margin-left: 18px;
}
.form-modal.phone-edit .modal-dialog {
  max-width: 588px;
}
.form-modal.phone-edit .mobileNumber {
  margin-bottom: 35px;
}
.form-modal.phone-edit .mobileNumber .form-group:first-child {
  width: 122px;
}
.form-modal.phone-edit .mobileNumber .form-group:last-child {
  width: calc(100% - 122px - 20px);
  margin-left: 20px;
}
.form-modal.phone-edit .sms-verification {
  margin-bottom: 20px;
}
.form-modal.phone-edit .sms-verification .form-group {
  width: calc(100% - 95px);
  padding-right: 9px;
}
.form-modal.phone-edit .sms-verification .btn-row {
  width: 95px;
}
.form-modal.phone-edit .sms-verification .btn {
  line-height: 30px;
  height: 30px;
  font-size: 12px;
  margin: 10px 0 0;
  width: 100%;
}
.form-modal.phone-edit .has-float-label input:placeholder-shown:not(:focus) + * {
  font-size: 16px;
}
.form-modal.password-edit .modal-dialog {
  max-width: 386px;
}
.form-modal.password-edit .has-float-label input:placeholder-shown:not(:focus) + * {
  font-size: 16px;
}

.due {
  position: relative;
}
.due .section-header__col-right {
  width: 100%;
  max-width: 146px;
}
.due .btn-primary {
  width: 146px;
}
.due .section-bottom {
  position: absolute;
  bottom: 5px;
  right: 0;
  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;
}

.due-table {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}
.due-table .due-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #595757;
  font-size: 18px;
}
.due-table .due-item:nth-child(2n-1) {
  background-color: #f7faff;
}
.due-table .col {
  padding: 20px;
}
.due-table .col:nth-child(1) {
  width: 30%;
  text-align: left;
}
.due-table .col:nth-child(2) {
  width: 20%;
  text-align: center;
}
.due-table .col:nth-child(3) {
  width: 20%;
  text-align: center;
}
.due-table .col:nth-child(4) {
  width: 30%;
  text-align: left;
  font-size: 14px;
  color: #9c9c9c;
}
.due-table .sp-point {
  color: #1db2e5;
  font-size: 24px;
}
.due-table .sp-point .icon {
  background-size: auto;
  margin-top: -5px;
}
.due-table .time {
  color: #9c9c9c;
  font-size: 14px;
}
.due-table .expire {
  font-weight: 700;
  display: inline-block;
}
.due-table .expire--red {
  color: #ff6b6b;
}
.due-table .expire--blue {
  color: #1db2e5;
}
.due-table__header {
  color: #9c9c9c;
  line-height: 54px;
  font-weight: 700;
}
.due-table__header .col {
  padding: 0 20px;
}

.mycoupon {
  position: relative;
}

.mycoupon-table {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}
.mycoupon-table .mycoupon-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #595757;
  font-size: 18px;
}
.mycoupon-table .mycoupon-item:nth-child(2n-1) {
  background-color: #f7faff;
}
.mycoupon-table .col {
  padding: 20px;
  flex-basis: auto;
}
.mycoupon-table .col:nth-child(1) {
  width: 32.5%;
}
.mycoupon-table .col:nth-child(2) {
  width: 24.25%;
}
.mycoupon-table .col:nth-child(3) {
  width: 19.5%;
  text-align: center;
}
.mycoupon-table .col:nth-child(4) {
  width: 23.75%;
}
.mycoupon-table .col:nth-child(4) .d-flex {
  width: 100%;
}
.mycoupon-table .image {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
}
.mycoupon-table .time {
  color: #9c9c9c;
  font-size: 14px;
}
.mycoupon-table__header {
  color: #9c9c9c;
  line-height: 54px;
  font-weight: 700;
}
.mycoupon-table__header .col {
  padding: 0 20px;
}
.mycoupon-table .btn-primary {
  font-weight: 700;
  max-width: 146px;
  margin: 0 auto;
}
.mycoupon-table .sp-point {
  font-size: 24px;
  font-weight: 400;
}

.mycoupon-modal {
  text-align: center;
}
.mycoupon-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 588px;
  margin: 1.75rem auto;
}
.mycoupon-modal .main-text {
  color: #595757;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-top: -4px;
  margin-bottom: 10px;
  padding: 0 34px;
}
.mycoupon-modal .btn {
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
  max-width: 200px;
  font-weight: 700;
}
.mycoupon-modal .serial-number {
  text-align: center;
  font-size: 14px;
  color: #9c9c9c;
}
.mycoupon-modal .serial-number__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.mycoupon-modal .serial-number .input-group {
  border: 1px solid #eaeff7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  border-radius: 5px;
  width: 100%;
  max-width: 310px;
  margin: 0 auto 15px;
}
.mycoupon-modal .serial-number .form-control {
  width: calc(100% - 146px);
  border: 0;
  font-size: 16px;
  padding-left: 20px;
}
.mycoupon-modal .serial-number .btn {
  margin: 0;
  line-height: 41px;
  height: 41px;
  max-width: 146px;
}
.mycoupon-modal .serial-number .validity-period {
  margin: 0 auto;
}
.mycoupon-modal .serial-number .bottom-info {
  color: #595757;
  margin: 20px auto 10px;
}
.mycoupon-modal .serial-number .bottom-info a {
  color: #1db2e5;
  text-decoration: underline;
}
.mycoupon-modal .serial-number .bar-code {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 15px;
}
.mycoupon-modal .exchange-info__header {
  height: 40px;
  background-color: #52b3d6;
  padding: 10px 0;
}
.mycoupon-modal .exchange-info__header img {
  height: 20px;
  display: block;
  margin: 0 auto;
}
.mycoupon-modal .exchange-info__content {
  padding: 10px 0;
  position: relative;
  color: #595757;
  font-size: 18px;
  line-height: 1.56;
}
.mycoupon-modal .exchange-info p {
  margin: 0;
  text-align: center;
}
.mycoupon-modal .exchange-info .title {
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.mycoupon-modal .exchange-info .image {
  position: relative;
  margin-bottom: 20px;
}
.mycoupon-modal .exchange-info .circle-text {
  width: 68px;
  height: 68px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 68px;
  border-radius: 50%;
}
.mycoupon-modal .exchange-info__footer {
  border-top: 1px solid #eaeff7;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #595757;
  text-align: left;
  white-space: pre-line;
  min-height: 239px;
}
.mycoupon-modal .exchange-info__footer ul {
  padding-left: 1.25em;
  margin-bottom: 0;
}

.record-table {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}
.record-table .record-item {
  color: #595757;
  font-size: 18px;
  line-height: 1.4444;
}
.record-table .record-item:nth-child(2n-1) {
  background-color: #f7faff;
}
.record-table .record-item__inner-block {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #eaeff7;
  border-bottom: 2px solid #eaeff7;
  padding: 20px;
}
.record-table .group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.record-table .col {
  padding: 27px 20px;
  position: relative;
  flex-basis: auto;
}
.record-table .col:nth-child(1) {
  width: 60%;
  font-weight: 700;
}
.record-table .col:nth-child(2) {
  width: 25%;
}
.record-table .col:nth-child(3) {
  width: 15%;
  font-size: 14px;
  color: #9c9c9c;
}
.record-table .bonus {
  color: #1db2e5;
  font-size: 24px;
}
.record-table .category {
  color: #1db2e5;
  font-size: 18px;
  padding: 0 5px;
  font-weight: 700;
}
.record-table .sp-point {
  font-weight: 700;
  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;
}
.record-table .sp-point .icon-coin {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}
.record-table .sp-point--plus {
  color: #52d99e;
}
.record-table .sp-point--plus .icon-coin {
  background-image: url(../images/icon-circleCoin_green.svg);
}
.record-table .sp-point--less {
  color: #ff6b6b;
}
.record-table .sp-point--less .icon-coin {
  background-image: url(../images/icon-circleCoin_red.svg);
}
.record-table__header {
  color: #9c9c9c;
  line-height: 54px;
  font-weight: 700;
}
.record-table__header .col {
  padding: 0 20px;
}
.record-table .sp-collapse .btn-collapse {
  top: calc(50% - 20px);
  right: 10px;
}
.record-table .info-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.record-table .info-col {
  width: 50%;
}
.record-table .info-col .block {
  line-height: 1.44;
  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;
}
.record-table .info-col .block + .block {
  margin-top: 20px;
}
.record-table .info-col .btn {
  width: auto;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  padding: 0 20px;
}
.record-table .text-small {
  font-size: 12px;
  color: #9c9c9c;
  margin-left: 10px;
}
.record-table .cancel-order .group {
  color: #c2c2c2;
}
.record-table .cancel-order .group .sp-point {
  color: #c2c2c2;
}
.record-table .cancel-order .group .sp-point .icon-coin {
  background-image: url(../images/icon-circleCoin.svg);
  filter: grayscale(100%);
  opacity: .5;
}

.sp-collapse {
  position: relative;
}
.sp-collapse .btn-collapse {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
}
.sp-collapse .icon-arrow {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon-collapse_down.svg);
  background-size: auto;
}
.sp-collapse__content {
  display: none;
}
.sp-collapse.is-view .sp-collapse__content {
  display: block;
}
.sp-collapse.is-view .icon-arrow {
  background-image: url(../images/icon-collapse_up.svg);
}

.info-transfer {
  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: 0;
  margin-bottom: 30px;
}
.info-transfer .section-content {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.info-transfer .recent-transfer-record {
  width: calc(100% - 484px);
  padding-right: 25px;
}
.info-transfer .recent-transfer-record .section-content {
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.info-transfer .avatar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.info-transfer .avatar__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.info-transfer .points-transfer {
  width: 484px;
}
.info-transfer .points-transfer .section-content {
  padding: 10px;
}
.info-transfer .points-transfer .bottom-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.info-transfer .points-transfer .bottom-row .btn {
  width: 100%;
  max-width: 146px;
  margin: 0 10px;
}
.info-transfer .transferPoints .invalid-feedback {
  top: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #9c9c9c;
}
.info-transfer .transferPoints .main-text {
  color: #1db2e5;
  font-size: 24px;
  padding-right: 10px;
}
.info-transfer .transferPoints .icon {
  margin-top: -5px;
  width: 20px;
  height: 20px;
}
.info-transfer .sp-table .sp-point {
  color: #1db2e5;
  font-size: 24px;
}
.info-transfer .sp-table .sp-point .icon {
  width: 20px;
  height: 20px;
  margin-top: -5px;
  margin-right: 5px;
}
.info-transfer .sp-table .btn {
  max-width: 146px;
  margin-left: auto;
}

.choose1 .modal-dialog {
  max-width: 391px;
}
.choose1 .main-text {
  margin-bottom: 15px;
}
.choose1 .search-input {
  margin-bottom: 20px;
}
.choose1 .search-input .form-control {
  border: 1px solid #eaeff7;
  border-radius: 5px;
}
.choose1 .friends-list .friends-item {
  position: relative;
  font-size: 18px;
  line-height: 41px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.choose1 .friends-list .friends-item__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #eee;
}
.choose1 .friends-list .friends-item__content {
  width: calc(100% - 50px - 101px);
  padding: 0 10px;
}
.choose1 .friends-list .friends-item__action {
  width: 101px;
}
.choose1 .friends-list .friends-item:last-child {
  margin-bottom: 0;
}
.choose1 .friends-list .btn-primary {
  height: 40px;
  line-height: 40px;
  width: 101px;
  margin: 0;
  font-size: 16px;
}

.choose2 .modal-dialog {
  max-width: 588px;
}
.choose2 .main-text {
  margin-bottom: 30px;
}
.choose2 .sp-point {
  color: #1db2e5;
}
.choose2 .transfer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
.choose2 .transfer .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  margin-bottom: 5px;
}
.choose2 .transfer .icon-transfer {
  margin-top: 5px;
  margin-bottom: 15px;
}
.choose2 .transfer .sp-point {
  color: #595757;
  font-weight: 700;
  font-size: 30px;
}
.choose2 .transfer .sp-point .icon {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
.choose2 .transfer__left {
  padding: 0 20px 0 0;
  width: calc(100% / 2 - 140px / 2);
  text-align: right;
}
.choose2 .transfer__left .sp-point {
  color: #1db2e5;
}
.choose2 .transfer__middle {
  text-align: center;
}
.choose2 .transfer__middle .sp-point {
  color: #1db2e5;
}
.choose2 .transfer__middle .number-input {
  margin: 0 auto;
}
.choose2 .transfer__right {
  padding: 0 0 0 20px;
  width: calc(100% / 2 - 140px / 2);
  text-align: left;
}
.choose2 .transfer__right .sp-point {
  color: #1db2e5;
}
.choose2 .transfer__right .icon {
  opacity: .8;
}
.choose2 .m-transfer {
  display: none;
}
.choose2 .m-transfer__left {
  padding: 0 10px 0 0;
  width: calc(100% / 2 - 50px / 2);
  text-align: right;
}
.choose2 .m-transfer__middle {
  width: 50px;
}
.choose2 .m-transfer__right {
  padding: 0 0 0 10px;
  width: calc(100% / 2 - 50px / 2);
  text-align: left;
}
.choose2 .m-transfer .hd {
  font-size: 13px;
  font-weight: 700;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.choose2 .m-transfer .sp-point {
  color: #1db2e5;
  font-weight: 700;
  font-size: 21px;
}
.choose2 .m-transfer .sp-point .icon {
  width: 16px;
  height: 16px;
  margin-top: -3px;
}
.choose2 .m-transfer .number {
  font-weight: 700;
  font-size: 21px;
  color: #ff836b;
}
.choose2 .m-transfer .input-number-wrap {
  margin-top: 15px;
}
.choose2 .bottom-block {
  text-align: center;
  font-size: 14px;
  color: #9c9c9c;
  padding: 5px 0;
}

.choose3 .modal-dialog {
  max-width: 588px;
}
.choose3 .main-text {
  margin-bottom: 30px;
}
.choose3 .sp-point {
  color: #1db2e5;
}
.choose3 .avatar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.choose3 .avatar__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.choose3 .avatar__name {
  font-size: 30px;
  font-weight: 700;
}
.choose3 .transfer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 35px;
}
.choose3 .transfer .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.choose3 .transfer .icon-transfer {
  margin-top: 50px;
}
.choose3 .transfer .sp-point {
  color: #595757;
  font-weight: 700;
  font-size: 30px;
}
.choose3 .transfer .sp-point .icon {
  width: 25px;
  height: 25px;
  margin-top: -5px;
}
.choose3 .transfer__left {
  padding: 0 20px 0 0;
  width: calc(100% / 2 - 140px / 2);
  text-align: right;
}
.choose3 .transfer__left .sp-point {
  color: #1db2e5;
}
.choose3 .transfer__middle {
  text-align: center;
}
.choose3 .transfer__middle .sp-point {
  color: #1db2e5;
}
.choose3 .transfer__middle .number-input {
  margin: 0 auto;
}
.choose3 .transfer__right {
  padding: 0 0 0 20px;
  width: calc(100% / 2 - 140px / 2);
  text-align: left;
}
.choose3 .transfer__right .sp-point {
  color: #1db2e5;
}
.choose3 .transfer__right .icon {
  opacity: .8;
}
.choose3 .bottom-block {
  text-align: center;
  font-size: 14px;
  color: #9c9c9c;
  padding: 20px 0 5px;
  margin: 0 -20px;
  width: calc(100% + 20px * 2);
  border-top: 1px solid #eaeff7;
}
.choose3 .balance {
  font-size: 16px;
  color: #595757;
}
.choose3 .balance .icon {
  width: 16px;
  height: 16px;
  margin-top: -5px;
}

.choose4 {
  text-align: center;
}
.choose4 .modal-dialog {
  max-width: 386px;
}
.choose4 .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.choose4 img {
  display: block;
  margin: 30px auto 10px;
}
.choose4 .modal-dialog {
  max-width: 386px;
}
.choose4 .highlight {
  color: #1db2e5;
  font-weight: 700;
}

.signup-sucess {
  text-align: center;
}
.signup-sucess .modal-dialog {
  max-width: 386px;
}
.signup-sucess .main-text {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.signup-sucess img {
  display: block;
  margin: 30px auto 10px;
}
.signup-sucess p {
  font-size: 14px;
}
.signup-sucess .btn {
  max-width: 100%;
  margin: 0 0 20px;
}

.signup-coupons {
  text-align: center;
}
.signup-coupons .modal-dialog {
  max-width: 386px;
}
.signup-coupons .main-text {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 40px;
}
.signup-coupons .sub-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.signup-coupons p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.signup-coupons .highlight {
  color: #1db2e5;
}
.signup-coupons .btn {
  max-width: 200px;
  margin: 0 auto;
}
.signup-coupons .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 0 -5px 10px;
}
.signup-coupons .block {
  max-width: 123px;
  margin: 0 5px;
}

.prompt-modal {
  text-align: center;
  word-break: break-all;
}
.prompt-modal .modal-dialog {
  max-width: 320px;
}
.prompt-modal .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.prompt-modal img {
  display: block;
  margin: 0 auto 10px;
}
.prompt-modal p {
  font-size: 16px;
  line-break: auto;
}
.prompt-modal .btn {
  max-width: 200px;
  margin: 0 auto;
}
.prompt-modal .btn + .btn {
  margin-top: 10px;
}

.info-friends .section-content {
  position: relative;
  width: 100%;
  display: block;
  background-color: #fff;
  padding: 32px 30px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.info-friends .section-top {
  margin-bottom: 40px;
  font-size: 16px;
  color: #9c9c9c;
}
.info-friends .section-bottom {
  margin-bottom: 80px;
}
.info-friends .section-bottom .filter .btn {
  margin-right: 20px;
  width: 145px;
}
.info-friends .section-bottom .filter .btn:last-child {
  margin-right: 0;
}
.info-friends__block {
  position: relative;
}
.info-friends__block:before {
  content: "";
  background-color: #eaeff7;
  width: 1px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.info-friends .member {
  width: 226px;
  font-weight: 700;
}
.info-friends .member-id {
  color: #1db2e5;
  font-size: 30px;
  padding-top: 5px;
}
.info-friends .invite {
  width: 515px;
  padding: 0 30px;
}
.info-friends .invite p {
  font-weight: 700;
  line-height: 1.63;
  color: #9c9c9c;
}
.info-friends .invite .form-control:disabled {
  color: #595757;
  -webkit-text-fill-color: #595757;
  font-weight: 700;
}
.info-friends .info {
  width: calc(100% - 226px - 515px);
  padding-left: 30px;
}
.info-friends .info:before {
  display: none;
}
.info-friends .info .block {
  margin-bottom: 14px;
}
.info-friends .info .main-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  color: #1db2e5;
  margin-bottom: 8px;
}
.info-friends .info .sub-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.63;
  color: #9c9c9c;
}
.info-friends .info .icon-gift {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -4px;
}
.info-friends .info .btn-light {
  color: #1db2e5;
  background-color: #ebeff6;
}
.info-friends .info .btn-light:disabled .icon-gift {
  background-image: url(../images/icon-gift-gary.svg);
}
.info-friends .input-group {
  border: 1px solid #eaeff7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  border-radius: 5px;
  margin-top: 5px;
}
.info-friends .input-group .icon-link {
  width: 16px;
  height: 16px;
}
.info-friends .input-group .input-group-text {
  background-color: transparent;
  border: 0;
}
.info-friends .input-group .form-control {
  width: calc(100% - 40px - 146px);
  border: 0;
  font-size: 16px;
  color: #595757;
}
.info-friends .input-group .btn-light {
  width: 146px;
}
.info-friends .input-group .icon-tick {
  background-image: url(../images/icon-tick_blue.svg);
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: -2px;
}
.info-friends .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.info-friends .friends-list {
  margin: -10px;
  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;
}
.info-friends .friends-item {
  position: relative;
  width: calc(100% / 2 - 10px * 2);
  margin: 10px;
  color: #595757;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.info-friends .friends-item__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #eee;
}
.info-friends .friends-item__content {
  width: calc(100% - 50px - 40px);
  padding: 5px 10px;
  font-size: 18px;
  line-height: 40px;
}
.info-friends .friends-item__action {
  width: 40px;
  padding: 5px 0;
}
.info-friends .btn-more {
  width: 40px;
  background-color: #eef2f9;
}
.info-friends .btn-more .icon {
  display: block;
  margin: 0 auto;
}

.add-friends .modal-dialog {
  max-width: 591px;
}
.add-friends .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.add-friends .search-input {
  margin-bottom: 20px;
}
.add-friends .search-input .form-control {
  border: 1px solid #eaeff7;
  border-radius: 5px;
}
.add-friends .friends-list .friends-item {
  position: relative;
  padding: 5px 0;
  min-height: 40px;
  padding-right: 156px;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  word-break: break-all;
}
.add-friends .friends-list .friends-item:last-child {
  margin-bottom: 0;
}
.add-friends .friends-list .icon-plus {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: -4px;
}
.add-friends .friends-list .icon-tick {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-top: -4px;
}
.add-friends .friends-list .btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 41px;
  line-height: 41px;
  width: 146px;
  margin: 0;
  font-size: 16px;
}
.add-friends .friends-list .btn-secondary {
  background-color: #c1f5de;
  color: #27d086;
}
.add-friends .friends-list .btn-secondary.active {
  background-color: #27d086;
  color: #fff;
}
.add-friends .friends-list .btn-secondary.active:hover, .add-friends .friends-list .btn-secondary.active:active {
  background-color: #27d086;
  color: #fff;
}
.add-friends .friends-list .btn-secondary:hover, .add-friends .friends-list .btn-secondary:active {
  background-color: #c1f5de;
  color: #27d086;
}

.friends-invitation .modal-dialog {
  max-width: 391px;
}
.friends-invitation .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.friends-invitation .friends-list .friends-item {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.friends-invitation .friends-list .friends-item__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #eee;
}
.friends-invitation .friends-list .friends-item__content {
  width: calc(100% - 50px - 60px * 2);
  padding: 0 10px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3em;
}
.friends-invitation .friends-list .friends-item__action {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.friends-invitation .friends-list .friends-item:last-child {
  margin-bottom: 0;
}
.friends-invitation .friends-list .btn {
  height: 41px;
  line-height: 41px;
  width: 60px;
  margin: 0;
  font-size: 16px;
}
.friends-invitation .friends-list .btn + .btn {
  margin-left: 10px;
}

.points-collection .modal-dialog {
  max-width: 588px;
}
.points-collection .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.points-collection .transfer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
.points-collection .transfer .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.points-collection .transfer .sp-point {
  color: #595757;
  font-weight: 700;
  font-size: 30px;
}
.points-collection .transfer .sp-point .icon {
  width: 25px;
  height: 25px;
  margin-top: -5px;
  filter: grayscale(1);
}
.points-collection .transfer__left {
  padding: 0 50px 0 0;
  width: calc(100% / 2 - 140px / 2);
  text-align: right;
}
.points-collection .transfer__middle {
  text-align: center;
}
.points-collection .transfer__middle .sp-point {
  color: #1db2e5;
}
.points-collection .transfer__right {
  padding: 0 0 0 50px;
  width: calc(100% / 2 - 140px / 2);
}
.points-collection .btn {
  max-width: 200px;
}
.points-collection .icon-transfer {
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
  height: 27px;
}

.points-collection-finish .modal-dialog {
  max-width: 390px;
}
.points-collection-finish .main-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.points-collection-finish img {
  display: block;
  margin: 0 auto;
}
.points-collection-finish .sp-point {
  color: #1db2e5;
  font-weight: 700;
}
.points-collection-finish .top-block .hd {
  font-size: 18px;
  font-weight: 700;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-align: center;
}
.points-collection-finish .top-block .sp-point {
  font-size: 30px;
  text-align: center;
}
.points-collection-finish .top-block .sp-point .icon-coin {
  width: 25px;
  height: 25px;
  margin-top: -5px;
  margin-left: 5px;
}
.points-collection-finish .bottom-block {
  margin: 0 -20px;
  width: calc(100% + 20px * 2);
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #eaeff7;
}
.points-collection-finish .bottom-block .sp-point .icon-coin {
  width: 16px;
  height: 16px;
  margin-top: -5px;
}
.points-collection-finish .bottom-block p {
  color: #9c9c9c;
}
.points-collection-finish .btn {
  max-width: 200px;
}

.wallet-address .modal-dialog {
  max-width: 588px;
}
.wallet-address .modal-body {
  padding: 44px 20px 20px;
}
.wallet-address .main-text {
  line-height: 1.42;
  margin-bottom: 20px;
}
.wallet-address .main-text span {
  display: inline-block;
}
.wallet-address .form-control {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
}
.wallet-address .form-control.error {
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}
.wallet-address .form-control.error::placeholder {
  color: #ff6b6b;
}
.wallet-address a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  text-align: center;
  color: #1db2e5;
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block;
}
.wallet-address .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-align: left;
}
.wallet-address .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.wallet-address .note.note--gray {
  color: #9c9c9c;
  background-color: transparent;
  padding: 5px 0;
  padding-left: 25px;
  font-weight: 400;
  margin: 20px 0 0;
}
.wallet-address .note.note--gray .icon-alert {
  left: 0;
  background-image: url(../images/icon-alert--light3.svg);
}
.wallet-address .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.wallet-address .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.wallet-address .block {
  text-align: left;
  margin-bottom: 10px;
}
.wallet-address .block .hd {
  font-size: 18px;
  font-weight: 700;
}

.address-settings {
  margin-bottom: 60px;
}
.address-settings .section-header {
  margin-bottom: 20px;
}
.address-settings .section-header .heading {
  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;
}
.address-settings .section-header .note {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b6b;
  margin-left: 20px;
  line-height: 20px;
}
.address-settings .section-header .note .icon-alert {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-alert--light2.svg);
  margin-right: 5px;
}
.address-settings .section-header .btn {
  width: 145px;
}
.address-settings .no-data {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}
.address-settings .no-data .image {
  width: 100px;
  margin: 0 auto;
}
.address-settings .no-data .main-text {
  margin: 20px 0;
  font-size: 24px;
  line-height: 1.3333;
  font-weight: 700;
  text-align: center;
  color: #595757;
}
.address-settings .no-data .btn {
  width: 145px;
  margin: 0 auto;
}
.address-settings .recipient-item {
  position: relative;
  width: 100%;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  padding-left: 60px;
  padding-right: 80px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.address-settings .recipient-item + .recipient-item {
  margin-top: 20px;
}
.address-settings .recipient-item .form-radio {
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
}
.address-settings .recipient-item .action {
  position: absolute;
  top: calc(50% - 20px);
  right: 20px;
}
.address-settings .recipient-item .input-radio {
  display: none;
}
.address-settings .recipient-item .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.address-settings .recipient-item .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 0;
}
.address-settings .recipient-item .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 5px;
}
.address-settings .recipient-item .label-radio span {
  font-size: 12px;
  color: #2fcd83;
  margin-left: 5px;
}
.address-settings .recipient-item .input-radio:disabled ~ .label-radio {
  color: #c2c2c2;
}
.address-settings .recipient-item .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.address-settings .recipient-item .form-radio {
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
}
.address-settings .recipient-item .delete {
  color: #ff836b;
}
.address-settings .recipient-item .name {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #595757;
}
.address-settings .recipient-item .info {
  font-size: 18px;
  line-height: 1.3333;
  color: #9c9c9c;
  margin-top: 20px;
}
.address-settings .btn-more {
  width: 40px;
  background-color: #eef2f9;
}
.address-settings .btn-more .icon {
  display: block;
  margin: 0 auto;
}
.address-settings .btn-row {
  padding-top: 30px;
  margin-bottom: 30px;
}
.address-settings .btn-row .btn-secondary {
  width: 320px;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
}

.add-address .form-group {
  width: 100%;
}
.add-address .row {
  width: calc(100% + 10px * 2);
  margin-right: -10px;
  margin-left: -10px;
}
.add-address .col {
  padding-right: 10px;
  padding-left: 10px;
}
.add-address .input-checkbox {
  display: none;
}

.other-point-query .tip {
  width: 420px;
  height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding: 2px 11px 2px 45px;
  border-radius: 20px;
  background-color: #d7ebfc;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: #1db2e5;
  position: relative;
  line-height: 20px;
}
.other-point-query .tip .owl {
  width: 30px;
  position: absolute;
  top: calc(100% / 2 - 30px / 2);
  left: 10px;
}
.other-point-query .tip .arrow {
  width: 24px;
  position: absolute;
  top: 50%;
  right: -14px;
}
.other-point-query .point-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: -10px -10px 10px;
}
.other-point-query .point-item {
  position: relative;
  width: calc(100% / 2 - 10px * 2);
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 10px;
}
.other-point-query .point-item .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% - 172px);
  padding-right: 10px;
}
.other-point-query .point-item .image {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
}
.other-point-query .point-item .group {
  width: calc(100% - 40px);
  padding-left: 20px;
}
.other-point-query .point-item .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 172px;
}
.other-point-query .point-item .main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: #595757;
  max-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
.other-point-query .point-item .text {
  margin-bottom: 10px;
  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;
}
.other-point-query .point-item .sp-point {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.42;
  color: #1db2e5;
  margin-right: 12px;
}
.other-point-query .point-item .expiry-date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  color: #c2c2c2;
}
.other-point-query .point-item .update {
  font-size: 12px;
  line-height: 1.67;
  color: #c2c2c2;
}
.other-point-query .btn-light {
  width: calc(100% - 40px - 10px);
  margin-right: 10px;
}
.other-point-query .btn-reload {
  width: 40px;
  background-color: #eef2f9;
}
.other-point-query .btn-reload .icon {
  display: block;
  margin: 0 auto;
  width: 16px;
  height: 16px;
}
.other-point-query .btn-reload:disabled .icon {
  filter: grayscale(1);
  opacity: .8;
}
.other-point-query .store-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: -10px -10px 10px;
}
.other-point-query .store-list .item {
  width: calc(100% / 2 - 10px * 2);
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed #cdcdcd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.other-point-query .store-list .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% - 122px);
  padding-right: 10px;
}
.other-point-query .store-list .image {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
}
.other-point-query .store-list .main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: #595757;
  padding-left: 20px;
  max-height: 52px;
  width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.other-point-query .store-list .action {
  width: 122px;
  padding: 6px 0;
}
.other-point-query .unbound .bottom-text {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}
.other-point-query .unbound .bottom-text a {
  color: #1db2e5;
  text-decoration: underline;
}
.other-point-query .unbound .bottom-text a:hover {
  text-decoration: none;
  color: #4bc2ea;
}
.other-point-query .bound .heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #595757;
  margin-bottom: 20px;
}
.other-point-query .no-data {
  position: relative;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.other-point-query .no-data .image {
  width: 120px;
  margin: 0 auto 20px;
}
.other-point-query .no-data .main-text {
  font-size: 20px;
  line-height: 1.3333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.other-point-query .no-data .sub-text {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.other-point-query .no-data a {
  color: #1db2e5;
  text-decoration: underline;
}
.other-point-query .no-data a:hover {
  text-decoration: none;
  color: #4bc2ea;
}

.point-query-detail {
  padding: 20px 0;
  background-color: #f4f7fc;
}
.point-query-detail .section-top {
  margin-bottom: 20px;
}
.point-query-detail .section-top .back {
  font-size: 16px;
  color: #9c9c9c;
}
.point-query-detail .section-top .back .icon {
  width: 20px;
  height: 20px;
  margin-top: -5px;
  background-size: 16px;
  margin-right: 5px;
}
.point-query-detail .main-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 20px;
}
.point-query-detail .store-list .item {
  margin: 0 0 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.point-query-detail .store-list .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-right: 10px;
  width: calc(100% - 40px);
}
.point-query-detail .store-list .image {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
}
.point-query-detail .store-list .group {
  width: calc(100% - 40px);
  padding-left: 20px;
}
.point-query-detail .store-list .text {
  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;
}
.point-query-detail .store-list .sp-point {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.42;
  color: #1db2e5;
  margin-right: 12px;
}
.point-query-detail .store-list .expiry-date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  color: #c2c2c2;
}
.point-query-detail .store-list .action {
  width: 40px;
  padding: 6px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.point-query-detail .store-list .dropdown {
  width: 40px;
}
.point-query-detail .store-list .delete {
  color: #ff836b;
}
.point-query-detail .store-list .btn-light {
  width: calc(100% - 40px - 10px);
  margin-right: 10px;
  display: none;
}
.point-query-detail .store-list .btn-more {
  width: 40px;
  background-color: #eef2f9;
}
.point-query-detail .store-list .btn-more .icon {
  display: block;
  margin: 0 auto;
}
.point-query-detail .store-list .single .content {
  width: calc(100% - 40px);
}
.point-query-detail .store-list .single .action {
  width: 40px;
  padding: 0;
}
.point-query-detail .info {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 40px;
  position: relative;
  padding-left: 25px;
}
.point-query-detail .info .icon-alert {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-image: url(../images/icon-alert_gray.svg);
}
.point-query-detail .info a {
  color: #1db2e5;
  text-decoration: underline;
  display: inline-block;
}
.point-query-detail .info a:hover {
  text-decoration: none;
  color: #4bc2ea;
}
.point-query-detail .promotions {
  margin-top: 40px;
  margin-bottom: 40px;
}
.point-query-detail .promotions .heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  color: #595757;
  margin-bottom: 20px;
}
.point-query-detail .promotions-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;
}
.point-query-detail .promotions-list .promotions-item {
  margin: 15px;
  width: calc(100% / 3 - 15px * 2);
}
.point-query-detail .promotions-item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.point-query-detail .promotions-item a {
  display: block;
}
.point-query-detail .promotions-item:hover {
  background-color: #1db2e5;
}
.point-query-detail .promotions-item:hover .promotions-item__main-text {
  color: #fff;
}
.point-query-detail .promotions-item:hover .promotions-item__sub-text {
  color: #fff;
}
.is-mobile .point-query-detail .promotions-item:hover {
  background-color: #1db2e5;
}
.is-mobile .point-query-detail .promotions-item:hover .promotions-item__main-text {
  color: #fff;
}
.is-mobile .point-query-detail .promotions-item:hover .promotions-item__sub-text {
  color: #fff;
}
.point-query-detail .promotions-item__image {
  position: relative;
  background-color: #e3e3e3;
  padding-top: 52.9%;
  overflow: hidden;
}
.point-query-detail .promotions-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-query-detail .promotions-item__content {
  padding: 10px 20px 20px;
}
.point-query-detail .promotions-item__main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
  color: #595757;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 52px;
}
.point-query-detail .promotions-item__sub-text {
  font-size: 14px;
  line-height: 24px;
  color: #585858;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: 24px;
}

.unbind-delete-modal .modal-dialog {
  max-width: 592px;
}
.unbind-delete-modal .main-text {
  color: #595757;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.unbind-delete-modal p {
  font-size: 16px;
  line-height: 1.63;
}
.unbind-delete-modal p + p {
  margin-top: 24px;
}
.unbind-delete-modal .highlight {
  color: #1db2e5;
}
.unbind-delete-modal .btn {
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
  max-width: 200px;
  font-weight: 700;
}

.member-barcode-modal .main-text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.member-barcode-modal .btn {
  margin: 0 10px;
  line-height: 50px;
  height: 50px;
  max-width: 200px;
  font-weight: 700;
}
.member-barcode-modal .barcode {
  width: 340px;
  margin: 0 auto 20px;
}
.member-barcode-modal .qrcode {
  width: 180px;
  margin: 0 auto 10px;
}

.info-wallet {
  margin-bottom: 60px;
}
.info-wallet .section + .section {
  margin-top: 40px;
}
.info-wallet .section-header {
  margin-bottom: 20px;
}
.info-wallet .section-header .heading {
  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;
  margin: 0;
  padding-right: 200px;
}
.info-wallet .section-header .action {
  position: absolute;
  top: 0;
  right: 0;
}
.info-wallet .section-header .main-text {
  margin-right: 20px;
}
.info-wallet .section-header .note {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b6b;
  line-height: 20px;
  padding-left: 25px;
  position: relative;
}
.info-wallet .section-header .note .icon-alert {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-alert--light2.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.info-wallet .section-header .btn {
  width: 184px;
  margin: 0;
}
.info-wallet .wallet-item {
  position: relative;
  width: 100%;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  padding-right: 80px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  word-break: break-all;
}
.info-wallet .wallet-item + .wallet-item {
  margin-top: 20px;
}
.info-wallet .wallet-item .action {
  position: absolute;
  top: calc(50% - 20px);
  right: 27px;
}
.info-wallet .wallet-item .delete {
  color: #ff836b;
}
.info-wallet .wallet-item .name {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #595757;
}
.info-wallet .wallet-item .main-text {
  font-size: 20px;
  line-height: 1.3333;
  font-weight: 700;
  color: #595757;
  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;
}
.info-wallet .wallet-item .sub-text {
  font-size: 18px;
  line-height: 1.3333;
  color: #9c9c9c;
  margin-top: 20px;
}
.info-wallet .wallet-item .label-default {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 1px 10px;
  border-radius: 30px;
  background-color: #2fcd83;
  display: inline-block;
  margin-left: 10px;
}
.info-wallet .dropdown-item {
  font-weight: 700;
}
.info-wallet .no-data {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.info-wallet .no-data .image {
  width: 120px;
  margin: 0 auto 20px;
}
.info-wallet .no-data .main-text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
  color: #595757;
  margin-bottom: 10px;
}
.info-wallet .no-data .sub-text {
  font-size: 16px;
  line-height: 1.63;
  text-align: center;
  color: #595757;
}
.info-wallet .no-data .action {
  margin-top: 20px;
}
.info-wallet .no-data .btn {
  width: 177px;
  margin: 0 auto;
}
.info-wallet .btn-more {
  width: 40px;
  background-color: #eef2f9;
}
.info-wallet .btn-more .icon {
  display: block;
  margin: 0 auto;
}

.add-wallet-address .note {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #f4f7fc;
  font-size: 16px;
  line-height: 26px;
  margin: 20px 0 0;
}
.add-wallet-address .note a {
  color: #1db2e5;
  text-decoration: underline;
}
.add-wallet-address .note .highlight {
  color: #ff6b6b;
}
.add-wallet-address .note ol {
  padding-left: 1.25em;
  margin: 0;
}

.wallet-address-confirm {
  font-size: 16px;
  line-height: 1.63;
  color: #595757;
}
.wallet-address-confirm .main-text {
  margin-bottom: 20px;
}
.wallet-address-confirm p {
  margin: 0;
}
.wallet-address-confirm .note {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #f4f7fc;
  font-size: 16px;
  line-height: 26px;
  margin: 10px 0 0;
}
.wallet-address-confirm .note a {
  color: #1db2e5;
  text-decoration: underline;
}
.wallet-address-confirm .note .highlight {
  color: #ff6b6b;
}
.wallet-address-confirm .note ol {
  padding-left: 1.25em;
  margin: 0;
}

.wallet-address-choose .box {
  position: relative;
}
.wallet-address-choose .box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}
.wallet-address-choose .list {
  height: 270px;
  overflow: auto;
  margin-top: -35px;
}
.wallet-address-choose .item {
  position: relative;
  border-bottom: 1px solid #eaeff7;
  padding: 20px 0;
  padding-left: 30px;
  min-height: 90px;
  word-break: break-all;
}
.wallet-address-choose .item .form-radio {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}
.wallet-address-choose .item .input-radio {
  display: none;
}
.wallet-address-choose .item .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.wallet-address-choose .item .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 0;
}
.wallet-address-choose .item .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 5px;
}
.wallet-address-choose .item .label-radio span {
  font-size: 12px;
  color: #2fcd83;
  margin-left: 5px;
}
.wallet-address-choose .item .input-radio:disabled ~ .label-radio {
  color: #c2c2c2;
}
.wallet-address-choose .item .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}

@media (max-width: 1080px) {
  .info-personal {
    display: block;
    margin: 0;
  }
  .info-personal .section {
    width: 100%;
    margin: 0 0 30px;
  }

  .info-friends__block:before {
    display: none;
  }
  .info-friends .member {
    width: 100%;
    margin-bottom: 20px;
  }
  .info-friends .invite {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .info-friends .info {
    width: 100%;
    padding-left: 0;
  }
  .info-friends .section-content {
    display: block;
  }
}
@media (max-width: 940px) {
  .btn {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .member-form .form-row {
    display: block;
    margin: 0 0 35px;
  }
  .member-form .form-row:last-child {
    margin-bottom: 0;
  }
  .member-form .form-group {
    width: 100%;
    margin-bottom: 0;
  }
  .member-form .btn-row {
    padding-top: 10px;
  }
  .member-form .btn {
    width: 100%;
    max-width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin-left: 0;
  }
  .member-form .invalid-feedback {
    position: relative;
    top: 0;
  }
  .member-form .phone .invalid-feedback {
    position: absolute;
    top: 2px;
    font-size: 15px;
    margin-top: 0;
  }
  .member-form .upload .invalid-feedback {
    top: 0;
    font-size: 12px;
  }
  .member-form .note {
    font-size: 12px;
  }

  .cross-table {
    display: block;
    margin: 0 -20px 60px;
  }
  .cross-table__header {
    display: none;
  }
  .cross-table__content {
    width: 100%;
  }

  .due {
    position: relative;
  }
  .due .section-header {
    display: block;
  }
  .due .section-header__col-right {
    width: 100%;
    max-width: 100%;
    padding: 5px 0;
  }
  .due .section-header .btn-primary {
    width: 100%;
    margin: 0;
  }
  .due .section-bottom {
    position: relative;
    margin-bottom: 20px;
    display: block;
  }
  .due .section-bottom .btn-primary {
    width: 100%;
    margin: 0;
  }
  .due .pagination {
    margin-bottom: 30px;
  }

  .due-table {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
  }
  .due-table .due-item {
    display: block;
    font-size: 13px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
  }
  .due-table .due-item:nth-child(2n-1) {
    background-color: #fff;
  }
  .due-table .ExRate {
    font-size: 16px;
  }
  .due-table .col {
    padding: 10px;
    padding-left: 110px;
    width: 100%;
    background-color: #f7faff;
  }
  .due-table .col:nth-child(2n-1) {
    background-color: #fff;
  }
  .due-table .col:nth-child(1), .due-table .col:nth-child(2), .due-table .col:nth-child(3), .due-table .col:nth-child(4) {
    width: 100%;
    text-align: left;
  }
  .due-table .col:before {
    content: attr(data-value) "";
    text-align: left;
    width: 110px;
    font-size: 12px;
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #595757;
  }
  .due-table .sp-point {
    font-size: 16px;
  }
  .due-table .sp-point .icon {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .due-table__header {
    display: none;
  }

  .record .section-header .custom-select {
    max-width: 50%;
    margin-left: 0;
  }

  .record-table {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 40px;
  }
  .record-table .record-item {
    display: block;
    font-size: 13px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
  .record-table .record-item:nth-child(2n-1) {
    background-color: #fff;
  }
  .record-table .record-item__inner-block {
    padding: 20px;
  }
  .record-table .col {
    padding: 10px;
    padding-left: 110px;
    width: 100%;
    background-color: #f7faff;
  }
  .record-table .col:nth-child(2n-1) {
    background-color: #fff;
  }
  .record-table .col:nth-child(1), .record-table .col:nth-child(2), .record-table .col:nth-child(3) {
    width: 100%;
    text-align: left;
  }
  .record-table .col:nth-child(1) {
    padding-right: 50px;
  }
  .record-table .col:nth-child(3) {
    font-size: 12px;
  }
  .record-table .col:before {
    content: attr(data-value) "";
    text-align: left;
    width: 70px;
    font-size: 13px;
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #595757;
  }
  .record-table__header {
    display: none;
  }
  .record-table .group {
    position: static;
  }
  .record-table .sp-collapse .btn-collapse {
    top: calc(100% - 30px);
    right: 0;
    height: 30px;
    width: 100%;
    display: block;
    line-height: 30px;
  }
  .record-table .sp-collapse .btn-collapse .icon-arrow {
    width: 30px;
    height: 30px;
  }
  .record-table .sp-point {
    font-size: 13px;
  }
  .record-table .sp-point .icon-coin {
    width: 12px;
    height: 12px;
  }
  .record-table .info-group {
    display: block;
  }
  .record-table .info-col {
    width: 100%;
  }
  .record-table .info-col + .info-col {
    margin-top: 10px;
  }
  .record-table .info-col .block {
    font-size: 13px;
    line-height: 1.44;
  }
  .record-table .info-col .block + .block {
    margin-top: 10px;
  }
  .record-table .text-small {
    font-size: 12px;
    color: #9c9c9c;
  }

  .sp-collapse .btn-collapse {
    top: calc(100% - 30px);
    right: 0;
    height: 30px;
    width: 100%;
    display: block;
  }
  .sp-collapse .btn-collapse .icon-arrow {
    width: 30px;
    height: 30px;
  }

  .info-transfer {
    display: block;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  .info-transfer .recent-transfer-record {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .info-transfer .points-transfer {
    width: 100%;
  }
  .info-transfer .transferPoints {
    margin-bottom: 15px;
  }
  .info-transfer .sp-table th {
    padding: 10px;
    font-size: 13px;
  }
  .info-transfer .sp-table td {
    padding: 10px;
    font-size: 13px;
  }
  .info-transfer .sp-table .btn {
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .info-transfer .sp-table .sp-point {
    font-size: 13px;
  }
  .info-transfer .sp-table .sp-point .icon {
    width: 16px;
    height: 16px;
    margin-top: -3px;
    margin-right: 5px;
  }

  .info-friends .section-content {
    padding: 10px;
  }
  .info-friends .section-bottom {
    margin-bottom: 40px;
  }
  .info-friends .friends-list {
    margin: 0;
    display: block;
  }
  .info-friends .friends-item {
    position: relative;
    width: 100%;
    padding: 10px;
    margin: 0 0 20px;
  }
  .info-friends .friends-item__content {
    width: calc(100% - 50px - 30px);
    font-size: 12px;
  }
  .info-friends .friends-item__action {
    width: 30px;
  }
  .info-friends .dropdown-menu {
    font-size: 12px;
  }
  .info-friends .section-bottom .filter .btn {
    margin-right: 0;
    width: calc(100% / 4 - 10px);
    margin-left: 10px;
  }
  .info-friends .section-bottom .filter .btn:last-child {
    margin-right: 0;
  }
  .info-friends .input-group .form-control {
    font-size: 12px;
    line-height: 40px;
    height: 40px;
  }
  .info-friends .input-group .btn-light {
    width: 89px;
    font-size: 12px;
  }
  .info-friends .info-block {
    width: calc(100% / 2 - 5px);
    padding: 10px 0;
  }
  .info-friends .info-block__main-text {
    font-size: 21px;
  }
  .info-friends .friends-quantity {
    margin-right: 5px;
  }
  .info-friends .point-quantity {
    margin-left: 5px;
  }
  .info-friends .btn-more {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .info-friends .btn-more .icon {
    width: 30px;
    height: 30px;
    background-size: auto;
  }

  .mycoupon .section-header .custom-select {
    margin-left: 0;
  }

  .mycoupon-table {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 25px;
  }
  .mycoupon-table .mycoupon-item {
    display: block;
    font-size: 13px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
  }
  .mycoupon-table .mycoupon-item:nth-child(2n-1) {
    background-color: #fff;
  }
  .mycoupon-table .time {
    font-size: 12px;
  }
  .mycoupon-table .image {
    width: 20px;
    height: 20px;
  }
  .mycoupon-table .btn {
    line-height: 40px;
  }
  .mycoupon-table .btn .icon {
    width: 40px;
    height: 40px;
  }
  .mycoupon-table .btn-primary {
    font-size: 14px;
    height: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .mycoupon-table .col {
    padding: 10px;
  }
  .mycoupon-table .col:nth-child(1), .mycoupon-table .col:nth-child(2), .mycoupon-table .col:nth-child(3) {
    padding-left: 110px;
  }
  .mycoupon-table .col:nth-child(1):before, .mycoupon-table .col:nth-child(2):before, .mycoupon-table .col:nth-child(3):before {
    content: attr(data-value) "";
    text-align: left;
    width: 110px;
    font-size: 12px;
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .mycoupon-table .col:nth-child(1) {
    width: 100%;
  }
  .mycoupon-table .col:nth-child(2) {
    width: 100%;
  }
  .mycoupon-table .col:nth-child(3) {
    width: 100%;
    text-align: left;
  }
  .mycoupon-table .col:nth-child(4) {
    width: 100%;
  }
  .mycoupon-table .sp-point {
    font-size: 16px;
  }
  .mycoupon-table__header {
    display: none;
  }

  .form-modal .main-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .form-modal .btn {
    height: 40px;
    line-height: 40px;
  }

  .address-settings .section-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .address-settings .section-header .heading {
    display: block;
    width: 100%;
    margin: 0;
  }
  .address-settings .section-header .note {
    font-size: 12px;
    margin-left: 0;
  }
  .address-settings .section-header .btn {
    width: 145px;
    height: 37px;
    line-height: 37px;
    font-size: 16px;
  }
  .address-settings .section-header .action {
    position: absolute;
    top: 0;
    right: 0;
  }
  .address-settings .no-data {
    border-radius: 5px;
  }
  .address-settings .no-data .image {
    width: 80px;
  }
  .address-settings .no-data .main-text {
    margin: 20px 0 12px;
    font-size: 16px;
  }
  .address-settings .no-data .btn {
    font-size: 16px;
    height: 37px;
    line-height: 37px;
  }
  .address-settings .recipient-item {
    padding: 10px 20px;
    padding-left: 60px;
    padding-right: 65px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  }
  .address-settings .recipient-item .action {
    right: 17px;
  }
  .address-settings .recipient-item .name {
    font-size: 15px;
  }
  .address-settings .recipient-item .info {
    font-size: 13px;
    margin-top: 10px;
  }
  .address-settings .btn-row .btn-secondary {
    width: 100%;
    font-size: 16px;
  }
  .address-settings .dropdown-menu {
    font-size: 12px;
  }

  .add-address .form-group {
    width: 100%;
  }
  .add-address .row {
    width: calc(100% + 10px * 2);
    margin-right: -10px;
    margin-left: -10px;
  }
  .add-address .col {
    padding-right: 10px;
    padding-left: 10px;
  }
  .add-address .input-checkbox {
    display: none;
  }

  .other-point-query .point-item .content {
    width: calc(100% - 130px);
  }
  .other-point-query .point-item .action {
    width: 130px;
  }

  .add-wallet-address .note {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 16px;
    margin: 10px 0 0;
  }

  .wallet-address-confirm {
    font-size: 12px;
    line-height: 16px;
  }
  .wallet-address-confirm .note {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 16px;
    margin: 10px 0 0;
  }

  .wallet-address-choose .list {
    height: 204px;
    margin-top: -20px;
  }
  .wallet-address-choose .item {
    min-height: 68px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .info-personal .section-content {
    padding: 10px;
    min-height: inherit;
  }
  .info-personal .basic-info .section-content {
    font-size: 12px;
  }
  .info-personal .info-group {
    margin: 0 0 20px;
    display: block;
  }
  .info-personal .info-group__left {
    width: 100%;
    margin-bottom: 30px;
  }
  .info-personal .info-group__right {
    width: 100%;
    padding-left: 0;
  }
  .info-personal .advanced .section-content {
    border: 1px solid #fff;
    padding-right: 10px;
    font-size: 15px;
  }
  .info-personal .advanced .section-content:before, .info-personal .advanced .section-content:after {
    display: none;
  }
  .info-personal .advanced .verified-list {
    max-width: 100%;
  }
  .info-personal .advanced .verified-list li {
    position: relative;
    padding-right: 80px;
    margin-bottom: 20px;
    line-height: 21px;
  }
  .info-personal .advanced .verified-list li:last-child {
    margin-bottom: 0;
  }
  .info-personal .advanced .verified-list .label {
    font-size: 12px;
    line-height: 19px;
    height: 21px;
    width: 68px;
  }
  .info-personal .advanced .btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }

  .cross-table .cross-swiper {
    margin: 0 -8px;
  }
  .cross-table .cross-item {
    margin: 0 8px;
  }
  .cross-table .cross-item__header {
    min-height: 85px;
    padding-top: 5px;
    font-size: 15px;
  }
  .cross-table .cross-item__header img {
    max-width: 50px;
  }
  .cross-table .cross-item__content {
    font-size: 15px;
  }
  .cross-table .cross-item__content img {
    max-width: 16px;
  }
  .cross-table .cross-item__block {
    padding: 10px 0;
    min-height: 52px;
  }
  .cross-table .cross-item__block:before {
    display: block;
  }

  .form-modal {
    font-size: 12px;
  }
  .form-modal .form-control {
    font-size: 12px;
  }
  .form-modal .modal-footer {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .form-modal .mobile-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-modal .mobile-column .btn {
    margin: 0;
  }
  .form-modal .mobile-column .btn:first-child {
    margin: 10px 0 10px;
  }
  .form-modal .member-form .form-row {
    margin: 0 0 25px;
  }
  .form-modal .member-form .form-row:last-child {
    margin-bottom: 0;
  }
  .form-modal .member-form .IDNumber {
    margin: 0 0 10px;
  }
  .form-modal .member-form .IDNumber-company {
    margin: 0 0 25px;
  }
  .form-modal .btn {
    width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 0 0 10px;
    display: inline-block;
    text-align: center;
  }
  .form-modal .btn:first-child {
    margin-bottom: 0;
  }
  .form-modal .main-text {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .form-modal .btn-group-toggle {
    margin: 0 -5px;
    width: calc(100% + 5px * 2);
  }
  .form-modal .btn-group-toggle .btn {
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    margin: 0 5px;
  }
  .form-modal.step1 .birthday {
    margin: 30px 0 20px;
  }
  .form-modal.step1 .heading {
    font-size: 14px;
  }
  .form-modal.step1 .heading .label-checkbox {
    font-size: 12px;
  }
  .form-modal.step3 .list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 10px;
  }
  .form-modal.step3 .list li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  .form-modal.step3 .list li span {
    top: 2px;
    width: 15px;
    height: 15px;
    line-height: 13px;
  }
  .form-modal .upload-block {
    border: 1px dashed #eaeff7;
  }
  .form-modal .upload-block .btn {
    max-width: 102px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
  }
  .form-modal.step4 .main-text {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .form-modal.step4 img {
    display: block;
    margin: 20px auto 10px;
  }
  .form-modal.step4 p {
    margin-bottom: 5px;
  }
  .form-modal.phone-confirm .mobileNumber {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .form-modal.phone-confirm .mobileNumber .form-group {
    width: calc(100% - 100px);
  }
  .form-modal.phone-confirm .mobileNumber .btn-row {
    width: 100px;
    padding: 0;
    padding-left: 10px;
  }
  .form-modal.phone-confirm .mobileNumber .btn {
    width: 100%;
    max-width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    margin: 0;
  }
  .form-modal.mail-edit .unverified {
    font-size: 12px;
  }
  .form-modal.phone-confirm .mobileNumber .form-group {
    width: calc(100% - 140px);
  }
  .form-modal.phone-confirm .mobileNumber .btn-row {
    width: 140px;
  }
  .form-modal.phone-confirm .mobileNumber .btn {
    display: block;
    width: 122px;
    height: 40px;
    line-height: 40px;
    margin-left: 18px;
  }
  .form-modal.phone-edit .form-row {
    display: flex;
  }
  .form-modal.phone-edit .btn-row {
    padding-top: 0;
  }
  .form-modal.phone-edit .modal-dialog {
    max-width: 588px;
  }
  .form-modal.phone-edit .mobileNumber {
    margin-bottom: 25px;
  }
  .form-modal.phone-edit .mobileNumber .form-group:first-child {
    width: 80px;
  }
  .form-modal.phone-edit .mobileNumber .form-group:last-child {
    width: calc(100% - 80px - 20px);
    margin-left: 20px;
  }
  .form-modal.phone-edit .sms-verification {
    margin-bottom: 20px;
  }
  .form-modal.phone-edit .sms-verification .form-group {
    width: calc(100% - 95px);
    padding-right: 9px;
  }
  .form-modal.phone-edit .sms-verification .btn-row {
    width: 95px;
  }
  .form-modal.phone-edit .sms-verification .btn {
    margin: 0;
    width: 100%;
  }
  .form-modal.phone-edit .has-float-label input:placeholder-shown:not(:focus) + * {
    font-size: 12px;
  }
  .form-modal.password-edit .has-float-label input:placeholder-shown:not(:focus) + * {
    font-size: 14px;
  }

  .prompt-modal .modal-footer {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .prompt-modal .modal-footer .btn {
    margin: 0;
  }
  .prompt-modal .modal-footer .btn:first-child {
    margin: 10px 0 10px;
  }
  .prompt-modal .main-text {
    margin-bottom: 10px;
  }
  .prompt-modal p {
    font-size: 12px;
  }

  .choose1 .search-input {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .choose1 .search-input__btn {
    height: 30px;
    width: 30px;
    padding: 7px;
  }
  .choose1 .search-input .form-control {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .choose1 .search-input .icon {
    width: 16px;
    height: 16px;
  }
  .choose1 .main-text {
    margin-bottom: 10px;
  }
  .choose1 .friends-list .friends-item {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .choose1 .friends-list .friends-item__content {
    width: calc(100% - 50px - 50px);
  }
  .choose1 .friends-list .friends-item__action {
    width: 50px;
  }
  .choose1 .friends-list .btn-primary {
    height: 30px;
    line-height: 30px;
    width: 50px;
    margin: 0;
    font-size: 12px;
  }

  .choose2 .main-text {
    margin-bottom: 10px;
  }
  .choose2 .transfer {
    display: none;
  }
  .choose2 .m-transfer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .choose2 .bottom-block {
    width: calc(100% + 10px * 2);
    margin: 0 -10px;
    padding: 15px 0 10px;
  }

  .choose3 .main-text {
    margin-bottom: 10px;
  }
  .choose3 .transfer {
    margin-bottom: 20px;
  }
  .choose3 .transfer__left {
    width: calc(100% / 2 - 50px / 2);
    padding: 0 10px 0 0;
  }
  .choose3 .transfer__right {
    width: calc(100% / 2 - 50px / 2);
    padding: 0 0 0 10px;
  }
  .choose3 .transfer .hd {
    font-size: 13px;
    font-weight: 700;
    color: #9c9c9c;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .choose3 .transfer .icon-transfer {
    margin-top: 35px;
  }
  .choose3 .transfer .sp-point {
    color: #1db2e5;
    font-weight: 700;
    font-size: 21px;
  }
  .choose3 .avatar__image {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
  }
  .choose3 .avatar__name {
    font-size: 15px;
  }
  .choose3 .bottom-block {
    padding: 15px 0 5px;
  }

  .choose4 .main-text {
    margin-bottom: 10px;
  }

  .signup-sucess .main-text {
    margin-bottom: 10px;
  }
  .signup-sucess .btn {
    margin: 0;
  }

  .signup-coupons .main-text {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 25px;
  }
  .signup-coupons .sub-text {
    font-size: 15px;
  }
  .signup-coupons p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .signup-coupons .btn {
    margin: 0;
  }
  .signup-coupons .group {
    margin: 0 -5px 5px;
  }
  .signup-coupons .block {
    max-width: 100px;
  }

  .info-friends .section-top {
    font-size: 12px;
  }

  .points-collection .main-text {
    margin-bottom: 10px;
  }
  .points-collection .transfer {
    font-size: 13px;
  }
  .points-collection .transfer__left {
    padding: 0 10px 0 0;
    width: calc(100% / 2 - 100px / 2);
  }
  .points-collection .transfer__middle {
    width: 56px;
    padding-top: 0;
  }
  .points-collection .transfer__right {
    padding: 0 0 0 10px;
    width: calc(100% / 2 - 100px / 2);
  }
  .points-collection .transfer .hd {
    font-size: 13px;
  }
  .points-collection .transfer .sp-point {
    font-size: 16px;
  }
  .points-collection .transfer .sp-point .icon {
    width: 16px;
    height: 16px;
  }
  .points-collection .btn {
    max-width: 200px;
  }
  .points-collection .icon-transfer {
    display: block;
    margin: 0 auto;
    height: 27px;
  }

  .points-collection-finish .main-text {
    margin-bottom: 10px;
  }
  .points-collection-finish .top-block .hd {
    font-size: 13px;
  }
  .points-collection-finish .top-block .sp-point {
    font-size: 16px;
  }
  .points-collection-finish .top-block .sp-point .icon-coin {
    width: 16px;
    height: 16px;
    margin-top: -2px;
  }
  .points-collection-finish .bottom-block {
    margin: 0 -10px;
    width: calc(100% + 10px * 2);
  }

  .friends-invitation .main-text {
    margin-bottom: 10px;
  }
  .friends-invitation .friends-list .friends-item {
    font-size: 12px;
  }
  .friends-invitation .friends-list .friends-item__content {
    width: calc(100% - 50px - 50px * 2);
  }
  .friends-invitation .friends-list .friends-item__action {
    width: 100px;
  }
  .friends-invitation .friends-list .btn {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    width: 45px;
  }

  .add-friends .main-text {
    margin-bottom: 10px;
  }
  .add-friends .search-input {
    margin-bottom: 20px;
  }
  .add-friends .search-input .form-control {
    border: 1px solid #eaeff7;
    border-radius: 5px;
  }
  .add-friends .search-input__btn {
    height: 30px;
    width: 30px;
    padding: 5px;
  }
  .add-friends .friends-list .friends-item {
    font-size: 12px;
    min-height: 30px;
    line-height: 20px;
    padding-right: 110px;
  }
  .add-friends .friends-list .friends-item:last-child {
    margin-bottom: 0;
  }
  .add-friends .friends-list .icon-plus {
    width: 16px;
    height: 16px;
    margin-right: 3px;
    margin-top: -2px;
  }
  .add-friends .friends-list .icon-tick {
    width: 16px;
    height: 16px;
    margin-right: 3px;
    margin-top: -2px;
  }
  .add-friends .friends-list .btn {
    height: 30px;
    line-height: 30px;
    width: 100px;
    font-size: 12px;
  }

  .mycoupon-modal .main-text {
    margin-top: -2px;
    font-size: 16px;
  }
  .mycoupon-modal .modal-footer {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .mycoupon-modal .btn {
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 0;
  }
  .mycoupon-modal .btn + .btn {
    margin-top: 10px;
  }
  .mycoupon-modal .serial-number {
    font-size: 12px;
  }
  .mycoupon-modal .serial-number__title {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .mycoupon-modal .serial-number .input-group {
    width: 100%;
  }
  .mycoupon-modal .serial-number .form-control {
    padding-left: 10px;
  }
  .mycoupon-modal .serial-number .btn-light {
    width: 89px;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
  }
  .mycoupon-modal .exchange-info {
    margin-bottom: 10px;
  }
  .mycoupon-modal .exchange-info__content {
    font-size: 13px;
    line-height: 1.38;
  }
  .mycoupon-modal .exchange-info__footer {
    min-height: 327px;
  }

  .other-point-query .section-heading {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .other-point-query .section-heading .heading {
    line-height: 32px;
    margin-bottom: 20px;
  }
  .other-point-query .tip {
    width: 100%;
    height: auto;
    padding: 4px 24px 4px 45px;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
  }
  .other-point-query .tip .arrow {
    right: 0;
  }
  .other-point-query .point-list {
    display: block;
    margin: 0 0 30px;
  }
  .other-point-query .point-item {
    width: 100%;
    padding: 10px 20px 20px;
    display: block;
    margin: 0;
  }
  .other-point-query .point-item + .point-item {
    margin-top: 20px;
  }
  .other-point-query .point-item .content {
    width: 100%;
    padding-right: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .other-point-query .point-item .group {
    padding-left: 10px;
  }
  .other-point-query .point-item .action {
    width: 100%;
  }
  .other-point-query .point-item .main-text {
    font-size: 15px;
    line-height: 1.67;
    max-height: inherit;
  }
  .other-point-query .point-item .sp-point {
    font-size: 16px;
    margin-right: 10px;
  }
  .other-point-query .point-item .expiry-date {
    font-size: 12px;
  }
  .other-point-query .store-list {
    display: block;
    margin: 0 0 20px;
  }
  .other-point-query .store-list .item {
    width: 100%;
    margin: 0;
    padding: 10px 20px 20px;
    display: block;
  }
  .other-point-query .store-list .item + .item {
    margin-top: 28px;
  }
  .other-point-query .store-list .content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .other-point-query .store-list .main-text {
    font-size: 15px;
    padding-left: 10px;
    line-height: 25px;
    max-height: 50px;
  }
  .other-point-query .store-list .action {
    width: 100%;
    padding: 0;
  }
  .other-point-query .unbound .bottom-text {
    font-size: 12px;
  }
  .other-point-query .bound .heading {
    font-size: 15px;
  }
  .other-point-query .no-data .main-text {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .other-point-query .no-data .sub-text {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .point-query-detail {
    padding: 0 0 20px;
  }
  .point-query-detail .section-top {
    margin-bottom: 20px;
    padding: 10px 0;
    background-color: #fff;
  }
  .point-query-detail .back {
    font-size: 16px;
    color: #9c9c9c;
  }
  .point-query-detail .back .icon {
    width: 20px;
    height: 20px;
    margin-top: -5px;
    background-size: 16px;
    margin-right: 5px;
  }
  .point-query-detail .main-heading {
    font-size: 24px;
  }
  .point-query-detail .store-list {
    margin-bottom: 12px;
  }
  .point-query-detail .store-list .item {
    width: 100%;
    margin: 0;
    padding: 10px 20px;
  }
  .point-query-detail .store-list .item + .item {
    margin-top: 28px;
  }
  .point-query-detail .store-list .content {
    width: calc(100% - 40px);
  }
  .point-query-detail .store-list .group {
    padding-left: 10px;
  }
  .point-query-detail .store-list .sp-point {
    font-size: 16px;
    margin-right: 10px;
  }
  .point-query-detail .store-list .expiry-date {
    font-size: 12px;
  }
  .point-query-detail .store-list .action {
    width: 40px;
  }
  .point-query-detail .store-list .single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
  }
  .point-query-detail .store-list .single .content {
    width: calc(100% - 40px);
    margin-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .point-query-detail .store-list .single .action {
    width: 40px;
    padding: 0;
  }
  .point-query-detail .info {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 35px;
  }
  .point-query-detail .info .icon-alert {
    top: 0;
  }
  .point-query-detail .promotions .heading {
    font-size: 24px;
  }
  .point-query-detail .promotions-list {
    display: block;
    margin: 0 auto;
  }
  .point-query-detail .promotions-list .promotions-item {
    margin: 0 auto;
    width: 100%;
  }
  .point-query-detail .promotions-item + .promotions-item {
    margin-top: 22px;
  }
  .point-query-detail .promotions-item__main-text {
    font-size: 15px;
    line-height: 25px;
    min-height: 50px;
  }
  .point-query-detail .promotions-item__sub-text {
    font-size: 12px;
    line-height: 20px;
    max-height: 20px;
  }

  .unbind-delete-modal .modal-dialog {
    max-width: 335px;
  }
  .unbind-delete-modal .main-text {
    font-size: 21px;
  }
  .unbind-delete-modal p {
    font-size: 12px;
    line-height: 1.67;
  }
  .unbind-delete-modal p + p {
    margin-top: 10px;
  }
  .unbind-delete-modal .modal-footer {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .unbind-delete-modal .btn {
    width: 100%;
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 0 0 10px;
    display: block;
    text-align: center;
  }
  .unbind-delete-modal .btn:first-child {
    margin-bottom: 0;
  }

  .member-barcode-modal .modal-dialog {
    max-width: 335px;
  }
  .member-barcode-modal .modal-body {
    padding: 10px 0;
  }
  .member-barcode-modal .barcode {
    width: 100%;
    max-width: 335px;
    margin: 0 auto 26px;
  }
  .member-barcode-modal .qrcode {
    width: 180px;
    margin: 0 auto 10px;
  }
  .member-barcode-modal .btn {
    width: 100%;
    max-width: 100%;
    line-height: 40px;
    height: 40px;
    margin: 0;
    display: block;
  }

  .wallet-address .modal-dialog {
    max-width: 335px;
  }
  .wallet-address .modal-body {
    padding: 10px;
  }
  .wallet-address .block .hd {
    font-size: 12px;
  }
  .wallet-address .note {
    font-size: 12px;
  }

  .info-wallet .section-header {
    margin-bottom: 20px;
  }
  .info-wallet .section-header .heading {
    display: block;
    width: 100%;
    margin: 0;
    padding-right: 0;
  }
  .info-wallet .section-header .note {
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
  }
  .info-wallet .section-header .btn {
    width: 120px;
  }
  .info-wallet .wallet-item {
    padding: 10px 20px;
    padding-right: 116px;
  }
  .info-wallet .wallet-item + .wallet-item {
    margin-top: 20px;
  }
  .info-wallet .wallet-item .action {
    right: 17px;
  }
  .info-wallet .wallet-item .main-text {
    font-size: 15px;
  }
  .info-wallet .wallet-item .sub-text {
    font-size: 13px;
    margin-top: 10px;
  }
  .info-wallet .wallet-item .label-default {
    font-size: 12px;
    line-height: 17px;
    padding: 1px 5px;
    border-radius: 20px;
  }
  .info-wallet .dropdown-menu {
    font-size: 12px;
  }
  .info-wallet .no-data .image {
    width: 80px;
  }
  .info-wallet .no-data .main-text {
    font-size: 16px;
    line-height: 21px;
  }
  .info-wallet .no-data .sub-text {
    font-size: 12px;
    line-height: 16px;
  }
  .info-wallet .no-data .btn {
    width: 145px;
  }
}
.notice-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  margin: 0 0 20px;
  width: 100%;
  padding: 25px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.notice-item__content {
  position: relative;
  width: calc(100% - 276px);
  padding-left: 90px;
}
.notice-item__image {
  position: absolute;
  top: 0;
  left: 15px;
  width: 50px;
}
.notice-item__action {
  width: 276px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.notice-item__main-text {
  font-size: 20px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 5px;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 16px;
}
.notice-item__sub-text {
  font-size: 16px;
  color: #9c9c9c;
}
.notice-item .btn {
  width: 118px;
  margin: 0 0 0 20px;
  color: #fff;
  line-height: 41px;
  height: 41px;
}
.notice-item .ponit {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff6b6b;
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
}
.notice-item .time {
  font-size: 14px;
  display: inline-block;
  padding-left: 10px;
}
.notice-item .icon {
  width: 16px;
  height: 16px;
}
.notice-item__link {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 940px) {
  .notice-item {
    padding: 10px;
  }
  .notice-item .btn {
    height: 31px;
    line-height: 31px;
    font-size: 13px;
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .notice-item {
    display: block;
  }
  .notice-item__content {
    width: 100%;
    padding-right: 20px;
  }
  .notice-item__action {
    width: 100%;
  }
  .notice-item__action {
    width: calc(100% + 5px * 2);
    margin: 0 -5px;
  }
  .notice-item .btn {
    width: calc(100% / 2 - 5px * 2);
    margin: 20px 5px 0;
  }
  .notice-item__sub-text {
    font-size: 12px;
    word-wrap: break-word;
  }
  .notice-item__main-text {
    font-size: 14px;
    display: block;
    word-wrap: break-word;
  }
  .notice-item__link {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 640px) {
  .notice-item__image {
    left: 5px;
    width: 40px;
  }
  .notice-item__content {
    padding-left: 55px;
    padding-right: 30px;
  }
  .notice-item__link {
    right: 5px;
  }
}
.news {
  padding: 35px 0;
}
.news .section-header {
  margin-bottom: 25px;
}

.news-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -12px;
}
.news-list .news-item {
  margin: 0 12px 30px;
  width: calc(100% / 4 - 12px * 2);
}

.news-item {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.news-item__image {
  position: relative;
  background-color: #e3e3e3;
  padding-top: 56.737588652%;
  overflow: hidden;
}
.news-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: inherit;
  height: 100%;
}
.news-item__content {
  padding: 15px 20px;
}
.news-item__date {
  font-size: 14px;
  color: #9c9c9c;
}
.news-item__main-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6666;
  margin-bottom: 10px;
  color: #595757;
  min-height: 3.35em;
}
.news-item__sub-text {
  font-size: 16px;
  line-height: 1.875;
  color: #595757;
  text-align: justify;
  margin-bottom: 10px;
}
.news-item__media {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  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;
}
.news-item__media-icon {
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
}

.sp-news {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 14px;
  line-height: 24px;
  background-color: #fff;
}
.sp-news .section-banner {
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
.sp-news .section-banner img {
  display: block;
  width: 100%;
}
.sp-news .section-banner .lg-view {
  display: block;
}
.sp-news .section-banner .sm-view {
  display: none;
}
.sp-news .section-header {
  margin-bottom: 40px;
}
.sp-news .section-header .dropdown-group {
  width: 100%;
  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;
}
.sp-news .item a {
  color: #595757;
}
.sp-news .main-text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.sp-news .date {
  font-size: 14px;
}
.sp-news .date .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: -2px;
}

.point-event .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -10px;
}
.point-event .list .item {
  margin: 0 10px 30px;
  width: calc(100% / 3 - 10px * 2);
}
.point-event .list .image {
  position: relative;
  background-color: #e3e3e3;
  padding-top: 56.21761658%;
  overflow: hidden;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}
.point-event .list .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: inherit;
  height: 100%;
}
.point-event .list .main-text {
  margin-bottom: 10px;
}
.point-event .list .sub-text {
  font-size: 16px;
  line-height: 1.875;
  color: #595757;
  text-align: justify;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6em;
}

.service-updates .list {
  margin-bottom: 75px;
}
.service-updates .item {
  border-bottom: 1px solid #eaeff7;
  padding: 14px 0;
  padding-left: 90px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 22px 22px;
  background-image: url(../images/icon-chat.png);
  background-size: 36px 36px;
  min-height: 80px;
}

@media (max-width: 940px) {
  .news .section-header {
    margin-bottom: 10px;
  }

  .news-list .news-item {
    width: calc(100% / 3 - 12px * 2);
  }
}
@media (max-width: 768px) {
  .news-list {
    margin: 0 -10px;
  }
  .news-list .news-item {
    margin: 0 10px 20px;
    width: calc(100% / 2 - 10px * 2);
  }
}
@media (max-width: 767px) {
  .news {
    padding: 20px 0;
  }
  .news .pagination {
    margin-bottom: 20px;
  }

  .news-item__content {
    padding: 8px 10px;
  }
  .news-item__date {
    font-size: 12px;
  }
  .news-item__main-text {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .news-item__sub-text {
    font-size: 12px;
  }
  .news-item__media {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 20px;
  }
  .news-item__media-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}
@media (max-width: 764px) {
  .sp-news .section-banner .lg-view {
    display: none;
  }
  .sp-news .section-banner .sm-view {
    display: block;
  }
  .sp-news .section-header {
    margin-bottom: 20px;
  }
  .sp-news .section-header .dropdown-group {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .sp-news .main-text {
    font-size: 15px;
  }
  .sp-news .date {
    font-size: 12px;
  }
  .sp-news .date .icon {
    margin-top: -4px;
  }

  .point-event .list .item {
    width: calc(100% / 2 - 10px * 2);
    margin-bottom: 10px;
  }
  .point-event .list .image {
    margin-bottom: 8px;
  }
  .point-event .list .main-text {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.3333;
  }
  .point-event .list .sub-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .service-updates .list {
    margin-bottom: 20px;
  }
  .service-updates .item {
    padding: 8px 0;
    padding-left: 40px;
    background-position: 11px 22px;
    background-size: 18px 18px;
    min-height: 68px;
  }
  .service-updates .main-text {
    margin-bottom: 5px;
  }
}
@media (max-width: 375px) {
  .news-list {
    margin: 0;
  }
  .news-list .news-item {
    margin: 0 0 15px;
    width: 100%;
  }
  .news-list .news-item__main-text {
    min-height: inherit;
  }

  .point-event .list {
    display: block;
    margin: 0;
  }
  .point-event .list .item {
    margin: 0 0 10px;
    width: 100%;
  }
}
.qa-list {
  margin-bottom: 60px;
}

.qa-item {
  color: #595757;
  background-color: #fff;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.qa-item .btn-collapse {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.qa-item .btn-collapse .icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.qa-item__header {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 30px;
  line-height: 30px;
  padding-right: 60px;
}
.qa-item__content {
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 26px;
  width: 100%;
  overflow: hidden;
}
.qa-item ol {
  list-style: decimal;
  padding-left: 1.25em;
}
.qa-item.is-view .qa-item__content {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

@media (max-width: 764px) {
  .qa-item .btn-collapse .icon {
    top: 7px;
    right: 14px;
  }
  .qa-item__header {
    font-size: 15px;
    padding: 10px 20px;
    line-height: 24px;
    padding-right: 50px;
  }
  .qa-item__content {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 18px;
  }
}
.calculator {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}
.calculator .owl {
  position: absolute;
  right: 20px;
  bottom: -10px;
  width: 100px;
}
.calculator .section-banner {
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
.calculator .section-banner img {
  width: 100%;
}
.calculator .section-banner .lg-view {
  display: block;
}
.calculator .section-banner .sm-view {
  display: none;
}
.calculator .section-header {
  margin-bottom: 20px;
}
.calculator .section-content {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  background-image: url(../images/calculator-bg.jpg);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.calculator .bottom-text {
  color: #9c9c9c;
  font-size: 14px;
  line-height: 24px;
  padding-right: 120px;
}
.calculator .bottom-text ol {
  padding-left: 1.25em;
  margin-bottom: 10px;
}
.calculator .converter .title {
  font-size: 20px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 10px;
}
.calculator .converter .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.calculator .converter .action {
  width: 190px;
}
.calculator .converter .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.calculator .converter .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.calculator .converter .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.calculator .converter .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.calculator .converter .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}
.calculator .converter .note a {
  color: #ff6b6b;
  text-decoration: underline;
}
.calculator .converter .note a:hover, .calculator .converter .note a:active {
  text-decoration: none;
}
.calculator .converter .text-small {
  width: 100%;
}
.calculator .form-section {
  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;
  width: calc(100% - 190px - 20px);
  margin-right: 20px;
}
.calculator .form-group {
  width: calc(50% - 10px);
  margin: 0;
  position: relative;
}
.calculator .form-group:nth-child(1) {
  margin-right: 10px;
}
.calculator .form-group:nth-child(2) {
  margin-left: 10px;
}
.calculator .form-group .pull-right {
  position: absolute;
  top: 1px;
  right: 10px;
  line-height: 38px;
  font-weight: 700;
  background-color: #fff;
  padding-left: 10px;
}
.calculator .rateCard {
  margin-bottom: 10px;
}
.calculator .rateCard .title {
  font-size: 20px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 10px;
}
.calculator .rateCard__box {
  border-radius: 10px;
  border: 1px solid #fff;
  background-color: #f4f7fc;
  padding: 10px 20px;
}
.calculator .rateCard__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  line-height: 40px;
}
.calculator .rateCard__row + .rateCard__row {
  margin-top: 10px;
}
.calculator .rateCard__hd {
  width: 116px;
  color: #595757;
  font-weight: 700;
}
.calculator .rateCard__bd {
  width: calc(100% - 116px);
  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;
}
.calculator .rateCard .form-control {
  max-width: 485px;
  height: 40px;
  padding: 8px 10px;
  line-height: 24px;
  color: #595757;
  font-weight: 700;
  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;
}
.calculator .rateCard .form-control.highlight {
  color: #1db2e5;
}
.calculator .rateCard .form-control span {
  margin-right: 5px;
}
.calculator .rateCard .form-control .icon {
  margin-right: 5px;
}
.calculator .rateCard .form-control .NT {
  color: #595757;
}
.calculator .rateCard .disabled .rateCard__hd {
  color: #cdcdcd;
}
.calculator .rateCard .disabled .form-control {
  color: #cdcdcd;
}
.calculator .rateCard .disabled .form-control .NT {
  color: #cdcdcd;
}
.calculator .rateCard .superPoint .rateCard__hd {
  color: #1db2e5;
}
.calculator .rateCard .superPoint .form-control {
  color: #1db2e5;
  margin-right: 10px;
}
.calculator .rateCard .superPoint .text-small {
  margin-top: 0;
  color: #1db2e5;
}
.calculator .text-small {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.67;
  color: #9c9c9c;
  margin-top: 5px;
}
.calculator .highlight {
  color: #1db2e5;
}
.calculator .form-control {
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
}
.calculator .form-control.error {
  color: #ff6b6b;
  border-color: #ff6b6b;
  font-weight: 700;
}
.calculator select.form-control {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  background-size: auto;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
  color: #595757;
}
.calculator select.form-control:required:invalid {
  color: #9c9c9c;
  font-weight: 400;
}
.calculator select.form-control option[value=""][disabled] {
  display: none;
}
.calculator select.form-control option {
  color: #595757;
}
.calculator select.form-control.error:required:invalid {
  font-weight: 700;
  color: #ff6b6b;
}
.calculator select.form-control.error:focus {
  font-weight: 400;
  color: #495057;
  border-color: #1db2e5;
}
.calculator .section-bottom {
  position: relative;
  width: 100%;
  color: #595757;
  background-color: #fff;
  padding: 35px 20px 31px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.calculator .section-bottom .col-left {
  width: calc(100% - 620px);
  padding-right: 20px;
}
.calculator .section-bottom .col-right {
  width: 620px;
  padding: 32px 20px 32px;
  border-radius: 10px;
  background-color: #f4f7fc;
}
.calculator .section-bottom .main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #5d5d5d;
  margin-bottom: 10px;
}
.calculator .section-bottom p {
  font-size: 16px;
  line-height: 1.63;
  color: #5d5d5d;
}
.calculator .section-bottom .highlight {
  color: #1db2e5;
}
.calculator .section-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.calculator .section-bottom .bar {
  width: calc(100% - 140px - 20px);
  height: 20px;
  margin: 0 20px 0 0;
  position: relative;
  border-radius: 10px;
  background-color: #deeefa;
  padding-right: calc(82px + 14px);
}
.calculator .section-bottom .bar__percent {
  position: relative;
  border-radius: 10px;
  height: 20px;
  display: block;
  z-index: 1;
  min-width: 40px;
}
.calculator .section-bottom .bar.percent-100 {
  padding-right: calc(50px + 14px);
}
.calculator .section-bottom .bar.percent-100 .bar__head {
  right: -5px;
}
.calculator .section-bottom .bar.percent-100 .bar__bg {
  opacity: 1;
  width: calc(100% - 26px);
  border-radius: 10px 0 0 10px;
}
.calculator .section-bottom .bar.percent-100 .bar__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 0 0 5px rgba(255, 255, 255, 0.15) inset;
  display: block;
}
.calculator .section-bottom .bar.percent-100 .bar__bg:after {
  content: "";
  position: absolute;
  top: -13px;
  right: -40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: block;
  background-size: contain;
  background-image: url(../images/calculator-bar-threshold2.png);
}
.calculator .section-bottom .bar.percent-100 .bar__head .star {
  opacity: 1;
}
.calculator .section-bottom .bar.percent-100 .bar__threshold {
  display: none;
}
.calculator .section-bottom .bar.percent-100 .bar__threshold .first {
  display: none;
}
.calculator .section-bottom .bar.percent-100 .bar__threshold .last {
  display: block;
}
.calculator .section-bottom .bar__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #27d086 0%, #1cb1e4 50%);
  opacity: .6;
}
.calculator .section-bottom .bar__text {
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.calculator .section-bottom .bar__text img {
  display: inline-block;
  height: 18px;
  margin-right: 6px;
  margin-top: -2px;
}
.calculator .section-bottom .bar__threshold {
  position: absolute;
  right: 50px;
  top: -13px;
  width: 46px;
  height: 46px;
  z-index: 0;
}
.calculator .section-bottom .bar__threshold .first {
  display: block;
}
.calculator .section-bottom .bar__threshold .last {
  display: none;
}
.calculator .section-bottom .bar__head {
  position: absolute;
  right: -1px;
  top: -5px;
  width: 30px;
  height: 30px;
}
.calculator .section-bottom .bar__head .star {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.calculator .section-bottom .bar__head .star-1 {
  top: -7px;
  left: -9px;
  width: 12px;
  height: 12px;
  animation: star-anim .8s infinite alternate forwards;
}
.calculator .section-bottom .bar__head .star-2 {
  top: 2px;
  left: 29px;
  width: 12px;
  height: 12px;
  animation: star-anim .7s infinite alternate-reverse forwards;
}
.calculator .section-bottom .bar__head .star-3 {
  top: 24px;
  left: 2px;
  width: 10px;
  height: 10px;
  animation: star-anim .6s infinite alternate forwards;
}
.calculator .section-bottom .bar__image {
  width: 30px;
  height: 30px;
}
.calculator .section-bottom .bar__number {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 -2.5px 7.5px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 3px 5px;
  line-height: 24px;
  height: 30px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  color: #1db2e5;
  display: block;
}
.calculator .section-bottom .bar__point {
  position: absolute;
  left: calc(100% - 12px);
  top: -2px;
}
.calculator .section-bottom .bar .point {
  width: 24px;
  height: 24px;
  line-height: 24px;
  padding-left: 3px;
  border-radius: 50%;
  color: #fff;
  background-color: #1db2e5;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  opacity: 0;
}
.calculator .section-bottom .btn {
  width: 140px;
  height: 40px;
  margin: 0;
  padding: 8px 18px 8px 45px;
  line-height: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
  overflow: initial;
  background-image: linear-gradient(to bottom, #1cb1e4 0%, #1571f6 100%);
}
.calculator .section-bottom .btn .block {
  position: absolute;
  top: -8px;
  left: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.calculator .section-bottom .btn .sprite {
  background-image: url(../images/calculator-bar-btn.png);
  height: 48px;
}
.calculator .section-bottom .btn:hover .sprite, .calculator .section-bottom .btn.active .sprite {
  animation: loopSprite2 4s steps(3) infinite forwards;
}

.point-anim {
  animation: point-anim 1s infinite;
}

@keyframes point-anim {
  0% {
    top: 44px;
    opacity: 0;
  }
  80% {
    top: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.star-anim {
  animation: star-anim 1s infinite;
}

@keyframes star-anim {
  0% {
    transform: translateX(-2px) translateY(-1px);
  }
  50% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(2px) translateY(-2px);
  }
}
.calculator-modal {
  text-align: center;
}
.calculator-modal .modal-dialog {
  max-width: 320px;
}
.calculator-modal img {
  display: block;
  margin: 0 auto 10px;
}
.calculator-modal .main-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.calculator-modal p {
  font-size: 16px;
  line-height: 1.63;
  margin-bottom: 0;
}
.calculator-modal .btn {
  max-width: 200px;
}

@media (max-width: 940px) {
  .calculator {
    padding-top: 16px;
    padding-bottom: 60px;
    font-size: 12px;
    line-height: 18px;
  }
  .calculator .owl {
    display: none;
  }
  .calculator .section-banner {
    margin-bottom: 20px;
  }
  .calculator .section-header {
    margin-bottom: 20px;
  }
  .calculator .section-content {
    padding: 20px;
    margin-bottom: 10px;
  }
  .calculator .bottom-text {
    font-size: 12px;
    line-height: 1.67;
    padding-right: 0;
  }
  .calculator .bottom-text ol {
    margin-bottom: 0;
  }
  .calculator .converter .title {
    font-size: 16px;
  }
  .calculator .converter .group {
    display: block;
  }
  .calculator .converter .action {
    width: 100%;
  }
  .calculator .converter .text-small {
    margin-top: 10px;
  }
  .calculator .form-section {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .calculator .form-group {
    width: calc(50% - 5px);
  }
  .calculator .form-group:nth-child(1) {
    margin-right: 5px;
  }
  .calculator .form-group:nth-child(2) {
    margin-left: 5px;
  }
  .calculator .form-group .pull-right {
    font-size: 12px;
  }
  .calculator .rateCard .title {
    font-size: 16px;
  }
  .calculator .rateCard__box {
    border-radius: 0;
    padding: 10px;
  }
  .calculator .rateCard__hd {
    width: 90px;
    font-size: 12px;
  }
  .calculator .rateCard__bd {
    width: calc(100% - 90px);
  }
  .calculator .rateCard .form-control {
    max-width: 100%;
    font-size: 13px;
    margin: 0;
  }
  .calculator .rateCard .form-control .icon {
    width: 18px;
    height: 18px;
  }
  .calculator .rateCard .superPoint .form-control {
    margin-right: 0;
  }
  .calculator .rateCard .superPoint .text-small {
    text-align: right;
    width: 100%;
    margin-top: 5px;
    display: block;
  }
  .calculator .form-control {
    font-size: 13px;
    line-height: 40px;
    height: 40px;
  }
  .calculator select.form-control {
    font-size: 13px;
  }
  .calculator .section-bottom {
    display: block;
    padding: 20px;
  }
  .calculator .section-bottom .col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .calculator .section-bottom .col-right {
    width: 100%;
    display: block;
    margin-bottom: 60px;
    position: relative;
  }
  .calculator .section-bottom .main-text {
    font-size: 15px;
  }
  .calculator .section-bottom p {
    font-size: 12px;
  }
  .calculator .section-bottom .bar {
    width: 100%;
    margin: 0;
    height: 18px;
    padding-right: calc(62px + 14px);
  }
  .calculator .section-bottom .bar__percent {
    height: 18px;
  }
  .calculator .section-bottom .bar.percent-100 {
    padding-right: calc(50px + 14px);
  }
  .calculator .section-bottom .bar__head {
    top: -6px;
  }
  .calculator .section-bottom .bar__threshold {
    right: 30px;
    top: -14px;
  }
  .calculator .section-bottom .action {
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin-left: -70px;
  }
  .calculator .section-bottom .btn {
    font-size: 14px;
  }
}
@media (max-width: 764px) {
  .calculator .section-banner .lg-view {
    display: none;
  }
  .calculator .section-banner .sm-view {
    display: block;
  }
}
.article-grid {
  padding: 35px 0;
  position: relative;
  z-index: 0;
}
.article-grid .section-header {
  margin-bottom: 20px;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.article-grid .search-input {
  margin-right: 0;
}
.article-grid .search-container {
  margin-top: 0;
  margin-bottom: 0;
}
.article-grid .ad-block {
  background-color: transparent;
  box-shadow: none;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.article-grid .ad-block--group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 25px;
  max-width: 100%;
}
.article-grid .ad-block--group a {
  margin: 0 15px 15px;
  border-radius: 5px;
  overflow: hidden;
  min-width: 300px;
}

.article-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -12px 12px;
}
.article-list .article-item {
  margin: 0 12px 30px;
  width: calc(100% / 4 - 12px * 2);
}

.article-item {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.article-item a {
  display: block;
}
.article-item:hover {
  background-color: #1db2e5;
}
.article-item:hover .article-item__main-text {
  color: #fff;
}
.article-item:hover .article-item__sub-text {
  color: #fff;
}
.article-item:hover .article-item__date {
  color: #fff;
}
.is-mobile .article-item:hover {
  background-color: #fff;
}
.is-mobile .article-item:hover .article-item__main-text {
  color: #595757;
}
.is-mobile .article-item:hover .article-item__sub-text {
  color: #585858;
}
.is-mobile .article-item:hover .article-item__date {
  color: #585858;
}
.article-item__image {
  position: relative;
  background-color: #e3e3e3;
  padding-top: 56.737588652%;
  overflow: hidden;
}
.article-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: inherit;
  width: 100%;
  height: auto;
}
.article-item__content {
  padding: 15px 20px;
}
.article-item__main-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6666;
  margin-bottom: 10px;
  color: #595757;
  min-height: 3.35em;
}
.article-item__sub-text {
  font-size: 16px;
  line-height: 1.875;
  color: #585858;
  text-align: justify;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6em;
}
.article-item__date {
  font-size: 16px;
  color: #585858;
}
.article-item__label {
  position: absolute;
  top: 8px;
  right: 8px;
  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;
}
.article-item .label {
  color: #fff;
  line-height: 30px;
  height: 30px;
  border-radius: 30px;
  padding: 0 11px;
  font-size: 14px;
  margin: 2px;
}
.article-item .label--blue {
  background-color: #364fcc;
}
.article-item .label--green {
  background-color: #27d086;
}
.article-item .label--pink {
  background-color: #ff2c9c;
}
.article-item .label--orange {
  background-color: #ff836b;
}
.article-item .label--yellow {
  background-color: #f7cb1d;
}

.article {
  padding: 35px 0;
}
.article .article-header {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
}
.article .article-header__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.article .article-header .tags {
  width: calc(100% - 150px);
}
.article .share {
  width: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.article .share a {
  margin-left: 10px;
}
.article .icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.article .icon-facebook {
  background-image: url(../images/icon-share-facebook.svg);
  background-color: #2438ac;
}
.article .icon-line {
  background-image: url(../images/icon-share-line.svg);
  background-color: #0fd013;
}
.article .article-title {
  margin-bottom: 20px;
  font-size: 45px;
  color: #595757;
  font-weight: 700;
}
.article .info {
  color: #9c9c9c;
  letter-spacing: .01em;
  margin-bottom: 15px;
}
.article .tag {
  border: 1px solid #595757;
  padding: 7px 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: inline-block;
}
.article .ad-block {
  background-color: transparent;
  box-shadow: none;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
.article .ad-block--group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 25px;
  max-width: 100%;
}
.article .ad-block--group a {
  margin: 0 15px 15px;
  border-radius: 5px;
  overflow: hidden;
  min-width: 300px;
}
.article-image {
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
}
.article-content {
  margin-bottom: 32px;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 4px;
  color: #585858;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .01em;
}
.article-content a {
  color: #1db2e5;
  text-decoration: underline;
}
.article-report {
  color: #585858;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 40px;
  padding: 2px 0;
  padding-left: 80px;
  position: relative;
  min-height: 60px;
}
.article-report img {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
}
.article-report .highlight {
  font-weight: 700;
  color: #1eb1e4;
}
.article table {
  border: 1px solid #959595;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
}
.article table tr:nth-child(2n - 1) td {
  background-color: rgba(83, 180, 214, 0.2);
}
.article th {
  border: 1px solid #53b4d6;
  background-color: #53b4d6;
  color: #fff;
  padding: 1em;
  text-align: center;
}
.article td {
  border: 1px solid #959595;
  padding: 1em;
  color: #474545;
}
.article .table-container {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
.article .table-container table {
  min-width: 600px;
}

.article-other {
  margin-bottom: 40px;
}
.article-other__header {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 0;
}
.article-other__list {
  color: #1db2e5;
  padding-left: 1em;
}
.article-other__list li {
  padding: 6px 0;
}
.article-other__list a {
  color: #1db2e5;
  font-size: 20px;
  line-height: 28px;
}
.article-other .article-item__sub-text {
  -webkit-line-clamp: 2;
  max-height: 4em;
}

.article-related__header {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 35px;
}
.article-related .article-list .article-item {
  width: calc(100% / 3 - 12px * 2);
}
.article-related .article-item__sub-text {
  -webkit-line-clamp: 2;
  max-height: 4em;
}

.article-related-container {
  position: relative;
  margin: 0 -15px 30px;
  overflow-x: hidden;
}
.article-related-container .swiper-slide {
  padding: 15px;
}
.article-related-container .swiper-button-prev,
.article-related-container .swiper-button-next {
  width: 36px;
  height: 48px;
  top: calc(50% - 48px / 2);
  display: none;
}
.article-related-container .swiper-button-prev:after,
.article-related-container .swiper-button-next:after {
  display: none;
}
.article-related-container .swiper-button-prev.swiper-button-disabled,
.article-related-container .swiper-button-next.swiper-button-disabled {
  opacity: .3;
}
.article-related-container .swiper-button-prev {
  left: -20px;
  background-image: url(../images/swiper-button-prev.svg);
}
.article-related-container .swiper-button-next {
  right: -20px;
  background-image: url(../images/swiper-button-next.svg);
}
.article-related-container .swiper-slide {
  padding: 15px;
}
.article-related-container .swiper-pagination {
  bottom: 0;
  position: relative;
  padding: 10px 0;
}
.article-related-container .swiper-pagination {
  display: none;
}
.article-related-container .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
  width: 10px;
  height: 10px;
}
.article-related-container .swiper-pagination-bullet-active {
  opacity: 1;
  background: #27d086;
}

@media (max-width: 940px) {
  .article-grid .search-container {
    margin-bottom: 20px;
    margin-top: 0;
    max-width: 560px;
  }

  .article-list .article-item {
    width: calc(100% / 3 - 12px * 2);
  }
}
@media (max-width: 768px) {
  .article-list {
    margin: 0 -10px;
  }
  .article-list .article-item {
    margin: 0 10px 20px;
    width: calc(100% / 2 - 10px * 2);
  }
}
@media (max-width: 767px) {
  .article-grid {
    padding: 20px 0;
  }
  .article-grid .section-header {
    margin-bottom: 20px;
    display: block;
  }
  .article-grid .dropdown-group {
    padding: 0 15px 2px;
  }

  .article {
    padding: 20px 0;
  }
  .article .pagination {
    margin-bottom: 20px;
  }

  .article-item__content {
    padding: 8px 10px;
  }
  .article-item__main-text {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.3333;
  }
  .article-item__sub-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .article-item__date {
    font-size: 12px;
  }

  .article {
    padding: 20px 0;
  }
  .article .ad-block {
    margin-bottom: 10px;
  }
  .article .article-header {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .article .article-header__group {
    display: block;
  }
  .article .article-header .tags {
    width: 100%;
  }
  .article .share {
    width: 100%;
  }
  .article .icon {
    width: 40px;
    height: 40px;
  }
  .article .article-title {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 32px;
  }
  .article .info {
    margin-bottom: 10px;
  }
  .article .tag {
    padding: 3px 20px;
  }
  .article-image {
    margin-bottom: 15px;
  }
  .article-content {
    margin-bottom: 25px;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .article-report {
    font-size: 16px;
    padding-left: 50px;
    min-height: 40px;
    margin-bottom: 20px;
  }
  .article-report img {
    width: 40px;
  }

  .article-other {
    margin-bottom: 20px;
  }
  .article-other__header {
    font-size: 21px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .article-other__list li {
    padding: 4px 0;
  }
  .article-other__list a {
    font-size: 16px;
    line-height: 24px;
  }

  .article-related__header {
    font-size: 21px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .article-related-container {
    position: relative;
    margin: 0 -15px 30px;
  }
  .article-related-container .swiper-slide {
    padding: 15px 5px;
  }
  .article-related-container .swiper-button-prev,
  .article-related-container .swiper-button-next {
    display: block;
  }
  .article-related-container .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;
  }
  .article-related-container .swiper-slide {
    width: 50vw;
  }
}
@media (max-width: 375px) {
  .article-list {
    margin: 0;
  }
  .article-list .article-item {
    margin: 0 0 15px;
    width: 100%;
  }
  .article-list .article-item__main-text {
    min-height: inherit;
  }

  .article-related-container .related-item {
    margin: 0 5px;
    width: calc(100% - 5px * 2);
  }
  .article-related-container .swiper-slide {
    width: 70vw;
  }
}
.download {
  position: relative;
  padding: 40px 0 90px;
}
.download:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/download-bg.png);
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: contain;
  display: block;
  z-index: -1;
}
.download__header {
  text-align: center;
  margin-bottom: 40px;
}
.download__header h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.download__header h3 {
  font-size: 30px;
  color: #999;
  margin-bottom: 0;
  letter-spacing: .01em;
}
.download__header span {
  display: inline-block;
}
.download__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.download .download__image {
  width: calc(100% - 184px);
}
.download .download__image .lg-view {
  display: block;
}
.download .download__image .sm-view {
  display: none;
}
.download .download__image img {
  margin: 0;
  margin-left: -10px;
}
.download__main {
  width: 184px;
  padding-top: 60px;
}
.download img {
  display: block;
  margin: 0 auto;
}
.download .qrcode {
  margin-bottom: 55px;
}
.download .block {
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.download .block a {
  display: block;
}

.sticky-box {
  position: fixed;
  top: -57px;
  left: 0;
  width: 100%;
  height: 57px;
  background-color: #444;
  z-index: 100;
  padding: 11px 43px 11px 19px;
}
.sticky-box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.sticky-box__image {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  overflow: hidden;
}
.sticky-box__content {
  width: calc(100% - 35px);
  padding-left: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.sticky-box .col-left {
  width: calc(100% - 55px);
}
.sticky-box .col-right {
  width: 55px;
}
.sticky-box .main-text {
  font-size: 11px;
  line-height: 20px;
  color: #fff;
}
.sticky-box .sub-text {
  font-size: 9px;
  line-height: 15px;
  color: #989898;
}
.sticky-box .btn {
  max-width: 55px;
  height: 31px;
  line-height: 31px;
  font-size: 13px;
}
.sticky-box__close {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 17px;
  height: 17px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.3);
  background-image: url(../images/sticky-box-close.png);
  font-size: 0;
  z-index: 1;
  border-radius: 50%;
}

@media (max-width: 764px) {
  .sticky-box-in {
    padding-top: 57px;
  }
  .sticky-box-in .site-header {
    top: 57px;
  }
  .sticky-box-in .header-menu-wrap {
    top: 113px;
    max-height: calc(100vh - 113px);
  }
  .sticky-box-in .sticky-box {
    top: 0;
  }

  .download {
    padding: 20px 0 45px;
  }
  .download:before {
    left: -20px;
    width: calc(100% + 40px);
    background-position: center 87%;
    background-size: auto 50px;
  }
  .download__header {
    margin-bottom: 20px;
  }
  .download__header h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .download__header h3 {
    font-size: 15px;
  }
  .download__content {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .download .download__image {
    width: 100%;
  }
  .download .download__image img {
    margin: 0 auto;
  }
  .download__main {
    width: 100%;
    padding-top: 0;
    margin-bottom: 20px;
  }
  .download .qrcode {
    display: none;
  }
}
@keyframes coinBounce {
  0% {
    margin-top: -5px;
    -webkit-animation-timing-function: ease-out;
  }
  10% {
    margin-top: 10px;
    margin-left: 30px;
    -webkit-animation-timing-function: ease-in;
  }
  11% {
    height: 42px;
  }
  19% {
    height: 45px;
  }
  20% {
    margin-top: -3px;
    margin-left: 60px;
    -webkit-animation-timing-function: ease-out;
  }
  30% {
    margin-top: 15px;
    margin-left: 90px;
    -webkit-animation-timing-function: ease-in;
  }
  31% {
    height: 42px;
  }
  39% {
    height: 45px;
  }
  40% {
    margin-top: -5px;
    margin-left: 130px;
    -webkit-animation-timing-function: ease-out;
    opacity: 1;
  }
  50% {
    margin-top: 15px;
    margin-left: 170px;
    -webkit-animation-timing-function: ease-in;
    opacity: 0;
  }
  51%,
  100% {
    margin-top: 20px;
    margin-left: 170px;
    -webkit-animation-timing-function: ease-out;
    height: 42px;
    opacity: 0;
  }
}
.parent {
  position: relative;
}

.sprite {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
}

@keyframes sprite {
  from {
    background-position: 0 0%;
  }
  to {
    background-position: 0 100%;
  }
}
.about {
  position: relative;
}
.about .about-coin {
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-210px);
  -khtml-transform: translateX(-210px);
  -moz-transform: translateX(-210px);
  -ms-transform: translateX(-210px);
  -o-transform: translateX(-210px);
  transform: translateX(-210px);
  width: 45px;
  animation: coinBounce 3s;
}
.about .about-coin img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-top {
  padding: 55px 0 0;
  position: relative;
  background-image: url(../images/about-top.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
}
.about-top .about-kv {
  position: relative;
  background-image: url(../images/about-kv-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
}
.about-top .about-kv img {
  margin: 0 auto;
  display: block;
}
.about-top .parent {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
.about-top .parent:before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 202.5%;
  display: block;
}
.about-top .sprite {
  opacity: 0;
}
.about-top .sprite-1 {
  opacity: 1;
  background-image: url(../images/about-phone-1.png);
}
.about-top .sprite-2 {
  background-image: url(../images/about-phone-2.png);
  animation: fadeIn .8s forwards;
  animation-delay: 1.5s;
}
.about-top .sprite-3 {
  background-image: url(../images/about-phone-3.png);
  animation: fadeIn .8s forwards;
  animation-delay: 2.8s;
}
.about-top .block {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  min-height: 124px;
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.about-top .block:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 22px;
  height: 21px;
  background-image: url(../images/about-quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.about-top .block-1 {
  top: 6%;
  left: 6.5%;
  max-width: 367px;
  max-width: 30.583333333%;
  animation-delay: .5s;
}
.about-top .block-2 {
  top: 30%;
  left: 62.5%;
  max-width: 351px;
  max-width: 29.25%;
  animation-delay: 1s;
}
.about-top .block-3 {
  top: 60.5%;
  left: 11%;
  max-width: 385px;
  max-width: 32.083333333%;
  animation-delay: 1.5s;
}
.about-top .block strong {
  font-size: 20px;
  line-height: 30px;
}
.about-top .bg {
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 0;
  display: block;
}
.about .main-title {
  font-size: 45px;
  font-weight: 700;
  color: #595757;
  text-align: center;
  margin-bottom: 45px;
}
.about .heading {
  font-size: 30px;
  line-height: 1.3333;
  display: block;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.about .heading span {
  display: block;
  background: #27d086;
  background: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-mask-image: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.about .heading br {
  display: none;
}
.about .about-swiper-container {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 90px;
  min-height: 455px;
}
.about .about-swiper-container .swiper-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 470px;
  background-image: url(../images/about-swiper-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.about .about-swiper-container .swiper-slide img {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.about .about-swiper-container .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.about .about-swiper-container .main-text {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 15px;
}
.about .about-swiper-container p {
  font-size: 18px;
}
.about .about-swiper-container p strong {
  font-size: 20px;
}
.about .about-swiper-container .image {
  max-width: 470px;
  margin-left: 0;
  margin-right: 4.166666666%;
  position: relative;
  margin-bottom: 30px;
}
.about .about-swiper-container .image .unit {
  position: absolute;
  bottom: -20px;
  right: -76px;
  width: 124px;
  z-index: 1;
}
.about .about-swiper-container .about-swiper {
  z-index: 0;
}
.about .about-swiper-container .content {
  margin-top: 65px;
  margin-right: 0;
  width: 50%;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 110px;
}
.about .about-swiper-container .tip {
  position: absolute;
  top: 100%;
  left: 75px;
  width: calc(100% - 75px);
  font-size: 14px;
  line-height: 24px;
}
.about .about-swiper-container .tip:before {
  content: "";
  position: absolute;
  top: 16px;
  left: -45px;
  width: 32px;
  height: 17px;
  background-image: url(../images/about-tip-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.about .about-middle {
  text-align: center;
  padding: 175px 0;
  background-color: #fff;
  background-image: url(../images/about-middle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 480px;
}
.about .about-middle .heading {
  font-size: 36px;
  margin-bottom: 20px;
}
.about .about-middle p {
  font-size: 18px;
  line-height: 28px;
}

.bottom-info-section {
  padding: 35px 0 80px;
}
.bottom-info-section .main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 30px;
  text-align: center;
}
.bottom-info-section .heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
}
.bottom-info-section .qa-list {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .about .about-swiper-container .image {
    max-width: 48%;
    margin-right: 2%;
    margin-bottom: 30px;
  }
  .about .about-swiper-container .image .unit {
    bottom: -20px;
    right: -7px;
    width: 25%;
  }
  .about .about-swiper-container .content {
    margin-top: 0;
    margin-right: 0;
    width: 50%;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 50px;
  }
  .about .about-swiper-container .main-text {
    font-size: 30px;
  }
  .about .about-swiper-container .tip {
    left: 50px;
    width: calc(100% - 50px);
  }
}
@media (max-width: 767px) {
  .about .about-coin {
    display: none;
  }
  .about-top {
    padding: 10px 0 0;
    background-image: url(../images/about-top_s.png);
    background-size: 320px auto;
  }
  .about-top .container {
    padding: 0;
  }
  .about-top .about-kv {
    background-image: url(../images/about-kv-bg_s.png);
    background-size: contain;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 0 160px;
  }
  .about-top .parent {
    max-width: 120px;
  }
  .about-top .parent:before {
    content: "";
    position: relative;
    width: 100%;
    padding-top: 202.5%;
    display: block;
  }
  .about-top .block {
    border-radius: 10px;
    padding: 10px 15px;
    min-height: 60px;
    font-size: 13px;
    line-height: 18px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .about-top .block:before {
    top: -5px;
    left: 15px;
    width: 11px;
    height: 11px;
  }
  .about-top .block-1 {
    top: 46%;
    left: 5%;
    max-width: 253px;
  }
  .about-top .block-2 {
    top: 67%;
    left: 26%;
    max-width: 213px;
  }
  .about-top .block-3 {
    top: 88%;
    left: 5%;
    max-width: 240px;
  }
  .about-top .block strong {
    font-size: 13px;
    line-height: 18px;
  }
  .about-top .bg {
    background-image: url(../images/about-bg_s.png);
    height: 475px;
  }
  .about .main-title {
    display: none;
  }
  .about .heading {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .about .heading br {
    display: block;
  }
  .about .about-swiper-container {
    display: block;
    padding-top: 30px;
    padding-bottom: 75px;
    min-height: inherit;
    text-align: center;
  }
  .about .about-swiper-container .main-text {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .about .about-swiper-container p {
    font-size: 13px;
  }
  .about .about-swiper-container p strong {
    font-size: 15px;
  }
  .about .about-swiper-container .image {
    max-width: 320px;
    margin: 0 auto;
    background-color: #fff;
  }
  .about .about-swiper-container .image .unit {
    bottom: 10px;
    right: 15px;
    width: 62px;
  }
  .about .about-swiper-container .content {
    margin-top: 0;
    margin-right: 0;
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 10px;
    position: initial;
  }
  .about .about-swiper-container .tip {
    top: calc(100% - 55px);
    left: 0;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    width: 100%;
  }
  .about .about-swiper-container .tip:before {
    top: -15px;
    left: 50%;
    width: 16px;
    height: 8px;
    margin-left: -8px;
  }
  .about .about-middle {
    padding: 70px 0;
    min-height: inherit;
    background-size: auto 90%;
  }
  .about .about-middle .heading {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .about .about-middle p {
    font-size: 12px;
    line-height: 17px;
  }

  .bottom-info-section {
    padding: 15px 0 30px;
  }
  .bottom-info-section .main-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .bottom-info-section .heading {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .bottom-info-section .qa-list {
    margin-bottom: 0;
  }
}
.use {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.use-section {
  position: relative;
  padding: 80px 0 60px;
}
.use-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
.use-section .sub-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.use-section .parent {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.use-section .parent:before {
  content: "";
  position: relative;
  width: 100%;
  display: block;
}
.use .heading {
  font-size: 48px;
  line-height: 1.3333;
  display: block;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.use .heading span {
  display: block;
  background: #27d086;
  background: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-mask-image: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.use .heading br {
  display: none;
}

.use-menu {
  background-color: #f4f7fc;
  position: relative;
}
.use-menu .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.use-menu .btn-collapse {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  background-color: #f4f7fc;
  border-radius: 50%;
  z-index: 1;
}
.use-menu .btn-collapse .icon {
  display: block;
  width: 50px;
  height: 50px;
  background-size: 16px 16px;
  background-position: center 55%;
}
.use-menu .inner {
  display: none;
}
.use-menu .inner .heading {
  margin-bottom: 10px;
}
.use-menu .inner p {
  text-align: center;
  margin-bottom: 35px;
}
.use-menu .heading {
  font-size: 36px;
}
.use-menu .heading br {
  display: block;
}
.use-menu .use-menu-swiper {
  margin: -10px;
  position: relative;
  z-index: 5;
}
.use-menu .swiper-container {
  overflow: visible;
}
.use-menu .swiper-slide:nth-child(3) {
  z-index: 2;
}
.use-menu .swiper-slide {
  width: 305px !important;
}
.use-menu .item {
  position: relative;
  margin: 10px;
  min-height: 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-image: url(../images/use-menu-item.png);
  border-radius: 4px;
  padding: 30px 20px;
  padding-right: 90px;
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #595757;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.use-menu .item.active {
  box-shadow: 0 0 0 3px #1db2e5 inset, 5px 10px 10px rgba(0, 0, 0, 0.05);
}
.use-menu .item .icon-arrow {
  background-image: url(../images/icon-arrow-white.svg);
  background-color: #1db2e5;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 5px;
}
.use-menu .item .parent {
  width: 100%;
  max-width: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.use-menu .item .parent:before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.use-menu .item-1 .parent {
  bottom: -6px;
  right: 0;
}
.use-menu .item-1 .sprite {
  background-image: url(../images/use-menu-item1.png);
}
.use-menu .item-1:hover .sprite {
  animation: loopSprite 2s steps(4) infinite;
}
.use-menu .item-2 .parent {
  bottom: -5px;
  right: -8px;
  max-width: 90px;
}
.use-menu .item-2 .sprite {
  background-image: url(../images/use-menu-item2.png);
}
.use-menu .item-2:hover .sprite {
  animation: loopSprite 2s steps(4) infinite;
}
.use-menu .item-3 .parent {
  bottom: -5px;
  right: -12px;
  max-width: 90px;
}
.use-menu .item-3 .sprite {
  background-image: url(../images/use-menu-item3.png);
}
.use-menu .item-3:hover .sprite {
  animation: loopSprite2 2s steps(4) infinite;
}
.use-menu .item-4 .parent {
  bottom: -5px;
  right: -5px;
  max-width: 90px;
}
.use-menu .item-4 .sprite {
  background-image: url(../images/use-menu-item4.png);
}
.use-menu .item-4:hover .sprite {
  animation: loopSprite2 2s steps(4) infinite;
}
.use-menu.active .inner {
  display: block;
}
.use-menu.active .item {
  min-height: 140px;
}
.use-menu.active .item .parent {
  max-width: 200px;
}
.use-menu.active .item-1 .parent {
  bottom: -30px;
  right: -30px;
}
.use-menu.active .item-2 .parent {
  bottom: -30px;
  right: -55px;
}
.use-menu.active .item-3 .parent {
  bottom: -30px;
  right: -60px;
}
.use-menu.active .item-4 .parent {
  bottom: -30px;
  right: -50px;
}

@keyframes loopSprite {
  0% {
    background-position: 0 0%;
  }
  15% {
    background-position: 0 100%;
  }
  30% {
    background-position: 0 100%;
  }
  40%,
  100% {
    background-position: 0 0%;
  }
}
@keyframes loopSprite2 {
  0% {
    background-position: 0 0%;
  }
  15% {
    background-position: 0 100%;
  }
  16% {
    background-position: 0 100%;
  }
  40%,
  100% {
    background-position: 0 100%;
  }
}
@keyframes loopSprite3 {
  0% {
    background-position: 0 0%;
  }
  60% {
    background-position: 0 100%;
  }
  61% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes loopSprite4 {
  0% {
    background-position: 0 0%;
  }
  100% {
    background-position: 0 100%;
  }
}
.use-1 .use-kv {
  position: relative;
  background-image: url(../images/use-1-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.use-1 .coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.use-1 .coin-1 {
  background-image: url(../images/use-1-coin.png);
  animation: float_anim 1s infinite alternate;
  opacity: .8;
}
.use-1 .coin-2 {
  background-image: url(../images/use-1-coin2.png);
  animation: float_anim 1s infinite alternate-reverse;
  opacity: .6;
}
.use-1 .parent:before {
  padding-top: 43%;
}
.use-1 .sprite {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.use-1 .sprite-0 {
  opacity: 1;
  background-image: url(../images/use-kv-1.png);
  animation: fadeIn 1s forwards;
}
.use-1 .sprite-1 {
  background-image: url(../images/use-1-1.png);
  animation-delay: .3s;
}
.use-1 .sprite-2 {
  background-image: url(../images/use-1-2.png);
  animation-delay: .6s;
}
.use-1 .sprite-3 {
  background-image: url(../images/use-1-3.png);
  animation-delay: .9s;
}
.use-1 .sprite-4 {
  background-image: url(../images/use-1-4.png);
  animation-delay: .3s;
}
.use-1 .sprite-5 {
  background-image: url(../images/use-1-5.png);
  animation-delay: .6s;
}
.use-1 .sprite-6 {
  background-image: url(../images/use-1-6.png);
  animation-delay: .9s;
}
.use-1 .sprite-7 {
  background-image: url(../images/use-1-7.png);
  animation-delay: .3s;
}
.use-1 .sprite-8 {
  background-image: url(../images/use-1-8.png);
  animation-delay: .6s;
}
.use-1 .sprite-9 {
  background-image: url(../images/use-1-9.png);
  animation-delay: .9s;
}
.use-1 .sprite-10 {
  background-image: url(../images/use-1-10.png);
  animation-delay: .3s;
}
.use-1 .bottom {
  text-align: center;
  padding-top: 30px;
}
.use-1 .bottom h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.use-1 .bottom .tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -5px;
}
.use-1 .bottom .tag {
  background-color: #eef7fe;
  color: #1db2e5;
  min-height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-align: center;
  border-radius: 40px;
  margin: 5px;
  font-weight: 700;
}

.use-2 {
  padding-bottom: 40px;
}
.use-2 .container {
  background-image: url(../images/use-2-bg.png);
  background-position: 10% bottom;
  background-repeat: no-repeat;
  background-size: auto;
  padding-bottom: 40px;
}
.use-2 .use-swiper-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
.use-2 .swiper-slide img {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.use-2 .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.use-2 .gallery-top-container {
  width: 400px;
}
.use-2 .gallery-top-container .item {
  display: none;
}
.use-2 .gallery-thumbs-container {
  width: calc(100% - 400px);
  padding-left: 40px;
}
.use-2 .item {
  position: relative;
  padding: 10px;
  padding-left: 65px;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 5px;
}
.use-2 .item .main-text {
  color: #1db2e5;
  font-weight: 700;
}
.use-2 .item p {
  font-size: 18px;
  text-align: left;
  margin: 0;
}
.use-2 .item .number {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 30px;
  height: 30px;
  padding: 2px;
  margin-top: -15px;
  border-radius: 50%;
  text-align: center;
  background: #27d086;
  background: linear-gradient(135deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
}
.use-2 .item .number span {
  background-color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  line-height: 26px;
  color: #1db2e5;
}
.use-2 .gallery-thumbs {
  overflow: inherit;
}
.use-2 .gallery-thumbs .swiper-wrapper {
  display: block;
  transform: none !important;
  transition-property: none;
}
.use-2 .gallery-thumbs .swiper-slide-thumb-active .item {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.use-2 .gallery-thumbs .swiper-slide-thumb-active .number span {
  background-color: transparent;
  border-radius: 50%;
  color: #fff;
}

.use-3 {
  padding-bottom: 80px;
}
.use-3 .sub-title {
  margin-bottom: 50px;
}
.use-3 .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.use-3 .item {
  width: calc(100% / 4);
}
.use-3 .image {
  width: 100%;
  max-width: 256px;
  margin: 0 auto 25px;
}
.use-3 .image .parent:before {
  padding-top: 100%;
}
.use-3 .content {
  text-align: center;
}
.use-3 .main-text {
  font-size: 24px;
  font-weight: 700;
  color: #1db2e5;
  margin-bottom: 15px;
}
.use-3 .sub-text {
  font-size: 18px;
  line-height: 24px;
}
.use-3 .item-1 .sprite {
  background-image: url(../images/use-3-1.png);
}
.use-3 .item-1:hover .sprite, .use-3 .item-1.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.use-3 .item-2 .sprite {
  background-image: url(../images/use-3-2.png);
}
.use-3 .item-2:hover .sprite, .use-3 .item-2.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.use-3 .item-3 .sprite {
  background-image: url(../images/use-3-3.png);
}
.use-3 .item-3:hover .sprite, .use-3 .item-3.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.use-3 .item-4 .sprite {
  background-image: url(../images/use-3-4.png);
}
.use-3 .item-4:hover .sprite, .use-3 .item-4.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}

.use-4 {
  padding-bottom: 80px;
}
.use-4 .use-kv {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/use-4-bg.png);
}
.use-4 .parent:before {
  padding-top: 27.166666666%;
}
.use-4 .sprite {
  background-image: url(../images/use-kv-4.png);
  animation: loopSprite3 6s steps(39) forwards infinite;
}
.use-4 .bottom {
  text-align: center;
  padding-top: 30px;
  width: 235px;
  margin: 0 auto;
}
.use-4 .bottom h4 {
  text-align: center;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1db2e5;
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.use-4 .bottom h4:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  display: block;
  background-color: rgba(29, 178, 229, 0.2);
}
.use-4 .bottom h4 span {
  position: relative;
}

.virtual-convert {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.vc-section {
  position: relative;
}
.vc-section .main-title {
  font-size: 45px;
  font-weight: 700;
  color: #595757;
  text-align: center;
  margin-bottom: 80px;
}
.vc-section .heading {
  font-size: 36px;
  line-height: 1.3333;
  display: block;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.vc-section .heading span {
  display: block;
  background: #27d086;
  background: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-mask-image: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.vc-section p {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.vc-section .parent {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.vc-section .parent:before {
  content: "";
  position: relative;
  width: 100%;
  display: block;
}

.vc-top {
  padding: 60px 0;
}
.vc-top .main-text {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.vc-top p {
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #9c9c9c;
  margin-bottom: 0;
}
.vc-top .c1 {
  color: #0055f5;
}
.vc-top .c2 {
  color: #1db2e5;
}
.vc-top .vc-kv {
  max-width: 600px;
  margin: 0 auto;
}
.vc-top .vc-kv .parent:before {
  padding-top: 80%;
}
.vc-top .vc-kv .sprite {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.vc-top .vc-kv .sprite-0 {
  opacity: 1;
  background-image: url(../images/vc-top-kv.png);
  animation: fadeIn 1s forwards;
}
.vc-top .vc-kv .sprite-1 {
  opacity: 1;
}
.vc-top .vc-kv .coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.vc-top .vc-kv .coin-1 {
  background-image: url(../images/vc-top-coin.png);
  animation: float_anim 1s infinite alternate;
}
.vc-top .vc-kv .coin-2 {
  background-image: url(../images/vc-top-coin2.png);
  animation: float_anim 1s infinite alternate;
}
.vc-top .vc-kv .coin-3 {
  background-image: url(../images/vc-top-coin3.png);
  animation: float_anim 1s infinite alternate-reverse;
}
.vc-top .vc-kv .coin-4 {
  background-image: url(../images/vc-top-coin4.png);
  animation: float_anim 1s infinite alternate-reverse;
}
.vc-top .block {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  margin-top: -80px;
  animation-delay: .5s;
}
.vc-top .block:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 22px;
  height: 21px;
  background-image: url(../images/about-quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.vc-middle {
  padding: 0 0 50px;
}
.vc-middle .heading {
  line-height: 55px;
  margin-bottom: 10px;
}
.vc-middle .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.vc-middle .item {
  width: calc(100% / 4);
  position: relative;
}
.vc-middle .item:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: -12px;
  background-image: url(../images/vc-middle-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.vc-middle .item:last-child:before {
  display: none;
}
.vc-middle .image {
  width: 100%;
  max-width: 272px;
  margin: 0 auto 25px;
}
.vc-middle .image .parent:before {
  padding-top: 100%;
}
.vc-middle .content {
  text-align: center;
}
.vc-middle .main-text {
  font-size: 18px;
  font-weight: 700;
  color: #595757;
}
.vc-middle .item-1 .sprite {
  background-image: url(../images/vc-middle-1.png);
}
.vc-middle .item-1:hover .sprite, .vc-middle .item-1.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.vc-middle .item-2 .sprite {
  background-image: url(../images/vc-middle-2.png);
}
.vc-middle .item-2:hover .sprite, .vc-middle .item-2.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.vc-middle .item-3 .sprite {
  background-image: url(../images/vc-middle-3.png);
}
.vc-middle .item-3:hover .sprite, .vc-middle .item-3.active .sprite {
  animation: loopSprite2 2.4s steps(9) infinite;
}
.vc-middle .item-4 .sprite {
  background-image: url(../images/vc-middle-4.png);
}
.vc-middle .item-4:hover .sprite, .vc-middle .item-4.active .sprite {
  animation: loopSprite4 1.6s steps(9) infinite;
}

.vc-bottom {
  padding-bottom: 75px;
}
.vc-bottom .lg-view {
  display: block;
}
.vc-bottom .sm-view {
  display: none;
}
.vc-bottom .heading {
  margin-bottom: 60px;
}
.vc-bottom .heading br {
  display: none;
}
.vc-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.vc-bottom .item {
  max-width: calc(100% / 3 - 35px * 2);
  margin: 0 35px;
}
.vc-bottom .image {
  width: 100%;
  max-width: 178px;
  margin: 0 auto 25px;
}
.vc-bottom .image img {
  max-height: 120px;
  display: block;
  margin: 0 auto;
}
.vc-bottom .number {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 50%;
  text-align: center;
  background: #27d086;
  background: linear-gradient(135deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  display: inline-block;
  font-weight: 700;
  margin-right: 5px;
}
.vc-bottom .number span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  line-height: 26px;
  color: #fff;
}
.vc-bottom .content {
  text-align: center;
}
.vc-bottom .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #1db2e5;
  display: inline-block;
}

.sp-friends {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.sp-friends .main-title {
  font-size: 45px;
  font-weight: 700;
  color: #595757;
  text-align: center;
  margin-bottom: 20px;
}
.sp-friends .heading {
  font-size: 30px;
  line-height: 1.3333;
  display: block;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.sp-friends .heading span {
  display: block;
  background: #27d086;
  background: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-mask-image: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.sp-friends .heading br {
  display: none;
}
.sp-friends p {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #595757;
  margin-bottom: 0;
}
.sp-friends p span {
  display: inline-block;
}
.sp-friends .friends-top {
  padding: 55px 0 0;
  position: relative;
}
.sp-friends .friends-top .friends-kv {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.sp-friends .friends-top .parent {
  width: 100%;
}
.sp-friends .friends-top .parent:before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.sp-friends .friends-top .sprite {
  opacity: 1;
}
.sp-friends .friends-top .sprite-0 {
  background-image: url(../images/friends-kv.png);
}
.sp-friends .friends-top .sprite-1 {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
.sp-friends .friends-top .sprite-2 {
  background-image: url(../images/friends-kv-left.png);
}
.sp-friends .friends-top .sprite-3 {
  background-image: url(../images/friends-airplane.png);
  animation: loopSprite4 2.3s steps(19) infinite;
}
.sp-friends .friends-top .phone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.sp-friends .friends-top .phone-1 {
  background-image: url(../images/friends-phone1.png);
  animation: float_anim 1s infinite alternate;
}
.sp-friends .friends-top .phone-2 {
  background-image: url(../images/friends-phone2.png);
  animation: float_anim 1s infinite alternate-reverse;
}
.sp-friends .friends-top .layer {
  position: absolute;
  top: 53%;
  right: 20%;
  width: 47px;
  display: none;
}
.sp-friends .friends-top .block {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  max-width: 48.333333333%;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.sp-friends .friends-top .block:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 22px;
  height: 21px;
  background-image: url(../images/about-quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.sp-friends .friends-top .block-1 {
  top: 82%;
  left: -23.5%;
  animation-delay: .5s;
}
.sp-friends .friends-top .block-2 {
  top: 45%;
  left: 73.5%;
  animation-delay: 1s;
}
.sp-friends .friends-bottom {
  text-align: center;
  padding: 0;
}
.sp-friends .friends-bottom .bg {
  background-image: url(../images/friends-bottom-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 437px;
  z-index: 0;
  display: block;
}
.sp-friends .friends-bottom .bottom-kv {
  max-width: 600px;
  margin: 0 auto;
}
.sp-friends .friends-bottom .bottom-kv.animated .sprite {
  animation: loopSprite4 4.8s steps(24) forwards;
  animation-delay: .5s;
}
.sp-friends .friends-bottom .parent {
  width: 100%;
}
.sp-friends .friends-bottom .parent:before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.sp-friends .friends-bottom .sprite {
  background-image: url(../images/friends-bottom-kv.png);
}

.es-menu {
  background-color: #f4f7fc;
  position: relative;
}
.es-menu .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.es-menu .btn-collapse {
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  background-color: #f4f7fc;
  border-radius: 50%;
  z-index: 1;
}
.es-menu .btn-collapse .icon {
  display: block;
  width: 50px;
  height: 50px;
  background-size: 16px 16px;
  background-position: center 55%;
}
.es-menu .inner {
  display: none;
}
.es-menu .heading {
  font-size: 36px;
  margin-bottom: 60px;
}
.es-menu .heading br {
  display: none;
}
.es-menu .es-menu-swiper {
  margin: -10px;
  position: relative;
  z-index: 5;
}
@media (min-width: 500px) {
  .es-menu .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    overflow: visible;
    transform: none !important;
  }
}
.es-menu .swiper-slide:nth-child(3) {
  z-index: 2;
}
.es-menu .swiper-slide {
  width: 305px !important;
}
.es-menu .item {
  position: relative;
  margin: 10px;
  min-height: 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-image: url(../images/use-menu-item.png);
  border-radius: 4px;
  padding: 30px 20px;
  padding-right: 90px;
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #595757;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.es-menu .item.active {
  box-shadow: 0 0 0 3px #1db2e5 inset, 5px 10px 10px rgba(0, 0, 0, 0.05);
}
.es-menu .item .icon-arrow {
  background-image: url(../images/icon-arrow-white.svg);
  background-color: #1db2e5;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 5px;
}
.es-menu .item .parent {
  width: 100%;
  max-width: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.es-menu .item .parent:before {
  content: "";
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.es-menu .item-1 .parent {
  bottom: -1px;
  right: 3px;
  max-width: 78px;
}
.es-menu .item-1 .sprite {
  background-image: url(../images/es-menu-item1.png);
}
.es-menu .item-1:hover .sprite {
  animation: loopSprite2 2s steps(4) infinite;
}
.es-menu .item-2 .parent {
  bottom: 2px;
  right: -5px;
}
.es-menu .item-2 .sprite {
  background-image: url(../images/es-menu-item2.png);
}
.es-menu .item-2:hover .sprite {
  animation: loopSprite4 0.4s steps(4) infinite alternate;
}
.es-menu .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 0 auto;
}
.es-menu .group .item {
  width: 100%;
  max-width: 300px;
  background: none;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-transform: scale(0.6);
  -khtml-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: .5;
}
.es-menu .group .item .parent {
  width: 100%;
  max-width: 300px;
  position: relative;
}
.es-menu .group .item.active {
  opacity: 1;
  box-shadow: none;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.es-menu .group .item-1 {
  margin-right: 200px;
}
.es-menu .group .item-1 .parent {
  bottom: 0;
  right: 0;
}
.es-menu .group .item-1.active .sprite {
  animation: loopSprite3 1.4s steps(4) infinite;
}
.es-menu .group .item-2 {
  margin-left: 200px;
}
.es-menu .group .item-2 .parent {
  bottom: 0;
  right: 0;
  max-width: 300px;
}
.es-menu .group .item-2.active .sprite {
  animation: loopSprite4 0.4s steps(4) infinite alternate;
}
.es-menu .es-switch {
  width: 320px;
  height: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
.es-menu .es-switch.switch-left .es-switch__toggle {
  left: 12px;
}
.es-menu .es-switch.switch-left .es-switch__left {
  color: #1db2e5;
}
.es-menu .es-switch.switch-right .es-switch__toggle {
  left: calc(100% - 10px - 52px);
}
.es-menu .es-switch.switch-right .es-switch__right {
  color: #1db2e5;
}
.es-menu .es-switch:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  box-shadow: 0 0 2px #27d086 inset;
  display: block;
  margin-top: -5px;
  background-color: #fff;
}
.es-menu .es-switch__toggle {
  position: absolute;
  left: 5px;
  -webkit-transition: 0.5s ease;
  -khtml-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.es-menu .es-switch__left {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  padding: 0 2px;
  padding-top: 52px;
}
.es-menu .es-switch__right {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 0 2px;
  padding-top: 52px;
}
.es-menu.active .inner {
  display: block;
}
.es-menu.active .swiper-container {
  display: none;
}

.exchange-station {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.exchange-station .es-section {
  position: relative;
  padding: 80px 0;
  display: none;
}
.exchange-station .es-section.active {
  display: block;
  animation: fadeIn 1s forwards;
}
.exchange-station .es-section p {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.exchange-station .es-section .sub-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.exchange-station .es-section .parent {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.exchange-station .es-section .parent:before {
  content: "";
  position: relative;
  width: 100%;
  display: block;
}
.exchange-station .heading {
  font-size: 48px;
  line-height: 1.3333;
  display: block;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.exchange-station .heading span {
  display: block;
  background: #27d086;
  background: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-mask-image: linear-gradient(315deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.exchange-station .heading br {
  display: none;
}
.exchange-station .es-main {
  padding-bottom: 60px;
  max-width: 784px;
  margin: 0 auto;
}
.exchange-station .es-main .nav-es {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-bottom: 40px;
}
.exchange-station .es-main .nav-item {
  margin: 0 5px;
}
.exchange-station .es-main .nav-link {
  background-color: #eaeff7;
  width: 106px;
  text-align: center;
  height: 40px;
  border-radius: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #595757;
  padding: 0;
}
.exchange-station .es-main .nav-link.active {
  color: #fff;
  background-color: #1db2e5;
}
.exchange-station .es-main .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -10px;
}
.exchange-station .es-main .item {
  margin: 10px;
  width: calc(100% / 2 - 10px * 2);
  position: relative;
}
.exchange-station .es-main .image {
  margin: 0 auto 10px;
  position: relative;
}
.exchange-station .es-main .number {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: 50%;
  text-align: center;
  background: #27d086;
  background: linear-gradient(135deg, #27d086 0%, #27d086 16%, #1db2e5 67%);
  display: inline-block;
  font-weight: 700;
  margin-right: 5px;
}
.exchange-station .es-main .number span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  line-height: 26px;
  color: #fff;
}
.exchange-station .es-main .content {
  text-align: center;
}
.exchange-station .es-main .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #595757;
  display: inline-block;
}
.exchange-station .es-main .layer {
  position: absolute;
  opacity: 0;
  animation: bounceIn 1s forwards;
  animation-delay: .2s;
}
.exchange-station .es-bottom {
  margin: 0 auto;
  max-width: 960px;
}
.exchange-station .es-bottom .heading {
  font-size: 36px;
  margin-bottom: 35px;
}
.exchange-station .es-bottom .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -10px;
}
.exchange-station .es-bottom .item {
  margin: 10px;
  width: calc(100% / 4 - 10px * 2);
  max-width: 220px;
}

.es-1 .es-main .item-1 .layer {
  top: 23%;
  left: 0;
  max-width: 45px;
}
.es-1 .es-main .item-2 .layer {
  top: 23%;
  right: 0;
  max-width: 50px;
}
.es-1 .es-main .item-2 .layer:last-child {
  top: 90%;
  right: 53%;
  max-width: 50px;
}
.es-1 .es-main .item-3 .layer {
  top: 15%;
  left: 0;
  max-width: 50px;
}
.es-1 .es-main .item-4 .layer {
  top: 45%;
  right: 0;
  max-width: 45px;
}
.es-1 .es-main .item-4 .layer:last-child {
  top: 90%;
  right: 73%;
  max-width: 52px;
}

.es-2 .es-main .main-text {
  color: #1db2e5;
}
.es-2 .es-main .item-1 .layer {
  top: 41%;
  left: -1%;
  max-width: 50px;
}
.es-2 .es-main .item-2 .layer {
  top: 90%;
  right: 20%;
  max-width: 52px;
}
.es-2 .es-main .item-2 .layer:last-child {
  top: 16%;
  right: -2%;
  max-width: 45px;
}
.es-2 .es-main .item-3 .layer {
  top: 36.5%;
  left: -3.5%;
  max-width: 50px;
}
.es-2 .es-main .item-4 .layer {
  top: 90%;
  right: 20%;
  max-width: 52px;
}
.es-2 .es-main .item-4 .layer:last-child {
  top: 16%;
  right: -2%;
  max-width: 45px;
}

@media (max-width: 767px) {
  .use .heading {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .use-section {
    padding: 30px 0;
  }
  .use-section p {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .use-section .sub-title {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .use-menu .container {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .use-menu .btn-collapse {
    bottom: -12.5px;
    width: 25px;
    height: 25px;
    margin-left: -12.5px;
  }
  .use-menu .btn-collapse .icon {
    width: 25px;
    height: 25px;
    background-size: 8px 8px;
    background-position: center 55%;
  }
  .use-menu .inner .heading {
    margin-bottom: 5px;
  }
  .use-menu .inner p {
    margin-bottom: 20px;
  }
  .use-menu .heading {
    font-size: 22px;
  }
  .use-menu p {
    font-size: 13px;
  }
  .use-menu .use-menu-swiper {
    margin: -5px;
  }
  .use-menu .swiper-slide {
    width: 188px !important;
  }
  .use-menu .item {
    position: relative;
    margin: 5px;
    min-height: 55px;
    padding: 15px 10px;
    padding-right: 45px;
    font-size: 13px;
    line-height: 18px;
  }
  .use-menu .item.active {
    box-shadow: 0 0 0 2px #1db2e5 inset, 2px 5px 5px rgba(0, 0, 0, 0.05);
  }
  .use-menu .item .icon-arrow {
    width: 14px;
    height: 14px;
    margin-left: 3px;
  }
  .use-menu .item .parent {
    max-width: 60px;
  }
  .use-menu .item-1 .parent {
    bottom: -3px;
    right: 0;
  }
  .use-menu .item-2 .parent {
    bottom: -3px;
    right: -4px;
    max-width: 60px;
  }
  .use-menu .item-3 .parent {
    bottom: -3px;
    right: -6px;
    max-width: 60px;
  }
  .use-menu .item-4 .parent {
    bottom: -3px;
    right: -3px;
    max-width: 60px;
  }
  .use-menu.active .item {
    min-height: 70px;
  }
  .use-menu.active .item .parent {
    max-width: 100px;
  }
  .use-menu.active .item-1 .parent {
    bottom: -15px;
    right: -15px;
    max-width: 90px;
  }
  .use-menu.active .item-2 .parent {
    bottom: -15px;
    right: -27px;
  }
  .use-menu.active .item-3 .parent {
    bottom: -15px;
    right: -30px;
  }
  .use-menu.active .item-4 .parent {
    bottom: -15px;
    right: -25px;
  }

  .use-1 .parent:before {
    padding-top: 80.625%;
  }
  .use-1 .use-kv {
    max-width: 320px;
    margin: 0 auto;
    background-image: none;
  }
  .use-1 .coin-1 {
    background-image: url(../images/use-1-coin_s.png);
  }
  .use-1 .coin-2 {
    background-image: url(../images/use-1-coin2_s.png);
  }
  .use-1 .sprite-0 {
    background-image: url(../images/use-kv-1_s.png);
  }
  .use-1 .sprite-1 {
    background-image: url(../images/use-1-1_s.png);
  }
  .use-1 .sprite-2 {
    background-image: url(../images/use-1-2_s.png);
  }
  .use-1 .sprite-3 {
    background-image: url(../images/use-1-3_s.png);
  }
  .use-1 .sprite-4 {
    background-image: url(../images/use-1-4_s.png);
  }
  .use-1 .sprite-5 {
    background-image: url(../images/use-1-5_s.png);
  }
  .use-1 .sprite-6 {
    background-image: url(../images/use-1-6_s.png);
  }
  .use-1 .sprite-7 {
    background-image: url(../images/use-1-7_s.png);
  }
  .use-1 .sprite-8 {
    background-image: url(../images/use-1-8_s.png);
  }
  .use-1 .sprite-9 {
    background-image: url(../images/use-1-9_s.png);
  }
  .use-1 .sprite-10 {
    background-image: url(../images/use-1-10_s.png);
  }
  .use-1 .sub-title {
    margin-bottom: 40px;
  }
  .use-1 .bottom {
    padding-top: 15px;
  }
  .use-1 .bottom h4 {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .use-1 .bottom .tags {
    margin: 0 auto;
    max-width: 200px;
  }
  .use-1 .bottom .tag {
    min-height: 25px;
    line-height: 25px;
    padding: 0 10px;
    border-radius: 25px;
    font-size: 13px;
  }

  .use-2 .container {
    background: none;
    padding-bottom: 0;
  }
  .use-2 .sub-title {
    margin-bottom: 15px;
  }
  .use-2 .use-swiper-container {
    display: block;
    max-width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
  }
  .use-2 .gallery-top-container {
    width: calc(100% + 20px * 2);
    margin: 0 -20px;
  }
  .use-2 .gallery-top-container .swiper-slide {
    padding-bottom: 1px;
    background-color: #fff;
  }
  .use-2 .gallery-top-container img {
    max-width: 200px;
    display: block;
    margin: 0 auto;
  }
  .use-2 .gallery-top-container .item {
    display: block;
    position: relative;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    margin: 30px 20px 5px;
  }
  .use-2 .gallery-top-container .item .number {
    display: none;
  }
  .use-2 .gallery-top-container .item .main-text {
    font-size: 13px;
    font-weight: 700;
  }
  .use-2 .gallery-top-container .item p {
    font-size: 13px;
  }
  .use-2 .gallery-thumbs-container {
    width: 100%;
    padding-left: 0;
    position: absolute;
    top: 205px;
    left: 0;
  }
  .use-2 .gallery-thumbs {
    overflow: inherit;
  }
  .use-2 .gallery-thumbs .swiper-slide {
    width: auto;
  }
  .use-2 .gallery-thumbs .item {
    padding: 0;
    padding-left: 0;
    margin: 0 5px;
  }
  .use-2 .gallery-thumbs .item .main-text {
    display: none;
  }
  .use-2 .gallery-thumbs .item p {
    display: none;
  }
  .use-2 .gallery-thumbs .item .number {
    position: relative;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    padding: 1px;
    margin-top: 0;
    font-size: 13px;
  }
  .use-2 .gallery-thumbs .item .number span {
    width: 18px;
    height: 18px;
    line-height: 18px;
  }
  .use-2 .gallery-thumbs .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    transform: none !important;
  }
  .use-2 .gallery-thumbs .swiper-slide-thumb-active .item {
    background-color: transparent;
    box-shadow: none;
  }

  .use-3 .group {
    max-width: 320px;
    margin: 0 auto;
  }
  .use-3 .item {
    width: calc(100% / 2);
    margin-bottom: 20px;
  }
  .use-3 .image {
    max-width: 128px;
    margin: 0 auto 12px;
  }
  .use-3 .main-text {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .use-3 .sub-text {
    font-size: 13px;
    line-height: 18px;
  }

  .use-4 {
    padding-bottom: 50px;
  }
  .use-4 .use-kv {
    width: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .use-4 .bottom {
    padding-top: 15px;
    width: 154px;
  }
  .use-4 .bottom h4 {
    font-size: 16px;
  }
  .use-4 .bottom h4:before {
    height: 6px;
  }

  .vc-section .main-title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 40px;
  }
  .vc-section .main-title span {
    display: inline-block;
  }
  .vc-section .heading {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .vc-section p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
  }

  .vc-top {
    padding: 30px 0 40px;
  }
  .vc-top .main-text {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .vc-top p {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
  }
  .vc-top .vc-kv {
    max-width: 287px;
    margin: 0 auto;
  }
  .vc-top .block {
    border-radius: 10px;
    padding: 5px;
    font-size: 13px;
    line-height: 18px;
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: -40px;
    max-width: 290px;
  }
  .vc-top .block:before {
    top: -5px;
    left: 15px;
    width: 11px;
    height: 11px;
  }

  .vc-middle {
    padding: 0 0 35px;
  }
  .vc-middle .heading {
    line-height: 28px;
    margin-bottom: 10px;
  }
  .vc-middle p {
    font-size: 16px;
    line-height: 23px;
  }
  .vc-middle p span {
    display: block;
  }
  .vc-middle .group {
    display: block;
  }
  .vc-middle .item {
    width: 100%;
    margin-bottom: 44px;
  }
  .vc-middle .item:before {
    width: 14px;
    height: 14px;
    top: calc(100% + 7px);
    left: 50%;
    margin-left: -7px;
    background-image: url(../images/vc-middle-arrow.png);
    -webkit-transform: rotate(90deg);
    -khtml-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .vc-middle .item:last-child {
    margin-bottom: 0;
  }
  .vc-middle .item:last-child:before {
    display: none;
  }
  .vc-middle .item-1 {
    margin-top: -50px;
  }
  .vc-middle .image {
    margin: 0 auto 10px;
    max-width: 180px;
  }
  .vc-middle .main-text {
    font-size: 15px;
  }

  .vc-bottom {
    padding-bottom: 30px;
  }
  .vc-bottom .heading {
    margin-bottom: 10px;
  }
  .vc-bottom .heading br {
    display: block;
  }
  .vc-bottom .group {
    display: block;
  }
  .vc-bottom .item {
    max-width: 100%;
    margin: 0 0 30px;
  }
  .vc-bottom .lg-view {
    display: none;
  }
  .vc-bottom .sm-view {
    display: block;
  }
  .vc-bottom .image {
    max-width: 90px;
    margin: 0 auto 10px;
  }
  .vc-bottom .image img {
    max-height: 90px;
  }
  .vc-bottom .number {
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 2px;
  }
  .vc-bottom .number span {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 13px;
  }
  .vc-bottom .main-text {
    font-size: 15px;
    line-height: 20px;
  }

  .sp-friends .main-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .sp-friends .heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .sp-friends .heading br {
    display: block;
  }
  .sp-friends p {
    font-size: 16px;
    line-height: 23px;
  }
  .sp-friends .friends-top {
    padding: 30px 0 0;
  }
  .sp-friends .friends-top .heading {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .sp-friends .friends-top p {
    margin-bottom: 10px;
  }
  .sp-friends .friends-top .friends-kv {
    max-width: 300px;
    margin-bottom: 60px;
  }
  .sp-friends .friends-top .layer {
    display: block;
  }
  .sp-friends .friends-top .parent:before {
    padding-top: 160%;
  }
  .sp-friends .friends-top .sprite-0 {
    background-image: url(../images/friends-kv_s.png);
  }
  .sp-friends .friends-top .sprite-2 {
    background-image: url(../images/friends-kv-left_s.png);
  }
  .sp-friends .friends-top .sprite-3 {
    display: none;
  }
  .sp-friends .friends-top .phone-1 {
    background-image: url(../images/friends-phone1_s.png);
  }
  .sp-friends .friends-top .phone-2 {
    background-image: url(../images/friends-phone2_s.png);
  }
  .sp-friends .friends-top .block {
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    line-height: 18px;
    background-color: rgba(255, 255, 255, 0.7);
    max-width: 180px;
    left: 50%;
    margin-left: -90px;
  }
  .sp-friends .friends-top .block:before {
    top: -5px;
    left: 15px;
    width: 11px;
    height: 11px;
  }
  .sp-friends .friends-top .block-1 {
    top: 46%;
  }
  .sp-friends .friends-top .block-2 {
    top: 100%;
    animation-delay: 1s;
  }
  .sp-friends .friends-bottom .bg {
    background-image: url(../images/friends-bottom-bg_s.png);
    height: 120px;
  }
  .sp-friends .friends-bottom .heading {
    margin-bottom: 5px;
  }
  .sp-friends .friends-bottom .bottom-kv {
    max-width: 300px;
    margin: 0 auto;
  }

  .exchange-station .es-section {
    padding: 30px 0;
  }
  .exchange-station .es-section p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .exchange-station .es-section .sub-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .exchange-station .heading {
    font-size: 24px;
  }
  .exchange-station .es-main {
    padding-bottom: 30px;
  }
  .exchange-station .es-main .nav-es {
    margin-bottom: 20px;
  }
  .exchange-station .es-main .nav-link {
    width: 80px;
    height: 30px;
    border-radius: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .exchange-station .es-main .group {
    display: block;
    margin: 0;
  }
  .exchange-station .es-main .item {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 196px;
  }
  .exchange-station .es-main .image {
    margin: 0 auto 10px;
  }
  .exchange-station .es-main .number {
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 3px;
    font-size: 13px;
  }
  .exchange-station .es-main .number span {
    width: 16px;
    height: 16px;
    line-height: 14px;
  }
  .exchange-station .es-main .main-text {
    font-size: 13px;
    line-height: 20px;
  }
  .exchange-station .es-bottom {
    max-width: 240px;
    margin: 0 auto;
  }
  .exchange-station .es-bottom .heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .exchange-station .es-bottom .heading br {
    display: block;
  }
  .exchange-station .es-bottom .group {
    margin: -5px;
  }
  .exchange-station .es-bottom .item {
    margin: 5px;
    width: calc(100% / 2 - 5px * 2);
    max-width: 110px;
  }

  .es-menu .container {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .es-menu .btn-collapse {
    bottom: -12.5px;
    width: 25px;
    height: 25px;
    margin-left: -12.5px;
  }
  .es-menu .btn-collapse .icon {
    width: 25px;
    height: 25px;
    background-size: 8px 8px;
    background-position: center 55%;
  }
  .es-menu .inner .heading {
    margin-bottom: 20px;
  }
  .es-menu .inner .heading br {
    display: block;
  }
  .es-menu .heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .es-menu .es-menu-swiper {
    margin: -5px;
  }
  .es-menu .swiper-slide {
    width: 188px !important;
  }
  .es-menu .item {
    position: relative;
    margin: 5px;
    min-height: 55px;
    padding: 15px 10px;
    padding-right: 45px;
    font-size: 13px;
    line-height: 18px;
  }
  .es-menu .item.active {
    box-shadow: 0 0 0 2px #1db2e5 inset, 2px 5px 5px rgba(0, 0, 0, 0.05);
  }
  .es-menu .item .icon-arrow {
    width: 14px;
    height: 14px;
    margin-left: 3px;
  }
  .es-menu .item .parent {
    max-width: 48px;
  }
  .es-menu .item-1 .parent {
    bottom: 4px;
    right: 2px;
    max-width: 44px;
  }
  .es-menu .item-2 .parent {
    bottom: 5px;
    right: -2px;
  }
  .es-menu.active .item {
    min-height: 70px;
  }
  .es-menu.active .item .parent {
    max-width: 100px;
  }
  .es-menu.active .item-1 .parent {
    bottom: -15px;
    right: -15px;
    max-width: 90px;
  }
  .es-menu.active .item-2 .parent {
    bottom: -15px;
    right: -27px;
  }
  .es-menu .group {
    max-width: 300px;
    padding-bottom: 80px;
  }
  .es-menu .group .item {
    max-width: 85px;
  }
  .es-menu .group .item .parent {
    max-width: 85px;
    bottom: 0;
    right: 0;
  }
  .es-menu .group .item-1 {
    margin-right: 40px;
  }
  .es-menu .group .item-2 {
    margin-left: 40px;
  }
  .es-menu .group .item-2 .parent {
    max-width: 85px;
    bottom: 0;
    right: 0;
  }
  .es-menu .es-switch {
    width: 160px;
    height: 26px;
    top: 72%;
    font-size: 13px;
    line-height: 18px;
  }
  .es-menu .es-switch.switch-left .es-switch__toggle {
    left: 5px;
  }
  .es-menu .es-switch.switch-left .es-switch__left {
    color: #1db2e5;
  }
  .es-menu .es-switch.switch-right .es-switch__toggle {
    left: calc(100% - 5px - 26px);
  }
  .es-menu .es-switch:before {
    height: 5px;
    border-radius: 5px;
    margin-top: -2px;
  }
  .es-menu .es-switch__toggle {
    left: 5px;
    width: 26px;
  }
  .es-menu .es-switch__left {
    padding: 0 2px;
    padding-top: 26px;
  }
  .es-menu .es-switch__right {
    padding-top: 26px;
  }

  .es-1 .es-main .item-1 .layer {
    max-width: 23px;
  }
  .es-1 .es-main .item-2 .layer {
    top: 30%;
    max-width: 26px;
  }
  .es-1 .es-main .item-2 .layer:last-child {
    top: 70%;
    right: 88%;
    max-width: 25px;
  }
  .es-1 .es-main .item-3 .layer {
    max-width: 23px;
  }
  .es-1 .es-main .item-4 .layer {
    max-width: 26px;
  }
  .es-1 .es-main .item-4 .layer:last-child {
    max-width: 25px;
  }

  .es-2 .es-main .item-1 .layer {
    max-width: 25px;
  }
  .es-2 .es-main .item-2 .layer {
    top: 87%;
    max-width: 23px;
  }
  .es-2 .es-main .item-2 .layer:last-child {
    max-width: 26px;
  }
  .es-2 .es-main .item-3 .layer {
    max-width: 25px;
  }
  .es-2 .es-main .item-4 .layer {
    top: 87%;
    max-width: 23px;
  }
  .es-2 .es-main .item-4 .layer:last-child {
    max-width: 26px;
  }
}
@media (max-width: 320px) {
  .use-1 .use-kv {
    margin: 0 -20px;
  }
}
.product-footer-blank {
  background-color: #fff;
}

.product-detail {
  background-color: #fff;
  min-height: calc(100vh - 80px - 60px);
}
.product-detail .alert {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto 20px;
}
.product-detail .checkout-top {
  position: sticky;
  top: 80px;
  z-index: 1;
  margin-bottom: 0;
}
.product-detail__content {
  width: calc(100% - 480px);
  padding-right: 40px;
}
.product-detail__main {
  position: sticky;
  top: 140px;
  width: 480px;
}
.product-detail__main .image {
  display: none;
}
.product-detail__group {
  background-color: #fff;
  padding: 0 0 30px;
}
.product-detail__group .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.product-detail__group .image {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.product-detail__group .image:before {
  content: "";
  position: relative;
  padding-top: 49.5%;
  display: block;
}
.product-detail__group .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
.product-detail__group .main-text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38;
  color: #595757;
}
.product-detail__group .main-text + .block,
.product-detail__group .main-text + .important-text {
  padding-top: 10px;
}
.product-detail__group .sub-text {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.38;
  color: #595757;
  padding-top: 10px;
}
.product-detail__group .sub-text + .block,
.product-detail__group .sub-text + .important-text {
  padding-top: 10px;
}
.product-detail__group .important-text {
  font-size: 18px;
  line-height: 21px;
  color: #ff6b6b;
  padding-top: 10px;
}
.product-detail__group .block {
  padding-top: 20px;
}
.product-detail__group .block .title {
  font-size: 20px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 10px;
}
.product-detail__group a {
  color: #1eb1e4;
  text-decoration: underline;
}
.product-detail__group a:hover, .product-detail__group a:active {
  text-decoration: none;
}
.product-detail__group .link {
  padding-left: 25px;
  padding-top: 10px;
  font-size: 14px;
  line-height: 19px;
}
.product-detail__group .icon-error {
  width: 16px;
  height: 16px;
}
.product-detail__group .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.product-detail__group .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.product-detail__group .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.product-detail__group .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.product-detail__group .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}
.product-detail__group .text {
  margin-top: 10px;
}
.product-detail__group .text .highlight {
  font-size: 14px;
  color: #ff6b6b;
  margin-right: 10px;
}
.product-detail__group .text a {
  font-size: 14px;
  display: inline-block;
}
.product-detail__group .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.product-detail__group .input-number-wrap {
  position: relative;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}
.product-detail__group .input-number-wrap .number-input {
  width: 100%;
}
.product-detail__group .input-number-wrap .input-number {
  width: calc(100% - 40px * 2 - 10px * 2);
}
.product-detail__group .input-number-wrap .input-number-decrement.disabled,
.product-detail__group .input-number-wrap .input-number-increment.disabled {
  background-color: #d8d8d8;
  color: #9e9e9e;
  pointer-events: none;
}
.product-detail__group .input-number-wrap .text-lg {
  font-size: 18px;
}
.product-detail__group .number-input {
  margin: 0;
}
.product-detail__group .number-input:disabled {
  pointer-events: none;
}
.product-detail__group .btn-primary {
  max-width: calc(50% - 10px);
  margin: 0 0 0 10px;
}
.product-detail__group .w-100 {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.product-detail__group .btn-group-toggle {
  max-width: calc(50% - 10px);
  margin: 0 10px 0 0;
  width: 100%;
  background-color: #eef2f9;
}
.product-detail__group .btn-favorite {
  width: 100%;
  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;
  color: #9c9c9c;
}
.product-detail__group .btn-favorite .icon {
  margin-left: -20px;
}
.product-detail__group .input-radio {
  display: none;
}
.product-detail__group .form-radio + .form-radio {
  margin-top: 20px;
}
.product-detail__group .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 24px;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  margin-bottom: 0;
}
.product-detail__group .label-radio + .label-radio {
  margin-top: 20px;
}
.product-detail__group .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 3px;
}
.product-detail__group .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 8px;
}
.product-detail__group .label-radio.error {
  color: #ff6b6b;
}
.product-detail__group .label-radio.error:before {
  border-color: #ff6b6b;
}
.product-detail__group .label-radio.error .icon-coin {
  background-image: url(../images/icon-circleCoin_red.svg);
}
.product-detail__group .label-radio.error .main-price {
  color: #ff6b6b;
}
.product-detail__group .label-radio.error .text-plus,
.product-detail__group .label-radio.error .price {
  color: #ff6b6b;
}
.product-detail__group .input-radio:disabled ~ .label-radio:before {
  border: 1px solid #dfdfdf;
}
.product-detail__group .input-radio:disabled ~ .label-radio:after {
  background-color: #dfdfdf;
}
.product-detail__group .input-radio:disabled ~ .label-radio .main-price {
  color: #dfdfdf;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.product-detail__group .input-radio:disabled ~ .label-radio .text-plus,
.product-detail__group .input-radio:disabled ~ .label-radio .price {
  color: #dfdfdf;
}
.product-detail__group .input-radio:disabled ~ .label-radio .icon-coin {
  width: 24px;
  height: 24px;
  margin-top: -5px;
  background-image: url(../images/icon-circleCoin_gray.svg);
}
.product-detail__group .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.product-detail__group .main-price {
  color: #1db2e5;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
}
.product-detail__group .main-price .icon {
  width: 24px;
  height: 24px;
  margin-top: -5px;
}
.product-detail__group .original-price {
  font-size: 14px;
  color: #9c9c9c;
  position: relative;
  line-height: 24px;
  top: -2px;
  display: inline-block;
  margin-left: 5px;
}
.product-detail__group .original-price:before {
  content: "";
  position: absolute;
  top: 12px;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #9c9c9c;
  z-index: 1;
}
.product-detail__group .original-price .icon {
  width: 16px;
  height: 16px;
  filter: grayscale(100%);
  margin-top: -2px;
}
.product-detail__group .text-plus,
.product-detail__group .price {
  font-size: 24px;
  line-height: 24px;
  color: #595757;
  font-weight: 700;
  display: inline-block;
}
.product-detail__group .extra {
  padding: 0 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  background-color: #2fcd83;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}
.product-detail__group .list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-detail__group .list li {
  position: relative;
  padding-left: 25px;
  background-image: url(../images/icon-tick_small.svg);
  background-repeat: no-repeat;
  background-position: 0 2px;
  background-size: 20px 20px;
  line-height: 22px;
  color: #9c9c9c;
  font-size: 14px;
}
.product-detail__group .list li + li {
  margin-top: 10px;
}
.product-detail__group .free {
  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: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1eb1e4;
}
.product-detail__group .free .icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  margin-top: -2px;
}
.product-detail__group .free span {
  margin-top: -2px;
}
.product-detail__bottom {
  padding: 30px 0;
  font-size: 16px;
  line-height: 1.63;
  color: #555;
}
.product-detail__bottom .section {
  white-space: pre-line;
}
.product-detail__bottom .section + .section {
  margin-top: 20px;
}
.product-detail__bottom .heading {
  font-size: 20px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 10px;
}
.product-detail__bottom ul {
  padding-left: 1.25em;
  margin-bottom: 0;
}
.product-detail__bottom ol {
  padding-left: 1.5em;
  margin-bottom: 0;
}
.product-detail__bottom img {
  width: 100%;
}
.product-detail__bottom img + img {
  margin-top: 20px;
}
.product-detail .update-time {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.67;
  color: #9c9c9c;
}
.product-detail .update-time span {
  display: inline-block;
}
.product-detail .exchange-quantity {
  font-size: 14px;
  line-height: 19px;
}
.product-detail .exchange-quantity + .input-number-wrap {
  margin-top: 10px;
}
.product-detail .fee {
  font-size: 14px;
  line-height: 19px;
  color: #595757;
  margin-top: 23px;
  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;
}
.product-detail .total {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: #595757;
  margin-top: 21px;
  padding-top: 20px;
  border-top: 1px solid #eaeff7;
  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;
}

@media (max-width: 940px) {
  .product-detail {
    min-height: calc(100vh - 56px - 40px);
  }
  .product-detail__content {
    width: 100%;
    padding: 0;
  }
  .product-detail__content .image {
    display: none;
  }
  .product-detail__main {
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 0;
  }
  .product-detail__main .image {
    display: block;
  }
  .product-detail__group {
    padding: 0 0 20px;
  }
  .product-detail__group .container {
    display: block;
  }
  .product-detail__group .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-detail__group .content {
    width: 100%;
    padding-left: 0;
  }
  .product-detail__group .main-text {
    font-size: 21px;
  }
  .product-detail__group .sub-text {
    font-size: 21px;
    padding-top: 5px;
  }
  .product-detail__group .important-text {
    font-size: 14px;
    line-height: 1;
  }
  .product-detail__group .block .title {
    font-size: 16px;
  }
  .product-detail__group .link {
    font-size: 12px;
    line-height: 16px;
  }
  .product-detail__group .note .highlight {
    font-size: 12px;
    margin-right: 5px;
  }
  .product-detail__group .note a {
    font-size: 12px;
  }
  .product-detail__group .input-number-wrap {
    width: 100%;
    margin: 0 0 10px;
  }
  .product-detail__group .input-number-wrap .input-number-decrement,
  .product-detail__group .input-number-wrap .input-number-increment {
    width: 40px;
    height: 40px;
    line-height: 36px;
  }
  .product-detail__group .input-number-wrap .number-input {
    width: 100%;
  }
  .product-detail__group .input-number-wrap .input-number {
    width: calc(100% - 10px * 2 - 40px * 2);
    height: 40px;
  }
  .product-detail__group .input-number-wrap .text-lg {
    font-size: 14px;
  }
  .product-detail__group .form-radio + .form-radio {
    margin-top: 10px;
  }
  .product-detail__group .label-radio {
    font-size: 14px;
    padding-left: 25px;
  }
  .product-detail__group .label-radio:before {
    top: 2px;
  }
  .product-detail__group .label-radio:after {
    top: 7px;
  }
  .product-detail__group .input-radio:disabled ~ .label-radio .main-price {
    font-size: 16px;
  }
  .product-detail__group .input-radio:disabled ~ .label-radio .icon {
    width: 18px;
    height: 18px;
  }
  .product-detail__group .main-price {
    font-size: 16px;
  }
  .product-detail__group .original-price {
    font-size: 12px;
  }
  .product-detail__group .text-plus,
  .product-detail__group .price {
    font-size: 16px;
  }
  .product-detail__group .extra {
    font-size: 12px;
  }
  .product-detail__group .list li {
    padding-left: 25px;
    background-position: 0 0;
    line-height: 20px;
    font-size: 12px;
  }
  .product-detail__group .btn-favorite .icon {
    width: 40px;
    height: 40px;
  }
  .product-detail__group .free {
    font-size: 20px;
    line-height: 24px;
  }
  .product-detail__group .free .icon {
    width: 18px;
    height: 18px;
    margin-top: 0;
  }
  .product-detail__group .free span {
    margin-top: 0;
  }
  .product-detail__bottom {
    font-size: 12px;
    line-height: 18px;
    padding: 20px 0;
  }
  .product-detail__bottom .heading {
    font-size: 16px;
  }
  .product-detail .mobile-fixed-fotter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 13px 20px 10px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 10;
  }
  .product-detail .exchange-quantity {
    font-size: 12px;
    line-height: 1.67;
  }
  .product-detail .total {
    font-size: 16px;
    line-height: 21px;
    margin-top: 11px;
    padding-top: 11px;
  }

  .product-footer-blank {
    padding-bottom: 63px;
  }
}
@media (max-width: 767px) {
  .product-detail .checkout-top {
    top: 56px;
  }
}
.checkout .alert {
  width: calc(100% - 20px * 2);
  max-width: 1200px;
  margin: 0 auto 20px;
}
.checkout .section-content {
  position: relative;
  width: 100%;
  display: block;
  color: #595757;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.checkout .section-content + .section-content {
  margin-top: 20px;
}
.checkout .main-price {
  color: #1db2e5;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}
.checkout .main-price .icon {
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 5px;
}
.checkout .original-price {
  font-size: 14px;
  color: #9c9c9c;
  position: relative;
  line-height: 24px;
  top: -2px;
  display: inline-block;
  margin-left: 5px;
}
.checkout .original-price:before {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #9c9c9c;
  z-index: 1;
}
.checkout .original-price .icon {
  width: 16px;
  height: 16px;
  filter: grayscale(100%);
  margin-top: -4px;
}
.checkout .discount-price {
  color: #ff6b6b;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}
.checkout .discount-price .icon {
  width: 20px;
  height: 20px;
  margin-top: -7px;
}
.checkout .discount-price .icon-coin {
  background-image: url(../images/icon-circleCoin_red.svg);
}
.checkout .bottom-row {
  margin-bottom: 60px;
}
.checkout .bottom-row .total {
  line-height: 30px;
  width: 100%;
  margin: 0 0 10px;
  display: none;
}
.checkout .bottom-row .total .hd {
  font-size: 16px;
  font-weight: 700;
  color: #595757;
}
.checkout .bottom-row .total .bd {
  font-size: 21px;
  font-weight: 700;
  text-align: right;
}
.checkout .bottom-row .total .main-price {
  font-size: 21px;
  line-height: 30px;
}
.checkout .bottom-row .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: 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;
}
.checkout .bottom-row .btn {
  width: 192px;
  height: 50px;
  margin: 0 10px;
}

.checkout-top {
  padding: 15px 0 13px;
  background-color: #fff;
  margin-bottom: 20px;
}
.checkout-top .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.checkout-top .back {
  font-size: 16px;
  color: #9c9c9c;
}
.checkout-top .back .icon {
  width: 20px;
  height: 20px;
  margin-top: -5px;
  background-size: 16px;
  margin-right: 5px;
}
.checkout-top .process {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.checkout-top .process .item {
  font-size: 16px;
  font-weight: 700;
  color: #9c9c9c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
}
.checkout-top .process .item + .item {
  padding-left: 140px;
}
.checkout-top .process .item + .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  background-color: #c2c2c2;
  width: 100px;
  height: 1px;
}
.checkout-top .process .item .number {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #9c9c9c;
}
.checkout-top .process .item.active {
  color: #595757;
}
.checkout-top .process .item.active .number {
  background-color: #1eb1e4;
}
.checkout-top .points {
  text-align: right;
  font-size: 16px;
  line-height: 32px;
  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;
}
.checkout-top .points .main-price {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1eb1e4;
}
.checkout-top .points .main-price .icon-coin {
  width: 30px;
  height: 30px;
  margin-top: -5px;
  border-radius: 50%;
  margin-right: 5px;
  margin-left: 5px;
  background-size: 20px;
  background-color: rgba(30, 177, 228, 0.1);
  background-image: url(../images/icon-coin_blue.svg);
}

.checkout-detail .section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.checkout-detail .section:first-child {
  width: calc(100% - 38.333333333% - 20px);
  margin-right: 20px;
}
.checkout-detail .section:last-child {
  width: 38.333333333%;
}
.checkout-detail .required {
  color: #ff836b;
}
.checkout-detail .section-content .title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: #595757;
  margin-bottom: 20px;
}
.checkout-detail .section-content.disabled {
  color: #cdcdcd;
}
.checkout-detail .section-content.disabled .title {
  color: #cdcdcd;
}
.checkout-detail .section-content.disabled .required {
  color: #cdcdcd;
}
.checkout-detail .product-info .item {
  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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.checkout-detail .product-info .image {
  width: 33%;
  overflow: hidden;
  position: relative;
  background-color: #e3e3e3;
  border-radius: 10px;
}
.checkout-detail .product-info .image:before {
  content: "";
  position: relative;
  padding-top: 49.5%;
  display: block;
}
.checkout-detail .product-info .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -khtml-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}
.checkout-detail .product-info .content {
  width: 67%;
  padding-left: 20px;
}
.checkout-detail .product-info .main-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.625;
  color: #595757;
}
.checkout-detail .product-info .sub-text {
  font-size: 20px;
  line-height: 1.5;
  padding-top: 10px;
}
.checkout-detail .product-info .price {
  padding-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.checkout-detail .product-info .main-price {
  font-size: 24px;
}
.checkout-detail .promotion .form-control {
  width: calc(100% - 145px - 10px);
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
}
.checkout-detail .promotion .form-control.error {
  border-color: #ff6b6b;
}
.checkout-detail .promotion .btn {
  width: 145px;
}
.checkout-detail .promotion .note--success {
  padding: 0;
  padding-left: 25px;
  background-color: transparent;
}
.checkout-detail .promotion .note--success .icon {
  top: 0;
  left: 0;
}
.checkout-detail .promotion .icon-delete {
  width: 20px;
  height: 20px;
}
.checkout-detail .promotion .plus-icon {
  position: relative;
  padding: 8px 0;
  padding-right: 40px;
  line-height: 24px;
  font-size: 18px;
}
.checkout-detail .promotion .plus-icon .btn-delete {
  position: absolute;
  top: 8px;
  right: 0;
}
.checkout-detail .discount.disabled {
  pointer-events: none;
  color: #cdcdcd !important;
}
.checkout-detail .discount.disabled .icon-coin {
  background-image: url(../images/icon-circleCoin_gray.svg);
}
.checkout-detail .discount.disabled .points {
  color: #cdcdcd;
}
.checkout-detail .discount.disabled .form-control {
  color: #9c9c9c;
}
.checkout-detail .discount.disabled .form-control::placeholder {
  color: #9c9c9c;
}
.checkout-detail .discount .input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.checkout-detail .discount .form-control {
  width: calc(100% - 24px - 5px);
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
}
.checkout-detail .discount p {
  text-align: right;
  font-size: 14px;
  color: #9c9c9c;
}
.checkout-detail .discount .points {
  font-weight: 700;
  color: #1db2e5;
  margin-left: 5px;
}
.checkout-detail .other-discount.disabled {
  pointer-events: none;
  color: #cdcdcd !important;
}
.checkout-detail .other-discount.disabled select.form-control {
  color: #9c9c9c;
  background-image: url(../images/icon-select-arrow_disabled.svg);
}
.checkout-detail .other-discount.disabled select.form-control::placeholder {
  color: #9c9c9c;
}
.checkout-detail .other-discount select.form-control {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  background-size: auto;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
  color: #9c9c9c;
}
.checkout-detail .other-discount p {
  text-align: right;
  font-size: 14px;
  line-height: 19px;
  color: #9c9c9c;
  font-weight: 700;
  margin-bottom: 20px;
}
.checkout-detail .other-discount p:last-child {
  margin-bottom: 0;
}
.checkout-detail .other-discount p .icon {
  margin-left: 5px;
}
.checkout-detail .other-discount .points {
  color: #1db2e5;
}
.checkout-detail .other-discount .points--less {
  color: #ff6b6b;
}
.checkout-detail .other-discount .icon-alert {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-alert_gray.svg);
  opacity: .6;
}
.checkout-detail .other-discount .input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}
.checkout-detail .other-discount .input-group span {
  width: 60px;
  margin-right: 5px;
}
.checkout-detail .other-discount .input-group .form-control {
  width: calc(100% - 60px - 5px);
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
}
.checkout-detail .other-discount .block {
  margin-top: 10px;
}
.checkout-detail .other-discount .block .input-group {
  margin-bottom: 10px;
}
.checkout-detail .input-radio {
  display: none;
}
.checkout-detail .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-weight: 700;
  margin: 0;
}
.checkout-detail .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 0;
}
.checkout-detail .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 5px;
}
.checkout-detail .label-radio .highlight {
  font-size: 12px;
  color: #2fcd83;
  margin-left: 10px;
  font-weight: 400;
}
.checkout-detail .label-radio.error {
  color: #ff6b6b;
}
.checkout-detail .label-radio.error:before {
  border-color: #ff6b6b;
}
.checkout-detail .label-radio.disabled {
  pointer-events: none;
  color: #cdcdcd;
}
.checkout-detail .label-radio.disabled:before {
  border: 1px solid #dfdfdf;
}
.checkout-detail .label-radio.disabled .highlight {
  color: #cdcdcd;
}
.checkout-detail .label-radio.disabled img {
  opacity: .7;
}
.checkout-detail .input-radio:disabled ~ .label-radio {
  color: #c2c2c2;
}
.checkout-detail .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.checkout-detail .input-checkbox {
  display: none;
}
.checkout-detail .label-checkbox {
  font-size: 12px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.checkout-detail .label-checkbox:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-image: none;
  background-size: 80%;
  background-position: center;
  border: 1px solid #c2c2c2;
  left: 0;
  top: 0;
}
.checkout-detail .input-checkbox:checked + .label-checkbox::before {
  background-image: url(../images/icon-tick_blue.svg);
}
.checkout-detail .shipping .title {
  margin-bottom: 26px;
}
.checkout-detail .shipping .text {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #9c9c9c;
}
.checkout-detail .recipient-info .title {
  margin-bottom: 35px;
}
.checkout-detail .recipient-info .action {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.checkout-detail .recipient-info .btn-primary {
  width: 95px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
}
.checkout-detail .recipient-info .form-group {
  width: 100%;
}
.checkout-detail .recipient-info .row {
  width: calc(100% + 10px * 2);
  margin-right: -10px;
  margin-left: -10px;
}
.checkout-detail .recipient-info .col {
  padding-right: 10px;
  padding-left: 10px;
}
.checkout-detail .recipient-info select {
  padding-right: 20px;
  background-image: url(../images/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: auto;
}
.checkout-detail .recipient-info .checkbox {
  margin-top: -10px;
}
.checkout-detail .recipient-info .form-checkbox.disabled {
  pointer-events: none;
}
.checkout-detail .recipient-info .form-checkbox.disabled .label-checkbox {
  color: #cdcdcd;
}
.checkout-detail .recipient-info .form-checkbox.disabled .label-checkbox:before {
  background-color: #ebebeb;
}
.checkout-detail .recipient-info .form-checkbox.disabled .label-checkbox span {
  color: #ff836b;
  margin-left: 5px;
}
.checkout-detail .invoice .title {
  margin-bottom: 26px;
}
.checkout-detail .invoice .text {
  margin: 5px 0 0;
  font-size: 12px;
  color: #9c9c9c;
}
.checkout-detail .invoice .label-radio.is-checked:after {
  background-color: #2396ec;
}
.checkout-detail .invoice .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.checkout-detail .invoice .form-row {
  display: block;
  margin-left: 0;
  margin-right: 0;
  padding-left: 25px;
}
.checkout-detail .invoice .form-row .label-radio {
  font-size: 14px;
  font-weight: 700;
}
.checkout-detail .invoice .form-row .label-radio span {
  color: #9c9c9c;
  margin-left: 5px;
}
.checkout-detail .invoice .form-control {
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 400;
}
.checkout-detail .invoice .form-control.error {
  color: #ff6b6b;
  border-color: #ff6b6b;
  font-weight: 700;
}
.checkout-detail .invoice .electronic {
  margin-bottom: 20px;
  font-size: 14px;
}
.checkout-detail .invoice .electronic label {
  font-size: 14px;
}
.checkout-detail .invoice .electronic label span {
  margin-left: 5px;
}
.checkout-detail .invoice .electronic .form-row {
  margin-top: 10px;
}
.checkout-detail .invoice .barcode .label-checkbox {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 20px;
}
.checkout-detail .invoice .barcode .form-row {
  margin-top: 10px;
}
.checkout-detail .online-payment .input-radio {
  display: none;
}
.checkout-detail .online-payment .form-radio + .form-radio {
  margin-top: 20px;
}
.checkout-detail .online-payment .form-radio .label-radio {
  margin: 0;
}
.checkout-detail .online-payment .form-radio:last-child {
  margin-bottom: 0;
}
.checkout-detail .online-payment .label-radio {
  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;
  padding-left: 30px;
}
.checkout-detail .online-payment .label-radio:before {
  top: 10px;
}
.checkout-detail .online-payment .label-radio:after {
  top: 15px;
}
.checkout-detail .online-payment .label-radio .item {
  min-width: 108px;
  margin-right: 10px;
}
.checkout-detail .online-payment .label-radio img {
  width: 40px;
  margin-right: 5px;
}
.checkout-detail .online-payment .label-radio.error .item {
  color: #ff6b6b;
}
.checkout-detail .online-payment .highlight {
  font-size: 12px;
  color: #2fcd83;
  font-weight: 400;
  margin: 0;
}
.checkout-detail .payment-info {
  color: #595757;
  font-size: 20px;
  line-height: 27px;
  position: sticky;
  top: 100px;
}
.checkout-detail .payment-info .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.checkout-detail .payment-info .subtitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.checkout-detail .payment-info .row {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.checkout-detail .payment-info .row + .row {
  margin-top: 10px;
}
.checkout-detail .payment-info .hd {
  font-size: 20px;
  color: #9c9c9c;
}
.checkout-detail .payment-info .bd {
  font-weight: 700;
  text-align: right;
}
.checkout-detail .payment-info .subtotal {
  line-height: 32px;
}
.checkout-detail .payment-info .subtotal .hd {
  font-weight: 700;
  color: #595757;
}
.checkout-detail .payment-info .block {
  border-bottom: 1px solid #eaeff7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.checkout-detail .payment-info .total {
  line-height: 32px;
}
.checkout-detail .payment-info .total .hd {
  font-size: 24px;
  font-weight: 700;
  color: #595757;
}
.checkout-detail .payment-info .total .bd {
  font-size: 24px;
}
.checkout-detail .payment-info .total .main-price {
  font-size: 24px;
  line-height: 32px;
}
.checkout-detail .payment-info .text-small {
  font-size: 14px;
  color: #9c9c9c;
  font-weight: 400;
}
.checkout-detail .payment-info .sp-point--less {
  color: #ff6b6b;
}
.checkout-detail .payment-info .sp-point--less .icon-coin {
  margin-left: 5px;
  margin-top: -5px;
  background-image: url(../images/icon-circleCoin_red.svg);
}
.checkout-detail .payment-info .update-time {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.67;
  color: #9c9c9c;
}
.checkout-detail .payment-info .update-time span {
  display: inline-block;
}
.checkout-detail .payment-info .fee-description {
  font-size: 14px;
  line-height: 1.67;
  color: #9c9c9c;
}
.checkout-detail .payment-info .fee-description .text {
  margin-top: 4px;
}
.checkout-detail .payment-info .fee-description ul {
  padding-left: 1.25em;
  margin: 10px 0;
}
.checkout-detail .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.checkout-detail .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.checkout-detail .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
}
.checkout-detail .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.checkout-detail .note .icon-tick {
  background-image: url(../images/icon-tick.png);
}
.checkout-detail .note a {
  color: #ff6b6b;
  text-decoration: underline;
}
.checkout-detail .note a:hover, .checkout-detail .note a:active {
  text-decoration: none;
}

.payment-not_set .main-text {
  margin-bottom: 0;
}

.transaction-password .modal-dialog {
  max-width: 588px;
}
.transaction-password .modal-body {
  padding: 53px 20px 20px;
}
.transaction-password .main-text {
  line-height: 1.42;
  margin-bottom: 20px;
}
.transaction-password .main-text span {
  display: inline-block;
}
.transaction-password .form-control {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #eaeff7;
  padding: 0 10px;
  font-size: 18px;
}
.transaction-password .form-control.error {
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}
.transaction-password .form-control.error::placeholder {
  color: #ff6b6b;
}
.transaction-password a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  text-align: center;
  color: #1db2e5;
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block;
}
.transaction-password .note {
  margin: 10px 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding-left: 35px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  text-align: left;
}
.transaction-password .note--success {
  color: #2fcd83;
  background-color: rgba(47, 205, 131, 0.1);
}
.transaction-password .note .icon {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.transaction-password .note .icon-alert {
  background-image: url(../images/icon-alert--light2.svg);
}
.transaction-password .text {
  font-size: 14px;
  text-align: center;
  color: #595757;
  margin-top: 20px;
}
.transaction-password .text .highlight {
  color: #ff6b6b;
}

.checkout-complete__main {
  padding: 30px 0 40px;
}
.checkout-complete .section-header {
  text-align: center;
  display: block;
  margin-bottom: 0;
}
.checkout-complete .section-header img {
  width: 100px;
}
.checkout-complete .section-header .main-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.checkout-complete .section-header p {
  font-size: 18px;
  margin-bottom: 10px;
}
.checkout-complete .section-content {
  max-width: 550px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 32px;
  color: #595757;
}
.checkout-complete .section-content + .section-content {
  margin-top: 20px;
}
.checkout-complete .section-content .row {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.checkout-complete .section-content .row + .row {
  margin-top: 20px;
}
.checkout-complete .section-content .hd {
  font-size: 20px;
  color: #9c9c9c;
  width: 120px;
}
.checkout-complete .section-content .bd {
  width: calc(100% - 120px);
  text-align: right;
  font-weight: 700;
}
.checkout-complete .section-content .text-small {
  font-size: 14px;
  line-height: 19px;
  color: #9c9c9c;
  margin-top: 5px;
  font-weight: 400;
}
.checkout-complete .note {
  max-width: 550px;
  margin: 10px auto 20px;
  font-size: 14px;
  line-height: 18px;
  text-align: right;
  color: #595757;
}
.checkout-complete .note .icon-alert {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-alert_gray.svg);
  opacity: .8;
  margin-right: 5px;
  transform: rotate(-180deg);
}
.checkout-complete .note .highlight {
  color: #1db2e5;
  font-weight: 700;
}
.checkout-complete .main-price {
  font-size: 20px;
  line-height: 1;
}
.checkout-complete .main-price .icon {
  margin-top: -5px;
}
.checkout-complete .text-lg {
  font-size: 24px;
}
.checkout-complete .expected-reward {
  padding: 12px 20px;
}
.checkout-complete .expected-reward .hd {
  width: 160px;
}
.checkout-complete .expected-reward .bd {
  width: calc(100% - 160px);
}
.checkout-complete .expected-reward .reward-point {
  color: #2fcd83;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}
.checkout-complete .expected-reward .reward-point .icon {
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 5px;
}
.checkout-complete .expected-reward .reward-point .icon-coin {
  background-image: url(../images/icon-circleCoin_green.svg);
}
.checkout-complete .expected-reward .reward-point .text-small {
  padding-left: 5px;
  position: relative;
  top: -2px;
}
.checkout-complete .bottom-text {
  margin: 10px 0 0;
  font-size: 14px;
  text-align: center;
  color: #2fcd83;
}
.checkout-complete .bottom-row {
  margin-top: 20px;
  margin-bottom: 0;
}

.choose-address .main-text {
  margin-bottom: 10px;
}
.choose-address .input-radio {
  display: none;
}
.choose-address .label-radio {
  font-size: 14px;
  color: #595757;
  line-height: 1.4;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.choose-address .label-radio:before {
  content: "";
  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;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: none;
  background-position: center;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  left: 0;
  top: 0;
}
.choose-address .label-radio:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 5px;
  top: 5px;
}
.choose-address .label-radio span {
  font-size: 12px;
  color: #2fcd83;
  margin-left: 5px;
}
.choose-address .input-radio:disabled ~ .label-radio {
  color: #c2c2c2;
}
.choose-address .input-radio:checked + .label-radio::after {
  background-color: #2396ec;
}
.choose-address .form-radio {
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
}
.choose-address .recipient-item {
  position: relative;
  padding: 20px 20px 20px 60px;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.choose-address .recipient-item + .recipient-item {
  margin-top: 20px;
}
.choose-address .name {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #595757;
}
.choose-address .info {
  font-size: 18px;
  line-height: 1.3333;
  color: #9c9c9c;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .checkout .section-content {
    padding: 20px 10px;
  }
  .checkout .bottom-row .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;
  }
  .checkout .bottom-row .btn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    margin: 0;
  }
  .checkout .bottom-row .btn-dark {
    order: 1;
    margin-top: 10px;
  }
  .checkout .bottom-row .btn-primary {
    order: 0;
  }
  .checkout .mobile-fixed-fotter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 20px 20px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 10;
    border-radius: 5px 5px 0 0;
    height: 114px;
  }

  .checkout-footer-blank {
    padding-bottom: 105px;
  }

  .checkout-top {
    padding: 10px 0;
  }
  .checkout-top .back {
    font-size: 14px;
  }
  .checkout-top .back .icon {
    width: 20px;
    height: 20px;
    margin-top: -5px;
    background-size: 12px;
    margin-right: 5px;
  }
  .checkout-top .process .item {
    display: none;
    font-size: 14px;
  }
  .checkout-top .process .item + .item {
    padding-left: 0;
  }
  .checkout-top .process .item + .item:before {
    display: none;
  }
  .checkout-top .process .item .number {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
  .checkout-top .process .item.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .checkout-top .points {
    font-size: 14px;
    line-height: 20px;
  }
  .checkout-top .points .main-price {
    color: #1db2e5;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
  }
  .checkout-top .points .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    margin-right: 5px;
    margin-left: 10px;
  }

  .checkout-detail {
    padding-bottom: 40px;
  }
  .checkout-detail .section-group {
    display: block;
    margin: 0;
  }
  .checkout-detail .section {
    width: 100%;
    margin: 0;
  }
  .checkout-detail .section:first-child {
    width: 100%;
    margin-right: 0;
  }
  .checkout-detail .section:last-child {
    width: 100%;
  }
  .checkout-detail .section-content .title {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .checkout-detail .product-info .image {
    width: 90px;
    border-radius: 5px;
  }
  .checkout-detail .product-info .content {
    width: calc(100% - 90px);
    padding-left: 10px;
  }
  .checkout-detail .product-info .main-text {
    font-size: 16px;
    line-height: 26px;
  }
  .checkout-detail .product-info .sub-text {
    padding-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }
  .checkout-detail .product-info .price {
    padding-top: 8px;
    font-size: 16px;
    line-height: 21px;
  }
  .checkout-detail .product-info .main-price {
    font-size: 16px;
  }
  .checkout-detail .product-info .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
  }
  .checkout-detail .product-info .original-price {
    font-size: 12px;
    top: -2px;
  }
  .checkout-detail .product-info .original-price .icon {
    width: 12px;
    height: 12px;
    margin-top: -4px;
  }
  .checkout-detail .promotion .form-control {
    width: calc(100% - 100px - 10px);
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .checkout-detail .promotion .btn {
    width: 100px;
    height: 40px;
    font-size: 14px;
  }
  .checkout-detail .discount .icon {
    width: 18px;
    height: 18px;
  }
  .checkout-detail .discount .form-control {
    width: calc(100% - 18px - 5px);
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
  .checkout-detail .other-discount p {
    font-size: 12px;
  }
  .checkout-detail .other-discount select.form-control {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
  .checkout-detail .other-discount p {
    font-size: 12px;
  }
  .checkout-detail .other-discount .input-group .form-control {
    font-size: 13px;
  }
  .checkout-detail .online-payment .label-radio .item {
    width: 100%;
    margin-right: 0;
  }
  .checkout-detail .online-payment .highlight {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .checkout-detail .invoice .form-control {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
  }
  .checkout-detail .invoice .barcode .label-checkbox {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
  }
  .checkout-detail .recipient-info .title {
    margin-bottom: 35px;
  }
  .checkout-detail .recipient-info .action {
    right: 10px;
  }
  .checkout-detail .payment-info {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
    position: relative;
    top: 0;
  }
  .checkout-detail .payment-info .title {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .checkout-detail .payment-info .block {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .checkout-detail .payment-info .row + .row {
    margin-top: 10px;
  }
  .checkout-detail .payment-info .subtitle {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .checkout-detail .payment-info .hd {
    font-size: 16px;
  }
  .checkout-detail .payment-info .main-price {
    font-size: 16px;
  }
  .checkout-detail .payment-info .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
  }
  .checkout-detail .payment-info .icon {
    width: 18px;
    height: 18px;
  }
  .checkout-detail .payment-info .sp-point--less .icon-coin {
    margin-top: -4px;
  }
  .checkout-detail .payment-info .discount-price {
    font-size: 16px;
  }
  .checkout-detail .payment-info .discount-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
  }
  .checkout-detail .payment-info .subtotal {
    line-height: 30px;
  }
  .checkout-detail .payment-info .subtotal .hd {
    font-size: 16px;
    line-height: 30px;
  }
  .checkout-detail .payment-info .subtotal .main-price {
    font-size: 16px;
    line-height: 30px;
  }
  .checkout-detail .payment-info .subtotal .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -5px;
  }
  .checkout-detail .payment-info .total {
    line-height: 30px;
  }
  .checkout-detail .payment-info .total .hd {
    font-size: 16px;
  }
  .checkout-detail .payment-info .total .bd {
    font-size: 21px;
  }
  .checkout-detail .payment-info .total .main-price {
    font-size: 21px;
    line-height: 30px;
  }
  .checkout-detail .payment-info .text-small {
    line-height: 19px;
  }
  .checkout-detail .payment-info .update-time {
    margin: 0;
  }
  .checkout-detail .payment-info .fee-description {
    font-size: 12px;
  }
  .checkout-detail .payment-info .fee-description .text {
    margin-top: 0;
  }
  .checkout-detail .payment-info .fee-description ul {
    margin: 13px 0 0;
  }
  .checkout-detail .note {
    font-size: 12px;
  }
  .checkout-detail .bottom-row {
    margin: 0;
    display: block;
  }
  .checkout-detail .bottom-row .total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .checkout-detail .bottom-row .group {
    margin: 0 -10px;
  }
  .checkout-detail .bottom-row .btn {
    width: calc(100% / 2 - 10px * 2);
    height: 40px;
    line-height: 40px;
    margin: 0 10px;
  }
  .checkout-detail .bottom-row .btn-dark {
    order: 0;
    margin-top: 0;
  }
  .checkout-detail .bottom-row .btn-primary {
    order: 1;
  }

  .transaction-password .modal-dialog {
    max-width: 588px;
  }
  .transaction-password .modal-body {
    padding: 10px;
  }
  .transaction-password .main-text {
    margin-bottom: 10px;
  }
  .transaction-password .form-control {
    font-size: 12px;
  }
  .transaction-password .note {
    font-size: 12px;
  }

  .checkout-complete .process .item.active {
    display: none;
  }
  .checkout-complete .process .item.active:last-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .checkout-complete__main {
    padding: 20px 0 40px;
  }
  .checkout-complete .section-header {
    margin-bottom: 0;
  }
  .checkout-complete .section-header img {
    width: 60px;
  }
  .checkout-complete .section-header .main-text {
    font-size: 21px;
    line-height: 28px;
  }
  .checkout-complete .section-header p {
    font-size: 13px;
  }
  .checkout-complete .section-content {
    font-size: 15px;
    line-height: 20px;
  }
  .checkout-complete .section-content .row + .row {
    margin-top: 10px;
  }
  .checkout-complete .section-content .hd {
    width: 90px;
    font-size: 15px;
  }
  .checkout-complete .section-content .bd {
    width: calc(100% - 90px);
  }
  .checkout-complete .section-content .text-small {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-complete .note {
    margin: 10px auto;
    font-size: 12px;
    line-height: 18px;
  }
  .checkout-complete .main-price {
    font-size: 15px;
  }
  .checkout-complete .main-price .icon {
    width: 18px;
    height: 18px;
    margin-top: -3px;
  }
  .checkout-complete .expected-reward .hd {
    width: 128px;
  }
  .checkout-complete .expected-reward .bd {
    width: calc(100% - 128px);
  }
  .checkout-complete .expected-reward .reward-point {
    font-size: 15px;
  }
  .checkout-complete .expected-reward .reward-point .icon {
    width: 18px;
    height: 18px;
    margin-top: -4px;
  }
  .checkout-complete .expected-reward .reward-point .text-small {
    font-size: 12px;
  }
  .checkout-complete .bottom-text {
    font-size: 12px;
  }
  .checkout-complete .bottom-row {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .choose-address .main-text {
    margin-bottom: 10px;
  }
  .choose-address .recipient-item {
    padding: 10px 20px;
    padding-left: 60px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  }
  .choose-address .recipient-item + .recipient-item {
    margin-top: 20px;
  }
  .choose-address .recipient-item .name {
    font-size: 15px;
  }
  .choose-address .recipient-item .info {
    font-size: 13px;
    margin-top: 10px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
