/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both
}

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

@keyframes a {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translateZ(0)
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    transform: translate3d(0, -4px, 0)
  }
}

.bounce {
  animation-name: a;
  transform-origin: center bottom
}

@keyframes b {
  0%, 50%, to {
    opacity: 1
  }
  25%, 75% {
    opacity: 0
  }
}

.flash {
  animation-name: b
}

@keyframes c {
  0% {
    transform: scaleX(1)
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    transform: scaleX(1)
  }
}

.pulse {
  animation-name: c
}

@keyframes d {
  0% {
    transform: scaleX(1)
  }
  30% {
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    transform: scale3d(1.05, .95, 1)
  }
  to {
    transform: scaleX(1)
  }
}

.rubberBand {
  animation-name: d
}

@keyframes e {
  0%, to {
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0)
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0)
  }
}

.shake {
  animation-name: e
}

@keyframes f {
  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: f
}

@keyframes g {
  20% {
    transform: rotate(15deg)
  }
  40% {
    transform: rotate(-10deg)
  }
  60% {
    transform: rotate(5deg)
  }
  80% {
    transform: rotate(-5deg)
  }
  to {
    transform: rotate(0deg)
  }
}

.swing {
  transform-origin: top center;
  animation-name: g
}

@keyframes h {
  0% {
    transform: scaleX(1)
  }
  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }
  to {
    transform: scaleX(1)
  }
}

.tada {
  animation-name: h
}

@keyframes i {
  0% {
    transform: translateZ(0)
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }
  to {
    transform: translateZ(0)
  }
}

.wobble {
  animation-name: i
}

@keyframes j {
  0%, 11.1%, to {
    transform: translateZ(0)
  }
  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(-.78125deg) skewY(-.78125deg)
  }
  77.7% {
    transform: skewX(.390625deg) skewY(.390625deg)
  }
  88.8% {
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

.jello {
  animation-name: j;
  transform-origin: center
}

@keyframes k {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 1;
    transform: scale3d(.3, .3, .3)
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    transform: scale3d(.97, .97, .97)
  }
  to {
    opacity: 1;
    transform: scaleX(1)
  }
}

.bounceIn {
  animation-duration: .75s;
  animation-name: k
}

@keyframes l {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0)
  }
}

.bounceInDown {
  animation-name: l
}

@keyframes m {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0)
  }
}

.bounceInLeft {
  animation-name: m
}

@keyframes n {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0)
  }
}

.bounceInRight {
  animation-name: n
}

@keyframes o {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    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: translateZ(0)
  }
}

.bounceInUp {
  animation-name: o
}

@keyframes p {
  20% {
    transform: scale3d(.9, .9, .9)
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1)
  }
  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
}

.bounceOut {
  animation-duration: .75s;
  animation-name: p
}

@keyframes q {
  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: q
}

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

.bounceOutLeft {
  animation-name: r
}

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

.bounceOutRight {
  animation-name: s
}

@keyframes t {
  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: t
}

@keyframes u {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.fadeIn {
  animation-name: u
}

@keyframes v {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInDown {
  animation-name: v
}

@keyframes w {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInDownBig {
  animation-name: w
}

@keyframes x {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInLeft {
  animation-name: x
}

@keyframes y {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInLeftBig {
  animation-name: y
}

@keyframes z {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInRight {
  animation-name: z
}

@keyframes A {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInRightBig {
  animation-name: A
}

@keyframes B {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInUp {
  animation-name: B
}

@keyframes C {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInUpBig {
  animation-name: C
}

@keyframes D {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

.fadeOut {
  animation-name: D
}

@keyframes E {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0)
  }
}

.fadeOutDown {
  animation-name: E
}

@keyframes F {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}

.fadeOutDownBig {
  animation-name: F
}

@keyframes G {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
  }
}

.fadeOutLeft {
  animation-name: G
}

@keyframes H {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}

.fadeOutLeftBig {
  animation-name: H
}

@keyframes I {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
  }
}

.fadeOutRight {
  animation-name: I
}

@keyframes J {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}

.fadeOutRightBig {
  animation-name: J
}

@keyframes K {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0)
  }
}

.fadeOutUp {
  animation-name: K
}

@keyframes L {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}

.fadeOutUpBig {
  animation-name: L
}

@keyframes M {
  0% {
    transform: perspective(400px) rotateY(-1turn);
    animation-timing-function: ease-out
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in
  }
  80% {
    transform: perspective(400px) scale3d(.95, .95, .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: M
}

@keyframes N {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  animation-name: N
}

@keyframes O {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  animation-name: O
}

@keyframes P {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

.flipOutX {
  animation-duration: .75s;
  animation-name: P;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important
}

@keyframes Q {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

.flipOutY {
  animation-duration: .75s;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  animation-name: Q
}

@keyframes R {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1
  }
  to {
    transform: translateZ(0);
    opacity: 1
  }
}

.lightSpeedIn {
  animation-name: R;
  animation-timing-function: ease-out
}

@keyframes S {
  0% {
    opacity: 1
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.lightSpeedOut {
  animation-name: S;
  animation-timing-function: ease-in
}

@keyframes T {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateIn {
  animation-name: T
}

@keyframes U {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInDownLeft {
  animation-name: U
}

@keyframes V {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInDownRight {
  animation-name: V
}

@keyframes W {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInUpLeft {
  animation-name: W
}

@keyframes X {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1
  }
}

.rotateInUpRight {
  animation-name: X
}

@keyframes Y {
  0% {
    transform-origin: center;
    opacity: 1
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0
  }
}

.rotateOut {
  animation-name: Y
}

@keyframes Z {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  animation-name: Z
}

@keyframes ab {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  animation-name: ab
}

@keyframes bb {
  0% {
    transform-origin: left bottom;
    opacity: 1
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  animation-name: bb
}

@keyframes cb {
  0% {
    transform-origin: right bottom;
    opacity: 1
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  animation-name: cb
}

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

.hinge {
  animation-duration: 2s;
  animation-name: db
}

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

.jackInTheBox {
  animation-name: eb
}

@keyframes fb {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.rollIn {
  animation-name: fb
}

@keyframes gb {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}

.rollOut {
  animation-name: gb
}

@keyframes hb {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}

.zoomIn {
  animation-name: hb
}

@keyframes ib {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInDown {
  animation-name: ib
}

@keyframes jb {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInLeft {
  animation-name: jb
}

@keyframes kb {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInRight {
  animation-name: kb
}

@keyframes lb {
  0% {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomInUp {
  animation-name: lb
}

@keyframes mb {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }
}

.zoomOut {
  animation-name: mb
}

@keyframes nb {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutDown {
  animation-name: nb
}

@keyframes ob {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center
  }
}

.zoomOutLeft {
  animation-name: ob
}

@keyframes pb {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center
  }
}

.zoomOutRight {
  animation-name: pb
}

@keyframes qb {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.zoomOutUp {
  animation-name: qb
}

@keyframes rb {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

.slideInDown {
  animation-name: rb
}

@keyframes sb {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

.slideInLeft {
  animation-name: sb
}

@keyframes tb {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

.slideInRight {
  animation-name: tb
}

@keyframes ub {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

.slideInUp {
  animation-name: ub
}

@keyframes vb {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0)
  }
}

.slideOutDown {
  animation-name: vb
}

@keyframes wb {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0)
  }
}

.slideOutLeft {
  animation-name: wb
}

@keyframes xb {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0)
  }
}

.slideOutRight {
  animation-name: xb
}

@keyframes yb {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0)
  }
}

.slideOutUp {
  animation-name: yb
}

a, button {
  transition: all .2s ease
}

@media screen and (min-width:768px) {
  .container {
    width: 750px
  }
}

@media screen and (min-width:992px) {
  .container {
    width: 960px
  }
}

@media screen and (min-width:1280px) {
  .container {
    width: 1200px
  }
}

.hamburger {
  width: 30px;
  height: 25px
}

.hamburger>div {
  margin-top: -1.5px
}

.hamburger>div, .hamburger>div:after, .hamburger>div:before {
  width: 30px;
  height: 3px;
  background-color: #4b4948;
  border-radius: 0
}

.hamburger>div:before {
  top: -11px
}

.hamburger>div:after {
  bottom: -11px
}

.hamburger.hamburger-1>div:after {
  top: -22px
}

.hamburger.hamburger-1.active div {
  transform: translate3d(0, -11px, 0) rotate(-45deg)
}

.hamburger.hamburger-2>div:after {
  top: -22px
}

.hamburger.hamburger-2.active div {
  transform: translate3d(0, -11px, 0) rotate(45deg)
}

.hamburger.hamburger-3>div:before {
  top: 11px
}

.hamburger.hamburger-3>div:after {
  top: 22px
}

.hamburger.hamburger-3.active>div {
  transform: translate3d(0, 11px, 0) rotate(135deg)
}

.hamburger.hamburger-3.active>div:after {
  transform: translate3d(0, -22px, 0) rotate(-270deg)
}

.hamburger.hamburger-4>div:before {
  top: 11px
}

.hamburger.hamburger-4>div:after {
  top: 22px
}

.hamburger.hamburger-4.active>div {
  transform: translate3d(0, 11px, 0) rotate(-135deg)
}

.hamburger.hamburger-4.active>div:after {
  transform: translate3d(0, -22px, 0) rotate(270deg)
}

.hamburger.hamburger-5>div:after {
  top: 11px
}

.hamburger.hamburger-5.active>div:before {
  left: -60px;
  top: -60px;
  transform: translate3d(60px, 60px, 0) rotate(45deg)
}

.hamburger.hamburger-5.active>div:after {
  right: -60px;
  top: -60px;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg)
}

.hamburger.hamburger-6>div:after {
  top: 11px
}

.hamburger.hamburger-6.active>div:before {
  left: -60px;
  top: 60px;
  transform: translate3d(60px, -60px, 0) rotate(-45deg)
}

.hamburger.hamburger-6.active>div:after {
  right: -60px;
  top: 60px;
  transform: translate3d(-60px, -60px, 0) rotate(45deg)
}

.hamburger.hamburger-7>div:before {
  top: 11px
}

.hamburger.hamburger-7>div:after {
  top: 22px
}

.hamburger.hamburger-7.active>div {
  transform: translate3d(0, 11px, 0) rotate(45deg)
}

.hamburger.hamburger-7.active>div:before {
  transform: rotate(-45deg) translate3d(-4.28571px, -8px, 0)
}

.hamburger.hamburger-7.active>div:after {
  transform: translate3d(0, -22px, 0) rotate(-90deg)
}

.hamburger.hamburger-8>div:before {
  top: 11px
}

.hamburger.hamburger-8>div:after {
  top: 22px
}

.hamburger.hamburger-8.active>div {
  transform: translate3d(0, 11px, 0) rotate(-45deg)
}

.hamburger.hamburger-8.active>div:before {
  transform: rotate(45deg) translate3d(-4.28571px, -8px, 0)
}

.hamburger.hamburger-8.active>div:after {
  transform: translate3d(0, -22px, 0) rotate(90deg)
}

.hamburger.hamburger-11>div:after {
  width: 15px
}

.hamburger.hamburger-11.active>div:after {
  transition: width bottom .5s ease ease .1s, transform .1s cubic-bezier(.215, .61, .355, 1) .14s, background-color .3s linear;
  width: 30px
}

.btn {
  font-size: 14px
}

/*!	
 * jQuery mmenu
 * mmenu.frebsite.nl
 *
 * Copyright (c) Fred Heusschen
 */

.mm-hidden {
  display: none!important
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative
}

.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none
}

.mm-panels, .mm-panels>.mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0
}

.mm-panel, .mm-panels {
  background: inherit;
  border-color: inherit;
  box-sizing: border-box;
  margin: 0
}

.mm-panels {
  overflow: hidden
}

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px;
  transform: translate(100%);
  transform: translate3d(100%, 0, 0);
  transition: transform .4s ease;
  transform-origin: top left
}

.mm-panel:not(.mm-hidden) {
  display: block
}

.mm-panel:after, .mm-panel:before {
  content: "";
  display: block;
  height: 20px
}

.mm-panel_has-navbar {
  padding-top: 40px
}

.mm-panel_opened {
  z-index: 1;
  transform: translate(0);
  transform: translateZ(0)
}

.mm-panel_opened-parent {
  transform: translate(-30%);
  transform: translate3d(-30%, 0, 0)
}

.mm-panel_highest {
  z-index: 2
}

.mm-panel_noanimation {
  transition: none!important
}

.mm-panel_noanimation.mm-panel_opened-parent {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-listitem_vertical>.mm-panel {
  transform: none!important;
  display: none;
  padding: 10px 0 10px 10px
}

.mm-listitem_vertical>.mm-panel:after, .mm-listitem_vertical>.mm-panel:before {
  content: none;
  display: none
}

.mm-listitem_opened>.mm-panel {
  display: block
}

.mm-listitem_vertical>.mm-btn_next {
  box-sizing: border-box;
  height: 40px;
  bottom: auto
}

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent
}

.mm-listitem_opened>.mm-btn_next:after {
  transform: rotate(225deg);
  right: 19px
}

.mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1
}

.mm-btn_fullwidth {
  width: 100%
}

.mm-btn_clear:after, .mm-btn_clear:before, .mm-btn_close:after, .mm-btn_close:before {
  content: "";
  border: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg)
}

.mm-btn_clear:before, .mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px
}

.mm-btn_clear:after, .mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px
}

.mm-btn_next:after, .mm-btn_prev:before {
  content: "";
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0
}

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto
}

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto
}

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  display: none;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity .4s ease
}

.mm-navbar>* {
  box-sizing: border-box;
  display: block;
  padding: 10px 0
}

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none
}

.mm-navbar__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

.mm-navbar__btn:first-child {
  left: 0
}

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0
}

.mm-panel_has-navbar .mm-navbar {
  display: block
}

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0
}

.mm-listitem, .mm-listitem .mm-btn_next, .mm-listitem .mm-btn_next:before, .mm-listitem:after, .mm-listview {
  border-color: inherit
}

.mm-listview {
  font: inherit;
  line-height: 20px
}

.mm-panels>.mm-panel>.mm-listview {
  margin: 20px -20px
}

.mm-panels>.mm-panel>.mm-listview:first-child, .mm-panels>.mm-panel>.mm-navbar+.mm-listview {
  margin-top: -20px
}

.mm-listitem {
  position: relative
}

.mm-listitem:after {
  content: "";
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  left: 20px
}

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none
}

.mm-listitem>a, .mm-listitem>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0
}

.mm-listitem .mm-btn_next {
  background: rgba(3, 2, 1, 0);
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2
}

.mm-listitem .mm-btn_next:before {
  content: "";
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0
}

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 50px
}

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth)+a, .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth)+span {
  margin-right: 50px
}

.mm-listitem .mm-btn_fullwidth:before {
  border-left: none
}

.mm-listitem .mm-btn_fullwidth+a, .mm-listitem .mm-btn_fullwidth+span {
  padding-right: 50px
}

.mm-listitem_divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 75%;
  text-transform: uppercase;
  padding: 5px 10px 5px 20px
}

.mm-listitem_divider:after {
  content: " ";
  display: none;
  position: static;
  display: inline-block
}

.mm-listitem_spacer {
  padding-top: 40px
}

.mm-listitem_spacer>.mm-btn_next {
  top: 40px
}

.mm-menu {
  background: #004ea1;
  border-color: rgba(0, 0, 0, .1)
}

.mm-menu, .mm-menu .mm-navbar>*, .mm-menu .mm-navbar a {
  color: #fff
}

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: #fff
}

.mm-menu .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, .3)
}

.mm-menu .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, .4);
  tap-highlight-color: hsla(0, 0%, 100%, .4)
}

.mm-menu .mm-listitem_selected>a:not(.mm-btn_next), .mm-menu .mm-listitem_selected>span {
  background: hsla(0, 0%, 100%, .4)
}

.mm-menu .mm-listitem_divider, .mm-menu .mm-listitem_opened>.mm-btn_next, .mm-menu .mm-listitem_opened>.mm-panel {
  background: rgba(0, 0, 0, .05)
}

.mm-page {
  box-sizing: border-box;
  position: relative
}

.mm-slideout {
  transition: transform .4s ease;
  z-index: 1
}

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative
}

.mm-wrapper_background .mm-page {
  background: inherit
}

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0
}

.mm-menu_offcanvas.mm-menu_opened {
  display: block
}

.mm-menu_offcanvas.mm-menu_opened.mm-no-csstransforms {
  z-index: 10
}

.mm-menu_offcanvas {
  width: 80%;
  min-width: 140px;
  max-width: 440px
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened~.mm-slideout {
    transform: translate(440px);
    transform: translate3d(440px, 0, 0)
  }
}

.mm-page__blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2
}

.mm-wrapper_blocking, .mm-wrapper_blocking body {
  overflow: hidden
}

.mm-wrapper_blocking .mm-page__blocker {
  display: block
}

.mm-sronly {
  border: 0!important;
  clip: rect(1px, 1px, 1px, 1px)!important;
  -webkit-clip-path: inset(50%)!important;
  clip-path: inset(50%)!important;
  white-space: nowrap!important;
  width: 1px!important;
  min-width: 1px!important;
  height: 1px!important;
  min-height: 1px!important;
  padding: 0!important;
  overflow: hidden!important;
  position: absolute!important
}

.mm-menu_autoheight {
  transition: none .4s ease;
  transition-property: transform, height
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%
}

.mm-menu_autoheight-measuring .mm-panel {
  display: block!important
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none!important
}

.mm-menu_autoheight-measuring .mm-panels>.mm-panel {
  bottom: auto!important;
  height: auto!important
}

[class*=mm-menu_columns-] {
  transition-property: width
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel {
  right: auto;
  transition-property: width, transform
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened, [class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent {
  display: block!important
}

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0 {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_columns-0 .mm-panels>.mm-panel {
  z-index: 0
}

.mm-menu_columns-0 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(100%);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-0 {
  width: 80%;
  min-width: 140px;
  max-width: 0
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened~.mm-slideout {
    transform: translate(0);
    transform: translateZ(0)
  }
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(0);
    transform: translateZ(0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1 {
  transform: translate(100%);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-1 .mm-panels>.mm-panel {
  z-index: 1;
  width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(200%);
  transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-1 {
  width: 80%;
  min-width: 140px;
  max-width: 440px
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened~.mm-slideout {
    transform: translate(440px);
    transform: translate3d(440px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-440px);
    transform: translate3d(-440px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2 {
  transform: translate(200%);
  transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-2 .mm-panels>.mm-panel {
  z-index: 2;
  width: 50%
}

.mm-menu_columns-2 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(300%);
  transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-2 {
  width: 80%;
  min-width: 140px;
  max-width: 880px
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened~.mm-slideout {
    transform: translate(880px);
    transform: translate3d(880px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-880px);
    transform: translate3d(-880px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3 {
  transform: translate(300%);
  transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-3 .mm-panels>.mm-panel {
  z-index: 3;
  width: 33.34%
}

.mm-menu_columns-3 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(400%);
  transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-3 {
  width: 80%;
  min-width: 140px;
  max-width: 1320px
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened~.mm-slideout {
    transform: translate(1320px);
    transform: translate3d(1320px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-1320px);
    transform: translate3d(-1320px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4 {
  transform: translate(400%);
  transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-4 .mm-panels>.mm-panel {
  z-index: 4;
  width: 25%
}

.mm-menu_columns-4 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(500%);
  transform: translate3d(500%, 0, 0)
}

.mm-menu_columns-4 {
  width: 80%;
  min-width: 140px;
  max-width: 1760px
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout {
  transform: translate(80vw);
  transform: translate3d(80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened~.mm-slideout {
    transform: translate(1760px);
    transform: translate3d(1760px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-1760px);
    transform: translate3d(-1760px, 0, 0)
  }
}

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  transition-property: width, min-width, max-width, transform
}

.mm-counter {
  font-style: normal;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%
}

.mm-counter+.mm-btn_next:not(.mm-btn_fullwidth) {
  width: 90px
}

.mm-counter+.mm-btn_next:not(.mm-btn_fullwidth)+a, .mm-counter+.mm-btn_next:not(.mm-btn_fullwidth)+span {
  margin-right: 90px
}

.mm-counter+.mm-btn_fullwidth+a, .mm-counter+.mm-btn_fullwidth+span {
  padding-right: 90px
}

.mm-listitem_vertical>.mm-counter {
  top: 12px;
  margin-top: 0
}

.mm-listitem_vertical.mm-listitem_spacer>.mm-counter {
  margin-top: 40px
}

.mm-listitem_nosubitems>.mm-counter {
  display: none
}

.mm-counter {
  color: rgba(0, 0, 0, .3)
}

.mm-listitem_divider {
  opacity: 1;
  transition: opacity .4s ease
}

.mm-menu_dividers-light .mm-listitem_divider {
  background: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, .3);
  padding-top: 15px;
  padding-bottom: 5px
}

.mm-border-none .mm-listitem_divider {
  border-top-width: 1px;
  border-top-style: solid
}

.mm-listview_fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translate(0);
  transform: translateZ(0)
}

.mm-listview_fixeddivider:after {
  content: none!important;
  display: none!important
}

.mm-panel_dividers .mm-listview_fixeddivider {
  display: block
}

.mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
  transition-duration: 0s
}

.mm-menu_dropdown {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  height: 80%
}

.mm-wrapper_dropdown .mm-slideout {
  transform: none!important;
  z-index: 0
}

.mm-wrapper_dropdown .mm-page__blocker {
  transition-delay: 0s!important;
  z-index: 1
}

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none
}

[class*=mm-menu_tip-]:before {
  content: "";
  background: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 0;
  transform: rotate(45deg)
}

.mm-menu_tip-left:before {
  left: 22px
}

.mm-menu_tip-right:before {
  right: 22px
}

.mm-menu_tip-top:before {
  top: -8px
}

.mm-menu_tip-bottom:before {
  bottom: -8px
}

.mm-iconbar {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-right-width: 1px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2
}

.mm-iconbar__bottom, .mm-iconbar__top {
  width: inherit;
  position: absolute;
  transform: translate(0);
  transform: translateZ(0)
}

.mm-iconbar__bottom>*, .mm-iconbar__top>* {
  box-sizing: border-box;
  display: block;
  padding: 10px 0
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none
}

.mm-iconbar__top {
  top: 0
}

.mm-iconbar__bottom {
  bottom: 0
}

.mm-menu_iconbar-40 .mm-navbars_bottom, .mm-menu_iconbar-40 .mm-navbars_top, .mm-menu_iconbar-40 .mm-panels {
  left: 40px
}

.mm-menu_iconbar-40 .mm-iconbar {
  width: 40px
}

.mm-menu_iconbar-60 .mm-navbars_bottom, .mm-menu_iconbar-60 .mm-navbars_top, .mm-menu_iconbar-60 .mm-panels {
  left: 60px
}

.mm-menu_iconbar-60 .mm-iconbar {
  width: 60px
}

.mm-menu_iconbar-80 .mm-navbars_bottom, .mm-menu_iconbar-80 .mm-navbars_top, .mm-menu_iconbar-80 .mm-panels {
  left: 80px
}

.mm-menu_iconbar-80 .mm-iconbar {
  width: 80px
}

.mm-iconbar, .mm-iconbar a {
  color: rgba(0, 0, 0, .3)
}

.mm-iconbar__tab_selected {
  background: hsla(0, 0%, 100%, .4)
}

[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel {
  transition-property: transform, left
}

[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_iconpanel-first, [class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_iconpanel-first.mm-panel_opened~.mm-listview_fixeddivider {
  left: 0
}

[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened, [class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened-parent {
  display: block!important
}

[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened-parent[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0), [class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: 1px solid;
  border-color: inherit
}

[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened-parent {
  overflow-y: hidden;
  transform: translate(0);
  transform: translateZ(0)
}

[class*=mm-menu_iconpanel-].mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, [class*=mm-menu_iconpanel-].mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0
}

.mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  left: 0
}

.mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  left: 40px
}

.mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  left: 80px
}

.mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  left: 120px
}

.mm-menu_iconpanel-40 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_iconpanel-40 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  left: 40px
}

.mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  left: 0
}

.mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  left: 60px
}

.mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  left: 120px
}

.mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  left: 180px
}

.mm-menu_iconpanel-60 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_iconpanel-60 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  left: 60px
}

.mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  left: 0
}

.mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  left: 80px
}

.mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  left: 160px
}

.mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  left: 240px
}

.mm-menu_iconpanel-80 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_iconpanel-80 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  left: 80px
}

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  transition: opacity .4s ease
}

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px
}

.mm-menu_keyboardfocus a:focus {
  outline: 0;
  background: hsla(0, 0%, 100%, .4)
}

.mm-navbars_bottom, .mm-navbars_top {
  background: inherit;
  border-color: inherit;
  border-width: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1
}

.mm-navbars_bottom>.mm-navbar, .mm-navbars_top>.mm-navbar {
  border-width: 0;
  border-color: inherit;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  transform: translate(0);
  transform: translateZ(0)
}

.mm-navbars_bottom>.mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top>.mm-navbar:not(.mm-navbar_has-btns) {
  padding: 0
}

.mm-navbars_bottom>.mm-navbar>:not(img):not(.mm-btn), .mm-navbars_top>.mm-navbar>:not(img):not(.mm-btn) {
  -ms-flex: 1;
  flex: 1
}

.mm-navbars_top {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  bottom: auto
}

.mm-menu_navbar_top-1 .mm-panels {
  top: 40px
}

.mm-menu_navbar_top-2 .mm-panels {
  top: 80px
}

.mm-menu_navbar_top-3 .mm-panels {
  top: 120px
}

.mm-menu_navbar_top-4 .mm-panels {
  top: 160px
}

.mm-navbars_bottom {
  border-top-style: solid;
  border-top-width: 1px;
  bottom: 0;
  top: auto
}

.mm-menu_navbar_bottom-1 .mm-panels {
  bottom: 40px
}

.mm-menu_navbar_bottom-2 .mm-panels {
  bottom: 80px
}

.mm-menu_navbar_bottom-3 .mm-panels {
  bottom: 120px
}

.mm-menu_navbar_bottom-4 .mm-panels {
  bottom: 160px
}

.mm-navbar_size-2 {
  height: 80px
}

.mm-navbar_size-3 {
  height: 120px
}

.mm-navbar_size-4 {
  height: 160px
}

.mm-navbar__breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px
}

.mm-navbar__breadcrumbs>* {
  display: inline-block;
  padding: 10px 3px
}

.mm-navbar__breadcrumbs>a {
  text-decoration: underline
}

.mm-navbar_has-btns .mm-navbar__breadcrumbs {
  margin-left: -40px
}

.mm-navbar_has-btns .mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
  margin-left: 0;
  padding-left: 0
}

.mm-navbar_tabs, .mm-navbar_tabs~.mm-navbar {
  background: inherit!important
}

.mm-navbar__tab_selected {
  background: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit
}

.mm-navbar__tab_selected:first-child {
  border-left: none
}

.mm-navbar__tab_selected:last-child {
  border-right: none
}

.mm-navbars_top .mm-navbar_tabs:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: inherit
}

.mm-navbars_top .mm-navbar__tab_selected {
  border-bottom: none;
  margin-bottom: -1px
}

.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
  border-top: none
}

.mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: inherit
}

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-top: none;
  margin-top: -1px
}

.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
  border-bottom: none
}

.mm-navbar_tabs>:not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar, .mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs) {
  background: hsla(0, 0%, 100%, .4)
}

.mm-menu_rtl {
  direction: rtl
}

.mm-menu_rtl.mm-menu_offcanvas {
  right: auto
}

.mm-menu_rtl .mm-panel:not(.mm-panel_opened) {
  transform: translate(-100%);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_rtl .mm-panel.mm-panel_opened-parent {
  transform: translate(30%);
  transform: translate3d(30%, 0, 0)
}

.mm-menu_rtl .mm-navbar .mm-btn:first-child {
  left: auto;
  right: 0
}

.mm-menu_rtl .mm-navbar .mm-btn:last-child {
  right: auto;
  left: 0
}

.mm-menu_rtl .mm-navbar .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto
}

.mm-menu_rtl .mm-navbar .mm-btn_prev:before {
  transform: rotate(135deg);
  right: 23px;
  left: auto
}

.mm-menu_rtl .mm-listitem:after {
  left: 0;
  right: 20px
}

.mm-menu_rtl .mm-listitem>a:not(.mm-btn_next), .mm-menu_rtl .mm-listitem>span:not(.mm-btn_next) {
  padding-left: 10px;
  padding-right: 20px!important;
  margin-right: 0!important
}

.mm-menu_rtl .mm-listitem .mm-btn_next {
  right: auto;
  left: 0
}

.mm-menu_rtl .mm-listitem .mm-btn_next:before {
  left: auto;
  right: 0
}

.mm-menu_rtl .mm-listitem .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto
}

.mm-menu_rtl .mm-listitem .mm-btn_next+a, .mm-menu_rtl .mm-listitem .mm-btn_next+span {
  margin-left: 50px
}

.mm-menu_rtl .mm-listitem .mm-btn_fullwidth+a, .mm-menu_rtl .mm-listitem .mm-btn_fullwidth+span {
  padding-left: 50px
}

.mm-menu_rtl .mm-counter {
  left: 45px;
  right: auto
}

.mm-menu_rtl .mm-counter+.mm-btn_next+a, .mm-menu_rtl .mm-counter+.mm-btn_next+span {
  margin-left: 90px
}

.mm-menu_rtl .mm-listview .mm-counter+.mm-btn_fullwidth+a, .mm-menu_rtl .mm-listview .mm-counter+.mm-btn_fullwidth+span {
  padding-left: 90px
}

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel {
  transition-property: transform, right
}

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_iconpanel-first, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_iconpanel-first.mm-panel_opened~.mm-listview_fixeddivider {
  left: 0;
  right: 0
}

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels>.mm-panel_opened-parent {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit
}

.mm-menu_rtl [class*=mm-panel_iconpanel-], .mm-menu_rtl [class*=mm-panel_iconpanel-]~.mm-listview_fixeddivider {
  left: 0
}

.mm-menu_rtl [class*=mm-panel_iconpanel-].mm-panel_opened-parent {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  right: 0
}

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  right: 40px
}

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  right: 80px
}

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  right: 120px
}

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  right: 40px
}

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  right: 0
}

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  right: 60px
}

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  right: 120px
}

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  right: 180px
}

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  right: 60px
}

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened~.mm-listview_fixeddivider {
  right: 0
}

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened~.mm-listview_fixeddivider {
  right: 80px
}

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened~.mm-listview_fixeddivider {
  right: 160px
}

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened~.mm-listview_fixeddivider {
  right: 240px
}

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first~.mm-panel, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first~.mm-panel_opened~.mm-listview_fixeddivider {
  right: 80px
}

.mm-menu_rtl html[class*=mm-sidebar_expanded-]:not(.mm-sidebar_closed) .mm-menu_rtl~.mm-slideout {
  transform: translate(0)!important;
  right: 0
}

.mm-menu_rtl label.mm-check, .mm-menu_rtl label.mm-toggle {
  left: 20px;
  right: auto!important
}

.mm-menu_rtl label.mm-toggle+a, .mm-menu_rtl label.mm-toggle+span {
  padding-left: 80px
}

.mm-menu_rtl label.mm-check+a, .mm-menu_rtl label.mm-check+span {
  padding-left: 60px
}

.mm-menu_rtl .mm-btn_next+label.mm-check, .mm-menu_rtl .mm-btn_next+label.mm-toggle {
  left: 60px
}

.mm-menu_rtl .mm-btn_next+label.mm-check+a, .mm-menu_rtl .mm-btn_next+label.mm-check+span, .mm-menu_rtl .mm-btn_next+label.mm-toggle+a, .mm-menu_rtl .mm-btn_next+label.mm-toggle+span {
  margin-left: 50px
}

.mm-menu_rtl .mm-btn_next+label.mm-toggle+a, .mm-menu_rtl .mm-btn_next+label.mm-toggle+span {
  padding-left: 70px
}

.mm-menu_rtl .mm-btn_next+label.mm-check+a, .mm-menu_rtl .mm-btn_next+label.mm-check+span {
  padding-left: 50px
}

.mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-check, .mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-toggle {
  left: 100px
}

.mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-check+a, .mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-check+span, .mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-toggle+a, .mm-menu_rtl .mm-counter+.mm-btn_next+label.mm-toggle+span {
  margin-left: 90px
}

.mm-searchfield {
  height: 40px;
  padding: 0;
  display: -ms-flexbox;
  display: flex
}

.mm-searchfield input {
  border: none!important;
  outline: 0!important;
  box-shadow: none!important;
  border-radius: 4px;
  font: inherit;
  font-size: inherit;
  line-height: 26px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  margin: 0;
  padding: 0 10px
}

.mm-searchfield input::-ms-clear {
  display: none
}

.mm-searchfield__input {
  padding: 7px 10px 0;
  position: relative
}

.mm-panel__noresultsmsg {
  text-align: center;
  font-size: 150%;
  padding: 40px 0
}

.mm-searchfield__btn {
  right: 0;
  top: 0
}

.mm-searchfield__input {
  -ms-flex: 1;
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%
}

.mm-searchfield__cancel {
  text-decoration: none;
  line-height: 40px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  transition: margin .4s ease
}

.mm-searchfield__cancel-active {
  margin-right: 0
}

.mm-panel>.mm-searchfield {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.mm-panel_has-searchfield {
  padding-top: 40px
}

.mm-panel_has-navbar.mm-panel_has-searchfield {
  padding-top: 80px
}

.mm-panel_has-navbar.mm-panel_has-searchfield>.mm-searchfield {
  top: 40px
}

.mm-listitem_nosubitems>.mm-btn_next {
  display: none
}

.mm-listitem_nosubitems>.mm-btn_next+a, .mm-listitem_nosubitems>.mm-btn_next+span {
  padding-right: 10px
}

.mm-searchfield input {
  background: rgba(0, 0, 0, .05);
  color: #fff
}

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, .3)
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 15;
  transition: right .4s ease;
  transform: translate(0);
  transform: translateZ(0);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.mm-sectionindexer a {
  line-height: 1;
  text-decoration: none;
  display: block
}

.mm-sectionindexer~.mm-panels {
  transition: right .4s ease
}

.mm-menu_has-sectionindexer .mm-sectionindexer {
  right: 0
}

.mm-menu_has-sectionindexer .mm-panels {
  right: 20px
}

.mm-menu_navbar_top-1 .mm-sectionindexer {
  top: 42px
}

.mm-menu_navbar_top-2 .mm-sectionindexer {
  top: 82px
}

.mm-menu_navbar_top-3 .mm-sectionindexer {
  top: 122px
}

.mm-menu_navbar_top-4 .mm-sectionindexer {
  top: 162px
}

.mm-menu_navbar_bottom-1 .mm-sectionindexer {
  bottom: 42px
}

.mm-menu_navbar_bottom-2 .mm-sectionindexer {
  bottom: 82px
}

.mm-menu_navbar_bottom-3 .mm-sectionindexer {
  bottom: 122px
}

.mm-menu_navbar_bottom-4 .mm-sectionindexer {
  bottom: 162px
}

.mm-sectionindexer a {
  color: rgba(0, 0, 0, .3)
}

.mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth+a, .mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth+span, .mm-menu_selected-hover .mm-listitem>a:not(.mm-btn_fullwidth), .mm-menu_selected-parent .mm-listitem>a.mm-btn_fullwidth+a, .mm-menu_selected-parent .mm-listitem>a.mm-btn_fullwidth+span, .mm-menu_selected-parent .mm-listitem>a:not(.mm-btn_fullwidth) {
  transition: background .4s ease
}

.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>a, .mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>span {
  background: 0 0
}

.mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth:hover+span, .mm-menu_selected-hover .mm-listitem>a:not(.mm-btn_fullwidth):hover {
  background: hsla(0, 0%, 100%, .4)
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>a, .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>span {
  background: 0 0
}

.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_fullwidth+span, .mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: hsla(0, 0%, 100%, .4)
}

[class*=mm-wrapper_sidebar-collapsed-] body, [class*=mm-wrapper_sidebar-expanded-] body {
  position: relative
}

[class*=mm-wrapper_sidebar-collapsed-] .mm-slideout, [class*=mm-wrapper_sidebar-expanded-] .mm-slideout {
  transition-property: width, transform
}

[class*=mm-wrapper_sidebar-collapsed-] .mm-page, [class*=mm-wrapper_sidebar-expanded-] .mm-page {
  background: inherit;
  box-sizing: border-box;
  min-height: 100vh
}

[class*=mm-wrapper_sidebar-collapsed-] .mm-menu_sidebar-collapsed, [class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  display: block!important;
  top: 0!important;
  right: auto!important;
  bottom: 0!important;
  left: 0!important
}

[class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, [class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0
}

.mm-wrapper_sidebar-collapsed-40 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-40 .mm-slideout {
  width: calc(100% - 40px);
  transform: translate(40px);
  transform: translate3d(40px, 0, 0)
}

.mm-wrapper_sidebar-collapsed-60 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-60 .mm-slideout {
  width: calc(100% - 60px);
  transform: translate(60px);
  transform: translate3d(60px, 0, 0)
}

.mm-wrapper_sidebar-collapsed-80 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-80 .mm-slideout {
  width: calc(100% - 80px);
  transform: translate(80px);
  transform: translate3d(80px, 0, 0)
}

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  border-right-width: 1px;
  border-right-style: solid;
  min-width: 0!important;
  max-width: 100000px!important
}

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none
}

[class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking, [class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking body {
  overflow: visible
}

[class*=mm-wrapper_sidebar-expanded-] .mm-page__blocker {
  display: none!important
}

.mm-wrapper_sidebar-expanded-25:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 75%;
  transform: translate(33.33333%)!important;
  transform: translate3d(33.33333%, 0, 0)!important
}

.mm-wrapper_sidebar-expanded-25 .mm-menu_sidebar-expanded {
  width: 25%!important
}

.mm-wrapper_sidebar-expanded-30:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 70%;
  transform: translate(42.85714%)!important;
  transform: translate3d(42.85714%, 0, 0)!important
}

.mm-wrapper_sidebar-expanded-30 .mm-menu_sidebar-expanded {
  width: 30%!important
}

.mm-wrapper_sidebar-expanded-35:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 65%;
  transform: translate(53.84615%)!important;
  transform: translate3d(53.84615%, 0, 0)!important
}

.mm-wrapper_sidebar-expanded-35 .mm-menu_sidebar-expanded {
  width: 35%!important
}

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3
}

.mm-menu_opened .mm-menu__blocker {
  display: none
}

input.mm-check, input.mm-toggle {
  position: absolute;
  left: -10000px
}

label.mm-check, label.mm-toggle {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2
}

label.mm-check:before, label.mm-toggle:before {
  content: "";
  display: block
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px
}

input.mm-toggle:checked~label.mm-toggle:before {
  float: right
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  transform: rotate(-45deg)
}

input.mm-check:checked~label.mm-check:before {
  opacity: 1
}

.mm-listitem_vertical label.mm-check, .mm-listitem_vertical label.mm-toggle {
  top: 5px;
  bottom: auto;
  margin-top: 0
}

label.mm-toggle {
  right: 20px
}

label.mm-toggle+a, label.mm-toggle+span {
  padding-right: 80px
}

label.mm-check {
  right: 20px
}

label.mm-check+a, label.mm-check+span {
  padding-right: 60px
}

.mm-btn_next+label.mm-check, .mm-btn_next+label.mm-toggle {
  right: 60px
}

.mm-btn_next+label.mm-check+a, .mm-btn_next+label.mm-check+span, .mm-btn_next+label.mm-toggle+a, .mm-btn_next+label.mm-toggle+span {
  margin-right: 50px
}

.mm-btn_next+label.mm-toggle+a, .mm-btn_next+label.mm-toggle+span {
  padding-right: 70px
}

.mm-btn_next+label.mm-check+a, .mm-btn_next+label.mm-check+span {
  padding-right: 50px
}

.mm-counter+.mm-btn_next+label.mm-check, .mm-counter+.mm-btn_next+label.mm-toggle {
  right: 100px
}

.mm-counter+.mm-btn_next+label.mm-check+a, .mm-counter+.mm-btn_next+label.mm-check+span, .mm-counter+.mm-btn_next+label.mm-toggle+a, .mm-counter+.mm-btn_next+label.mm-toggle+span {
  margin-right: 90px
}

label.mm-toggle {
  background: rgba(0, 0, 0, .1)
}

label.mm-toggle:before {
  background: #004ea1
}

input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963
}

label.mm-check:before {
  border-color: #fff
}

.mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
  content: none
}

.mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
  left: 0!important
}

.mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
  right: 20px
}

.mm-menu_fx-menu-zoom {
  transition: transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-zoom {
  transform: scale(.7) translate3d(-30%, 0, 0);
  transform-origin: left center
}

.mm-wrapper_opening .mm-menu_fx-menu-zoom {
  transform: scale(1) translateZ(0)
}

.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(.7) translate3d(30%, 0, 0);
  transform-origin: right center
}

.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(1) translateZ(0)
}

.mm-menu_fx-menu-slide {
  transition: transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  transform: translate(-30%);
  transform: translate3d(-30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate(30%);
  transform: translate3d(30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_fx-menu-fade {
  opacity: 0;
  transition: opacity .4s ease
}

.mm-wrapper_opening .mm-menu_fx-menu-fade {
  opacity: 1
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  transition-property: none
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
  transform-origin: left center;
  transform: scale(1.5) translate3d(100%, 0, 0)
}

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
  transform: scale(1) translateZ(0)
}

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
  transform: scale(.7) translate3d(-30%, 0, 0)
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
  transform: translate(-100%);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
  transform: translateY(100%);
  transform: translate3d(0, 100%, 0)
}

.mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
  transform: translate(-100%);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
  transform: translate(0);
  transform: translateZ(0)
}

[class*=mm-menu_fx-listitems-] .mm-listitem {
  transition: none .4s ease
}

[class*=mm-menu_fx-listitems-] .mm-listitem:first-child {
  transition-delay: 50ms
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
  transition-delay: .1s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
  transition-delay: .15s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
  transition-delay: .2s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
  transition-delay: .25s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
  transition-delay: .3s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
  transition-delay: .35s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
  transition-delay: .4s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
  transition-delay: .45s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
  transition-delay: .5s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
  transition-delay: .55s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
  transition-delay: .6s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
  transition-delay: .65s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
  transition-delay: .7s
}

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
  transition-delay: .75s
}

.mm-menu_fx-listitems-slide .mm-listitem {
  transition-property: transform, opacity;
  transform: translate(50%);
  transform: translate3d(50%, 0, 0);
  opacity: 0
}

.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
  transform: translate(0);
  transform: translateZ(0);
  opacity: 1
}

.mm-menu_fx-listitems-fade .mm-listitem {
  transition-property: opacity;
  opacity: 0
}

.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
  opacity: 1
}

.mm-menu_fx-listitems-drop .mm-listitem {
  transition-property: opacity, top;
  opacity: 0;
  top: -25%
}

.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
  opacity: 1;
  top: 0
}

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout {
  transform: translate(100vw);
  transform: translate3d(100vw, 0, 0)
}

@media (max-width:140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout {
    transform: translate(140px);
    transform: translate3d(140px, 0, 0)
  }
}

@media (min-width:10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened~.mm-slideout {
    transform: translate(10000px);
    transform: translate3d(10000px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-100vw);
  transform: translate3d(-100vw, 0, 0)
}

@media (max-width:140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-10000px);
    transform: translate3d(-10000px, 0, 0)
  }
}

.mm-menu_fullscreen.mm-menu_position-bottom, .mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px
}

.mm-menu_listview-30 .mm-listitem>a:not(.mm-btn_next), .mm-menu_listview-30 .mm-listitem>span {
  padding-top: 5px;
  padding-bottom: 5px
}

.mm-menu_listview-30 .mm-listitem_vertical>.mm-btn_next {
  height: 30
}

.mm-menu_listview-50 .mm-listitem>a:not(.mm-btn_next), .mm-menu_listview-50 .mm-listitem>span {
  padding-top: 15px;
  padding-bottom: 15px
}

.mm-menu_listview-50 .mm-listitem_vertical>.mm-btn_next {
  height: 50
}

.mm-menu_listview-60 .mm-listitem>a:not(.mm-btn_next), .mm-menu_listview-60 .mm-listitem>span {
  padding-top: 20px;
  padding-bottom: 20px
}

.mm-menu_listview-60 .mm-listitem_vertical>.mm-btn_next {
  height: 60
}

.mm-menu_listview-justify .mm-panels>.mm-panel:after, .mm-menu_listview-justify .mm-panels>.mm-panel:before, .mm-panels>.mm-panel_listview-justify:after, .mm-panels>.mm-panel_listview-justify:before {
  content: none;
  display: none
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview, .mm-panels>.mm-panel_listview-justify .mm-listview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem, .mm-panels>.mm-panel_listview-justify .mm-listitem {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 40px
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels>.mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem>a:not(.mm-btn_next), .mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem>span, .mm-panels>.mm-panel_listview-justify .mm-listitem>a:not(.mm-btn_next), .mm-panels>.mm-panel_listview-justify .mm-listitem>span {
  box-sizing: border-box;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center
}

.mm-listview_inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0
}

.mm-listview_inset>li {
  padding: 5px 0
}

.mm-menu_multiline .mm-listitem>a, .mm-menu_multiline .mm-listitem>span, .mm-panel_multiline .mm-listitem>a, .mm-panel_multiline .mm-listitem>span {
  text-overflow: clip;
  white-space: normal
}

[class*=mm-menu_pagedim].mm-menu_opened~.mm-page__blocker {
  opacity: 0
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-page__blocker {
  opacity: .3;
  transition: opacity .4s ease .4s
}

.mm-menu_opened.mm-menu_pagedim~.mm-page__blocker {
  background: inherit
}

.mm-menu_opened.mm-menu_pagedim-black~.mm-page__blocker {
  background: #000
}

.mm-menu_opened.mm-menu_pagedim-white~.mm-page__blocker {
  background: #fff
}

.mm-menu_popup {
  transition: opacity .4s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  transform: translate(-50%, -50%);
  transform: translate3d(-50%, -50%, 0)
}

.mm-menu_popup.mm-menu_opened~.mm-slideout {
  transform: none!important;
  z-index: 0
}

.mm-menu_popup.mm-menu_opened~.mm-page__blocker {
  transition-delay: 0s!important;
  z-index: 1
}

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1
}

.mm-menu_position-right {
  left: auto;
  right: 0
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
  transform: translate(-80vw);
  transform: translate3d(-80vw, 0, 0)
}

@media (max-width:175px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-140px);
    transform: translate3d(-140px, 0, 0)
  }
}

@media (min-width:550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
    transform: translate(-440px);
    transform: translate3d(-440px, 0, 0)
  }
}

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  transition: transform .4s ease
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2
}

.mm-menu_position-bottom.mm-menu_opened~.mm-slideout, .mm-menu_position-front.mm-menu_opened~.mm-slideout, .mm-menu_position-top.mm-menu_opened~.mm-slideout {
  transform: none!important;
  z-index: 0
}

.mm-menu_position-bottom.mm-menu_opened~.mm-page__blocker, .mm-menu_position-front.mm-menu_opened~.mm-page__blocker, .mm-menu_position-top.mm-menu_opened~.mm-page__blocker {
  z-index: 1
}

.mm-menu_position-front {
  transform: translate(-100%);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_position-front.mm-menu_position-right {
  transform: translate(100%);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%
}

.mm-menu_position-top {
  transform: translateY(-100%);
  transform: translate3d(0, -100%, 0);
  height: 80vh;
  min-height: 140px;
  max-height: 880px
}

.mm-menu_position-bottom {
  transform: translateY(100%);
  transform: translate3d(0, 100%, 0);
  top: auto;
  height: 80vh;
  min-height: 140px;
  max-height: 880px
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  transform: translate(0);
  transform: translateZ(0)
}

.mm-menu_shadow-page:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%)
}

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%
}

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none
}

.mm-menu_shadow-page:after, .mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.mm-menu_theme-white {
  background: #fff;
  border-color: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .7)
}

.mm-menu_theme-white .mm-navbar>*, .mm-menu_theme-white .mm-navbar a {
  color: rgba(0, 0, 0, .3)
}

.mm-menu_theme-white .mm-btn:after, .mm-menu_theme-white .mm-btn:before, .mm-menu_theme-white .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, .3)
}

.mm-menu_theme-white .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, .03);
  tap-highlight-color: rgba(0, 0, 0, .03)
}

.mm-menu_theme-white .mm-listitem_selected>a:not(.mm-btn_next), .mm-menu_theme-white .mm-listitem_selected>span {
  background: rgba(0, 0, 0, .03)
}

.mm-menu_theme-white .mm-listitem_divider, .mm-menu_theme-white .mm-listitem_opened>.mm-btn_next, .mm-menu_theme-white .mm-listitem_opened>.mm-panel {
  background: rgba(0, 0, 0, .06)
}

.mm-menu_theme-white .mm-counter, .mm-menu_theme-white .mm-iconbar, .mm-menu_theme-white .mm-iconbar a {
  color: rgba(0, 0, 0, .3)
}

.mm-menu_theme-white.mm-menu_keyboardfocus a:focus, .mm-menu_theme-white .mm-navbar_tabs>:not(.mm-navbar__tab_selected), .mm-menu_theme-white .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar, .mm-menu_theme-white .mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, .03)
}

.mm-menu_theme-white.mm-menu_shadow-page:after, .mm-menu_theme-white.mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

.mm-menu_theme-white .mm-searchfield input {
  background: rgba(0, 0, 0, .06);
  color: rgba(0, 0, 0, .7)
}

.mm-menu_theme-white .mm-panel__noresultsmsg, .mm-menu_theme-white .mm-sectionindexer a {
  color: rgba(0, 0, 0, .3)
}

.mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>a, .mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>span {
  background: 0 0
}

.mm-menu_theme-white.mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth:hover+span, .mm-menu_theme-white.mm-menu_selected-hover .mm-listitem>a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, .03)
}

.mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>a, .mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>span {
  background: 0 0
}

.mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_fullwidth+span, .mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, .03)
}

.mm-menu_theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, .7)
}

.mm-menu_theme-white label.mm-toggle {
  background: rgba(0, 0, 0, .1)
}

.mm-menu_theme-white label.mm-toggle:before {
  background: #fff
}

.mm-menu_theme-whiteinput.mm-toggle:checked~label.mm-toggle {
  background: #4bd963
}

.mm-menu_theme-dark {
  background: #333;
  border-color: rgba(0, 0, 0, .3);
  color: hsla(0, 0%, 100%, .85)
}

.mm-menu_theme-dark .mm-navbar>*, .mm-menu_theme-dark .mm-navbar a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-dark .mm-btn:after, .mm-menu_theme-dark .mm-btn:before, .mm-menu_theme-dark .mm-listview .mm-btn_next:after {
  border-color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-dark .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, .1);
  tap-highlight-color: rgba(0, 0, 0, .1)
}

.mm-menu_theme-dark .mm-listitem_selected>a:not(.mm-btn_next), .mm-menu_theme-dark .mm-listitem_selected>span {
  background: rgba(0, 0, 0, .1)
}

.mm-menu_theme-dark .mm-listitem_divider, .mm-menu_theme-dark .mm-listitem_opened>.mm-btn_next, .mm-menu_theme-dark .mm-listitem_opened>.mm-panel {
  background: hsla(0, 0%, 100%, .08)
}

.mm-menu_theme-dark .mm-counter, .mm-menu_theme-dark .mm-iconbar, .mm-menu_theme-dark .mm-iconbar a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-dark.mm-menu_keyboardfocus a:focus, .mm-menu_theme-dark .mm-navbar_tabs>:not(.mm-navbar__tab_selected), .mm-menu_theme-dark .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar, .mm-menu_theme-dark .mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, .1)
}

.mm-menu_theme-dark.mm-menu_shadow-page:after, .mm-menu_theme-dark.mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 20px rgba(0, 0, 0, .5)
}

.mm-menu_theme-dark .mm-searchfield input {
  background: hsla(0, 0%, 100%, .15);
  color: hsla(0, 0%, 100%, .85)
}

.mm-menu_theme-dark .mm-panel__noresultsmsg, .mm-menu_theme-dark .mm-sectionindexer a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>a, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>span {
  background: 0 0
}

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth:hover+span, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem>a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, .1)
}

.mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>a, .mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>span {
  background: 0 0
}

.mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_fullwidth+span, .mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, .1)
}

.mm-menu_theme-dark label.mm-check:before {
  border-color: hsla(0, 0%, 100%, .85)
}

.mm-menu_theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, .3)
}

.mm-menu_theme-dark label.mm-toggle:before {
  background: #333
}

.mm-menu_theme-darkinput.mm-toggle:checked~label.mm-toggle {
  background: #4bd963
}

.mm-menu_theme-black {
  background: #000;
  border-color: hsla(0, 0%, 100%, .25);
  color: hsla(0, 0%, 100%, .75)
}

.mm-menu_theme-black .mm-navbar>*, .mm-menu_theme-black .mm-navbar a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-black .mm-btn:after, .mm-menu_theme-black .mm-btn:before, .mm-menu_theme-black .mm-listview .mm-btn_next:after {
  border-color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-black .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, .15);
  tap-highlight-color: hsla(0, 0%, 100%, .15)
}

.mm-menu_theme-black .mm-listitem_selected>a:not(.mm-btn_next), .mm-menu_theme-black .mm-listitem_selected>span {
  background: hsla(0, 0%, 100%, .15)
}

.mm-menu_theme-black .mm-listitem_divider, .mm-menu_theme-black .mm-listitem_opened>.mm-btn_next, .mm-menu_theme-black .mm-listitem_opened>.mm-panel {
  background: hsla(0, 0%, 100%, .2)
}

.mm-menu_theme-black .mm-counter, .mm-menu_theme-black .mm-iconbar, .mm-menu_theme-black .mm-iconbar a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-black.mm-menu_keyboardfocus a:focus, .mm-menu_theme-black .mm-navbar_tabs>:not(.mm-navbar__tab_selected), .mm-menu_theme-black .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar, .mm-menu_theme-black .mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs) {
  background: hsla(0, 0%, 100%, .15)
}

.mm-menu_theme-black.mm-menu_shadow-page:after, .mm-menu_theme-black.mm-menu_shadow-panels .mm-panel {
  box-shadow: false
}

.mm-menu_theme-black .mm-searchfield input {
  background: hsla(0, 0%, 100%, .25);
  color: hsla(0, 0%, 100%, .75)
}

.mm-menu_theme-black .mm-panel__noresultsmsg, .mm-menu_theme-black .mm-sectionindexer a {
  color: hsla(0, 0%, 100%, .4)
}

.mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>a, .mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>span {
  background: 0 0
}

.mm-menu_theme-black.mm-menu_selected-hover .mm-listitem>a.mm-btn_fullwidth:hover+span, .mm-menu_theme-black.mm-menu_selected-hover .mm-listitem>a:not(.mm-btn_fullwidth):hover {
  background: hsla(0, 0%, 100%, .15)
}

.mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>a, .mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>span {
  background: 0 0
}

.mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_fullwidth+span, .mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent>a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: hsla(0, 0%, 100%, .15)
}

.mm-menu_theme-black label.mm-check:before {
  border-color: hsla(0, 0%, 100%, .75)
}

.mm-menu_theme-black label.mm-toggle {
  background: hsla(0, 0%, 100%, .25)
}

.mm-menu_theme-black label.mm-toggle:before {
  background: #000
}

.mm-menu_theme-blackinput.mm-toggle:checked~label.mm-toggle {
  background: #4bd963
}

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
  margin: 0!important
}

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
  content: "";
  display: block;
  clear: both
}

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%
}

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1
}

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%
}

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%
}

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%
}

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%
}

.mm-menu_tileview .mm-listitem>a, .mm-menu_tileview .mm-listitem>span, .mm-panel_tileview .mm-listitem>a, .mm-panel_tileview .mm-listitem>span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0
}

.mm-menu_tileview .mm-listitem>.mm-btn_next, .mm-panel_tileview .mm-listitem>.mm-btn_next {
  width: auto
}

.mm-menu_tileview .mm-listitem>.mm-btn_next:after, .mm-menu_tileview .mm-listitem>.mm-btn_next:before, .mm-panel_tileview .mm-listitem>.mm-btn_next:after, .mm-panel_tileview .mm-listitem>.mm-btn_next:before {
  content: none;
  display: none
}

.mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
  display: none
}

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
  padding-left: 0;
  padding-right: 0
}

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
  content: none;
  display: none
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap
}

.select2-container .select2-search--inline {
  float: left
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051
}

.select2-results {
  display: block
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none
}

.select2-results__option[aria-selected] {
  cursor: pointer
}

.select2-container--open .select2-dropdown {
  left: 0
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-search--dropdown {
  display: block;
  padding: 4px
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
  display: none
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0)
}

.select2-hidden-accessible {
  border: 0!important;
  clip: rect(0 0 0 0)!important;
  height: 1px!important;
  margin: -1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  width: 1px!important
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-top: 5px;
  margin-right: 10px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
  float: right
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #000;
  outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: #fff
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(180deg, #fff 50%, #eee);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(180deg, #eee 50%, #ccc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(180deg, #fff 0, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(180deg, #eee 50%, #fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
  border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb
}

.slide-aside {
  box-sizing: border-box;
  position: fixed;
  right: -400px;
  top: 0;
  height: 100vh;
  padding: 10px 45px;
  background-color: #333;
  line-height: 1.8;
  color: #bfbfbf;
  z-index: 19960427;
  width: 400px;
  font-size: 14px
}

.slide-aside * {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #bfbfbf;
  text-decoration: none
}

@media screen and (max-width:767px) {
  .slide-aside {
    display: none!important
  }
}

.slide-aside li {
  display: inline-block
}

.slide-aside-content, .slide-aside:after, .slide-aside:before {
  display: inline-block;
  vertical-align: middle
}

.slide-aside:after, .slide-aside:before {
  content: "";
  height: 100%
}

.slide-aside-content {
  max-width: 95%
}

.slide-aside-heading {
  color: #2aa9e0;
  font-size: 24px;
  margin-bottom: 25px
}

.slide-aside-title {
  font-weight: 700;
  position: relative
}

.slide-aside-title:before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #2aa9e0;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  right: 100%;
  left: auto;
  margin: auto;
  transform: translateX(-10px)
}

.slide-aside-item+.slide-aside-item {
  margin-top: 15px
}

.slide-aside-item li span {
  display: inline-block;
  vertical-align: middle
}

.slide-aside-item li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  width: 2px;
  background-color: #a1a1a1;
  height: 15px
}

.slide-aside-item a {
  display: inline-block
}

.slide-aside-item a:hover {
  opacity: .7
}

.slide-aside-footer {
  margin-top: 25px;
  margin-left: -15px;
  padding-left: 15px;
  border-left: 1px solid #2aa9e0
}

.slide-aside-footer h1, .slide-aside-footer h2, .slide-aside-footer h3, .slide-aside-footer h4, .slide-aside-footer h5, .slide-aside-footer h6 {
  font-weight: 700;
  color: #fff
}

.slide-aside-active {
  transition: transform .5s
}

.slide-aside-show {
  transform: translate3d(-400px, 0, 0)
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block
}

body {
  line-height: 1
}

ol, ul {
  list-style: none
}

blockquote, q {
  quotes: none
}

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

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

main {
  display: block
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects
}

b, strong {
  font-weight: inherit;
  font-weight: bolder
}

small {
  font-size: 80%
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

audio, video {
  display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0
}

img {
  border-style: none
}

svg:not(:root) {
  overflow: hidden
}

button, input {
  overflow: visible
}

button, select {
  text-transform: none
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

progress {
  display: inline-block;
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox], [type=radio] {
  padding: 0
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

canvas {
  display: inline-block
}

[hidden], template {
  display: none
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent
}

*, :after, :before {
  box-sizing: border-box
}

body {
  font-family: Microsoft Yahei, sans-serif;
  background-color: #fff;
  font-size: 14px
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .2s
}

textarea {
  resize: none
}

body {
  overflow-x: hidden!important
}

.container {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px
}

@media screen and (min-width:768px) {
  .container {
    width: 100%
  }
}

@media screen and (min-width:992px) {
  .container {
    width: 100%
  }
}

@media screen and (min-width:1280px) {
  .container {
    width: 100%
  }
}

@media screen and (min-width:1440px) {
  .container {
    width: 100%
  }
}

@media screen and (min-width:1680px) {
  .container {
    width: 1600px
  }
}

.container-fluid {
  height: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px
}

.row-xs-0 {
  margin-left: 0;
  margin-right: 0
}

.row-xs-0>div {
  padding-left: 0;
  padding-right: 0
}

.row-xs-5 {
  margin-left: -2.5px;
  margin-right: -2.5px
}

.row-xs-5>div {
  padding-left: 2.5px;
  padding-right: 2.5px
}

.row-xs-10 {
  margin-left: -5px;
  margin-right: -5px
}

.row-xs-10>div {
  padding-left: 5px;
  padding-right: 5px
}

.row-xs-15 {
  margin-left: -7.5px;
  margin-right: -7.5px
}

.row-xs-15>div {
  padding-left: 7.5px;
  padding-right: 7.5px
}

.row-xs-20 {
  margin-left: -10px;
  margin-right: -10px
}

.row-xs-20>div {
  padding-left: 10px;
  padding-right: 10px
}

.row-xs-25 {
  margin-left: -12.5px;
  margin-right: -12.5px
}

.row-xs-25>div {
  padding-left: 12.5px;
  padding-right: 12.5px
}

.row-xs-30 {
  margin-left: -15px;
  margin-right: -15px
}

.row-xs-30>div {
  padding-left: 15px;
  padding-right: 15px
}

.row-xs-35 {
  margin-left: -17.5px;
  margin-right: -17.5px
}

.row-xs-35>div {
  padding-left: 17.5px;
  padding-right: 17.5px
}

.row-xs-40 {
  margin-left: -20px;
  margin-right: -20px
}

.row-xs-40>div {
  padding-left: 20px;
  padding-right: 20px
}

.row-xs-45 {
  margin-left: -22.5px;
  margin-right: -22.5px
}

.row-xs-45>div {
  padding-left: 22.5px;
  padding-right: 22.5px
}

.row-xs-50 {
  margin-left: -25px;
  margin-right: -25px
}

.row-xs-50>div {
  padding-left: 25px;
  padding-right: 25px
}

.row-xs-55 {
  margin-left: -27.5px;
  margin-right: -27.5px
}

.row-xs-55>div {
  padding-left: 27.5px;
  padding-right: 27.5px
}

.row-xs-60 {
  margin-left: -30px;
  margin-right: -30px
}

.row-xs-60>div {
  padding-left: 30px;
  padding-right: 30px
}

.row-xs-65 {
  margin-left: -32.5px;
  margin-right: -32.5px
}

.row-xs-65>div {
  padding-left: 32.5px;
  padding-right: 32.5px
}

.row-xs-70 {
  margin-left: -35px;
  margin-right: -35px
}

.row-xs-70>div {
  padding-left: 35px;
  padding-right: 35px
}

.row-xs-75 {
  margin-left: -37.5px;
  margin-right: -37.5px
}

.row-xs-75>div {
  padding-left: 37.5px;
  padding-right: 37.5px
}

.row-xs-80 {
  margin-left: -40px;
  margin-right: -40px
}

.row-xs-80>div {
  padding-left: 40px;
  padding-right: 40px
}

.row-xs-85 {
  margin-left: -42.5px;
  margin-right: -42.5px
}

.row-xs-85>div {
  padding-left: 42.5px;
  padding-right: 42.5px
}

.row-xs-90 {
  margin-left: -45px;
  margin-right: -45px
}

.row-xs-90>div {
  padding-left: 45px;
  padding-right: 45px
}

.row-xs-95 {
  margin-left: -47.5px;
  margin-right: -47.5px
}

.row-xs-95>div {
  padding-left: 47.5px;
  padding-right: 47.5px
}

.row-xs-100 {
  margin-left: -50px;
  margin-right: -50px
}

.row-xs-100>div {
  padding-left: 50px;
  padding-right: 50px
}

@media screen and (min-width:768px) {
  .row-sm-0 {
    margin-left: 0;
    margin-right: 0
  }
  .row-sm-0>div {
    padding-left: 0;
    padding-right: 0
  }
  .row-sm-5 {
    margin-left: -2.5px;
    margin-right: -2.5px
  }
  .row-sm-5>div {
    padding-left: 2.5px;
    padding-right: 2.5px
  }
  .row-sm-10 {
    margin-left: -5px;
    margin-right: -5px
  }
  .row-sm-10>div {
    padding-left: 5px;
    padding-right: 5px
  }
  .row-sm-15 {
    margin-left: -7.5px;
    margin-right: -7.5px
  }
  .row-sm-15>div {
    padding-left: 7.5px;
    padding-right: 7.5px
  }
  .row-sm-20 {
    margin-left: -10px;
    margin-right: -10px
  }
  .row-sm-20>div {
    padding-left: 10px;
    padding-right: 10px
  }
  .row-sm-25 {
    margin-left: -12.5px;
    margin-right: -12.5px
  }
  .row-sm-25>div {
    padding-left: 12.5px;
    padding-right: 12.5px
  }
  .row-sm-30 {
    margin-left: -15px;
    margin-right: -15px
  }
  .row-sm-30>div {
    padding-left: 15px;
    padding-right: 15px
  }
  .row-sm-35 {
    margin-left: -17.5px;
    margin-right: -17.5px
  }
  .row-sm-35>div {
    padding-left: 17.5px;
    padding-right: 17.5px
  }
  .row-sm-40 {
    margin-left: -20px;
    margin-right: -20px
  }
  .row-sm-40>div {
    padding-left: 20px;
    padding-right: 20px
  }
  .row-sm-45 {
    margin-left: -22.5px;
    margin-right: -22.5px
  }
  .row-sm-45>div {
    padding-left: 22.5px;
    padding-right: 22.5px
  }
  .row-sm-50 {
    margin-left: -25px;
    margin-right: -25px
  }
  .row-sm-50>div {
    padding-left: 25px;
    padding-right: 25px
  }
  .row-sm-55 {
    margin-left: -27.5px;
    margin-right: -27.5px
  }
  .row-sm-55>div {
    padding-left: 27.5px;
    padding-right: 27.5px
  }
  .row-sm-60 {
    margin-left: -30px;
    margin-right: -30px
  }
  .row-sm-60>div {
    padding-left: 30px;
    padding-right: 30px
  }
  .row-sm-65 {
    margin-left: -32.5px;
    margin-right: -32.5px
  }
  .row-sm-65>div {
    padding-left: 32.5px;
    padding-right: 32.5px
  }
  .row-sm-70 {
    margin-left: -35px;
    margin-right: -35px
  }
  .row-sm-70>div {
    padding-left: 35px;
    padding-right: 35px
  }
  .row-sm-75 {
    margin-left: -37.5px;
    margin-right: -37.5px
  }
  .row-sm-75>div {
    padding-left: 37.5px;
    padding-right: 37.5px
  }
  .row-sm-80 {
    margin-left: -40px;
    margin-right: -40px
  }
  .row-sm-80>div {
    padding-left: 40px;
    padding-right: 40px
  }
  .row-sm-85 {
    margin-left: -42.5px;
    margin-right: -42.5px
  }
  .row-sm-85>div {
    padding-left: 42.5px;
    padding-right: 42.5px
  }
  .row-sm-90 {
    margin-left: -45px;
    margin-right: -45px
  }
  .row-sm-90>div {
    padding-left: 45px;
    padding-right: 45px
  }
  .row-sm-95 {
    margin-left: -47.5px;
    margin-right: -47.5px
  }
  .row-sm-95>div {
    padding-left: 47.5px;
    padding-right: 47.5px
  }
  .row-sm-100 {
    margin-left: -50px;
    margin-right: -50px
  }
  .row-sm-100>div {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media screen and (min-width:992px) {
  .row-md-0 {
    margin-left: 0;
    margin-right: 0
  }
  .row-md-0>div {
    padding-left: 0;
    padding-right: 0
  }
  .row-md-5 {
    margin-left: -2.5px;
    margin-right: -2.5px
  }
  .row-md-5>div {
    padding-left: 2.5px;
    padding-right: 2.5px
  }
  .row-md-10 {
    margin-left: -5px;
    margin-right: -5px
  }
  .row-md-10>div {
    padding-left: 5px;
    padding-right: 5px
  }
  .row-md-15 {
    margin-left: -7.5px;
    margin-right: -7.5px
  }
  .row-md-15>div {
    padding-left: 7.5px;
    padding-right: 7.5px
  }
  .row-md-20 {
    margin-left: -10px;
    margin-right: -10px
  }
  .row-md-20>div {
    padding-left: 10px;
    padding-right: 10px
  }
  .row-md-25 {
    margin-left: -12.5px;
    margin-right: -12.5px
  }
  .row-md-25>div {
    padding-left: 12.5px;
    padding-right: 12.5px
  }
  .row-md-30 {
    margin-left: -15px;
    margin-right: -15px
  }
  .row-md-30>div {
    padding-left: 15px;
    padding-right: 15px
  }
  .row-md-35 {
    margin-left: -17.5px;
    margin-right: -17.5px
  }
  .row-md-35>div {
    padding-left: 17.5px;
    padding-right: 17.5px
  }
  .row-md-40 {
    margin-left: -20px;
    margin-right: -20px
  }
  .row-md-40>div {
    padding-left: 20px;
    padding-right: 20px
  }
  .row-md-45 {
    margin-left: -22.5px;
    margin-right: -22.5px
  }
  .row-md-45>div {
    padding-left: 22.5px;
    padding-right: 22.5px
  }
  .row-md-50 {
    margin-left: -25px;
    margin-right: -25px
  }
  .row-md-50>div {
    padding-left: 25px;
    padding-right: 25px
  }
  .row-md-55 {
    margin-left: -27.5px;
    margin-right: -27.5px
  }
  .row-md-55>div {
    padding-left: 27.5px;
    padding-right: 27.5px
  }
  .row-md-60 {
    margin-left: -30px;
    margin-right: -30px
  }
  .row-md-60>div {
    padding-left: 30px;
    padding-right: 30px
  }
  .row-md-65 {
    margin-left: -32.5px;
    margin-right: -32.5px
  }
  .row-md-65>div {
    padding-left: 32.5px;
    padding-right: 32.5px
  }
  .row-md-70 {
    margin-left: -35px;
    margin-right: -35px
  }
  .row-md-70>div {
    padding-left: 35px;
    padding-right: 35px
  }
  .row-md-75 {
    margin-left: -37.5px;
    margin-right: -37.5px
  }
  .row-md-75>div {
    padding-left: 37.5px;
    padding-right: 37.5px
  }
  .row-md-80 {
    margin-left: -40px;
    margin-right: -40px
  }
  .row-md-80>div {
    padding-left: 40px;
    padding-right: 40px
  }
  .row-md-85 {
    margin-left: -42.5px;
    margin-right: -42.5px
  }
  .row-md-85>div {
    padding-left: 42.5px;
    padding-right: 42.5px
  }
  .row-md-90 {
    margin-left: -45px;
    margin-right: -45px
  }
  .row-md-90>div {
    padding-left: 45px;
    padding-right: 45px
  }
  .row-md-95 {
    margin-left: -47.5px;
    margin-right: -47.5px
  }
  .row-md-95>div {
    padding-left: 47.5px;
    padding-right: 47.5px
  }
  .row-md-100 {
    margin-left: -50px;
    margin-right: -50px
  }
  .row-md-100>div {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media screen and (min-width:1280px) {
  .row-lg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .row-lg-0>div {
    padding-left: 0;
    padding-right: 0
  }
  .row-lg-5 {
    margin-left: -2.5px;
    margin-right: -2.5px
  }
  .row-lg-5>div {
    padding-left: 2.5px;
    padding-right: 2.5px
  }
  .row-lg-10 {
    margin-left: -5px;
    margin-right: -5px
  }
  .row-lg-10>div {
    padding-left: 5px;
    padding-right: 5px
  }
  .row-lg-15 {
    margin-left: -7.5px;
    margin-right: -7.5px
  }
  .row-lg-15>div {
    padding-left: 7.5px;
    padding-right: 7.5px
  }
  .row-lg-20 {
    margin-left: -10px;
    margin-right: -10px
  }
  .row-lg-20>div {
    padding-left: 10px;
    padding-right: 10px
  }
  .row-lg-25 {
    margin-left: -12.5px;
    margin-right: -12.5px
  }
  .row-lg-25>div {
    padding-left: 12.5px;
    padding-right: 12.5px
  }
  .row-lg-30 {
    margin-left: -15px;
    margin-right: -15px
  }
  .row-lg-30>div {
    padding-left: 15px;
    padding-right: 15px
  }
  .row-lg-35 {
    margin-left: -17.5px;
    margin-right: -17.5px
  }
  .row-lg-35>div {
    padding-left: 17.5px;
    padding-right: 17.5px
  }
  .row-lg-40 {
    margin-left: -20px;
    margin-right: -20px
  }
  .row-lg-40>div {
    padding-left: 20px;
    padding-right: 20px
  }
  .row-lg-45 {
    margin-left: -22.5px;
    margin-right: -22.5px
  }
  .row-lg-45>div {
    padding-left: 22.5px;
    padding-right: 22.5px
  }
  .row-lg-50 {
    margin-left: -25px;
    margin-right: -25px
  }
  .row-lg-50>div {
    padding-left: 25px;
    padding-right: 25px
  }
  .row-lg-55 {
    margin-left: -27.5px;
    margin-right: -27.5px
  }
  .row-lg-55>div {
    padding-left: 27.5px;
    padding-right: 27.5px
  }
  .row-lg-60 {
    margin-left: -30px;
    margin-right: -30px
  }
  .row-lg-60>div {
    padding-left: 30px;
    padding-right: 30px
  }
  .row-lg-65 {
    margin-left: -32.5px;
    margin-right: -32.5px
  }
  .row-lg-65>div {
    padding-left: 32.5px;
    padding-right: 32.5px
  }
  .row-lg-70 {
    margin-left: -35px;
    margin-right: -35px
  }
  .row-lg-70>div {
    padding-left: 35px;
    padding-right: 35px
  }
  .row-lg-75 {
    margin-left: -37.5px;
    margin-right: -37.5px
  }
  .row-lg-75>div {
    padding-left: 37.5px;
    padding-right: 37.5px
  }
  .row-lg-80 {
    margin-left: -40px;
    margin-right: -40px
  }
  .row-lg-80>div {
    padding-left: 40px;
    padding-right: 40px
  }
  .row-lg-85 {
    margin-left: -42.5px;
    margin-right: -42.5px
  }
  .row-lg-85>div {
    padding-left: 42.5px;
    padding-right: 42.5px
  }
  .row-lg-90 {
    margin-left: -45px;
    margin-right: -45px
  }
  .row-lg-90>div {
    padding-left: 45px;
    padding-right: 45px
  }
  .row-lg-95 {
    margin-left: -47.5px;
    margin-right: -47.5px
  }
  .row-lg-95>div {
    padding-left: 47.5px;
    padding-right: 47.5px
  }
  .row-lg-100 {
    margin-left: -50px;
    margin-right: -50px
  }
  .row-lg-100>div {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media screen and (min-width:1440px) {
  .row-xlg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .row-xlg-0>div {
    padding-left: 0;
    padding-right: 0
  }
  .row-xlg-5 {
    margin-left: -2.5px;
    margin-right: -2.5px
  }
  .row-xlg-5>div {
    padding-left: 2.5px;
    padding-right: 2.5px
  }
  .row-xlg-10 {
    margin-left: -5px;
    margin-right: -5px
  }
  .row-xlg-10>div {
    padding-left: 5px;
    padding-right: 5px
  }
  .row-xlg-15 {
    margin-left: -7.5px;
    margin-right: -7.5px
  }
  .row-xlg-15>div {
    padding-left: 7.5px;
    padding-right: 7.5px
  }
  .row-xlg-20 {
    margin-left: -10px;
    margin-right: -10px
  }
  .row-xlg-20>div {
    padding-left: 10px;
    padding-right: 10px
  }
  .row-xlg-25 {
    margin-left: -12.5px;
    margin-right: -12.5px
  }
  .row-xlg-25>div {
    padding-left: 12.5px;
    padding-right: 12.5px
  }
  .row-xlg-30 {
    margin-left: -15px;
    margin-right: -15px
  }
  .row-xlg-30>div {
    padding-left: 15px;
    padding-right: 15px
  }
  .row-xlg-35 {
    margin-left: -17.5px;
    margin-right: -17.5px
  }
  .row-xlg-35>div {
    padding-left: 17.5px;
    padding-right: 17.5px
  }
  .row-xlg-40 {
    margin-left: -20px;
    margin-right: -20px
  }
  .row-xlg-40>div {
    padding-left: 20px;
    padding-right: 20px
  }
  .row-xlg-45 {
    margin-left: -22.5px;
    margin-right: -22.5px
  }
  .row-xlg-45>div {
    padding-left: 22.5px;
    padding-right: 22.5px
  }
  .row-xlg-50 {
    margin-left: -25px;
    margin-right: -25px
  }
  .row-xlg-50>div {
    padding-left: 25px;
    padding-right: 25px
  }
  .row-xlg-55 {
    margin-left: -27.5px;
    margin-right: -27.5px
  }
  .row-xlg-55>div {
    padding-left: 27.5px;
    padding-right: 27.5px
  }
  .row-xlg-60 {
    margin-left: -30px;
    margin-right: -30px
  }
  .row-xlg-60>div {
    padding-left: 30px;
    padding-right: 30px
  }
  .row-xlg-65 {
    margin-left: -32.5px;
    margin-right: -32.5px
  }
  .row-xlg-65>div {
    padding-left: 32.5px;
    padding-right: 32.5px
  }
  .row-xlg-70 {
    margin-left: -35px;
    margin-right: -35px
  }
  .row-xlg-70>div {
    padding-left: 35px;
    padding-right: 35px
  }
  .row-xlg-75 {
    margin-left: -37.5px;
    margin-right: -37.5px
  }
  .row-xlg-75>div {
    padding-left: 37.5px;
    padding-right: 37.5px
  }
  .row-xlg-80 {
    margin-left: -40px;
    margin-right: -40px
  }
  .row-xlg-80>div {
    padding-left: 40px;
    padding-right: 40px
  }
  .row-xlg-85 {
    margin-left: -42.5px;
    margin-right: -42.5px
  }
  .row-xlg-85>div {
    padding-left: 42.5px;
    padding-right: 42.5px
  }
  .row-xlg-90 {
    margin-left: -45px;
    margin-right: -45px
  }
  .row-xlg-90>div {
    padding-left: 45px;
    padding-right: 45px
  }
  .row-xlg-95 {
    margin-left: -47.5px;
    margin-right: -47.5px
  }
  .row-xlg-95>div {
    padding-left: 47.5px;
    padding-right: 47.5px
  }
  .row-xlg-100 {
    margin-left: -50px;
    margin-right: -50px
  }
  .row-xlg-100>div {
    padding-left: 50px;
    padding-right: 50px
  }
}

@media screen and (min-width:1680px) {
  .row-xxlg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .row-xxlg-0>div {
    padding-left: 0;
    padding-right: 0
  }
  .row-xxlg-5 {
    margin-left: -2.5px;
    margin-right: -2.5px
  }
  .row-xxlg-5>div {
    padding-left: 2.5px;
    padding-right: 2.5px
  }
  .row-xxlg-10 {
    margin-left: -5px;
    margin-right: -5px
  }
  .row-xxlg-10>div {
    padding-left: 5px;
    padding-right: 5px
  }
  .row-xxlg-15 {
    margin-left: -7.5px;
    margin-right: -7.5px
  }
  .row-xxlg-15>div {
    padding-left: 7.5px;
    padding-right: 7.5px
  }
  .row-xxlg-20 {
    margin-left: -10px;
    margin-right: -10px
  }
  .row-xxlg-20>div {
    padding-left: 10px;
    padding-right: 10px
  }
  .row-xxlg-25 {
    margin-left: -12.5px;
    margin-right: -12.5px
  }
  .row-xxlg-25>div {
    padding-left: 12.5px;
    padding-right: 12.5px
  }
  .row-xxlg-30 {
    margin-left: -15px;
    margin-right: -15px
  }
  .row-xxlg-30>div {
    padding-left: 15px;
    padding-right: 15px
  }
  .row-xxlg-35 {
    margin-left: -17.5px;
    margin-right: -17.5px
  }
  .row-xxlg-35>div {
    padding-left: 17.5px;
    padding-right: 17.5px
  }
  .row-xxlg-40 {
    margin-left: -20px;
    margin-right: -20px
  }
  .row-xxlg-40>div {
    padding-left: 20px;
    padding-right: 20px
  }
  .row-xxlg-45 {
    margin-left: -22.5px;
    margin-right: -22.5px
  }
  .row-xxlg-45>div {
    padding-left: 22.5px;
    padding-right: 22.5px
  }
  .row-xxlg-50 {
    margin-left: -25px;
    margin-right: -25px
  }
  .row-xxlg-50>div {
    padding-left: 25px;
    padding-right: 25px
  }
  .row-xxlg-55 {
    margin-left: -27.5px;
    margin-right: -27.5px
  }
  .row-xxlg-55>div {
    padding-left: 27.5px;
    padding-right: 27.5px
  }
  .row-xxlg-60 {
    margin-left: -30px;
    margin-right: -30px
  }
  .row-xxlg-60>div {
    padding-left: 30px;
    padding-right: 30px
  }
  .row-xxlg-65 {
    margin-left: -32.5px;
    margin-right: -32.5px
  }
  .row-xxlg-65>div {
    padding-left: 32.5px;
    padding-right: 32.5px
  }
  .row-xxlg-70 {
    margin-left: -35px;
    margin-right: -35px
  }
  .row-xxlg-70>div {
    padding-left: 35px;
    padding-right: 35px
  }
  .row-xxlg-75 {
    margin-left: -37.5px;
    margin-right: -37.5px
  }
  .row-xxlg-75>div {
    padding-left: 37.5px;
    padding-right: 37.5px
  }
  .row-xxlg-80 {
    margin-left: -40px;
    margin-right: -40px
  }
  .row-xxlg-80>div {
    padding-left: 40px;
    padding-right: 40px
  }
  .row-xxlg-85 {
    margin-left: -42.5px;
    margin-right: -42.5px
  }
  .row-xxlg-85>div {
    padding-left: 42.5px;
    padding-right: 42.5px
  }
  .row-xxlg-90 {
    margin-left: -45px;
    margin-right: -45px
  }
  .row-xxlg-90>div {
    padding-left: 45px;
    padding-right: 45px
  }
  .row-xxlg-95 {
    margin-left: -47.5px;
    margin-right: -47.5px
  }
  .row-xxlg-95>div {
    padding-left: 47.5px;
    padding-right: 47.5px
  }
  .row-xxlg-100 {
    margin-left: -50px;
    margin-right: -50px
  }
  .row-xxlg-100>div {
    padding-left: 50px;
    padding-right: 50px
  }
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  position: relative;
  min-height: 1px;
  float: left
}

.col-xs-1 {
  width: 8.33333%
}

.col-xs-2 {
  width: 16.66667%
}

.col-xs-3 {
  width: 25%
}

.col-xs-4 {
  width: 33.33333%
}

.col-xs-5 {
  width: 41.66667%
}

.col-xs-6 {
  width: 50%
}

.col-xs-7 {
  width: 58.33333%
}

.col-xs-8 {
  width: 66.66667%
}

.col-xs-9 {
  width: 75%
}

.col-xs-10 {
  width: 83.33333%
}

.col-xs-11 {
  width: 91.66667%
}

.col-xs-12 {
  width: 100%
}

.col-xs-pull-1 {
  right: 8.33333%
}

.col-xs-pull-2 {
  right: 16.66667%
}

.col-xs-pull-3 {
  right: 25%
}

.col-xs-pull-4 {
  right: 33.33333%
}

.col-xs-pull-5 {
  right: 41.66667%
}

.col-xs-pull-6 {
  right: 50%
}

.col-xs-pull-7 {
  right: 58.33333%
}

.col-xs-pull-8 {
  right: 66.66667%
}

.col-xs-pull-9 {
  right: 75%
}

.col-xs-pull-10 {
  right: 83.33333%
}

.col-xs-pull-11 {
  right: 91.66667%
}

.col-xs-pull-12 {
  right: 100%
}

.col-xs-push-1 {
  left: 8.33333%
}

.col-xs-push-2 {
  left: 16.66667%
}

.col-xs-push-3 {
  left: 25%
}

.col-xs-push-4 {
  left: 33.33333%
}

.col-xs-push-5 {
  left: 41.66667%
}

.col-xs-push-6 {
  left: 50%
}

.col-xs-push-7 {
  left: 58.33333%
}

.col-xs-push-8 {
  left: 66.66667%
}

.col-xs-push-9 {
  left: 75%
}

.col-xs-push-10 {
  left: 83.33333%
}

.col-xs-push-11 {
  left: 91.66667%
}

.col-xs-push-12 {
  left: 100%
}

.col-xs-offset-1 {
  margin-left: 8.33333%
}

.col-xs-offset-2 {
  margin-left: 16.66667%
}

.col-xs-offset-3 {
  margin-left: 25%
}

.col-xs-offset-4 {
  margin-left: 33.33333%
}

.col-xs-offset-5 {
  margin-left: 41.66667%
}

.col-xs-offset-6 {
  margin-left: 50%
}

.col-xs-offset-7 {
  margin-left: 58.33333%
}

.col-xs-offset-8 {
  margin-left: 66.66667%
}

.col-xs-offset-9 {
  margin-left: 75%
}

.col-xs-offset-10 {
  margin-left: 83.33333%
}

.col-xs-offset-11 {
  margin-left: 91.66667%
}

.col-xs-offset-12 {
  margin-left: 100%
}

@media screen and (min-width:768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    position: relative;
    min-height: 1px;
    float: left
  }
  .col-sm-1 {
    width: 8.33333%
  }
  .col-sm-2 {
    width: 16.66667%
  }
  .col-sm-3 {
    width: 25%
  }
  .col-sm-4 {
    width: 33.33333%
  }
  .col-sm-5 {
    width: 41.66667%
  }
  .col-sm-6 {
    width: 50%
  }
  .col-sm-7 {
    width: 58.33333%
  }
  .col-sm-8 {
    width: 66.66667%
  }
  .col-sm-9 {
    width: 75%
  }
  .col-sm-10 {
    width: 83.33333%
  }
  .col-sm-11 {
    width: 91.66667%
  }
  .col-sm-12 {
    width: 100%
  }
  .col-sm-pull-1 {
    right: 8.33333%
  }
  .col-sm-pull-2 {
    right: 16.66667%
  }
  .col-sm-pull-3 {
    right: 25%
  }
  .col-sm-pull-4 {
    right: 33.33333%
  }
  .col-sm-pull-5 {
    right: 41.66667%
  }
  .col-sm-pull-6 {
    right: 50%
  }
  .col-sm-pull-7 {
    right: 58.33333%
  }
  .col-sm-pull-8 {
    right: 66.66667%
  }
  .col-sm-pull-9 {
    right: 75%
  }
  .col-sm-pull-10 {
    right: 83.33333%
  }
  .col-sm-pull-11 {
    right: 91.66667%
  }
  .col-sm-pull-12 {
    right: 100%
  }
  .col-sm-push-1 {
    left: 8.33333%
  }
  .col-sm-push-2 {
    left: 16.66667%
  }
  .col-sm-push-3 {
    left: 25%
  }
  .col-sm-push-4 {
    left: 33.33333%
  }
  .col-sm-push-5 {
    left: 41.66667%
  }
  .col-sm-push-6 {
    left: 50%
  }
  .col-sm-push-7 {
    left: 58.33333%
  }
  .col-sm-push-8 {
    left: 66.66667%
  }
  .col-sm-push-9 {
    left: 75%
  }
  .col-sm-push-10 {
    left: 83.33333%
  }
  .col-sm-push-11 {
    left: 91.66667%
  }
  .col-sm-push-12 {
    left: 100%
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%
  }
  .col-sm-offset-3 {
    margin-left: 25%
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%
  }
  .col-sm-offset-6 {
    margin-left: 50%
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%
  }
  .col-sm-offset-9 {
    margin-left: 75%
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%
  }
  .col-sm-offset-12 {
    margin-left: 100%
  }
}

@media screen and (min-width:992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    position: relative;
    min-height: 1px;
    float: left
  }
  .col-md-1 {
    width: 8.33333%
  }
  .col-md-2 {
    width: 16.66667%
  }
  .col-md-3 {
    width: 25%
  }
  .col-md-4 {
    width: 33.33333%
  }
  .col-md-5 {
    width: 41.66667%
  }
  .col-md-6 {
    width: 50%
  }
  .col-md-7 {
    width: 58.33333%
  }
  .col-md-8 {
    width: 66.66667%
  }
  .col-md-9 {
    width: 75%
  }
  .col-md-10 {
    width: 83.33333%
  }
  .col-md-11 {
    width: 91.66667%
  }
  .col-md-12 {
    width: 100%
  }
  .col-md-pull-1 {
    right: 8.33333%
  }
  .col-md-pull-2 {
    right: 16.66667%
  }
  .col-md-pull-3 {
    right: 25%
  }
  .col-md-pull-4 {
    right: 33.33333%
  }
  .col-md-pull-5 {
    right: 41.66667%
  }
  .col-md-pull-6 {
    right: 50%
  }
  .col-md-pull-7 {
    right: 58.33333%
  }
  .col-md-pull-8 {
    right: 66.66667%
  }
  .col-md-pull-9 {
    right: 75%
  }
  .col-md-pull-10 {
    right: 83.33333%
  }
  .col-md-pull-11 {
    right: 91.66667%
  }
  .col-md-pull-12 {
    right: 100%
  }
  .col-md-push-1 {
    left: 8.33333%
  }
  .col-md-push-2 {
    left: 16.66667%
  }
  .col-md-push-3 {
    left: 25%
  }
  .col-md-push-4 {
    left: 33.33333%
  }
  .col-md-push-5 {
    left: 41.66667%
  }
  .col-md-push-6 {
    left: 50%
  }
  .col-md-push-7 {
    left: 58.33333%
  }
  .col-md-push-8 {
    left: 66.66667%
  }
  .col-md-push-9 {
    left: 75%
  }
  .col-md-push-10 {
    left: 83.33333%
  }
  .col-md-push-11 {
    left: 91.66667%
  }
  .col-md-push-12 {
    left: 100%
  }
  .col-md-offset-1 {
    margin-left: 8.33333%
  }
  .col-md-offset-2 {
    margin-left: 16.66667%
  }
  .col-md-offset-3 {
    margin-left: 25%
  }
  .col-md-offset-4 {
    margin-left: 33.33333%
  }
  .col-md-offset-5 {
    margin-left: 41.66667%
  }
  .col-md-offset-6 {
    margin-left: 50%
  }
  .col-md-offset-7 {
    margin-left: 58.33333%
  }
  .col-md-offset-8 {
    margin-left: 66.66667%
  }
  .col-md-offset-9 {
    margin-left: 75%
  }
  .col-md-offset-10 {
    margin-left: 83.33333%
  }
  .col-md-offset-11 {
    margin-left: 91.66667%
  }
  .col-md-offset-12 {
    margin-left: 100%
  }
}

@media screen and (min-width:1280px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    position: relative;
    min-height: 1px;
    float: left
  }
  .col-lg-1 {
    width: 8.33333%
  }
  .col-lg-2 {
    width: 16.66667%
  }
  .col-lg-3 {
    width: 25%
  }
  .col-lg-4 {
    width: 33.33333%
  }
  .col-lg-5 {
    width: 41.66667%
  }
  .col-lg-6 {
    width: 50%
  }
  .col-lg-7 {
    width: 58.33333%
  }
  .col-lg-8 {
    width: 66.66667%
  }
  .col-lg-9 {
    width: 75%
  }
  .col-lg-10 {
    width: 83.33333%
  }
  .col-lg-11 {
    width: 91.66667%
  }
  .col-lg-12 {
    width: 100%
  }
  .col-lg-pull-1 {
    right: 8.33333%
  }
  .col-lg-pull-2 {
    right: 16.66667%
  }
  .col-lg-pull-3 {
    right: 25%
  }
  .col-lg-pull-4 {
    right: 33.33333%
  }
  .col-lg-pull-5 {
    right: 41.66667%
  }
  .col-lg-pull-6 {
    right: 50%
  }
  .col-lg-pull-7 {
    right: 58.33333%
  }
  .col-lg-pull-8 {
    right: 66.66667%
  }
  .col-lg-pull-9 {
    right: 75%
  }
  .col-lg-pull-10 {
    right: 83.33333%
  }
  .col-lg-pull-11 {
    right: 91.66667%
  }
  .col-lg-pull-12 {
    right: 100%
  }
  .col-lg-push-1 {
    left: 8.33333%
  }
  .col-lg-push-2 {
    left: 16.66667%
  }
  .col-lg-push-3 {
    left: 25%
  }
  .col-lg-push-4 {
    left: 33.33333%
  }
  .col-lg-push-5 {
    left: 41.66667%
  }
  .col-lg-push-6 {
    left: 50%
  }
  .col-lg-push-7 {
    left: 58.33333%
  }
  .col-lg-push-8 {
    left: 66.66667%
  }
  .col-lg-push-9 {
    left: 75%
  }
  .col-lg-push-10 {
    left: 83.33333%
  }
  .col-lg-push-11 {
    left: 91.66667%
  }
  .col-lg-push-12 {
    left: 100%
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%
  }
  .col-lg-offset-3 {
    margin-left: 25%
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%
  }
  .col-lg-offset-6 {
    margin-left: 50%
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%
  }
  .col-lg-offset-9 {
    margin-left: 75%
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%
  }
  .col-lg-offset-12 {
    margin-left: 100%
  }
}

@media screen and (min-width:1440px) {
  .col-xlg-1, .col-xlg-2, .col-xlg-3, .col-xlg-4, .col-xlg-5, .col-xlg-6, .col-xlg-7, .col-xlg-8, .col-xlg-9, .col-xlg-10, .col-xlg-11, .col-xlg-12 {
    position: relative;
    min-height: 1px;
    float: left
  }
  .col-xlg-1 {
    width: 8.33333%
  }
  .col-xlg-2 {
    width: 16.66667%
  }
  .col-xlg-3 {
    width: 25%
  }
  .col-xlg-4 {
    width: 33.33333%
  }
  .col-xlg-5 {
    width: 41.66667%
  }
  .col-xlg-6 {
    width: 50%
  }
  .col-xlg-7 {
    width: 58.33333%
  }
  .col-xlg-8 {
    width: 66.66667%
  }
  .col-xlg-9 {
    width: 75%
  }
  .col-xlg-10 {
    width: 83.33333%
  }
  .col-xlg-11 {
    width: 91.66667%
  }
  .col-xlg-12 {
    width: 100%
  }
  .col-xlg-pull-1 {
    right: 8.33333%
  }
  .col-xlg-pull-2 {
    right: 16.66667%
  }
  .col-xlg-pull-3 {
    right: 25%
  }
  .col-xlg-pull-4 {
    right: 33.33333%
  }
  .col-xlg-pull-5 {
    right: 41.66667%
  }
  .col-xlg-pull-6 {
    right: 50%
  }
  .col-xlg-pull-7 {
    right: 58.33333%
  }
  .col-xlg-pull-8 {
    right: 66.66667%
  }
  .col-xlg-pull-9 {
    right: 75%
  }
  .col-xlg-pull-10 {
    right: 83.33333%
  }
  .col-xlg-pull-11 {
    right: 91.66667%
  }
  .col-xlg-pull-12 {
    right: 100%
  }
  .col-xlg-push-1 {
    left: 8.33333%
  }
  .col-xlg-push-2 {
    left: 16.66667%
  }
  .col-xlg-push-3 {
    left: 25%
  }
  .col-xlg-push-4 {
    left: 33.33333%
  }
  .col-xlg-push-5 {
    left: 41.66667%
  }
  .col-xlg-push-6 {
    left: 50%
  }
  .col-xlg-push-7 {
    left: 58.33333%
  }
  .col-xlg-push-8 {
    left: 66.66667%
  }
  .col-xlg-push-9 {
    left: 75%
  }
  .col-xlg-push-10 {
    left: 83.33333%
  }
  .col-xlg-push-11 {
    left: 91.66667%
  }
  .col-xlg-push-12 {
    left: 100%
  }
  .col-xlg-offset-1 {
    margin-left: 8.33333%
  }
  .col-xlg-offset-2 {
    margin-left: 16.66667%
  }
  .col-xlg-offset-3 {
    margin-left: 25%
  }
  .col-xlg-offset-4 {
    margin-left: 33.33333%
  }
  .col-xlg-offset-5 {
    margin-left: 41.66667%
  }
  .col-xlg-offset-6 {
    margin-left: 50%
  }
  .col-xlg-offset-7 {
    margin-left: 58.33333%
  }
  .col-xlg-offset-8 {
    margin-left: 66.66667%
  }
  .col-xlg-offset-9 {
    margin-left: 75%
  }
  .col-xlg-offset-10 {
    margin-left: 83.33333%
  }
  .col-xlg-offset-11 {
    margin-left: 91.66667%
  }
  .col-xlg-offset-12 {
    margin-left: 100%
  }
}

@media screen and (min-width:1680px) {
  .col-xxlg-1, .col-xxlg-2, .col-xxlg-3, .col-xxlg-4, .col-xxlg-5, .col-xxlg-6, .col-xxlg-7, .col-xxlg-8, .col-xxlg-9, .col-xxlg-10, .col-xxlg-11, .col-xxlg-12 {
    position: relative;
    min-height: 1px;
    float: left
  }
  .col-xxlg-1 {
    width: 8.33333%
  }
  .col-xxlg-2 {
    width: 16.66667%
  }
  .col-xxlg-3 {
    width: 25%
  }
  .col-xxlg-4 {
    width: 33.33333%
  }
  .col-xxlg-5 {
    width: 41.66667%
  }
  .col-xxlg-6 {
    width: 50%
  }
  .col-xxlg-7 {
    width: 58.33333%
  }
  .col-xxlg-8 {
    width: 66.66667%
  }
  .col-xxlg-9 {
    width: 75%
  }
  .col-xxlg-10 {
    width: 83.33333%
  }
  .col-xxlg-11 {
    width: 91.66667%
  }
  .col-xxlg-12 {
    width: 100%
  }
  .col-xxlg-pull-1 {
    right: 8.33333%
  }
  .col-xxlg-pull-2 {
    right: 16.66667%
  }
  .col-xxlg-pull-3 {
    right: 25%
  }
  .col-xxlg-pull-4 {
    right: 33.33333%
  }
  .col-xxlg-pull-5 {
    right: 41.66667%
  }
  .col-xxlg-pull-6 {
    right: 50%
  }
  .col-xxlg-pull-7 {
    right: 58.33333%
  }
  .col-xxlg-pull-8 {
    right: 66.66667%
  }
  .col-xxlg-pull-9 {
    right: 75%
  }
  .col-xxlg-pull-10 {
    right: 83.33333%
  }
  .col-xxlg-pull-11 {
    right: 91.66667%
  }
  .col-xxlg-pull-12 {
    right: 100%
  }
  .col-xxlg-push-1 {
    left: 8.33333%
  }
  .col-xxlg-push-2 {
    left: 16.66667%
  }
  .col-xxlg-push-3 {
    left: 25%
  }
  .col-xxlg-push-4 {
    left: 33.33333%
  }
  .col-xxlg-push-5 {
    left: 41.66667%
  }
  .col-xxlg-push-6 {
    left: 50%
  }
  .col-xxlg-push-7 {
    left: 58.33333%
  }
  .col-xxlg-push-8 {
    left: 66.66667%
  }
  .col-xxlg-push-9 {
    left: 75%
  }
  .col-xxlg-push-10 {
    left: 83.33333%
  }
  .col-xxlg-push-11 {
    left: 91.66667%
  }
  .col-xxlg-push-12 {
    left: 100%
  }
  .col-xxlg-offset-1 {
    margin-left: 8.33333%
  }
  .col-xxlg-offset-2 {
    margin-left: 16.66667%
  }
  .col-xxlg-offset-3 {
    margin-left: 25%
  }
  .col-xxlg-offset-4 {
    margin-left: 33.33333%
  }
  .col-xxlg-offset-5 {
    margin-left: 41.66667%
  }
  .col-xxlg-offset-6 {
    margin-left: 50%
  }
  .col-xxlg-offset-7 {
    margin-left: 58.33333%
  }
  .col-xxlg-offset-8 {
    margin-left: 66.66667%
  }
  .col-xxlg-offset-9 {
    margin-left: 75%
  }
  .col-xxlg-offset-10 {
    margin-left: 83.33333%
  }
  .col-xxlg-offset-11 {
    margin-left: 91.66667%
  }
  .col-xxlg-offset-12 {
    margin-left: 100%
  }
}

.m-xs-0 {
  margin: 0
}

.mtb-xs-0 {
  margin-top: 0;
  margin-bottom: 0
}

.mlr-xs-0 {
  margin-left: 0;
  margin-right: 0
}

.mt-xs-0 {
  margin-top: 0
}

.mr-xs-0 {
  margin-right: 0
}

.mb-xs-0 {
  margin-bottom: 0
}

.ml-xs-0 {
  margin-left: 0
}

.m-xs-5 {
  margin: 5px
}

.mtb-xs-5 {
  margin-top: 5px;
  margin-bottom: 5px
}

.mlr-xs-5 {
  margin-left: 5px;
  margin-right: 5px
}

.mt-xs-5 {
  margin-top: 5px
}

.mr-xs-5 {
  margin-right: 5px
}

.mb-xs-5 {
  margin-bottom: 5px
}

.ml-xs-5 {
  margin-left: 5px
}

.m-xs-10 {
  margin: 10px
}

.mtb-xs-10 {
  margin-top: 10px;
  margin-bottom: 10px
}

.mlr-xs-10 {
  margin-left: 10px;
  margin-right: 10px
}

.mt-xs-10 {
  margin-top: 10px
}

.mr-xs-10 {
  margin-right: 10px
}

.mb-xs-10 {
  margin-bottom: 10px
}

.ml-xs-10 {
  margin-left: 10px
}

.m-xs-15 {
  margin: 15px
}

.mtb-xs-15 {
  margin-top: 15px;
  margin-bottom: 15px
}

.mlr-xs-15 {
  margin-left: 15px;
  margin-right: 15px
}

.mt-xs-15 {
  margin-top: 15px
}

.mr-xs-15 {
  margin-right: 15px
}

.mb-xs-15 {
  margin-bottom: 15px
}

.ml-xs-15 {
  margin-left: 15px
}

.m-xs-20 {
  margin: 20px
}

.mtb-xs-20 {
  margin-top: 20px;
  margin-bottom: 20px
}

.mlr-xs-20 {
  margin-left: 20px;
  margin-right: 20px
}

.mt-xs-20 {
  margin-top: 20px
}

.mr-xs-20 {
  margin-right: 20px
}

.mb-xs-20 {
  margin-bottom: 20px
}

.ml-xs-20 {
  margin-left: 20px
}

.m-xs-25 {
  margin: 25px
}

.mtb-xs-25 {
  margin-top: 25px;
  margin-bottom: 25px
}

.mlr-xs-25 {
  margin-left: 25px;
  margin-right: 25px
}

.mt-xs-25 {
  margin-top: 25px
}

.mr-xs-25 {
  margin-right: 25px
}

.mb-xs-25 {
  margin-bottom: 25px
}

.ml-xs-25 {
  margin-left: 25px
}

.m-xs-30 {
  margin: 30px
}

.mtb-xs-30 {
  margin-top: 30px;
  margin-bottom: 30px
}

.mlr-xs-30 {
  margin-left: 30px;
  margin-right: 30px
}

.mt-xs-30 {
  margin-top: 30px
}

.mr-xs-30 {
  margin-right: 30px
}

.mb-xs-30 {
  margin-bottom: 30px
}

.ml-xs-30 {
  margin-left: 30px
}

.m-xs-35 {
  margin: 35px
}

.mtb-xs-35 {
  margin-top: 35px;
  margin-bottom: 35px
}

.mlr-xs-35 {
  margin-left: 35px;
  margin-right: 35px
}

.mt-xs-35 {
  margin-top: 35px
}

.mr-xs-35 {
  margin-right: 35px
}

.mb-xs-35 {
  margin-bottom: 35px
}

.ml-xs-35 {
  margin-left: 35px
}

.m-xs-40 {
  margin: 40px
}

.mtb-xs-40 {
  margin-top: 40px;
  margin-bottom: 40px
}

.mlr-xs-40 {
  margin-left: 40px;
  margin-right: 40px
}

.mt-xs-40 {
  margin-top: 40px
}

.mr-xs-40 {
  margin-right: 40px
}

.mb-xs-40 {
  margin-bottom: 40px
}

.ml-xs-40 {
  margin-left: 40px
}

.m-xs-45 {
  margin: 45px
}

.mtb-xs-45 {
  margin-top: 45px;
  margin-bottom: 45px
}

.mlr-xs-45 {
  margin-left: 45px;
  margin-right: 45px
}

.mt-xs-45 {
  margin-top: 45px
}

.mr-xs-45 {
  margin-right: 45px
}

.mb-xs-45 {
  margin-bottom: 45px
}

.ml-xs-45 {
  margin-left: 45px
}

.m-xs-50 {
  margin: 50px
}

.mtb-xs-50 {
  margin-top: 50px;
  margin-bottom: 50px
}

.mlr-xs-50 {
  margin-left: 50px;
  margin-right: 50px
}

.mt-xs-50 {
  margin-top: 50px
}

.mr-xs-50 {
  margin-right: 50px
}

.mb-xs-50 {
  margin-bottom: 50px
}

.ml-xs-50 {
  margin-left: 50px
}

.m-xs-55 {
  margin: 55px
}

.mtb-xs-55 {
  margin-top: 55px;
  margin-bottom: 55px
}

.mlr-xs-55 {
  margin-left: 55px;
  margin-right: 55px
}

.mt-xs-55 {
  margin-top: 55px
}

.mr-xs-55 {
  margin-right: 55px
}

.mb-xs-55 {
  margin-bottom: 55px
}

.ml-xs-55 {
  margin-left: 55px
}

.m-xs-60 {
  margin: 60px
}

.mtb-xs-60 {
  margin-top: 60px;
  margin-bottom: 60px
}

.mlr-xs-60 {
  margin-left: 60px;
  margin-right: 60px
}

.mt-xs-60 {
  margin-top: 60px
}

.mr-xs-60 {
  margin-right: 60px
}

.mb-xs-60 {
  margin-bottom: 60px
}

.ml-xs-60 {
  margin-left: 60px
}

.m-xs-65 {
  margin: 65px
}

.mtb-xs-65 {
  margin-top: 65px;
  margin-bottom: 65px
}

.mlr-xs-65 {
  margin-left: 65px;
  margin-right: 65px
}

.mt-xs-65 {
  margin-top: 65px
}

.mr-xs-65 {
  margin-right: 65px
}

.mb-xs-65 {
  margin-bottom: 65px
}

.ml-xs-65 {
  margin-left: 65px
}

.m-xs-70 {
  margin: 70px
}

.mtb-xs-70 {
  margin-top: 70px;
  margin-bottom: 70px
}

.mlr-xs-70 {
  margin-left: 70px;
  margin-right: 70px
}

.mt-xs-70 {
  margin-top: 70px
}

.mr-xs-70 {
  margin-right: 70px
}

.mb-xs-70 {
  margin-bottom: 70px
}

.ml-xs-70 {
  margin-left: 70px
}

.m-xs-75 {
  margin: 75px
}

.mtb-xs-75 {
  margin-top: 75px;
  margin-bottom: 75px
}

.mlr-xs-75 {
  margin-left: 75px;
  margin-right: 75px
}

.mt-xs-75 {
  margin-top: 75px
}

.mr-xs-75 {
  margin-right: 75px
}

.mb-xs-75 {
  margin-bottom: 75px
}

.ml-xs-75 {
  margin-left: 75px
}

.m-xs-80 {
  margin: 80px
}

.mtb-xs-80 {
  margin-top: 80px;
  margin-bottom: 80px
}

.mlr-xs-80 {
  margin-left: 80px;
  margin-right: 80px
}

.mt-xs-80 {
  margin-top: 80px
}

.mr-xs-80 {
  margin-right: 80px
}

.mb-xs-80 {
  margin-bottom: 80px
}

.ml-xs-80 {
  margin-left: 80px
}

.m-xs-85 {
  margin: 85px
}

.mtb-xs-85 {
  margin-top: 85px;
  margin-bottom: 85px
}

.mlr-xs-85 {
  margin-left: 85px;
  margin-right: 85px
}

.mt-xs-85 {
  margin-top: 85px
}

.mr-xs-85 {
  margin-right: 85px
}

.mb-xs-85 {
  margin-bottom: 85px
}

.ml-xs-85 {
  margin-left: 85px
}

.m-xs-90 {
  margin: 90px
}

.mtb-xs-90 {
  margin-top: 90px;
  margin-bottom: 90px
}

.mlr-xs-90 {
  margin-left: 90px;
  margin-right: 90px
}

.mt-xs-90 {
  margin-top: 90px
}

.mr-xs-90 {
  margin-right: 90px
}

.mb-xs-90 {
  margin-bottom: 90px
}

.ml-xs-90 {
  margin-left: 90px
}

.m-xs-95 {
  margin: 95px
}

.mtb-xs-95 {
  margin-top: 95px;
  margin-bottom: 95px
}

.mlr-xs-95 {
  margin-left: 95px;
  margin-right: 95px
}

.mt-xs-95 {
  margin-top: 95px
}

.mr-xs-95 {
  margin-right: 95px
}

.mb-xs-95 {
  margin-bottom: 95px
}

.ml-xs-95 {
  margin-left: 95px
}

.m-xs-100 {
  margin: 100px
}

.mtb-xs-100 {
  margin-top: 100px;
  margin-bottom: 100px
}

.mlr-xs-100 {
  margin-left: 100px;
  margin-right: 100px
}

.mt-xs-100 {
  margin-top: 100px
}

.mr-xs-100 {
  margin-right: 100px
}

.mb-xs-100 {
  margin-bottom: 100px
}

.ml-xs-100 {
  margin-left: 100px
}

.p-xs-0 {
  padding: 0
}

.ptb-xs-0 {
  padding-top: 0;
  padding-bottom: 0
}

.plr-xs-0 {
  padding-left: 0;
  padding-right: 0
}

.pt-xs-0 {
  padding-top: 0
}

.pr-xs-0 {
  padding-right: 0
}

.pb-xs-0 {
  padding-bottom: 0
}

.pl-xs-0 {
  padding-left: 0
}

.p-xs-5 {
  padding: 5px
}

.ptb-xs-5 {
  padding-top: 5px;
  padding-bottom: 5px
}

.plr-xs-5 {
  padding-left: 5px;
  padding-right: 5px
}

.pt-xs-5 {
  padding-top: 5px
}

.pr-xs-5 {
  padding-right: 5px
}

.pb-xs-5 {
  padding-bottom: 5px
}

.pl-xs-5 {
  padding-left: 5px
}

.p-xs-10 {
  padding: 10px
}

.ptb-xs-10 {
  padding-top: 10px;
  padding-bottom: 10px
}

.plr-xs-10 {
  padding-left: 10px;
  padding-right: 10px
}

.pt-xs-10 {
  padding-top: 10px
}

.pr-xs-10 {
  padding-right: 10px
}

.pb-xs-10 {
  padding-bottom: 10px
}

.pl-xs-10 {
  padding-left: 10px
}

.p-xs-15 {
  padding: 15px
}

.ptb-xs-15 {
  padding-top: 15px;
  padding-bottom: 15px
}

.plr-xs-15 {
  padding-left: 15px;
  padding-right: 15px
}

.pt-xs-15 {
  padding-top: 15px
}

.pr-xs-15 {
  padding-right: 15px
}

.pb-xs-15 {
  padding-bottom: 15px
}

.pl-xs-15 {
  padding-left: 15px
}

.p-xs-20 {
  padding: 20px
}

.ptb-xs-20 {
  padding-top: 20px;
  padding-bottom: 20px
}

.plr-xs-20 {
  padding-left: 20px;
  padding-right: 20px
}

.pt-xs-20 {
  padding-top: 20px
}

.pr-xs-20 {
  padding-right: 20px
}

.pb-xs-20 {
  padding-bottom: 20px
}

.pl-xs-20 {
  padding-left: 20px
}

.p-xs-25 {
  padding: 25px
}

.ptb-xs-25 {
  padding-top: 25px;
  padding-bottom: 25px
}

.plr-xs-25 {
  padding-left: 25px;
  padding-right: 25px
}

.pt-xs-25 {
  padding-top: 25px
}

.pr-xs-25 {
  padding-right: 25px
}

.pb-xs-25 {
  padding-bottom: 25px
}

.pl-xs-25 {
  padding-left: 25px
}

.p-xs-30 {
  padding: 30px
}

.ptb-xs-30 {
  padding-top: 30px;
  padding-bottom: 30px
}

.plr-xs-30 {
  padding-left: 30px;
  padding-right: 30px
}

.pt-xs-30 {
  padding-top: 30px
}

.pr-xs-30 {
  padding-right: 30px
}

.pb-xs-30 {
  padding-bottom: 30px
}

.pl-xs-30 {
  padding-left: 30px
}

.p-xs-35 {
  padding: 35px
}

.ptb-xs-35 {
  padding-top: 35px;
  padding-bottom: 35px
}

.plr-xs-35 {
  padding-left: 35px;
  padding-right: 35px
}

.pt-xs-35 {
  padding-top: 35px
}

.pr-xs-35 {
  padding-right: 35px
}

.pb-xs-35 {
  padding-bottom: 35px
}

.pl-xs-35 {
  padding-left: 35px
}

.p-xs-40 {
  padding: 40px
}

.ptb-xs-40 {
  padding-top: 40px;
  padding-bottom: 40px
}

.plr-xs-40 {
  padding-left: 40px;
  padding-right: 40px
}

.pt-xs-40 {
  padding-top: 40px
}

.pr-xs-40 {
  padding-right: 40px
}

.pb-xs-40 {
  padding-bottom: 40px
}

.pl-xs-40 {
  padding-left: 40px
}

.p-xs-45 {
  padding: 45px
}

.ptb-xs-45 {
  padding-top: 45px;
  padding-bottom: 45px
}

.plr-xs-45 {
  padding-left: 45px;
  padding-right: 45px
}

.pt-xs-45 {
  padding-top: 45px
}

.pr-xs-45 {
  padding-right: 45px
}

.pb-xs-45 {
  padding-bottom: 45px
}

.pl-xs-45 {
  padding-left: 45px
}

.p-xs-50 {
  padding: 50px
}

.ptb-xs-50 {
  padding-top: 50px;
  padding-bottom: 50px
}

.plr-xs-50 {
  padding-left: 50px;
  padding-right: 50px
}

.pt-xs-50 {
  padding-top: 50px
}

.pr-xs-50 {
  padding-right: 50px
}

.pb-xs-50 {
  padding-bottom: 50px
}

.pl-xs-50 {
  padding-left: 50px
}

.p-xs-55 {
  padding: 55px
}

.ptb-xs-55 {
  padding-top: 55px;
  padding-bottom: 55px
}

.plr-xs-55 {
  padding-left: 55px;
  padding-right: 55px
}

.pt-xs-55 {
  padding-top: 55px
}

.pr-xs-55 {
  padding-right: 55px
}

.pb-xs-55 {
  padding-bottom: 55px
}

.pl-xs-55 {
  padding-left: 55px
}

.p-xs-60 {
  padding: 60px
}

.ptb-xs-60 {
  padding-top: 60px;
  padding-bottom: 60px
}

.plr-xs-60 {
  padding-left: 60px;
  padding-right: 60px
}

.pt-xs-60 {
  padding-top: 60px
}

.pr-xs-60 {
  padding-right: 60px
}

.pb-xs-60 {
  padding-bottom: 60px
}

.pl-xs-60 {
  padding-left: 60px
}

.p-xs-65 {
  padding: 65px
}

.ptb-xs-65 {
  padding-top: 65px;
  padding-bottom: 65px
}

.plr-xs-65 {
  padding-left: 65px;
  padding-right: 65px
}

.pt-xs-65 {
  padding-top: 65px
}

.pr-xs-65 {
  padding-right: 65px
}

.pb-xs-65 {
  padding-bottom: 65px
}

.pl-xs-65 {
  padding-left: 65px
}

.p-xs-70 {
  padding: 70px
}

.ptb-xs-70 {
  padding-top: 70px;
  padding-bottom: 70px
}

.plr-xs-70 {
  padding-left: 70px;
  padding-right: 70px
}

.pt-xs-70 {
  padding-top: 70px
}

.pr-xs-70 {
  padding-right: 70px
}

.pb-xs-70 {
  padding-bottom: 70px
}

.pl-xs-70 {
  padding-left: 70px
}

.p-xs-75 {
  padding: 75px
}

.ptb-xs-75 {
  padding-top: 75px;
  padding-bottom: 75px
}

.plr-xs-75 {
  padding-left: 75px;
  padding-right: 75px
}

.pt-xs-75 {
  padding-top: 75px
}

.pr-xs-75 {
  padding-right: 75px
}

.pb-xs-75 {
  padding-bottom: 75px
}

.pl-xs-75 {
  padding-left: 75px
}

.p-xs-80 {
  padding: 80px
}

.ptb-xs-80 {
  padding-top: 80px;
  padding-bottom: 80px
}

.plr-xs-80 {
  padding-left: 80px;
  padding-right: 80px
}

.pt-xs-80 {
  padding-top: 80px
}

.pr-xs-80 {
  padding-right: 80px
}

.pb-xs-80 {
  padding-bottom: 80px
}

.pl-xs-80 {
  padding-left: 80px
}

.p-xs-85 {
  padding: 85px
}

.ptb-xs-85 {
  padding-top: 85px;
  padding-bottom: 85px
}

.plr-xs-85 {
  padding-left: 85px;
  padding-right: 85px
}

.pt-xs-85 {
  padding-top: 85px
}

.pr-xs-85 {
  padding-right: 85px
}

.pb-xs-85 {
  padding-bottom: 85px
}

.pl-xs-85 {
  padding-left: 85px
}

.p-xs-90 {
  padding: 90px
}

.ptb-xs-90 {
  padding-top: 90px;
  padding-bottom: 90px
}

.plr-xs-90 {
  padding-left: 90px;
  padding-right: 90px
}

.pt-xs-90 {
  padding-top: 90px
}

.pr-xs-90 {
  padding-right: 90px
}

.pb-xs-90 {
  padding-bottom: 90px
}

.pl-xs-90 {
  padding-left: 90px
}

.p-xs-95 {
  padding: 95px
}

.ptb-xs-95 {
  padding-top: 95px;
  padding-bottom: 95px
}

.plr-xs-95 {
  padding-left: 95px;
  padding-right: 95px
}

.pt-xs-95 {
  padding-top: 95px
}

.pr-xs-95 {
  padding-right: 95px
}

.pb-xs-95 {
  padding-bottom: 95px
}

.pl-xs-95 {
  padding-left: 95px
}

.p-xs-100 {
  padding: 100px
}

.ptb-xs-100 {
  padding-top: 100px;
  padding-bottom: 100px
}

.plr-xs-100 {
  padding-left: 100px;
  padding-right: 100px
}

.pt-xs-100 {
  padding-top: 100px
}

.pr-xs-100 {
  padding-right: 100px
}

.pb-xs-100 {
  padding-bottom: 100px
}

.pl-xs-100 {
  padding-left: 100px
}

.fs-xs-12 {
  font-size: 12px
}

.fs-xs-14 {
  font-size: 14px
}

.fs-xs-16 {
  font-size: 16px
}

.fs-xs-18 {
  font-size: 18px
}

.fs-xs-20 {
  font-size: 20px
}

.fs-xs-22 {
  font-size: 22px
}

.fs-xs-24 {
  font-size: 24px
}

.fs-xs-26 {
  font-size: 26px
}

.fs-xs-28 {
  font-size: 28px
}

.fs-xs-30 {
  font-size: 30px
}

.fs-xs-32 {
  font-size: 32px
}

.fs-xs-34 {
  font-size: 34px
}

.fs-xs-36 {
  font-size: 36px
}

.fs-xs-38 {
  font-size: 38px
}

.fs-xs-40 {
  font-size: 40px
}

.fs-xs-42 {
  font-size: 42px
}

.fs-xs-44 {
  font-size: 44px
}

.fs-xs-46 {
  font-size: 46px
}

.fs-xs-48 {
  font-size: 48px
}

.fs-xs-50 {
  font-size: 50px
}

.fs-xs-52 {
  font-size: 52px
}

.fs-xs-54 {
  font-size: 54px
}

.fs-xs-56 {
  font-size: 56px
}

.fs-xs-58 {
  font-size: 58px
}

.fs-xs-60 {
  font-size: 60px
}

.fs-xs-62 {
  font-size: 62px
}

.fs-xs-64 {
  font-size: 64px
}

.fs-xs-66 {
  font-size: 66px
}

.fs-xs-68 {
  font-size: 68px
}

.fs-xs-70 {
  font-size: 70px
}

.fs-xs-72 {
  font-size: 72px
}

.fs-xs-74 {
  font-size: 74px
}

.fs-xs-76 {
  font-size: 76px
}

.fs-xs-78 {
  font-size: 78px
}

.fs-xs-80 {
  font-size: 80px
}

.fs-xs-82 {
  font-size: 82px
}

.fs-xs-84 {
  font-size: 84px
}

.fs-xs-86 {
  font-size: 86px
}

.fs-xs-88 {
  font-size: 88px
}

.fs-xs-90 {
  font-size: 90px
}

.fs-xs-92 {
  font-size: 92px
}

.fs-xs-94 {
  font-size: 94px
}

.fs-xs-96 {
  font-size: 96px
}

.fs-xs-98 {
  font-size: 98px
}

.fs-xs-100 {
  font-size: 100px
}

.lh-xs-10 {
  line-height: 1
}

.lh-xs-11 {
  line-height: 1.1
}

.lh-xs-12 {
  line-height: 1.2
}

.lh-xs-13 {
  line-height: 1.3
}

.lh-xs-14 {
  line-height: 1.4
}

.lh-xs-15 {
  line-height: 1.5
}

.lh-xs-16 {
  line-height: 1.6
}

.lh-xs-17 {
  line-height: 1.7
}

.lh-xs-18 {
  line-height: 1.8
}

.lh-xs-19 {
  line-height: 1.9
}

.lh-xs-20 {
  line-height: 2
}

@media screen and (min-width:768px) {
  .m-sm-0 {
    margin: 0
  }
  .mtb-sm-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  .mlr-sm-0 {
    margin-left: 0;
    margin-right: 0
  }
  .mt-sm-0 {
    margin-top: 0
  }
  .mr-sm-0 {
    margin-right: 0
  }
  .mb-sm-0 {
    margin-bottom: 0
  }
  .ml-sm-0 {
    margin-left: 0
  }
  .m-sm-5 {
    margin: 5px
  }
  .mtb-sm-5 {
    margin-top: 5px;
    margin-bottom: 5px
  }
  .mlr-sm-5 {
    margin-left: 5px;
    margin-right: 5px
  }
  .mt-sm-5 {
    margin-top: 5px
  }
  .mr-sm-5 {
    margin-right: 5px
  }
  .mb-sm-5 {
    margin-bottom: 5px
  }
  .ml-sm-5 {
    margin-left: 5px
  }
  .m-sm-10 {
    margin: 10px
  }
  .mtb-sm-10 {
    margin-top: 10px;
    margin-bottom: 10px
  }
  .mlr-sm-10 {
    margin-left: 10px;
    margin-right: 10px
  }
  .mt-sm-10 {
    margin-top: 10px
  }
  .mr-sm-10 {
    margin-right: 10px
  }
  .mb-sm-10 {
    margin-bottom: 10px
  }
  .ml-sm-10 {
    margin-left: 10px
  }
  .m-sm-15 {
    margin: 15px
  }
  .mtb-sm-15 {
    margin-top: 15px;
    margin-bottom: 15px
  }
  .mlr-sm-15 {
    margin-left: 15px;
    margin-right: 15px
  }
  .mt-sm-15 {
    margin-top: 15px
  }
  .mr-sm-15 {
    margin-right: 15px
  }
  .mb-sm-15 {
    margin-bottom: 15px
  }
  .ml-sm-15 {
    margin-left: 15px
  }
  .m-sm-20 {
    margin: 20px
  }
  .mtb-sm-20 {
    margin-top: 20px;
    margin-bottom: 20px
  }
  .mlr-sm-20 {
    margin-left: 20px;
    margin-right: 20px
  }
  .mt-sm-20 {
    margin-top: 20px
  }
  .mr-sm-20 {
    margin-right: 20px
  }
  .mb-sm-20 {
    margin-bottom: 20px
  }
  .ml-sm-20 {
    margin-left: 20px
  }
  .m-sm-25 {
    margin: 25px
  }
  .mtb-sm-25 {
    margin-top: 25px;
    margin-bottom: 25px
  }
  .mlr-sm-25 {
    margin-left: 25px;
    margin-right: 25px
  }
  .mt-sm-25 {
    margin-top: 25px
  }
  .mr-sm-25 {
    margin-right: 25px
  }
  .mb-sm-25 {
    margin-bottom: 25px
  }
  .ml-sm-25 {
    margin-left: 25px
  }
  .m-sm-30 {
    margin: 30px
  }
  .mtb-sm-30 {
    margin-top: 30px;
    margin-bottom: 30px
  }
  .mlr-sm-30 {
    margin-left: 30px;
    margin-right: 30px
  }
  .mt-sm-30 {
    margin-top: 30px
  }
  .mr-sm-30 {
    margin-right: 30px
  }
  .mb-sm-30 {
    margin-bottom: 30px
  }
  .ml-sm-30 {
    margin-left: 30px
  }
  .m-sm-35 {
    margin: 35px
  }
  .mtb-sm-35 {
    margin-top: 35px;
    margin-bottom: 35px
  }
  .mlr-sm-35 {
    margin-left: 35px;
    margin-right: 35px
  }
  .mt-sm-35 {
    margin-top: 35px
  }
  .mr-sm-35 {
    margin-right: 35px
  }
  .mb-sm-35 {
    margin-bottom: 35px
  }
  .ml-sm-35 {
    margin-left: 35px
  }
  .m-sm-40 {
    margin: 40px
  }
  .mtb-sm-40 {
    margin-top: 40px;
    margin-bottom: 40px
  }
  .mlr-sm-40 {
    margin-left: 40px;
    margin-right: 40px
  }
  .mt-sm-40 {
    margin-top: 40px
  }
  .mr-sm-40 {
    margin-right: 40px
  }
  .mb-sm-40 {
    margin-bottom: 40px
  }
  .ml-sm-40 {
    margin-left: 40px
  }
  .m-sm-45 {
    margin: 45px
  }
  .mtb-sm-45 {
    margin-top: 45px;
    margin-bottom: 45px
  }
  .mlr-sm-45 {
    margin-left: 45px;
    margin-right: 45px
  }
  .mt-sm-45 {
    margin-top: 45px
  }
  .mr-sm-45 {
    margin-right: 45px
  }
  .mb-sm-45 {
    margin-bottom: 45px
  }
  .ml-sm-45 {
    margin-left: 45px
  }
  .m-sm-50 {
    margin: 50px
  }
  .mtb-sm-50 {
    margin-top: 50px;
    margin-bottom: 50px
  }
  .mlr-sm-50 {
    margin-left: 50px;
    margin-right: 50px
  }
  .mt-sm-50 {
    margin-top: 50px
  }
  .mr-sm-50 {
    margin-right: 50px
  }
  .mb-sm-50 {
    margin-bottom: 50px
  }
  .ml-sm-50 {
    margin-left: 50px
  }
  .m-sm-55 {
    margin: 55px
  }
  .mtb-sm-55 {
    margin-top: 55px;
    margin-bottom: 55px
  }
  .mlr-sm-55 {
    margin-left: 55px;
    margin-right: 55px
  }
  .mt-sm-55 {
    margin-top: 55px
  }
  .mr-sm-55 {
    margin-right: 55px
  }
  .mb-sm-55 {
    margin-bottom: 55px
  }
  .ml-sm-55 {
    margin-left: 55px
  }
  .m-sm-60 {
    margin: 60px
  }
  .mtb-sm-60 {
    margin-top: 60px;
    margin-bottom: 60px
  }
  .mlr-sm-60 {
    margin-left: 60px;
    margin-right: 60px
  }
  .mt-sm-60 {
    margin-top: 60px
  }
  .mr-sm-60 {
    margin-right: 60px
  }
  .mb-sm-60 {
    margin-bottom: 60px
  }
  .ml-sm-60 {
    margin-left: 60px
  }
  .m-sm-65 {
    margin: 65px
  }
  .mtb-sm-65 {
    margin-top: 65px;
    margin-bottom: 65px
  }
  .mlr-sm-65 {
    margin-left: 65px;
    margin-right: 65px
  }
  .mt-sm-65 {
    margin-top: 65px
  }
  .mr-sm-65 {
    margin-right: 65px
  }
  .mb-sm-65 {
    margin-bottom: 65px
  }
  .ml-sm-65 {
    margin-left: 65px
  }
  .m-sm-70 {
    margin: 70px
  }
  .mtb-sm-70 {
    margin-top: 70px;
    margin-bottom: 70px
  }
  .mlr-sm-70 {
    margin-left: 70px;
    margin-right: 70px
  }
  .mt-sm-70 {
    margin-top: 70px
  }
  .mr-sm-70 {
    margin-right: 70px
  }
  .mb-sm-70 {
    margin-bottom: 70px
  }
  .ml-sm-70 {
    margin-left: 70px
  }
  .m-sm-75 {
    margin: 75px
  }
  .mtb-sm-75 {
    margin-top: 75px;
    margin-bottom: 75px
  }
  .mlr-sm-75 {
    margin-left: 75px;
    margin-right: 75px
  }
  .mt-sm-75 {
    margin-top: 75px
  }
  .mr-sm-75 {
    margin-right: 75px
  }
  .mb-sm-75 {
    margin-bottom: 75px
  }
  .ml-sm-75 {
    margin-left: 75px
  }
  .m-sm-80 {
    margin: 80px
  }
  .mtb-sm-80 {
    margin-top: 80px;
    margin-bottom: 80px
  }
  .mlr-sm-80 {
    margin-left: 80px;
    margin-right: 80px
  }
  .mt-sm-80 {
    margin-top: 80px
  }
  .mr-sm-80 {
    margin-right: 80px
  }
  .mb-sm-80 {
    margin-bottom: 80px
  }
  .ml-sm-80 {
    margin-left: 80px
  }
  .m-sm-85 {
    margin: 85px
  }
  .mtb-sm-85 {
    margin-top: 85px;
    margin-bottom: 85px
  }
  .mlr-sm-85 {
    margin-left: 85px;
    margin-right: 85px
  }
  .mt-sm-85 {
    margin-top: 85px
  }
  .mr-sm-85 {
    margin-right: 85px
  }
  .mb-sm-85 {
    margin-bottom: 85px
  }
  .ml-sm-85 {
    margin-left: 85px
  }
  .m-sm-90 {
    margin: 90px
  }
  .mtb-sm-90 {
    margin-top: 90px;
    margin-bottom: 90px
  }
  .mlr-sm-90 {
    margin-left: 90px;
    margin-right: 90px
  }
  .mt-sm-90 {
    margin-top: 90px
  }
  .mr-sm-90 {
    margin-right: 90px
  }
  .mb-sm-90 {
    margin-bottom: 90px
  }
  .ml-sm-90 {
    margin-left: 90px
  }
  .m-sm-95 {
    margin: 95px
  }
  .mtb-sm-95 {
    margin-top: 95px;
    margin-bottom: 95px
  }
  .mlr-sm-95 {
    margin-left: 95px;
    margin-right: 95px
  }
  .mt-sm-95 {
    margin-top: 95px
  }
  .mr-sm-95 {
    margin-right: 95px
  }
  .mb-sm-95 {
    margin-bottom: 95px
  }
  .ml-sm-95 {
    margin-left: 95px
  }
  .m-sm-100 {
    margin: 100px
  }
  .mtb-sm-100 {
    margin-top: 100px;
    margin-bottom: 100px
  }
  .mlr-sm-100 {
    margin-left: 100px;
    margin-right: 100px
  }
  .mt-sm-100 {
    margin-top: 100px
  }
  .mr-sm-100 {
    margin-right: 100px
  }
  .mb-sm-100 {
    margin-bottom: 100px
  }
  .ml-sm-100 {
    margin-left: 100px
  }
  .p-sm-0 {
    padding: 0
  }
  .ptb-sm-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .plr-sm-0 {
    padding-left: 0;
    padding-right: 0
  }
  .pt-sm-0 {
    padding-top: 0
  }
  .pr-sm-0 {
    padding-right: 0
  }
  .pb-sm-0 {
    padding-bottom: 0
  }
  .pl-sm-0 {
    padding-left: 0
  }
  .p-sm-5 {
    padding: 5px
  }
  .ptb-sm-5 {
    padding-top: 5px;
    padding-bottom: 5px
  }
  .plr-sm-5 {
    padding-left: 5px;
    padding-right: 5px
  }
  .pt-sm-5 {
    padding-top: 5px
  }
  .pr-sm-5 {
    padding-right: 5px
  }
  .pb-sm-5 {
    padding-bottom: 5px
  }
  .pl-sm-5 {
    padding-left: 5px
  }
  .p-sm-10 {
    padding: 10px
  }
  .ptb-sm-10 {
    padding-top: 10px;
    padding-bottom: 10px
  }
  .plr-sm-10 {
    padding-left: 10px;
    padding-right: 10px
  }
  .pt-sm-10 {
    padding-top: 10px
  }
  .pr-sm-10 {
    padding-right: 10px
  }
  .pb-sm-10 {
    padding-bottom: 10px
  }
  .pl-sm-10 {
    padding-left: 10px
  }
  .p-sm-15 {
    padding: 15px
  }
  .ptb-sm-15 {
    padding-top: 15px;
    padding-bottom: 15px
  }
  .plr-sm-15 {
    padding-left: 15px;
    padding-right: 15px
  }
  .pt-sm-15 {
    padding-top: 15px
  }
  .pr-sm-15 {
    padding-right: 15px
  }
  .pb-sm-15 {
    padding-bottom: 15px
  }
  .pl-sm-15 {
    padding-left: 15px
  }
  .p-sm-20 {
    padding: 20px
  }
  .ptb-sm-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
  .plr-sm-20 {
    padding-left: 20px;
    padding-right: 20px
  }
  .pt-sm-20 {
    padding-top: 20px
  }
  .pr-sm-20 {
    padding-right: 20px
  }
  .pb-sm-20 {
    padding-bottom: 20px
  }
  .pl-sm-20 {
    padding-left: 20px
  }
  .p-sm-25 {
    padding: 25px
  }
  .ptb-sm-25 {
    padding-top: 25px;
    padding-bottom: 25px
  }
  .plr-sm-25 {
    padding-left: 25px;
    padding-right: 25px
  }
  .pt-sm-25 {
    padding-top: 25px
  }
  .pr-sm-25 {
    padding-right: 25px
  }
  .pb-sm-25 {
    padding-bottom: 25px
  }
  .pl-sm-25 {
    padding-left: 25px
  }
  .p-sm-30 {
    padding: 30px
  }
  .ptb-sm-30 {
    padding-top: 30px;
    padding-bottom: 30px
  }
  .plr-sm-30 {
    padding-left: 30px;
    padding-right: 30px
  }
  .pt-sm-30 {
    padding-top: 30px
  }
  .pr-sm-30 {
    padding-right: 30px
  }
  .pb-sm-30 {
    padding-bottom: 30px
  }
  .pl-sm-30 {
    padding-left: 30px
  }
  .p-sm-35 {
    padding: 35px
  }
  .ptb-sm-35 {
    padding-top: 35px;
    padding-bottom: 35px
  }
  .plr-sm-35 {
    padding-left: 35px;
    padding-right: 35px
  }
  .pt-sm-35 {
    padding-top: 35px
  }
  .pr-sm-35 {
    padding-right: 35px
  }
  .pb-sm-35 {
    padding-bottom: 35px
  }
  .pl-sm-35 {
    padding-left: 35px
  }
  .p-sm-40 {
    padding: 40px
  }
  .ptb-sm-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
  .plr-sm-40 {
    padding-left: 40px;
    padding-right: 40px
  }
  .pt-sm-40 {
    padding-top: 40px
  }
  .pr-sm-40 {
    padding-right: 40px
  }
  .pb-sm-40 {
    padding-bottom: 40px
  }
  .pl-sm-40 {
    padding-left: 40px
  }
  .p-sm-45 {
    padding: 45px
  }
  .ptb-sm-45 {
    padding-top: 45px;
    padding-bottom: 45px
  }
  .plr-sm-45 {
    padding-left: 45px;
    padding-right: 45px
  }
  .pt-sm-45 {
    padding-top: 45px
  }
  .pr-sm-45 {
    padding-right: 45px
  }
  .pb-sm-45 {
    padding-bottom: 45px
  }
  .pl-sm-45 {
    padding-left: 45px
  }
  .p-sm-50 {
    padding: 50px
  }
  .ptb-sm-50 {
    padding-top: 50px;
    padding-bottom: 50px
  }
  .plr-sm-50 {
    padding-left: 50px;
    padding-right: 50px
  }
  .pt-sm-50 {
    padding-top: 50px
  }
  .pr-sm-50 {
    padding-right: 50px
  }
  .pb-sm-50 {
    padding-bottom: 50px
  }
  .pl-sm-50 {
    padding-left: 50px
  }
  .p-sm-55 {
    padding: 55px
  }
  .ptb-sm-55 {
    padding-top: 55px;
    padding-bottom: 55px
  }
  .plr-sm-55 {
    padding-left: 55px;
    padding-right: 55px
  }
  .pt-sm-55 {
    padding-top: 55px
  }
  .pr-sm-55 {
    padding-right: 55px
  }
  .pb-sm-55 {
    padding-bottom: 55px
  }
  .pl-sm-55 {
    padding-left: 55px
  }
  .p-sm-60 {
    padding: 60px
  }
  .ptb-sm-60 {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .plr-sm-60 {
    padding-left: 60px;
    padding-right: 60px
  }
  .pt-sm-60 {
    padding-top: 60px
  }
  .pr-sm-60 {
    padding-right: 60px
  }
  .pb-sm-60 {
    padding-bottom: 60px
  }
  .pl-sm-60 {
    padding-left: 60px
  }
  .p-sm-65 {
    padding: 65px
  }
  .ptb-sm-65 {
    padding-top: 65px;
    padding-bottom: 65px
  }
  .plr-sm-65 {
    padding-left: 65px;
    padding-right: 65px
  }
  .pt-sm-65 {
    padding-top: 65px
  }
  .pr-sm-65 {
    padding-right: 65px
  }
  .pb-sm-65 {
    padding-bottom: 65px
  }
  .pl-sm-65 {
    padding-left: 65px
  }
  .p-sm-70 {
    padding: 70px
  }
  .ptb-sm-70 {
    padding-top: 70px;
    padding-bottom: 70px
  }
  .plr-sm-70 {
    padding-left: 70px;
    padding-right: 70px
  }
  .pt-sm-70 {
    padding-top: 70px
  }
  .pr-sm-70 {
    padding-right: 70px
  }
  .pb-sm-70 {
    padding-bottom: 70px
  }
  .pl-sm-70 {
    padding-left: 70px
  }
  .p-sm-75 {
    padding: 75px
  }
  .ptb-sm-75 {
    padding-top: 75px;
    padding-bottom: 75px
  }
  .plr-sm-75 {
    padding-left: 75px;
    padding-right: 75px
  }
  .pt-sm-75 {
    padding-top: 75px
  }
  .pr-sm-75 {
    padding-right: 75px
  }
  .pb-sm-75 {
    padding-bottom: 75px
  }
  .pl-sm-75 {
    padding-left: 75px
  }
  .p-sm-80 {
    padding: 80px
  }
  .ptb-sm-80 {
    padding-top: 80px;
    padding-bottom: 80px
  }
  .plr-sm-80 {
    padding-left: 80px;
    padding-right: 80px
  }
  .pt-sm-80 {
    padding-top: 80px
  }
  .pr-sm-80 {
    padding-right: 80px
  }
  .pb-sm-80 {
    padding-bottom: 80px
  }
  .pl-sm-80 {
    padding-left: 80px
  }
  .p-sm-85 {
    padding: 85px
  }
  .ptb-sm-85 {
    padding-top: 85px;
    padding-bottom: 85px
  }
  .plr-sm-85 {
    padding-left: 85px;
    padding-right: 85px
  }
  .pt-sm-85 {
    padding-top: 85px
  }
  .pr-sm-85 {
    padding-right: 85px
  }
  .pb-sm-85 {
    padding-bottom: 85px
  }
  .pl-sm-85 {
    padding-left: 85px
  }
  .p-sm-90 {
    padding: 90px
  }
  .ptb-sm-90 {
    padding-top: 90px;
    padding-bottom: 90px
  }
  .plr-sm-90 {
    padding-left: 90px;
    padding-right: 90px
  }
  .pt-sm-90 {
    padding-top: 90px
  }
  .pr-sm-90 {
    padding-right: 90px
  }
  .pb-sm-90 {
    padding-bottom: 90px
  }
  .pl-sm-90 {
    padding-left: 90px
  }
  .p-sm-95 {
    padding: 95px
  }
  .ptb-sm-95 {
    padding-top: 95px;
    padding-bottom: 95px
  }
  .plr-sm-95 {
    padding-left: 95px;
    padding-right: 95px
  }
  .pt-sm-95 {
    padding-top: 95px
  }
  .pr-sm-95 {
    padding-right: 95px
  }
  .pb-sm-95 {
    padding-bottom: 95px
  }
  .pl-sm-95 {
    padding-left: 95px
  }
  .p-sm-100 {
    padding: 100px
  }
  .ptb-sm-100 {
    padding-top: 100px;
    padding-bottom: 100px
  }
  .plr-sm-100 {
    padding-left: 100px;
    padding-right: 100px
  }
  .pt-sm-100 {
    padding-top: 100px
  }
  .pr-sm-100 {
    padding-right: 100px
  }
  .pb-sm-100 {
    padding-bottom: 100px
  }
  .pl-sm-100 {
    padding-left: 100px
  }
  .fs-sm-12 {
    font-size: 12px
  }
  .fs-sm-14 {
    font-size: 14px
  }
  .fs-sm-16 {
    font-size: 16px
  }
  .fs-sm-18 {
    font-size: 18px
  }
  .fs-sm-20 {
    font-size: 20px
  }
  .fs-sm-22 {
    font-size: 22px
  }
  .fs-sm-24 {
    font-size: 24px
  }
  .fs-sm-26 {
    font-size: 26px
  }
  .fs-sm-28 {
    font-size: 28px
  }
  .fs-sm-30 {
    font-size: 30px
  }
  .fs-sm-32 {
    font-size: 32px
  }
  .fs-sm-34 {
    font-size: 34px
  }
  .fs-sm-36 {
    font-size: 36px
  }
  .fs-sm-38 {
    font-size: 38px
  }
  .fs-sm-40 {
    font-size: 40px
  }
  .fs-sm-42 {
    font-size: 42px
  }
  .fs-sm-44 {
    font-size: 44px
  }
  .fs-sm-46 {
    font-size: 46px
  }
  .fs-sm-48 {
    font-size: 48px
  }
  .fs-sm-50 {
    font-size: 50px
  }
  .fs-sm-52 {
    font-size: 52px
  }
  .fs-sm-54 {
    font-size: 54px
  }
  .fs-sm-56 {
    font-size: 56px
  }
  .fs-sm-58 {
    font-size: 58px
  }
  .fs-sm-60 {
    font-size: 60px
  }
  .fs-sm-62 {
    font-size: 62px
  }
  .fs-sm-64 {
    font-size: 64px
  }
  .fs-sm-66 {
    font-size: 66px
  }
  .fs-sm-68 {
    font-size: 68px
  }
  .fs-sm-70 {
    font-size: 70px
  }
  .fs-sm-72 {
    font-size: 72px
  }
  .fs-sm-74 {
    font-size: 74px
  }
  .fs-sm-76 {
    font-size: 76px
  }
  .fs-sm-78 {
    font-size: 78px
  }
  .fs-sm-80 {
    font-size: 80px
  }
  .fs-sm-82 {
    font-size: 82px
  }
  .fs-sm-84 {
    font-size: 84px
  }
  .fs-sm-86 {
    font-size: 86px
  }
  .fs-sm-88 {
    font-size: 88px
  }
  .fs-sm-90 {
    font-size: 90px
  }
  .fs-sm-92 {
    font-size: 92px
  }
  .fs-sm-94 {
    font-size: 94px
  }
  .fs-sm-96 {
    font-size: 96px
  }
  .fs-sm-98 {
    font-size: 98px
  }
  .fs-sm-100 {
    font-size: 100px
  }
  .lh-sm-10 {
    line-height: 1
  }
  .lh-sm-11 {
    line-height: 1.1
  }
  .lh-sm-12 {
    line-height: 1.2
  }
  .lh-sm-13 {
    line-height: 1.3
  }
  .lh-sm-14 {
    line-height: 1.4
  }
  .lh-sm-15 {
    line-height: 1.5
  }
  .lh-sm-16 {
    line-height: 1.6
  }
  .lh-sm-17 {
    line-height: 1.7
  }
  .lh-sm-18 {
    line-height: 1.8
  }
  .lh-sm-19 {
    line-height: 1.9
  }
  .lh-sm-20 {
    line-height: 2
  }
}

@media screen and (min-width:992px) {
  .m-md-0 {
    margin: 0
  }
  .mtb-md-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  .mlr-md-0 {
    margin-left: 0;
    margin-right: 0
  }
  .mt-md-0 {
    margin-top: 0
  }
  .mr-md-0 {
    margin-right: 0
  }
  .mb-md-0 {
    margin-bottom: 0
  }
  .ml-md-0 {
    margin-left: 0
  }
  .m-md-5 {
    margin: 5px
  }
  .mtb-md-5 {
    margin-top: 5px;
    margin-bottom: 5px
  }
  .mlr-md-5 {
    margin-left: 5px;
    margin-right: 5px
  }
  .mt-md-5 {
    margin-top: 5px
  }
  .mr-md-5 {
    margin-right: 5px
  }
  .mb-md-5 {
    margin-bottom: 5px
  }
  .ml-md-5 {
    margin-left: 5px
  }
  .m-md-10 {
    margin: 10px
  }
  .mtb-md-10 {
    margin-top: 10px;
    margin-bottom: 10px
  }
  .mlr-md-10 {
    margin-left: 10px;
    margin-right: 10px
  }
  .mt-md-10 {
    margin-top: 10px
  }
  .mr-md-10 {
    margin-right: 10px
  }
  .mb-md-10 {
    margin-bottom: 10px
  }
  .ml-md-10 {
    margin-left: 10px
  }
  .m-md-15 {
    margin: 15px
  }
  .mtb-md-15 {
    margin-top: 15px;
    margin-bottom: 15px
  }
  .mlr-md-15 {
    margin-left: 15px;
    margin-right: 15px
  }
  .mt-md-15 {
    margin-top: 15px
  }
  .mr-md-15 {
    margin-right: 15px
  }
  .mb-md-15 {
    margin-bottom: 15px
  }
  .ml-md-15 {
    margin-left: 15px
  }
  .m-md-20 {
    margin: 20px
  }
  .mtb-md-20 {
    margin-top: 20px;
    margin-bottom: 20px
  }
  .mlr-md-20 {
    margin-left: 20px;
    margin-right: 20px
  }
  .mt-md-20 {
    margin-top: 20px
  }
  .mr-md-20 {
    margin-right: 20px
  }
  .mb-md-20 {
    margin-bottom: 20px
  }
  .ml-md-20 {
    margin-left: 20px
  }
  .m-md-25 {
    margin: 25px
  }
  .mtb-md-25 {
    margin-top: 25px;
    margin-bottom: 25px
  }
  .mlr-md-25 {
    margin-left: 25px;
    margin-right: 25px
  }
  .mt-md-25 {
    margin-top: 25px
  }
  .mr-md-25 {
    margin-right: 25px
  }
  .mb-md-25 {
    margin-bottom: 25px
  }
  .ml-md-25 {
    margin-left: 25px
  }
  .m-md-30 {
    margin: 30px
  }
  .mtb-md-30 {
    margin-top: 30px;
    margin-bottom: 30px
  }
  .mlr-md-30 {
    margin-left: 30px;
    margin-right: 30px
  }
  .mt-md-30 {
    margin-top: 30px
  }
  .mr-md-30 {
    margin-right: 30px
  }
  .mb-md-30 {
    margin-bottom: 30px
  }
  .ml-md-30 {
    margin-left: 30px
  }
  .m-md-35 {
    margin: 35px
  }
  .mtb-md-35 {
    margin-top: 35px;
    margin-bottom: 35px
  }
  .mlr-md-35 {
    margin-left: 35px;
    margin-right: 35px
  }
  .mt-md-35 {
    margin-top: 35px
  }
  .mr-md-35 {
    margin-right: 35px
  }
  .mb-md-35 {
    margin-bottom: 35px
  }
  .ml-md-35 {
    margin-left: 35px
  }
  .m-md-40 {
    margin: 40px
  }
  .mtb-md-40 {
    margin-top: 40px;
    margin-bottom: 40px
  }
  .mlr-md-40 {
    margin-left: 40px;
    margin-right: 40px
  }
  .mt-md-40 {
    margin-top: 40px
  }
  .mr-md-40 {
    margin-right: 40px
  }
  .mb-md-40 {
    margin-bottom: 40px
  }
  .ml-md-40 {
    margin-left: 40px
  }
  .m-md-45 {
    margin: 45px
  }
  .mtb-md-45 {
    margin-top: 45px;
    margin-bottom: 45px
  }
  .mlr-md-45 {
    margin-left: 45px;
    margin-right: 45px
  }
  .mt-md-45 {
    margin-top: 45px
  }
  .mr-md-45 {
    margin-right: 45px
  }
  .mb-md-45 {
    margin-bottom: 45px
  }
  .ml-md-45 {
    margin-left: 45px
  }
  .m-md-50 {
    margin: 50px
  }
  .mtb-md-50 {
    margin-top: 50px;
    margin-bottom: 50px
  }
  .mlr-md-50 {
    margin-left: 50px;
    margin-right: 50px
  }
  .mt-md-50 {
    margin-top: 50px
  }
  .mr-md-50 {
    margin-right: 50px
  }
  .mb-md-50 {
    margin-bottom: 50px
  }
  .ml-md-50 {
    margin-left: 50px
  }
  .m-md-55 {
    margin: 55px
  }
  .mtb-md-55 {
    margin-top: 55px;
    margin-bottom: 55px
  }
  .mlr-md-55 {
    margin-left: 55px;
    margin-right: 55px
  }
  .mt-md-55 {
    margin-top: 55px
  }
  .mr-md-55 {
    margin-right: 55px
  }
  .mb-md-55 {
    margin-bottom: 55px
  }
  .ml-md-55 {
    margin-left: 55px
  }
  .m-md-60 {
    margin: 60px
  }
  .mtb-md-60 {
    margin-top: 60px;
    margin-bottom: 60px
  }
  .mlr-md-60 {
    margin-left: 60px;
    margin-right: 60px
  }
  .mt-md-60 {
    margin-top: 60px
  }
  .mr-md-60 {
    margin-right: 60px
  }
  .mb-md-60 {
    margin-bottom: 60px
  }
  .ml-md-60 {
    margin-left: 60px
  }
  .m-md-65 {
    margin: 65px
  }
  .mtb-md-65 {
    margin-top: 65px;
    margin-bottom: 65px
  }
  .mlr-md-65 {
    margin-left: 65px;
    margin-right: 65px
  }
  .mt-md-65 {
    margin-top: 65px
  }
  .mr-md-65 {
    margin-right: 65px
  }
  .mb-md-65 {
    margin-bottom: 65px
  }
  .ml-md-65 {
    margin-left: 65px
  }
  .m-md-70 {
    margin: 70px
  }
  .mtb-md-70 {
    margin-top: 70px;
    margin-bottom: 70px
  }
  .mlr-md-70 {
    margin-left: 70px;
    margin-right: 70px
  }
  .mt-md-70 {
    margin-top: 70px
  }
  .mr-md-70 {
    margin-right: 70px
  }
  .mb-md-70 {
    margin-bottom: 70px
  }
  .ml-md-70 {
    margin-left: 70px
  }
  .m-md-75 {
    margin: 75px
  }
  .mtb-md-75 {
    margin-top: 75px;
    margin-bottom: 75px
  }
  .mlr-md-75 {
    margin-left: 75px;
    margin-right: 75px
  }
  .mt-md-75 {
    margin-top: 75px
  }
  .mr-md-75 {
    margin-right: 75px
  }
  .mb-md-75 {
    margin-bottom: 75px
  }
  .ml-md-75 {
    margin-left: 75px
  }
  .m-md-80 {
    margin: 80px
  }
  .mtb-md-80 {
    margin-top: 80px;
    margin-bottom: 80px
  }
  .mlr-md-80 {
    margin-left: 80px;
    margin-right: 80px
  }
  .mt-md-80 {
    margin-top: 80px
  }
  .mr-md-80 {
    margin-right: 80px
  }
  .mb-md-80 {
    margin-bottom: 80px
  }
  .ml-md-80 {
    margin-left: 80px
  }
  .m-md-85 {
    margin: 85px
  }
  .mtb-md-85 {
    margin-top: 85px;
    margin-bottom: 85px
  }
  .mlr-md-85 {
    margin-left: 85px;
    margin-right: 85px
  }
  .mt-md-85 {
    margin-top: 85px
  }
  .mr-md-85 {
    margin-right: 85px
  }
  .mb-md-85 {
    margin-bottom: 85px
  }
  .ml-md-85 {
    margin-left: 85px
  }
  .m-md-90 {
    margin: 90px
  }
  .mtb-md-90 {
    margin-top: 90px;
    margin-bottom: 90px
  }
  .mlr-md-90 {
    margin-left: 90px;
    margin-right: 90px
  }
  .mt-md-90 {
    margin-top: 90px
  }
  .mr-md-90 {
    margin-right: 90px
  }
  .mb-md-90 {
    margin-bottom: 90px
  }
  .ml-md-90 {
    margin-left: 90px
  }
  .m-md-95 {
    margin: 95px
  }
  .mtb-md-95 {
    margin-top: 95px;
    margin-bottom: 95px
  }
  .mlr-md-95 {
    margin-left: 95px;
    margin-right: 95px
  }
  .mt-md-95 {
    margin-top: 95px
  }
  .mr-md-95 {
    margin-right: 95px
  }
  .mb-md-95 {
    margin-bottom: 95px
  }
  .ml-md-95 {
    margin-left: 95px
  }
  .m-md-100 {
    margin: 100px
  }
  .mtb-md-100 {
    margin-top: 100px;
    margin-bottom: 100px
  }
  .mlr-md-100 {
    margin-left: 100px;
    margin-right: 100px
  }
  .mt-md-100 {
    margin-top: 100px
  }
  .mr-md-100 {
    margin-right: 100px
  }
  .mb-md-100 {
    margin-bottom: 100px
  }
  .ml-md-100 {
    margin-left: 100px
  }
  .p-md-0 {
    padding: 0
  }
  .ptb-md-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .plr-md-0 {
    padding-left: 0;
    padding-right: 0
  }
  .pt-md-0 {
    padding-top: 0
  }
  .pr-md-0 {
    padding-right: 0
  }
  .pb-md-0 {
    padding-bottom: 0
  }
  .pl-md-0 {
    padding-left: 0
  }
  .p-md-5 {
    padding: 5px
  }
  .ptb-md-5 {
    padding-top: 5px;
    padding-bottom: 5px
  }
  .plr-md-5 {
    padding-left: 5px;
    padding-right: 5px
  }
  .pt-md-5 {
    padding-top: 5px
  }
  .pr-md-5 {
    padding-right: 5px
  }
  .pb-md-5 {
    padding-bottom: 5px
  }
  .pl-md-5 {
    padding-left: 5px
  }
  .p-md-10 {
    padding: 10px
  }
  .ptb-md-10 {
    padding-top: 10px;
    padding-bottom: 10px
  }
  .plr-md-10 {
    padding-left: 10px;
    padding-right: 10px
  }
  .pt-md-10 {
    padding-top: 10px
  }
  .pr-md-10 {
    padding-right: 10px
  }
  .pb-md-10 {
    padding-bottom: 10px
  }
  .pl-md-10 {
    padding-left: 10px
  }
  .p-md-15 {
    padding: 15px
  }
  .ptb-md-15 {
    padding-top: 15px;
    padding-bottom: 15px
  }
  .plr-md-15 {
    padding-left: 15px;
    padding-right: 15px
  }
  .pt-md-15 {
    padding-top: 15px
  }
  .pr-md-15 {
    padding-right: 15px
  }
  .pb-md-15 {
    padding-bottom: 15px
  }
  .pl-md-15 {
    padding-left: 15px
  }
  .p-md-20 {
    padding: 20px
  }
  .ptb-md-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
  .plr-md-20 {
    padding-left: 20px;
    padding-right: 20px
  }
  .pt-md-20 {
    padding-top: 20px
  }
  .pr-md-20 {
    padding-right: 20px
  }
  .pb-md-20 {
    padding-bottom: 20px
  }
  .pl-md-20 {
    padding-left: 20px
  }
  .p-md-25 {
    padding: 25px
  }
  .ptb-md-25 {
    padding-top: 25px;
    padding-bottom: 25px
  }
  .plr-md-25 {
    padding-left: 25px;
    padding-right: 25px
  }
  .pt-md-25 {
    padding-top: 25px
  }
  .pr-md-25 {
    padding-right: 25px
  }
  .pb-md-25 {
    padding-bottom: 25px
  }
  .pl-md-25 {
    padding-left: 25px
  }
  .p-md-30 {
    padding: 30px
  }
  .ptb-md-30 {
    padding-top: 30px;
    padding-bottom: 30px
  }
  .plr-md-30 {
    padding-left: 30px;
    padding-right: 30px
  }
  .pt-md-30 {
    padding-top: 30px
  }
  .pr-md-30 {
    padding-right: 30px
  }
  .pb-md-30 {
    padding-bottom: 30px
  }
  .pl-md-30 {
    padding-left: 30px
  }
  .p-md-35 {
    padding: 35px
  }
  .ptb-md-35 {
    padding-top: 35px;
    padding-bottom: 35px
  }
  .plr-md-35 {
    padding-left: 35px;
    padding-right: 35px
  }
  .pt-md-35 {
    padding-top: 35px
  }
  .pr-md-35 {
    padding-right: 35px
  }
  .pb-md-35 {
    padding-bottom: 35px
  }
  .pl-md-35 {
    padding-left: 35px
  }
  .p-md-40 {
    padding: 40px
  }
  .ptb-md-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
  .plr-md-40 {
    padding-left: 40px;
    padding-right: 40px
  }
  .pt-md-40 {
    padding-top: 40px
  }
  .pr-md-40 {
    padding-right: 40px
  }
  .pb-md-40 {
    padding-bottom: 40px
  }
  .pl-md-40 {
    padding-left: 40px
  }
  .p-md-45 {
    padding: 45px
  }
  .ptb-md-45 {
    padding-top: 45px;
    padding-bottom: 45px
  }
  .plr-md-45 {
    padding-left: 45px;
    padding-right: 45px
  }
  .pt-md-45 {
    padding-top: 45px
  }
  .pr-md-45 {
    padding-right: 45px
  }
  .pb-md-45 {
    padding-bottom: 45px
  }
  .pl-md-45 {
    padding-left: 45px
  }
  .p-md-50 {
    padding: 50px
  }
  .ptb-md-50 {
    padding-top: 50px;
    padding-bottom: 50px
  }
  .plr-md-50 {
    padding-left: 50px;
    padding-right: 50px
  }
  .pt-md-50 {
    padding-top: 50px
  }
  .pr-md-50 {
    padding-right: 50px
  }
  .pb-md-50 {
    padding-bottom: 50px
  }
  .pl-md-50 {
    padding-left: 50px
  }
  .p-md-55 {
    padding: 55px
  }
  .ptb-md-55 {
    padding-top: 55px;
    padding-bottom: 55px
  }
  .plr-md-55 {
    padding-left: 55px;
    padding-right: 55px
  }
  .pt-md-55 {
    padding-top: 55px
  }
  .pr-md-55 {
    padding-right: 55px
  }
  .pb-md-55 {
    padding-bottom: 55px
  }
  .pl-md-55 {
    padding-left: 55px
  }
  .p-md-60 {
    padding: 60px
  }
  .ptb-md-60 {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .plr-md-60 {
    padding-left: 60px;
    padding-right: 60px
  }
  .pt-md-60 {
    padding-top: 60px
  }
  .pr-md-60 {
    padding-right: 60px
  }
  .pb-md-60 {
    padding-bottom: 60px
  }
  .pl-md-60 {
    padding-left: 60px
  }
  .p-md-65 {
    padding: 65px
  }
  .ptb-md-65 {
    padding-top: 65px;
    padding-bottom: 65px
  }
  .plr-md-65 {
    padding-left: 65px;
    padding-right: 65px
  }
  .pt-md-65 {
    padding-top: 65px
  }
  .pr-md-65 {
    padding-right: 65px
  }
  .pb-md-65 {
    padding-bottom: 65px
  }
  .pl-md-65 {
    padding-left: 65px
  }
  .p-md-70 {
    padding: 70px
  }
  .ptb-md-70 {
    padding-top: 70px;
    padding-bottom: 70px
  }
  .plr-md-70 {
    padding-left: 70px;
    padding-right: 70px
  }
  .pt-md-70 {
    padding-top: 70px
  }
  .pr-md-70 {
    padding-right: 70px
  }
  .pb-md-70 {
    padding-bottom: 70px
  }
  .pl-md-70 {
    padding-left: 70px
  }
  .p-md-75 {
    padding: 75px
  }
  .ptb-md-75 {
    padding-top: 75px;
    padding-bottom: 75px
  }
  .plr-md-75 {
    padding-left: 75px;
    padding-right: 75px
  }
  .pt-md-75 {
    padding-top: 75px
  }
  .pr-md-75 {
    padding-right: 75px
  }
  .pb-md-75 {
    padding-bottom: 75px
  }
  .pl-md-75 {
    padding-left: 75px
  }
  .p-md-80 {
    padding: 80px
  }
  .ptb-md-80 {
    padding-top: 80px;
    padding-bottom: 80px
  }
  .plr-md-80 {
    padding-left: 80px;
    padding-right: 80px
  }
  .pt-md-80 {
    padding-top: 80px
  }
  .pr-md-80 {
    padding-right: 80px
  }
  .pb-md-80 {
    padding-bottom: 80px
  }
  .pl-md-80 {
    padding-left: 80px
  }
  .p-md-85 {
    padding: 85px
  }
  .ptb-md-85 {
    padding-top: 85px;
    padding-bottom: 85px
  }
  .plr-md-85 {
    padding-left: 85px;
    padding-right: 85px
  }
  .pt-md-85 {
    padding-top: 85px
  }
  .pr-md-85 {
    padding-right: 85px
  }
  .pb-md-85 {
    padding-bottom: 85px
  }
  .pl-md-85 {
    padding-left: 85px
  }
  .p-md-90 {
    padding: 90px
  }
  .ptb-md-90 {
    padding-top: 90px;
    padding-bottom: 90px
  }
  .plr-md-90 {
    padding-left: 90px;
    padding-right: 90px
  }
  .pt-md-90 {
    padding-top: 90px
  }
  .pr-md-90 {
    padding-right: 90px
  }
  .pb-md-90 {
    padding-bottom: 90px
  }
  .pl-md-90 {
    padding-left: 90px
  }
  .p-md-95 {
    padding: 95px
  }
  .ptb-md-95 {
    padding-top: 95px;
    padding-bottom: 95px
  }
  .plr-md-95 {
    padding-left: 95px;
    padding-right: 95px
  }
  .pt-md-95 {
    padding-top: 95px
  }
  .pr-md-95 {
    padding-right: 95px
  }
  .pb-md-95 {
    padding-bottom: 95px
  }
  .pl-md-95 {
    padding-left: 95px
  }
  .p-md-100 {
    padding: 100px
  }
  .ptb-md-100 {
    padding-top: 100px;
    padding-bottom: 100px
  }
  .plr-md-100 {
    padding-left: 100px;
    padding-right: 100px
  }
  .pt-md-100 {
    padding-top: 100px
  }
  .pr-md-100 {
    padding-right: 100px
  }
  .pb-md-100 {
    padding-bottom: 100px
  }
  .pl-md-100 {
    padding-left: 100px
  }
  .fs-md-12 {
    font-size: 12px
  }
  .fs-md-14 {
    font-size: 14px
  }
  .fs-md-16 {
    font-size: 16px
  }
  .fs-md-18 {
    font-size: 18px
  }
  .fs-md-20 {
    font-size: 20px
  }
  .fs-md-22 {
    font-size: 22px
  }
  .fs-md-24 {
    font-size: 24px
  }
  .fs-md-26 {
    font-size: 26px
  }
  .fs-md-28 {
    font-size: 28px
  }
  .fs-md-30 {
    font-size: 30px
  }
  .fs-md-32 {
    font-size: 32px
  }
  .fs-md-34 {
    font-size: 34px
  }
  .fs-md-36 {
    font-size: 36px
  }
  .fs-md-38 {
    font-size: 38px
  }
  .fs-md-40 {
    font-size: 40px
  }
  .fs-md-42 {
    font-size: 42px
  }
  .fs-md-44 {
    font-size: 44px
  }
  .fs-md-46 {
    font-size: 46px
  }
  .fs-md-48 {
    font-size: 48px
  }
  .fs-md-50 {
    font-size: 50px
  }
  .fs-md-52 {
    font-size: 52px
  }
  .fs-md-54 {
    font-size: 54px
  }
  .fs-md-56 {
    font-size: 56px
  }
  .fs-md-58 {
    font-size: 58px
  }
  .fs-md-60 {
    font-size: 60px
  }
  .fs-md-62 {
    font-size: 62px
  }
  .fs-md-64 {
    font-size: 64px
  }
  .fs-md-66 {
    font-size: 66px
  }
  .fs-md-68 {
    font-size: 68px
  }
  .fs-md-70 {
    font-size: 70px
  }
  .fs-md-72 {
    font-size: 72px
  }
  .fs-md-74 {
    font-size: 74px
  }
  .fs-md-76 {
    font-size: 76px
  }
  .fs-md-78 {
    font-size: 78px
  }
  .fs-md-80 {
    font-size: 80px
  }
  .fs-md-82 {
    font-size: 82px
  }
  .fs-md-84 {
    font-size: 84px
  }
  .fs-md-86 {
    font-size: 86px
  }
  .fs-md-88 {
    font-size: 88px
  }
  .fs-md-90 {
    font-size: 90px
  }
  .fs-md-92 {
    font-size: 92px
  }
  .fs-md-94 {
    font-size: 94px
  }
  .fs-md-96 {
    font-size: 96px
  }
  .fs-md-98 {
    font-size: 98px
  }
  .fs-md-100 {
    font-size: 100px
  }
  .lh-md-10 {
    line-height: 1
  }
  .lh-md-11 {
    line-height: 1.1
  }
  .lh-md-12 {
    line-height: 1.2
  }
  .lh-md-13 {
    line-height: 1.3
  }
  .lh-md-14 {
    line-height: 1.4
  }
  .lh-md-15 {
    line-height: 1.5
  }
  .lh-md-16 {
    line-height: 1.6
  }
  .lh-md-17 {
    line-height: 1.7
  }
  .lh-md-18 {
    line-height: 1.8
  }
  .lh-md-19 {
    line-height: 1.9
  }
  .lh-md-20 {
    line-height: 2
  }
}

@media screen and (min-width:1280px) {
  .m-lg-0 {
    margin: 0
  }
  .mtb-lg-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  .mlr-lg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .mt-lg-0 {
    margin-top: 0
  }
  .mr-lg-0 {
    margin-right: 0
  }
  .mb-lg-0 {
    margin-bottom: 0
  }
  .ml-lg-0 {
    margin-left: 0
  }
  .m-lg-5 {
    margin: 5px
  }
  .mtb-lg-5 {
    margin-top: 5px;
    margin-bottom: 5px
  }
  .mlr-lg-5 {
    margin-left: 5px;
    margin-right: 5px
  }
  .mt-lg-5 {
    margin-top: 5px
  }
  .mr-lg-5 {
    margin-right: 5px
  }
  .mb-lg-5 {
    margin-bottom: 5px
  }
  .ml-lg-5 {
    margin-left: 5px
  }
  .m-lg-10 {
    margin: 10px
  }
  .mtb-lg-10 {
    margin-top: 10px;
    margin-bottom: 10px
  }
  .mlr-lg-10 {
    margin-left: 10px;
    margin-right: 10px
  }
  .mt-lg-10 {
    margin-top: 10px
  }
  .mr-lg-10 {
    margin-right: 10px
  }
  .mb-lg-10 {
    margin-bottom: 10px
  }
  .ml-lg-10 {
    margin-left: 10px
  }
  .m-lg-15 {
    margin: 15px
  }
  .mtb-lg-15 {
    margin-top: 15px;
    margin-bottom: 15px
  }
  .mlr-lg-15 {
    margin-left: 15px;
    margin-right: 15px
  }
  .mt-lg-15 {
    margin-top: 15px
  }
  .mr-lg-15 {
    margin-right: 15px
  }
  .mb-lg-15 {
    margin-bottom: 15px
  }
  .ml-lg-15 {
    margin-left: 15px
  }
  .m-lg-20 {
    margin: 20px
  }
  .mtb-lg-20 {
    margin-top: 20px;
    margin-bottom: 20px
  }
  .mlr-lg-20 {
    margin-left: 20px;
    margin-right: 20px
  }
  .mt-lg-20 {
    margin-top: 20px
  }
  .mr-lg-20 {
    margin-right: 20px
  }
  .mb-lg-20 {
    margin-bottom: 20px
  }
  .ml-lg-20 {
    margin-left: 20px
  }
  .m-lg-25 {
    margin: 25px
  }
  .mtb-lg-25 {
    margin-top: 25px;
    margin-bottom: 25px
  }
  .mlr-lg-25 {
    margin-left: 25px;
    margin-right: 25px
  }
  .mt-lg-25 {
    margin-top: 25px
  }
  .mr-lg-25 {
    margin-right: 25px
  }
  .mb-lg-25 {
    margin-bottom: 25px
  }
  .ml-lg-25 {
    margin-left: 25px
  }
  .m-lg-30 {
    margin: 30px
  }
  .mtb-lg-30 {
    margin-top: 30px;
    margin-bottom: 30px
  }
  .mlr-lg-30 {
    margin-left: 30px;
    margin-right: 30px
  }
  .mt-lg-30 {
    margin-top: 30px
  }
  .mr-lg-30 {
    margin-right: 30px
  }
  .mb-lg-30 {
    margin-bottom: 30px
  }
  .ml-lg-30 {
    margin-left: 30px
  }
  .m-lg-35 {
    margin: 35px
  }
  .mtb-lg-35 {
    margin-top: 35px;
    margin-bottom: 35px
  }
  .mlr-lg-35 {
    margin-left: 35px;
    margin-right: 35px
  }
  .mt-lg-35 {
    margin-top: 35px
  }
  .mr-lg-35 {
    margin-right: 35px
  }
  .mb-lg-35 {
    margin-bottom: 35px
  }
  .ml-lg-35 {
    margin-left: 35px
  }
  .m-lg-40 {
    margin: 40px
  }
  .mtb-lg-40 {
    margin-top: 40px;
    margin-bottom: 40px
  }
  .mlr-lg-40 {
    margin-left: 40px;
    margin-right: 40px
  }
  .mt-lg-40 {
    margin-top: 40px
  }
  .mr-lg-40 {
    margin-right: 40px
  }
  .mb-lg-40 {
    margin-bottom: 40px
  }
  .ml-lg-40 {
    margin-left: 40px
  }
  .m-lg-45 {
    margin: 45px
  }
  .mtb-lg-45 {
    margin-top: 45px;
    margin-bottom: 45px
  }
  .mlr-lg-45 {
    margin-left: 45px;
    margin-right: 45px
  }
  .mt-lg-45 {
    margin-top: 45px
  }
  .mr-lg-45 {
    margin-right: 45px
  }
  .mb-lg-45 {
    margin-bottom: 45px
  }
  .ml-lg-45 {
    margin-left: 45px
  }
  .m-lg-50 {
    margin: 50px
  }
  .mtb-lg-50 {
    margin-top: 50px;
    margin-bottom: 50px
  }
  .mlr-lg-50 {
    margin-left: 50px;
    margin-right: 50px
  }
  .mt-lg-50 {
    margin-top: 50px
  }
  .mr-lg-50 {
    margin-right: 50px
  }
  .mb-lg-50 {
    margin-bottom: 50px
  }
  .ml-lg-50 {
    margin-left: 50px
  }
  .m-lg-55 {
    margin: 55px
  }
  .mtb-lg-55 {
    margin-top: 55px;
    margin-bottom: 55px
  }
  .mlr-lg-55 {
    margin-left: 55px;
    margin-right: 55px
  }
  .mt-lg-55 {
    margin-top: 55px
  }
  .mr-lg-55 {
    margin-right: 55px
  }
  .mb-lg-55 {
    margin-bottom: 55px
  }
  .ml-lg-55 {
    margin-left: 55px
  }
  .m-lg-60 {
    margin: 60px
  }
  .mtb-lg-60 {
    margin-top: 60px;
    margin-bottom: 60px
  }
  .mlr-lg-60 {
    margin-left: 60px;
    margin-right: 60px
  }
  .mt-lg-60 {
    margin-top: 60px
  }
  .mr-lg-60 {
    margin-right: 60px
  }
  .mb-lg-60 {
    margin-bottom: 60px
  }
  .ml-lg-60 {
    margin-left: 60px
  }
  .m-lg-65 {
    margin: 65px
  }
  .mtb-lg-65 {
    margin-top: 65px;
    margin-bottom: 65px
  }
  .mlr-lg-65 {
    margin-left: 65px;
    margin-right: 65px
  }
  .mt-lg-65 {
    margin-top: 65px
  }
  .mr-lg-65 {
    margin-right: 65px
  }
  .mb-lg-65 {
    margin-bottom: 65px
  }
  .ml-lg-65 {
    margin-left: 65px
  }
  .m-lg-70 {
    margin: 70px
  }
  .mtb-lg-70 {
    margin-top: 70px;
    margin-bottom: 70px
  }
  .mlr-lg-70 {
    margin-left: 70px;
    margin-right: 70px
  }
  .mt-lg-70 {
    margin-top: 70px
  }
  .mr-lg-70 {
    margin-right: 70px
  }
  .mb-lg-70 {
    margin-bottom: 70px
  }
  .ml-lg-70 {
    margin-left: 70px
  }
  .m-lg-75 {
    margin: 75px
  }
  .mtb-lg-75 {
    margin-top: 75px;
    margin-bottom: 75px
  }
  .mlr-lg-75 {
    margin-left: 75px;
    margin-right: 75px
  }
  .mt-lg-75 {
    margin-top: 75px
  }
  .mr-lg-75 {
    margin-right: 75px
  }
  .mb-lg-75 {
    margin-bottom: 75px
  }
  .ml-lg-75 {
    margin-left: 75px
  }
  .m-lg-80 {
    margin: 80px
  }
  .mtb-lg-80 {
    margin-top: 80px;
    margin-bottom: 80px
  }
  .mlr-lg-80 {
    margin-left: 80px;
    margin-right: 80px
  }
  .mt-lg-80 {
    margin-top: 80px
  }
  .mr-lg-80 {
    margin-right: 80px
  }
  .mb-lg-80 {
    margin-bottom: 80px
  }
  .ml-lg-80 {
    margin-left: 80px
  }
  .m-lg-85 {
    margin: 85px
  }
  .mtb-lg-85 {
    margin-top: 85px;
    margin-bottom: 85px
  }
  .mlr-lg-85 {
    margin-left: 85px;
    margin-right: 85px
  }
  .mt-lg-85 {
    margin-top: 85px
  }
  .mr-lg-85 {
    margin-right: 85px
  }
  .mb-lg-85 {
    margin-bottom: 85px
  }
  .ml-lg-85 {
    margin-left: 85px
  }
  .m-lg-90 {
    margin: 90px
  }
  .mtb-lg-90 {
    margin-top: 90px;
    margin-bottom: 90px
  }
  .mlr-lg-90 {
    margin-left: 90px;
    margin-right: 90px
  }
  .mt-lg-90 {
    margin-top: 90px
  }
  .mr-lg-90 {
    margin-right: 90px
  }
  .mb-lg-90 {
    margin-bottom: 90px
  }
  .ml-lg-90 {
    margin-left: 90px
  }
  .m-lg-95 {
    margin: 95px
  }
  .mtb-lg-95 {
    margin-top: 95px;
    margin-bottom: 95px
  }
  .mlr-lg-95 {
    margin-left: 95px;
    margin-right: 95px
  }
  .mt-lg-95 {
    margin-top: 95px
  }
  .mr-lg-95 {
    margin-right: 95px
  }
  .mb-lg-95 {
    margin-bottom: 95px
  }
  .ml-lg-95 {
    margin-left: 95px
  }
  .m-lg-100 {
    margin: 100px
  }
  .mtb-lg-100 {
    margin-top: 100px;
    margin-bottom: 100px
  }
  .mlr-lg-100 {
    margin-left: 100px;
    margin-right: 100px
  }
  .mt-lg-100 {
    margin-top: 100px
  }
  .mr-lg-100 {
    margin-right: 100px
  }
  .mb-lg-100 {
    margin-bottom: 100px
  }
  .ml-lg-100 {
    margin-left: 100px
  }
  .p-lg-0 {
    padding: 0
  }
  .ptb-lg-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .plr-lg-0 {
    padding-left: 0;
    padding-right: 0
  }
  .pt-lg-0 {
    padding-top: 0
  }
  .pr-lg-0 {
    padding-right: 0
  }
  .pb-lg-0 {
    padding-bottom: 0
  }
  .pl-lg-0 {
    padding-left: 0
  }
  .p-lg-5 {
    padding: 5px
  }
  .ptb-lg-5 {
    padding-top: 5px;
    padding-bottom: 5px
  }
  .plr-lg-5 {
    padding-left: 5px;
    padding-right: 5px
  }
  .pt-lg-5 {
    padding-top: 5px
  }
  .pr-lg-5 {
    padding-right: 5px
  }
  .pb-lg-5 {
    padding-bottom: 5px
  }
  .pl-lg-5 {
    padding-left: 5px
  }
  .p-lg-10 {
    padding: 10px
  }
  .ptb-lg-10 {
    padding-top: 10px;
    padding-bottom: 10px
  }
  .plr-lg-10 {
    padding-left: 10px;
    padding-right: 10px
  }
  .pt-lg-10 {
    padding-top: 10px
  }
  .pr-lg-10 {
    padding-right: 10px
  }
  .pb-lg-10 {
    padding-bottom: 10px
  }
  .pl-lg-10 {
    padding-left: 10px
  }
  .p-lg-15 {
    padding: 15px
  }
  .ptb-lg-15 {
    padding-top: 15px;
    padding-bottom: 15px
  }
  .plr-lg-15 {
    padding-left: 15px;
    padding-right: 15px
  }
  .pt-lg-15 {
    padding-top: 15px
  }
  .pr-lg-15 {
    padding-right: 15px
  }
  .pb-lg-15 {
    padding-bottom: 15px
  }
  .pl-lg-15 {
    padding-left: 15px
  }
  .p-lg-20 {
    padding: 20px
  }
  .ptb-lg-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
  .plr-lg-20 {
    padding-left: 20px;
    padding-right: 20px
  }
  .pt-lg-20 {
    padding-top: 20px
  }
  .pr-lg-20 {
    padding-right: 20px
  }
  .pb-lg-20 {
    padding-bottom: 20px
  }
  .pl-lg-20 {
    padding-left: 20px
  }
  .p-lg-25 {
    padding: 25px
  }
  .ptb-lg-25 {
    padding-top: 25px;
    padding-bottom: 25px
  }
  .plr-lg-25 {
    padding-left: 25px;
    padding-right: 25px
  }
  .pt-lg-25 {
    padding-top: 25px
  }
  .pr-lg-25 {
    padding-right: 25px
  }
  .pb-lg-25 {
    padding-bottom: 25px
  }
  .pl-lg-25 {
    padding-left: 25px
  }
  .p-lg-30 {
    padding: 30px
  }
  .ptb-lg-30 {
    padding-top: 30px;
    padding-bottom: 30px
  }
  .plr-lg-30 {
    padding-left: 30px;
    padding-right: 30px
  }
  .pt-lg-30 {
    padding-top: 30px
  }
  .pr-lg-30 {
    padding-right: 30px
  }
  .pb-lg-30 {
    padding-bottom: 30px
  }
  .pl-lg-30 {
    padding-left: 30px
  }
  .p-lg-35 {
    padding: 35px
  }
  .ptb-lg-35 {
    padding-top: 35px;
    padding-bottom: 35px
  }
  .plr-lg-35 {
    padding-left: 35px;
    padding-right: 35px
  }
  .pt-lg-35 {
    padding-top: 35px
  }
  .pr-lg-35 {
    padding-right: 35px
  }
  .pb-lg-35 {
    padding-bottom: 35px
  }
  .pl-lg-35 {
    padding-left: 35px
  }
  .p-lg-40 {
    padding: 40px
  }
  .ptb-lg-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
  .plr-lg-40 {
    padding-left: 40px;
    padding-right: 40px
  }
  .pt-lg-40 {
    padding-top: 40px
  }
  .pr-lg-40 {
    padding-right: 40px
  }
  .pb-lg-40 {
    padding-bottom: 40px
  }
  .pl-lg-40 {
    padding-left: 40px
  }
  .p-lg-45 {
    padding: 45px
  }
  .ptb-lg-45 {
    padding-top: 45px;
    padding-bottom: 45px
  }
  .plr-lg-45 {
    padding-left: 45px;
    padding-right: 45px
  }
  .pt-lg-45 {
    padding-top: 45px
  }
  .pr-lg-45 {
    padding-right: 45px
  }
  .pb-lg-45 {
    padding-bottom: 45px
  }
  .pl-lg-45 {
    padding-left: 45px
  }
  .p-lg-50 {
    padding: 50px
  }
  .ptb-lg-50 {
    padding-top: 50px;
    padding-bottom: 50px
  }
  .plr-lg-50 {
    padding-left: 50px;
    padding-right: 50px
  }
  .pt-lg-50 {
    padding-top: 50px
  }
  .pr-lg-50 {
    padding-right: 50px
  }
  .pb-lg-50 {
    padding-bottom: 50px
  }
  .pl-lg-50 {
    padding-left: 50px
  }
  .p-lg-55 {
    padding: 55px
  }
  .ptb-lg-55 {
    padding-top: 55px;
    padding-bottom: 55px
  }
  .plr-lg-55 {
    padding-left: 55px;
    padding-right: 55px
  }
  .pt-lg-55 {
    padding-top: 55px
  }
  .pr-lg-55 {
    padding-right: 55px
  }
  .pb-lg-55 {
    padding-bottom: 55px
  }
  .pl-lg-55 {
    padding-left: 55px
  }
  .p-lg-60 {
    padding: 60px
  }
  .ptb-lg-60 {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .plr-lg-60 {
    padding-left: 60px;
    padding-right: 60px
  }
  .pt-lg-60 {
    padding-top: 60px
  }
  .pr-lg-60 {
    padding-right: 60px
  }
  .pb-lg-60 {
    padding-bottom: 60px
  }
  .pl-lg-60 {
    padding-left: 60px
  }
  .p-lg-65 {
    padding: 65px
  }
  .ptb-lg-65 {
    padding-top: 65px;
    padding-bottom: 65px
  }
  .plr-lg-65 {
    padding-left: 65px;
    padding-right: 65px
  }
  .pt-lg-65 {
    padding-top: 65px
  }
  .pr-lg-65 {
    padding-right: 65px
  }
  .pb-lg-65 {
    padding-bottom: 65px
  }
  .pl-lg-65 {
    padding-left: 65px
  }
  .p-lg-70 {
    padding: 70px
  }
  .ptb-lg-70 {
    padding-top: 70px;
    padding-bottom: 70px
  }
  .plr-lg-70 {
    padding-left: 70px;
    padding-right: 70px
  }
  .pt-lg-70 {
    padding-top: 70px
  }
  .pr-lg-70 {
    padding-right: 70px
  }
  .pb-lg-70 {
    padding-bottom: 70px
  }
  .pl-lg-70 {
    padding-left: 70px
  }
  .p-lg-75 {
    padding: 75px
  }
  .ptb-lg-75 {
    padding-top: 75px;
    padding-bottom: 75px
  }
  .plr-lg-75 {
    padding-left: 75px;
    padding-right: 75px
  }
  .pt-lg-75 {
    padding-top: 75px
  }
  .pr-lg-75 {
    padding-right: 75px
  }
  .pb-lg-75 {
    padding-bottom: 75px
  }
  .pl-lg-75 {
    padding-left: 75px
  }
  .p-lg-80 {
    padding: 80px
  }
  .ptb-lg-80 {
    padding-top: 80px;
    padding-bottom: 80px
  }
  .plr-lg-80 {
    padding-left: 80px;
    padding-right: 80px
  }
  .pt-lg-80 {
    padding-top: 80px
  }
  .pr-lg-80 {
    padding-right: 80px
  }
  .pb-lg-80 {
    padding-bottom: 80px
  }
  .pl-lg-80 {
    padding-left: 80px
  }
  .p-lg-85 {
    padding: 85px
  }
  .ptb-lg-85 {
    padding-top: 85px;
    padding-bottom: 85px
  }
  .plr-lg-85 {
    padding-left: 85px;
    padding-right: 85px
  }
  .pt-lg-85 {
    padding-top: 85px
  }
  .pr-lg-85 {
    padding-right: 85px
  }
  .pb-lg-85 {
    padding-bottom: 85px
  }
  .pl-lg-85 {
    padding-left: 85px
  }
  .p-lg-90 {
    padding: 90px
  }
  .ptb-lg-90 {
    padding-top: 90px;
    padding-bottom: 90px
  }
  .plr-lg-90 {
    padding-left: 90px;
    padding-right: 90px
  }
  .pt-lg-90 {
    padding-top: 90px
  }
  .pr-lg-90 {
    padding-right: 90px
  }
  .pb-lg-90 {
    padding-bottom: 90px
  }
  .pl-lg-90 {
    padding-left: 90px
  }
  .p-lg-95 {
    padding: 95px
  }
  .ptb-lg-95 {
    padding-top: 95px;
    padding-bottom: 95px
  }
  .plr-lg-95 {
    padding-left: 95px;
    padding-right: 95px
  }
  .pt-lg-95 {
    padding-top: 95px
  }
  .pr-lg-95 {
    padding-right: 95px
  }
  .pb-lg-95 {
    padding-bottom: 95px
  }
  .pl-lg-95 {
    padding-left: 95px
  }
  .p-lg-100 {
    padding: 100px
  }
  .ptb-lg-100 {
    padding-top: 100px;
    padding-bottom: 100px
  }
  .plr-lg-100 {
    padding-left: 100px;
    padding-right: 100px
  }
  .pt-lg-100 {
    padding-top: 100px
  }
  .pr-lg-100 {
    padding-right: 100px
  }
  .pb-lg-100 {
    padding-bottom: 100px
  }
  .pl-lg-100 {
    padding-left: 100px
  }
  .fs-lg-12 {
    font-size: 12px
  }
  .fs-lg-14 {
    font-size: 14px
  }
  .fs-lg-16 {
    font-size: 16px
  }
  .fs-lg-18 {
    font-size: 18px
  }
  .fs-lg-20 {
    font-size: 20px
  }
  .fs-lg-22 {
    font-size: 22px
  }
  .fs-lg-24 {
    font-size: 24px
  }
  .fs-lg-26 {
    font-size: 26px
  }
  .fs-lg-28 {
    font-size: 28px
  }
  .fs-lg-30 {
    font-size: 30px
  }
  .fs-lg-32 {
    font-size: 32px
  }
  .fs-lg-34 {
    font-size: 34px
  }
  .fs-lg-36 {
    font-size: 36px
  }
  .fs-lg-38 {
    font-size: 38px
  }
  .fs-lg-40 {
    font-size: 40px
  }
  .fs-lg-42 {
    font-size: 42px
  }
  .fs-lg-44 {
    font-size: 44px
  }
  .fs-lg-46 {
    font-size: 46px
  }
  .fs-lg-48 {
    font-size: 48px
  }
  .fs-lg-50 {
    font-size: 50px
  }
  .fs-lg-52 {
    font-size: 52px
  }
  .fs-lg-54 {
    font-size: 54px
  }
  .fs-lg-56 {
    font-size: 56px
  }
  .fs-lg-58 {
    font-size: 58px
  }
  .fs-lg-60 {
    font-size: 60px
  }
  .fs-lg-62 {
    font-size: 62px
  }
  .fs-lg-64 {
    font-size: 64px
  }
  .fs-lg-66 {
    font-size: 66px
  }
  .fs-lg-68 {
    font-size: 68px
  }
  .fs-lg-70 {
    font-size: 70px
  }
  .fs-lg-72 {
    font-size: 72px
  }
  .fs-lg-74 {
    font-size: 74px
  }
  .fs-lg-76 {
    font-size: 76px
  }
  .fs-lg-78 {
    font-size: 78px
  }
  .fs-lg-80 {
    font-size: 80px
  }
  .fs-lg-82 {
    font-size: 82px
  }
  .fs-lg-84 {
    font-size: 84px
  }
  .fs-lg-86 {
    font-size: 86px
  }
  .fs-lg-88 {
    font-size: 88px
  }
  .fs-lg-90 {
    font-size: 90px
  }
  .fs-lg-92 {
    font-size: 92px
  }
  .fs-lg-94 {
    font-size: 94px
  }
  .fs-lg-96 {
    font-size: 96px
  }
  .fs-lg-98 {
    font-size: 98px
  }
  .fs-lg-100 {
    font-size: 100px
  }
  .lh-lg-10 {
    line-height: 1
  }
  .lh-lg-11 {
    line-height: 1.1
  }
  .lh-lg-12 {
    line-height: 1.2
  }
  .lh-lg-13 {
    line-height: 1.3
  }
  .lh-lg-14 {
    line-height: 1.4
  }
  .lh-lg-15 {
    line-height: 1.5
  }
  .lh-lg-16 {
    line-height: 1.6
  }
  .lh-lg-17 {
    line-height: 1.7
  }
  .lh-lg-18 {
    line-height: 1.8
  }
  .lh-lg-19 {
    line-height: 1.9
  }
  .lh-lg-20 {
    line-height: 2
  }
}

@media screen and (min-width:1440px) {
  .m-xlg-0 {
    margin: 0
  }
  .mtb-xlg-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  .mlr-xlg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .mt-xlg-0 {
    margin-top: 0
  }
  .mr-xlg-0 {
    margin-right: 0
  }
  .mb-xlg-0 {
    margin-bottom: 0
  }
  .ml-xlg-0 {
    margin-left: 0
  }
  .m-xlg-5 {
    margin: 5px
  }
  .mtb-xlg-5 {
    margin-top: 5px;
    margin-bottom: 5px
  }
  .mlr-xlg-5 {
    margin-left: 5px;
    margin-right: 5px
  }
  .mt-xlg-5 {
    margin-top: 5px
  }
  .mr-xlg-5 {
    margin-right: 5px
  }
  .mb-xlg-5 {
    margin-bottom: 5px
  }
  .ml-xlg-5 {
    margin-left: 5px
  }
  .m-xlg-10 {
    margin: 10px
  }
  .mtb-xlg-10 {
    margin-top: 10px;
    margin-bottom: 10px
  }
  .mlr-xlg-10 {
    margin-left: 10px;
    margin-right: 10px
  }
  .mt-xlg-10 {
    margin-top: 10px
  }
  .mr-xlg-10 {
    margin-right: 10px
  }
  .mb-xlg-10 {
    margin-bottom: 10px
  }
  .ml-xlg-10 {
    margin-left: 10px
  }
  .m-xlg-15 {
    margin: 15px
  }
  .mtb-xlg-15 {
    margin-top: 15px;
    margin-bottom: 15px
  }
  .mlr-xlg-15 {
    margin-left: 15px;
    margin-right: 15px
  }
  .mt-xlg-15 {
    margin-top: 15px
  }
  .mr-xlg-15 {
    margin-right: 15px
  }
  .mb-xlg-15 {
    margin-bottom: 15px
  }
  .ml-xlg-15 {
    margin-left: 15px
  }
  .m-xlg-20 {
    margin: 20px
  }
  .mtb-xlg-20 {
    margin-top: 20px;
    margin-bottom: 20px
  }
  .mlr-xlg-20 {
    margin-left: 20px;
    margin-right: 20px
  }
  .mt-xlg-20 {
    margin-top: 20px
  }
  .mr-xlg-20 {
    margin-right: 20px
  }
  .mb-xlg-20 {
    margin-bottom: 20px
  }
  .ml-xlg-20 {
    margin-left: 20px
  }
  .m-xlg-25 {
    margin: 25px
  }
  .mtb-xlg-25 {
    margin-top: 25px;
    margin-bottom: 25px
  }
  .mlr-xlg-25 {
    margin-left: 25px;
    margin-right: 25px
  }
  .mt-xlg-25 {
    margin-top: 25px
  }
  .mr-xlg-25 {
    margin-right: 25px
  }
  .mb-xlg-25 {
    margin-bottom: 25px
  }
  .ml-xlg-25 {
    margin-left: 25px
  }
  .m-xlg-30 {
    margin: 30px
  }
  .mtb-xlg-30 {
    margin-top: 30px;
    margin-bottom: 30px
  }
  .mlr-xlg-30 {
    margin-left: 30px;
    margin-right: 30px
  }
  .mt-xlg-30 {
    margin-top: 30px
  }
  .mr-xlg-30 {
    margin-right: 30px
  }
  .mb-xlg-30 {
    margin-bottom: 30px
  }
  .ml-xlg-30 {
    margin-left: 30px
  }
  .m-xlg-35 {
    margin: 35px
  }
  .mtb-xlg-35 {
    margin-top: 35px;
    margin-bottom: 35px
  }
  .mlr-xlg-35 {
    margin-left: 35px;
    margin-right: 35px
  }
  .mt-xlg-35 {
    margin-top: 35px
  }
  .mr-xlg-35 {
    margin-right: 35px
  }
  .mb-xlg-35 {
    margin-bottom: 35px
  }
  .ml-xlg-35 {
    margin-left: 35px
  }
  .m-xlg-40 {
    margin: 40px
  }
  .mtb-xlg-40 {
    margin-top: 40px;
    margin-bottom: 40px
  }
  .mlr-xlg-40 {
    margin-left: 40px;
    margin-right: 40px
  }
  .mt-xlg-40 {
    margin-top: 40px
  }
  .mr-xlg-40 {
    margin-right: 40px
  }
  .mb-xlg-40 {
    margin-bottom: 40px
  }
  .ml-xlg-40 {
    margin-left: 40px
  }
  .m-xlg-45 {
    margin: 45px
  }
  .mtb-xlg-45 {
    margin-top: 45px;
    margin-bottom: 45px
  }
  .mlr-xlg-45 {
    margin-left: 45px;
    margin-right: 45px
  }
  .mt-xlg-45 {
    margin-top: 45px
  }
  .mr-xlg-45 {
    margin-right: 45px
  }
  .mb-xlg-45 {
    margin-bottom: 45px
  }
  .ml-xlg-45 {
    margin-left: 45px
  }
  .m-xlg-50 {
    margin: 50px
  }
  .mtb-xlg-50 {
    margin-top: 50px;
    margin-bottom: 50px
  }
  .mlr-xlg-50 {
    margin-left: 50px;
    margin-right: 50px
  }
  .mt-xlg-50 {
    margin-top: 50px
  }
  .mr-xlg-50 {
    margin-right: 50px
  }
  .mb-xlg-50 {
    margin-bottom: 50px
  }
  .ml-xlg-50 {
    margin-left: 50px
  }
  .m-xlg-55 {
    margin: 55px
  }
  .mtb-xlg-55 {
    margin-top: 55px;
    margin-bottom: 55px
  }
  .mlr-xlg-55 {
    margin-left: 55px;
    margin-right: 55px
  }
  .mt-xlg-55 {
    margin-top: 55px
  }
  .mr-xlg-55 {
    margin-right: 55px
  }
  .mb-xlg-55 {
    margin-bottom: 55px
  }
  .ml-xlg-55 {
    margin-left: 55px
  }
  .m-xlg-60 {
    margin: 60px
  }
  .mtb-xlg-60 {
    margin-top: 60px;
    margin-bottom: 60px
  }
  .mlr-xlg-60 {
    margin-left: 60px;
    margin-right: 60px
  }
  .mt-xlg-60 {
    margin-top: 60px
  }
  .mr-xlg-60 {
    margin-right: 60px
  }
  .mb-xlg-60 {
    margin-bottom: 60px
  }
  .ml-xlg-60 {
    margin-left: 60px
  }
  .m-xlg-65 {
    margin: 65px
  }
  .mtb-xlg-65 {
    margin-top: 65px;
    margin-bottom: 65px
  }
  .mlr-xlg-65 {
    margin-left: 65px;
    margin-right: 65px
  }
  .mt-xlg-65 {
    margin-top: 65px
  }
  .mr-xlg-65 {
    margin-right: 65px
  }
  .mb-xlg-65 {
    margin-bottom: 65px
  }
  .ml-xlg-65 {
    margin-left: 65px
  }
  .m-xlg-70 {
    margin: 70px
  }
  .mtb-xlg-70 {
    margin-top: 70px;
    margin-bottom: 70px
  }
  .mlr-xlg-70 {
    margin-left: 70px;
    margin-right: 70px
  }
  .mt-xlg-70 {
    margin-top: 70px
  }
  .mr-xlg-70 {
    margin-right: 70px
  }
  .mb-xlg-70 {
    margin-bottom: 70px
  }
  .ml-xlg-70 {
    margin-left: 70px
  }
  .m-xlg-75 {
    margin: 75px
  }
  .mtb-xlg-75 {
    margin-top: 75px;
    margin-bottom: 75px
  }
  .mlr-xlg-75 {
    margin-left: 75px;
    margin-right: 75px
  }
  .mt-xlg-75 {
    margin-top: 75px
  }
  .mr-xlg-75 {
    margin-right: 75px
  }
  .mb-xlg-75 {
    margin-bottom: 75px
  }
  .ml-xlg-75 {
    margin-left: 75px
  }
  .m-xlg-80 {
    margin: 80px
  }
  .mtb-xlg-80 {
    margin-top: 80px;
    margin-bottom: 80px
  }
  .mlr-xlg-80 {
    margin-left: 80px;
    margin-right: 80px
  }
  .mt-xlg-80 {
    margin-top: 80px
  }
  .mr-xlg-80 {
    margin-right: 80px
  }
  .mb-xlg-80 {
    margin-bottom: 80px
  }
  .ml-xlg-80 {
    margin-left: 80px
  }
  .m-xlg-85 {
    margin: 85px
  }
  .mtb-xlg-85 {
    margin-top: 85px;
    margin-bottom: 85px
  }
  .mlr-xlg-85 {
    margin-left: 85px;
    margin-right: 85px
  }
  .mt-xlg-85 {
    margin-top: 85px
  }
  .mr-xlg-85 {
    margin-right: 85px
  }
  .mb-xlg-85 {
    margin-bottom: 85px
  }
  .ml-xlg-85 {
    margin-left: 85px
  }
  .m-xlg-90 {
    margin: 90px
  }
  .mtb-xlg-90 {
    margin-top: 90px;
    margin-bottom: 90px
  }
  .mlr-xlg-90 {
    margin-left: 90px;
    margin-right: 90px
  }
  .mt-xlg-90 {
    margin-top: 90px
  }
  .mr-xlg-90 {
    margin-right: 90px
  }
  .mb-xlg-90 {
    margin-bottom: 90px
  }
  .ml-xlg-90 {
    margin-left: 90px
  }
  .m-xlg-95 {
    margin: 95px
  }
  .mtb-xlg-95 {
    margin-top: 95px;
    margin-bottom: 95px
  }
  .mlr-xlg-95 {
    margin-left: 95px;
    margin-right: 95px
  }
  .mt-xlg-95 {
    margin-top: 95px
  }
  .mr-xlg-95 {
    margin-right: 95px
  }
  .mb-xlg-95 {
    margin-bottom: 95px
  }
  .ml-xlg-95 {
    margin-left: 95px
  }
  .m-xlg-100 {
    margin: 100px
  }
  .mtb-xlg-100 {
    margin-top: 100px;
    margin-bottom: 100px
  }
  .mlr-xlg-100 {
    margin-left: 100px;
    margin-right: 100px
  }
  .mt-xlg-100 {
    margin-top: 100px
  }
  .mr-xlg-100 {
    margin-right: 100px
  }
  .mb-xlg-100 {
    margin-bottom: 100px
  }
  .ml-xlg-100 {
    margin-left: 100px
  }
  .p-xlg-0 {
    padding: 0
  }
  .ptb-xlg-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .plr-xlg-0 {
    padding-left: 0;
    padding-right: 0
  }
  .pt-xlg-0 {
    padding-top: 0
  }
  .pr-xlg-0 {
    padding-right: 0
  }
  .pb-xlg-0 {
    padding-bottom: 0
  }
  .pl-xlg-0 {
    padding-left: 0
  }
  .p-xlg-5 {
    padding: 5px
  }
  .ptb-xlg-5 {
    padding-top: 5px;
    padding-bottom: 5px
  }
  .plr-xlg-5 {
    padding-left: 5px;
    padding-right: 5px
  }
  .pt-xlg-5 {
    padding-top: 5px
  }
  .pr-xlg-5 {
    padding-right: 5px
  }
  .pb-xlg-5 {
    padding-bottom: 5px
  }
  .pl-xlg-5 {
    padding-left: 5px
  }
  .p-xlg-10 {
    padding: 10px
  }
  .ptb-xlg-10 {
    padding-top: 10px;
    padding-bottom: 10px
  }
  .plr-xlg-10 {
    padding-left: 10px;
    padding-right: 10px
  }
  .pt-xlg-10 {
    padding-top: 10px
  }
  .pr-xlg-10 {
    padding-right: 10px
  }
  .pb-xlg-10 {
    padding-bottom: 10px
  }
  .pl-xlg-10 {
    padding-left: 10px
  }
  .p-xlg-15 {
    padding: 15px
  }
  .ptb-xlg-15 {
    padding-top: 15px;
    padding-bottom: 15px
  }
  .plr-xlg-15 {
    padding-left: 15px;
    padding-right: 15px
  }
  .pt-xlg-15 {
    padding-top: 15px
  }
  .pr-xlg-15 {
    padding-right: 15px
  }
  .pb-xlg-15 {
    padding-bottom: 15px
  }
  .pl-xlg-15 {
    padding-left: 15px
  }
  .p-xlg-20 {
    padding: 20px
  }
  .ptb-xlg-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
  .plr-xlg-20 {
    padding-left: 20px;
    padding-right: 20px
  }
  .pt-xlg-20 {
    padding-top: 20px
  }
  .pr-xlg-20 {
    padding-right: 20px
  }
  .pb-xlg-20 {
    padding-bottom: 20px
  }
  .pl-xlg-20 {
    padding-left: 20px
  }
  .p-xlg-25 {
    padding: 25px
  }
  .ptb-xlg-25 {
    padding-top: 25px;
    padding-bottom: 25px
  }
  .plr-xlg-25 {
    padding-left: 25px;
    padding-right: 25px
  }
  .pt-xlg-25 {
    padding-top: 25px
  }
  .pr-xlg-25 {
    padding-right: 25px
  }
  .pb-xlg-25 {
    padding-bottom: 25px
  }
  .pl-xlg-25 {
    padding-left: 25px
  }
  .p-xlg-30 {
    padding: 30px
  }
  .ptb-xlg-30 {
    padding-top: 30px;
    padding-bottom: 30px
  }
  .plr-xlg-30 {
    padding-left: 30px;
    padding-right: 30px
  }
  .pt-xlg-30 {
    padding-top: 30px
  }
  .pr-xlg-30 {
    padding-right: 30px
  }
  .pb-xlg-30 {
    padding-bottom: 30px
  }
  .pl-xlg-30 {
    padding-left: 30px
  }
  .p-xlg-35 {
    padding: 35px
  }
  .ptb-xlg-35 {
    padding-top: 35px;
    padding-bottom: 35px
  }
  .plr-xlg-35 {
    padding-left: 35px;
    padding-right: 35px
  }
  .pt-xlg-35 {
    padding-top: 35px
  }
  .pr-xlg-35 {
    padding-right: 35px
  }
  .pb-xlg-35 {
    padding-bottom: 35px
  }
  .pl-xlg-35 {
    padding-left: 35px
  }
  .p-xlg-40 {
    padding: 40px
  }
  .ptb-xlg-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
  .plr-xlg-40 {
    padding-left: 40px;
    padding-right: 40px
  }
  .pt-xlg-40 {
    padding-top: 40px
  }
  .pr-xlg-40 {
    padding-right: 40px
  }
  .pb-xlg-40 {
    padding-bottom: 40px
  }
  .pl-xlg-40 {
    padding-left: 40px
  }
  .p-xlg-45 {
    padding: 45px
  }
  .ptb-xlg-45 {
    padding-top: 45px;
    padding-bottom: 45px
  }
  .plr-xlg-45 {
    padding-left: 45px;
    padding-right: 45px
  }
  .pt-xlg-45 {
    padding-top: 45px
  }
  .pr-xlg-45 {
    padding-right: 45px
  }
  .pb-xlg-45 {
    padding-bottom: 45px
  }
  .pl-xlg-45 {
    padding-left: 45px
  }
  .p-xlg-50 {
    padding: 50px
  }
  .ptb-xlg-50 {
    padding-top: 50px;
    padding-bottom: 50px
  }
  .plr-xlg-50 {
    padding-left: 50px;
    padding-right: 50px
  }
  .pt-xlg-50 {
    padding-top: 50px
  }
  .pr-xlg-50 {
    padding-right: 50px
  }
  .pb-xlg-50 {
    padding-bottom: 50px
  }
  .pl-xlg-50 {
    padding-left: 50px
  }
  .p-xlg-55 {
    padding: 55px
  }
  .ptb-xlg-55 {
    padding-top: 55px;
    padding-bottom: 55px
  }
  .plr-xlg-55 {
    padding-left: 55px;
    padding-right: 55px
  }
  .pt-xlg-55 {
    padding-top: 55px
  }
  .pr-xlg-55 {
    padding-right: 55px
  }
  .pb-xlg-55 {
    padding-bottom: 55px
  }
  .pl-xlg-55 {
    padding-left: 55px
  }
  .p-xlg-60 {
    padding: 60px
  }
  .ptb-xlg-60 {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .plr-xlg-60 {
    padding-left: 60px;
    padding-right: 60px
  }
  .pt-xlg-60 {
    padding-top: 60px
  }
  .pr-xlg-60 {
    padding-right: 60px
  }
  .pb-xlg-60 {
    padding-bottom: 60px
  }
  .pl-xlg-60 {
    padding-left: 60px
  }
  .p-xlg-65 {
    padding: 65px
  }
  .ptb-xlg-65 {
    padding-top: 65px;
    padding-bottom: 65px
  }
  .plr-xlg-65 {
    padding-left: 65px;
    padding-right: 65px
  }
  .pt-xlg-65 {
    padding-top: 65px
  }
  .pr-xlg-65 {
    padding-right: 65px
  }
  .pb-xlg-65 {
    padding-bottom: 65px
  }
  .pl-xlg-65 {
    padding-left: 65px
  }
  .p-xlg-70 {
    padding: 70px
  }
  .ptb-xlg-70 {
    padding-top: 70px;
    padding-bottom: 70px
  }
  .plr-xlg-70 {
    padding-left: 70px;
    padding-right: 70px
  }
  .pt-xlg-70 {
    padding-top: 70px
  }
  .pr-xlg-70 {
    padding-right: 70px
  }
  .pb-xlg-70 {
    padding-bottom: 70px
  }
  .pl-xlg-70 {
    padding-left: 70px
  }
  .p-xlg-75 {
    padding: 75px
  }
  .ptb-xlg-75 {
    padding-top: 75px;
    padding-bottom: 75px
  }
  .plr-xlg-75 {
    padding-left: 75px;
    padding-right: 75px
  }
  .pt-xlg-75 {
    padding-top: 75px
  }
  .pr-xlg-75 {
    padding-right: 75px
  }
  .pb-xlg-75 {
    padding-bottom: 75px
  }
  .pl-xlg-75 {
    padding-left: 75px
  }
  .p-xlg-80 {
    padding: 80px
  }
  .ptb-xlg-80 {
    padding-top: 80px;
    padding-bottom: 80px
  }
  .plr-xlg-80 {
    padding-left: 80px;
    padding-right: 80px
  }
  .pt-xlg-80 {
    padding-top: 80px
  }
  .pr-xlg-80 {
    padding-right: 80px
  }
  .pb-xlg-80 {
    padding-bottom: 80px
  }
  .pl-xlg-80 {
    padding-left: 80px
  }
  .p-xlg-85 {
    padding: 85px
  }
  .ptb-xlg-85 {
    padding-top: 85px;
    padding-bottom: 85px
  }
  .plr-xlg-85 {
    padding-left: 85px;
    padding-right: 85px
  }
  .pt-xlg-85 {
    padding-top: 85px
  }
  .pr-xlg-85 {
    padding-right: 85px
  }
  .pb-xlg-85 {
    padding-bottom: 85px
  }
  .pl-xlg-85 {
    padding-left: 85px
  }
  .p-xlg-90 {
    padding: 90px
  }
  .ptb-xlg-90 {
    padding-top: 90px;
    padding-bottom: 90px
  }
  .plr-xlg-90 {
    padding-left: 90px;
    padding-right: 90px
  }
  .pt-xlg-90 {
    padding-top: 90px
  }
  .pr-xlg-90 {
    padding-right: 90px
  }
  .pb-xlg-90 {
    padding-bottom: 90px
  }
  .pl-xlg-90 {
    padding-left: 90px
  }
  .p-xlg-95 {
    padding: 95px
  }
  .ptb-xlg-95 {
    padding-top: 95px;
    padding-bottom: 95px
  }
  .plr-xlg-95 {
    padding-left: 95px;
    padding-right: 95px
  }
  .pt-xlg-95 {
    padding-top: 95px
  }
  .pr-xlg-95 {
    padding-right: 95px
  }
  .pb-xlg-95 {
    padding-bottom: 95px
  }
  .pl-xlg-95 {
    padding-left: 95px
  }
  .p-xlg-100 {
    padding: 100px
  }
  .ptb-xlg-100 {
    padding-top: 100px;
    padding-bottom: 100px
  }
  .plr-xlg-100 {
    padding-left: 100px;
    padding-right: 100px
  }
  .pt-xlg-100 {
    padding-top: 100px
  }
  .pr-xlg-100 {
    padding-right: 100px
  }
  .pb-xlg-100 {
    padding-bottom: 100px
  }
  .pl-xlg-100 {
    padding-left: 100px
  }
  .fs-xlg-12 {
    font-size: 12px
  }
  .fs-xlg-14 {
    font-size: 14px
  }
  .fs-xlg-16 {
    font-size: 16px
  }
  .fs-xlg-18 {
    font-size: 18px
  }
  .fs-xlg-20 {
    font-size: 20px
  }
  .fs-xlg-22 {
    font-size: 22px
  }
  .fs-xlg-24 {
    font-size: 24px
  }
  .fs-xlg-26 {
    font-size: 26px
  }
  .fs-xlg-28 {
    font-size: 28px
  }
  .fs-xlg-30 {
    font-size: 30px
  }
  .fs-xlg-32 {
    font-size: 32px
  }
  .fs-xlg-34 {
    font-size: 34px
  }
  .fs-xlg-36 {
    font-size: 36px
  }
  .fs-xlg-38 {
    font-size: 38px
  }
  .fs-xlg-40 {
    font-size: 40px
  }
  .fs-xlg-42 {
    font-size: 42px
  }
  .fs-xlg-44 {
    font-size: 44px
  }
  .fs-xlg-46 {
    font-size: 46px
  }
  .fs-xlg-48 {
    font-size: 48px
  }
  .fs-xlg-50 {
    font-size: 50px
  }
  .fs-xlg-52 {
    font-size: 52px
  }
  .fs-xlg-54 {
    font-size: 54px
  }
  .fs-xlg-56 {
    font-size: 56px
  }
  .fs-xlg-58 {
    font-size: 58px
  }
  .fs-xlg-60 {
    font-size: 60px
  }
  .fs-xlg-62 {
    font-size: 62px
  }
  .fs-xlg-64 {
    font-size: 64px
  }
  .fs-xlg-66 {
    font-size: 66px
  }
  .fs-xlg-68 {
    font-size: 68px
  }
  .fs-xlg-70 {
    font-size: 70px
  }
  .fs-xlg-72 {
    font-size: 72px
  }
  .fs-xlg-74 {
    font-size: 74px
  }
  .fs-xlg-76 {
    font-size: 76px
  }
  .fs-xlg-78 {
    font-size: 78px
  }
  .fs-xlg-80 {
    font-size: 80px
  }
  .fs-xlg-82 {
    font-size: 82px
  }
  .fs-xlg-84 {
    font-size: 84px
  }
  .fs-xlg-86 {
    font-size: 86px
  }
  .fs-xlg-88 {
    font-size: 88px
  }
  .fs-xlg-90 {
    font-size: 90px
  }
  .fs-xlg-92 {
    font-size: 92px
  }
  .fs-xlg-94 {
    font-size: 94px
  }
  .fs-xlg-96 {
    font-size: 96px
  }
  .fs-xlg-98 {
    font-size: 98px
  }
  .fs-xlg-100 {
    font-size: 100px
  }
  .lh-xlg-10 {
    line-height: 1
  }
  .lh-xlg-11 {
    line-height: 1.1
  }
  .lh-xlg-12 {
    line-height: 1.2
  }
  .lh-xlg-13 {
    line-height: 1.3
  }
  .lh-xlg-14 {
    line-height: 1.4
  }
  .lh-xlg-15 {
    line-height: 1.5
  }
  .lh-xlg-16 {
    line-height: 1.6
  }
  .lh-xlg-17 {
    line-height: 1.7
  }
  .lh-xlg-18 {
    line-height: 1.8
  }
  .lh-xlg-19 {
    line-height: 1.9
  }
  .lh-xlg-20 {
    line-height: 2
  }
}

@media screen and (min-width:1680px) {
  .m-xxlg-0 {
    margin: 0
  }
  .mtb-xxlg-0 {
    margin-top: 0;
    margin-bottom: 0
  }
  .mlr-xxlg-0 {
    margin-left: 0;
    margin-right: 0
  }
  .mt-xxlg-0 {
    margin-top: 0
  }
  .mr-xxlg-0 {
    margin-right: 0
  }
  .mb-xxlg-0 {
    margin-bottom: 0
  }
  .ml-xxlg-0 {
    margin-left: 0
  }
  .m-xxlg-5 {
    margin: 5px
  }
  .mtb-xxlg-5 {
    margin-top: 5px;
    margin-bottom: 5px
  }
  .mlr-xxlg-5 {
    margin-left: 5px;
    margin-right: 5px
  }
  .mt-xxlg-5 {
    margin-top: 5px
  }
  .mr-xxlg-5 {
    margin-right: 5px
  }
  .mb-xxlg-5 {
    margin-bottom: 5px
  }
  .ml-xxlg-5 {
    margin-left: 5px
  }
  .m-xxlg-10 {
    margin: 10px
  }
  .mtb-xxlg-10 {
    margin-top: 10px;
    margin-bottom: 10px
  }
  .mlr-xxlg-10 {
    margin-left: 10px;
    margin-right: 10px
  }
  .mt-xxlg-10 {
    margin-top: 10px
  }
  .mr-xxlg-10 {
    margin-right: 10px
  }
  .mb-xxlg-10 {
    margin-bottom: 10px
  }
  .ml-xxlg-10 {
    margin-left: 10px
  }
  .m-xxlg-15 {
    margin: 15px
  }
  .mtb-xxlg-15 {
    margin-top: 15px;
    margin-bottom: 15px
  }
  .mlr-xxlg-15 {
    margin-left: 15px;
    margin-right: 15px
  }
  .mt-xxlg-15 {
    margin-top: 15px
  }
  .mr-xxlg-15 {
    margin-right: 15px
  }
  .mb-xxlg-15 {
    margin-bottom: 15px
  }
  .ml-xxlg-15 {
    margin-left: 15px
  }
  .m-xxlg-20 {
    margin: 20px
  }
  .mtb-xxlg-20 {
    margin-top: 20px;
    margin-bottom: 20px
  }
  .mlr-xxlg-20 {
    margin-left: 20px;
    margin-right: 20px
  }
  .mt-xxlg-20 {
    margin-top: 20px
  }
  .mr-xxlg-20 {
    margin-right: 20px
  }
  .mb-xxlg-20 {
    margin-bottom: 20px
  }
  .ml-xxlg-20 {
    margin-left: 20px
  }
  .m-xxlg-25 {
    margin: 25px
  }
  .mtb-xxlg-25 {
    margin-top: 25px;
    margin-bottom: 25px
  }
  .mlr-xxlg-25 {
    margin-left: 25px;
    margin-right: 25px
  }
  .mt-xxlg-25 {
    margin-top: 25px
  }
  .mr-xxlg-25 {
    margin-right: 25px
  }
  .mb-xxlg-25 {
    margin-bottom: 25px
  }
  .ml-xxlg-25 {
    margin-left: 25px
  }
  .m-xxlg-30 {
    margin: 30px
  }
  .mtb-xxlg-30 {
    margin-top: 30px;
    margin-bottom: 30px
  }
  .mlr-xxlg-30 {
    margin-left: 30px;
    margin-right: 30px
  }
  .mt-xxlg-30 {
    margin-top: 30px
  }
  .mr-xxlg-30 {
    margin-right: 30px
  }
  .mb-xxlg-30 {
    margin-bottom: 30px
  }
  .ml-xxlg-30 {
    margin-left: 30px
  }
  .m-xxlg-35 {
    margin: 35px
  }
  .mtb-xxlg-35 {
    margin-top: 35px;
    margin-bottom: 35px
  }
  .mlr-xxlg-35 {
    margin-left: 35px;
    margin-right: 35px
  }
  .mt-xxlg-35 {
    margin-top: 35px
  }
  .mr-xxlg-35 {
    margin-right: 35px
  }
  .mb-xxlg-35 {
    margin-bottom: 35px
  }
  .ml-xxlg-35 {
    margin-left: 35px
  }
  .m-xxlg-40 {
    margin: 40px
  }
  .mtb-xxlg-40 {
    margin-top: 40px;
    margin-bottom: 40px
  }
  .mlr-xxlg-40 {
    margin-left: 40px;
    margin-right: 40px
  }
  .mt-xxlg-40 {
    margin-top: 40px
  }
  .mr-xxlg-40 {
    margin-right: 40px
  }
  .mb-xxlg-40 {
    margin-bottom: 40px
  }
  .ml-xxlg-40 {
    margin-left: 40px
  }
  .m-xxlg-45 {
    margin: 45px
  }
  .mtb-xxlg-45 {
    margin-top: 45px;
    margin-bottom: 45px
  }
  .mlr-xxlg-45 {
    margin-left: 45px;
    margin-right: 45px
  }
  .mt-xxlg-45 {
    margin-top: 45px
  }
  .mr-xxlg-45 {
    margin-right: 45px
  }
  .mb-xxlg-45 {
    margin-bottom: 45px
  }
  .ml-xxlg-45 {
    margin-left: 45px
  }
  .m-xxlg-50 {
    margin: 50px
  }
  .mtb-xxlg-50 {
    margin-top: 50px;
    margin-bottom: 50px
  }
  .mlr-xxlg-50 {
    margin-left: 50px;
    margin-right: 50px
  }
  .mt-xxlg-50 {
    margin-top: 50px
  }
  .mr-xxlg-50 {
    margin-right: 50px
  }
  .mb-xxlg-50 {
    margin-bottom: 50px
  }
  .ml-xxlg-50 {
    margin-left: 50px
  }
  .m-xxlg-55 {
    margin: 55px
  }
  .mtb-xxlg-55 {
    margin-top: 55px;
    margin-bottom: 55px
  }
  .mlr-xxlg-55 {
    margin-left: 55px;
    margin-right: 55px
  }
  .mt-xxlg-55 {
    margin-top: 55px
  }
  .mr-xxlg-55 {
    margin-right: 55px
  }
  .mb-xxlg-55 {
    margin-bottom: 55px
  }
  .ml-xxlg-55 {
    margin-left: 55px
  }
  .m-xxlg-60 {
    margin: 60px
  }
  .mtb-xxlg-60 {
    margin-top: 60px;
    margin-bottom: 60px
  }
  .mlr-xxlg-60 {
    margin-left: 60px;
    margin-right: 60px
  }
  .mt-xxlg-60 {
    margin-top: 60px
  }
  .mr-xxlg-60 {
    margin-right: 60px
  }
  .mb-xxlg-60 {
    margin-bottom: 60px
  }
  .ml-xxlg-60 {
    margin-left: 60px
  }
  .m-xxlg-65 {
    margin: 65px
  }
  .mtb-xxlg-65 {
    margin-top: 65px;
    margin-bottom: 65px
  }
  .mlr-xxlg-65 {
    margin-left: 65px;
    margin-right: 65px
  }
  .mt-xxlg-65 {
    margin-top: 65px
  }
  .mr-xxlg-65 {
    margin-right: 65px
  }
  .mb-xxlg-65 {
    margin-bottom: 65px
  }
  .ml-xxlg-65 {
    margin-left: 65px
  }
  .m-xxlg-70 {
    margin: 70px
  }
  .mtb-xxlg-70 {
    margin-top: 70px;
    margin-bottom: 70px
  }
  .mlr-xxlg-70 {
    margin-left: 70px;
    margin-right: 70px
  }
  .mt-xxlg-70 {
    margin-top: 70px
  }
  .mr-xxlg-70 {
    margin-right: 70px
  }
  .mb-xxlg-70 {
    margin-bottom: 70px
  }
  .ml-xxlg-70 {
    margin-left: 70px
  }
  .m-xxlg-75 {
    margin: 75px
  }
  .mtb-xxlg-75 {
    margin-top: 75px;
    margin-bottom: 75px
  }
  .mlr-xxlg-75 {
    margin-left: 75px;
    margin-right: 75px
  }
  .mt-xxlg-75 {
    margin-top: 75px
  }
  .mr-xxlg-75 {
    margin-right: 75px
  }
  .mb-xxlg-75 {
    margin-bottom: 75px
  }
  .ml-xxlg-75 {
    margin-left: 75px
  }
  .m-xxlg-80 {
    margin: 80px
  }
  .mtb-xxlg-80 {
    margin-top: 80px;
    margin-bottom: 80px
  }
  .mlr-xxlg-80 {
    margin-left: 80px;
    margin-right: 80px
  }
  .mt-xxlg-80 {
    margin-top: 80px
  }
  .mr-xxlg-80 {
    margin-right: 80px
  }
  .mb-xxlg-80 {
    margin-bottom: 80px
  }
  .ml-xxlg-80 {
    margin-left: 80px
  }
  .m-xxlg-85 {
    margin: 85px
  }
  .mtb-xxlg-85 {
    margin-top: 85px;
    margin-bottom: 85px
  }
  .mlr-xxlg-85 {
    margin-left: 85px;
    margin-right: 85px
  }
  .mt-xxlg-85 {
    margin-top: 85px
  }
  .mr-xxlg-85 {
    margin-right: 85px
  }
  .mb-xxlg-85 {
    margin-bottom: 85px
  }
  .ml-xxlg-85 {
    margin-left: 85px
  }
  .m-xxlg-90 {
    margin: 90px
  }
  .mtb-xxlg-90 {
    margin-top: 90px;
    margin-bottom: 90px
  }
  .mlr-xxlg-90 {
    margin-left: 90px;
    margin-right: 90px
  }
  .mt-xxlg-90 {
    margin-top: 90px
  }
  .mr-xxlg-90 {
    margin-right: 90px
  }
  .mb-xxlg-90 {
    margin-bottom: 90px
  }
  .ml-xxlg-90 {
    margin-left: 90px
  }
  .m-xxlg-95 {
    margin: 95px
  }
  .mtb-xxlg-95 {
    margin-top: 95px;
    margin-bottom: 95px
  }
  .mlr-xxlg-95 {
    margin-left: 95px;
    margin-right: 95px
  }
  .mt-xxlg-95 {
    margin-top: 95px
  }
  .mr-xxlg-95 {
    margin-right: 95px
  }
  .mb-xxlg-95 {
    margin-bottom: 95px
  }
  .ml-xxlg-95 {
    margin-left: 95px
  }
  .m-xxlg-100 {
    margin: 100px
  }
  .mtb-xxlg-100 {
    margin-top: 100px;
    margin-bottom: 100px
  }
  .mlr-xxlg-100 {
    margin-left: 100px;
    margin-right: 100px
  }
  .mt-xxlg-100 {
    margin-top: 100px
  }
  .mr-xxlg-100 {
    margin-right: 100px
  }
  .mb-xxlg-100 {
    margin-bottom: 100px
  }
  .ml-xxlg-100 {
    margin-left: 100px
  }
  .p-xxlg-0 {
    padding: 0
  }
  .ptb-xxlg-0 {
    padding-top: 0;
    padding-bottom: 0
  }
  .plr-xxlg-0 {
    padding-left: 0;
    padding-right: 0
  }
  .pt-xxlg-0 {
    padding-top: 0
  }
  .pr-xxlg-0 {
    padding-right: 0
  }
  .pb-xxlg-0 {
    padding-bottom: 0
  }
  .pl-xxlg-0 {
    padding-left: 0
  }
  .p-xxlg-5 {
    padding: 5px
  }
  .ptb-xxlg-5 {
    padding-top: 5px;
    padding-bottom: 5px
  }
  .plr-xxlg-5 {
    padding-left: 5px;
    padding-right: 5px
  }
  .pt-xxlg-5 {
    padding-top: 5px
  }
  .pr-xxlg-5 {
    padding-right: 5px
  }
  .pb-xxlg-5 {
    padding-bottom: 5px
  }
  .pl-xxlg-5 {
    padding-left: 5px
  }
  .p-xxlg-10 {
    padding: 10px
  }
  .ptb-xxlg-10 {
    padding-top: 10px;
    padding-bottom: 10px
  }
  .plr-xxlg-10 {
    padding-left: 10px;
    padding-right: 10px
  }
  .pt-xxlg-10 {
    padding-top: 10px
  }
  .pr-xxlg-10 {
    padding-right: 10px
  }
  .pb-xxlg-10 {
    padding-bottom: 10px
  }
  .pl-xxlg-10 {
    padding-left: 10px
  }
  .p-xxlg-15 {
    padding: 15px
  }
  .ptb-xxlg-15 {
    padding-top: 15px;
    padding-bottom: 15px
  }
  .plr-xxlg-15 {
    padding-left: 15px;
    padding-right: 15px
  }
  .pt-xxlg-15 {
    padding-top: 15px
  }
  .pr-xxlg-15 {
    padding-right: 15px
  }
  .pb-xxlg-15 {
    padding-bottom: 15px
  }
  .pl-xxlg-15 {
    padding-left: 15px
  }
  .p-xxlg-20 {
    padding: 20px
  }
  .ptb-xxlg-20 {
    padding-top: 20px;
    padding-bottom: 20px
  }
  .plr-xxlg-20 {
    padding-left: 20px;
    padding-right: 20px
  }
  .pt-xxlg-20 {
    padding-top: 20px
  }
  .pr-xxlg-20 {
    padding-right: 20px
  }
  .pb-xxlg-20 {
    padding-bottom: 20px
  }
  .pl-xxlg-20 {
    padding-left: 20px
  }
  .p-xxlg-25 {
    padding: 25px
  }
  .ptb-xxlg-25 {
    padding-top: 25px;
    padding-bottom: 25px
  }
  .plr-xxlg-25 {
    padding-left: 25px;
    padding-right: 25px
  }
  .pt-xxlg-25 {
    padding-top: 25px
  }
  .pr-xxlg-25 {
    padding-right: 25px
  }
  .pb-xxlg-25 {
    padding-bottom: 25px
  }
  .pl-xxlg-25 {
    padding-left: 25px
  }
  .p-xxlg-30 {
    padding: 30px
  }
  .ptb-xxlg-30 {
    padding-top: 30px;
    padding-bottom: 30px
  }
  .plr-xxlg-30 {
    padding-left: 30px;
    padding-right: 30px
  }
  .pt-xxlg-30 {
    padding-top: 30px
  }
  .pr-xxlg-30 {
    padding-right: 30px
  }
  .pb-xxlg-30 {
    padding-bottom: 30px
  }
  .pl-xxlg-30 {
    padding-left: 30px
  }
  .p-xxlg-35 {
    padding: 35px
  }
  .ptb-xxlg-35 {
    padding-top: 35px;
    padding-bottom: 35px
  }
  .plr-xxlg-35 {
    padding-left: 35px;
    padding-right: 35px
  }
  .pt-xxlg-35 {
    padding-top: 35px
  }
  .pr-xxlg-35 {
    padding-right: 35px
  }
  .pb-xxlg-35 {
    padding-bottom: 35px
  }
  .pl-xxlg-35 {
    padding-left: 35px
  }
  .p-xxlg-40 {
    padding: 40px
  }
  .ptb-xxlg-40 {
    padding-top: 40px;
    padding-bottom: 40px
  }
  .plr-xxlg-40 {
    padding-left: 40px;
    padding-right: 40px
  }
  .pt-xxlg-40 {
    padding-top: 40px
  }
  .pr-xxlg-40 {
    padding-right: 40px
  }
  .pb-xxlg-40 {
    padding-bottom: 40px
  }
  .pl-xxlg-40 {
    padding-left: 40px
  }
  .p-xxlg-45 {
    padding: 45px
  }
  .ptb-xxlg-45 {
    padding-top: 45px;
    padding-bottom: 45px
  }
  .plr-xxlg-45 {
    padding-left: 45px;
    padding-right: 45px
  }
  .pt-xxlg-45 {
    padding-top: 45px
  }
  .pr-xxlg-45 {
    padding-right: 45px
  }
  .pb-xxlg-45 {
    padding-bottom: 45px
  }
  .pl-xxlg-45 {
    padding-left: 45px
  }
  .p-xxlg-50 {
    padding: 50px
  }
  .ptb-xxlg-50 {
    padding-top: 50px;
    padding-bottom: 50px
  }
  .plr-xxlg-50 {
    padding-left: 50px;
    padding-right: 50px
  }
  .pt-xxlg-50 {
    padding-top: 50px
  }
  .pr-xxlg-50 {
    padding-right: 50px
  }
  .pb-xxlg-50 {
    padding-bottom: 50px
  }
  .pl-xxlg-50 {
    padding-left: 50px
  }
  .p-xxlg-55 {
    padding: 55px
  }
  .ptb-xxlg-55 {
    padding-top: 55px;
    padding-bottom: 55px
  }
  .plr-xxlg-55 {
    padding-left: 55px;
    padding-right: 55px
  }
  .pt-xxlg-55 {
    padding-top: 55px
  }
  .pr-xxlg-55 {
    padding-right: 55px
  }
  .pb-xxlg-55 {
    padding-bottom: 55px
  }
  .pl-xxlg-55 {
    padding-left: 55px
  }
  .p-xxlg-60 {
    padding: 60px
  }
  .ptb-xxlg-60 {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .plr-xxlg-60 {
    padding-left: 60px;
    padding-right: 60px
  }
  .pt-xxlg-60 {
    padding-top: 60px
  }
  .pr-xxlg-60 {
    padding-right: 60px
  }
  .pb-xxlg-60 {
    padding-bottom: 60px
  }
  .pl-xxlg-60 {
    padding-left: 60px
  }
  .p-xxlg-65 {
    padding: 65px
  }
  .ptb-xxlg-65 {
    padding-top: 65px;
    padding-bottom: 65px
  }
  .plr-xxlg-65 {
    padding-left: 65px;
    padding-right: 65px
  }
  .pt-xxlg-65 {
    padding-top: 65px
  }
  .pr-xxlg-65 {
    padding-right: 65px
  }
  .pb-xxlg-65 {
    padding-bottom: 65px
  }
  .pl-xxlg-65 {
    padding-left: 65px
  }
  .p-xxlg-70 {
    padding: 70px
  }
  .ptb-xxlg-70 {
    padding-top: 70px;
    padding-bottom: 70px
  }
  .plr-xxlg-70 {
    padding-left: 70px;
    padding-right: 70px
  }
  .pt-xxlg-70 {
    padding-top: 70px
  }
  .pr-xxlg-70 {
    padding-right: 70px
  }
  .pb-xxlg-70 {
    padding-bottom: 70px
  }
  .pl-xxlg-70 {
    padding-left: 70px
  }
  .p-xxlg-75 {
    padding: 75px
  }
  .ptb-xxlg-75 {
    padding-top: 75px;
    padding-bottom: 75px
  }
  .plr-xxlg-75 {
    padding-left: 75px;
    padding-right: 75px
  }
  .pt-xxlg-75 {
    padding-top: 75px
  }
  .pr-xxlg-75 {
    padding-right: 75px
  }
  .pb-xxlg-75 {
    padding-bottom: 75px
  }
  .pl-xxlg-75 {
    padding-left: 75px
  }
  .p-xxlg-80 {
    padding: 80px
  }
  .ptb-xxlg-80 {
    padding-top: 80px;
    padding-bottom: 80px
  }
  .plr-xxlg-80 {
    padding-left: 80px;
    padding-right: 80px
  }
  .pt-xxlg-80 {
    padding-top: 80px
  }
  .pr-xxlg-80 {
    padding-right: 80px
  }
  .pb-xxlg-80 {
    padding-bottom: 80px
  }
  .pl-xxlg-80 {
    padding-left: 80px
  }
  .p-xxlg-85 {
    padding: 85px
  }
  .ptb-xxlg-85 {
    padding-top: 85px;
    padding-bottom: 85px
  }
  .plr-xxlg-85 {
    padding-left: 85px;
    padding-right: 85px
  }
  .pt-xxlg-85 {
    padding-top: 85px
  }
  .pr-xxlg-85 {
    padding-right: 85px
  }
  .pb-xxlg-85 {
    padding-bottom: 85px
  }
  .pl-xxlg-85 {
    padding-left: 85px
  }
  .p-xxlg-90 {
    padding: 90px
  }
  .ptb-xxlg-90 {
    padding-top: 90px;
    padding-bottom: 90px
  }
  .plr-xxlg-90 {
    padding-left: 90px;
    padding-right: 90px
  }
  .pt-xxlg-90 {
    padding-top: 90px
  }
  .pr-xxlg-90 {
    padding-right: 90px
  }
  .pb-xxlg-90 {
    padding-bottom: 90px
  }
  .pl-xxlg-90 {
    padding-left: 90px
  }
  .p-xxlg-95 {
    padding: 95px
  }
  .ptb-xxlg-95 {
    padding-top: 95px;
    padding-bottom: 95px
  }
  .plr-xxlg-95 {
    padding-left: 95px;
    padding-right: 95px
  }
  .pt-xxlg-95 {
    padding-top: 95px
  }
  .pr-xxlg-95 {
    padding-right: 95px
  }
  .pb-xxlg-95 {
    padding-bottom: 95px
  }
  .pl-xxlg-95 {
    padding-left: 95px
  }
  .p-xxlg-100 {
    padding: 100px
  }
  .ptb-xxlg-100 {
    padding-top: 100px;
    padding-bottom: 100px
  }
  .plr-xxlg-100 {
    padding-left: 100px;
    padding-right: 100px
  }
  .pt-xxlg-100 {
    padding-top: 100px
  }
  .pr-xxlg-100 {
    padding-right: 100px
  }
  .pb-xxlg-100 {
    padding-bottom: 100px
  }
  .pl-xxlg-100 {
    padding-left: 100px
  }
  .fs-xxlg-12 {
    font-size: 12px
  }
  .fs-xxlg-14 {
    font-size: 14px
  }
  .fs-xxlg-16 {
    font-size: 16px
  }
  .fs-xxlg-18 {
    font-size: 18px
  }
  .fs-xxlg-20 {
    font-size: 20px
  }
  .fs-xxlg-22 {
    font-size: 22px
  }
  .fs-xxlg-24 {
    font-size: 24px
  }
  .fs-xxlg-26 {
    font-size: 26px
  }
  .fs-xxlg-28 {
    font-size: 28px
  }
  .fs-xxlg-30 {
    font-size: 30px
  }
  .fs-xxlg-32 {
    font-size: 32px
  }
  .fs-xxlg-34 {
    font-size: 34px
  }
  .fs-xxlg-36 {
    font-size: 36px
  }
  .fs-xxlg-38 {
    font-size: 38px
  }
  .fs-xxlg-40 {
    font-size: 40px
  }
  .fs-xxlg-42 {
    font-size: 42px
  }
  .fs-xxlg-44 {
    font-size: 44px
  }
  .fs-xxlg-46 {
    font-size: 46px
  }
  .fs-xxlg-48 {
    font-size: 48px
  }
  .fs-xxlg-50 {
    font-size: 50px
  }
  .fs-xxlg-52 {
    font-size: 52px
  }
  .fs-xxlg-54 {
    font-size: 54px
  }
  .fs-xxlg-56 {
    font-size: 56px
  }
  .fs-xxlg-58 {
    font-size: 58px
  }
  .fs-xxlg-60 {
    font-size: 60px
  }
  .fs-xxlg-62 {
    font-size: 62px
  }
  .fs-xxlg-64 {
    font-size: 64px
  }
  .fs-xxlg-66 {
    font-size: 66px
  }
  .fs-xxlg-68 {
    font-size: 68px
  }
  .fs-xxlg-70 {
    font-size: 70px
  }
  .fs-xxlg-72 {
    font-size: 72px
  }
  .fs-xxlg-74 {
    font-size: 74px
  }
  .fs-xxlg-76 {
    font-size: 76px
  }
  .fs-xxlg-78 {
    font-size: 78px
  }
  .fs-xxlg-80 {
    font-size: 80px
  }
  .fs-xxlg-82 {
    font-size: 82px
  }
  .fs-xxlg-84 {
    font-size: 84px
  }
  .fs-xxlg-86 {
    font-size: 86px
  }
  .fs-xxlg-88 {
    font-size: 88px
  }
  .fs-xxlg-90 {
    font-size: 90px
  }
  .fs-xxlg-92 {
    font-size: 92px
  }
  .fs-xxlg-94 {
    font-size: 94px
  }
  .fs-xxlg-96 {
    font-size: 96px
  }
  .fs-xxlg-98 {
    font-size: 98px
  }
  .fs-xxlg-100 {
    font-size: 100px
  }
  .lh-xxlg-10 {
    line-height: 1
  }
  .lh-xxlg-11 {
    line-height: 1.1
  }
  .lh-xxlg-12 {
    line-height: 1.2
  }
  .lh-xxlg-13 {
    line-height: 1.3
  }
  .lh-xxlg-14 {
    line-height: 1.4
  }
  .lh-xxlg-15 {
    line-height: 1.5
  }
  .lh-xxlg-16 {
    line-height: 1.6
  }
  .lh-xxlg-17 {
    line-height: 1.7
  }
  .lh-xxlg-18 {
    line-height: 1.8
  }
  .lh-xxlg-19 {
    line-height: 1.9
  }
  .lh-xxlg-20 {
    line-height: 2
  }
}

.ie678 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table
}

.ie678 div {
  display: table-cell;
  vertical-align: middle
}

.ie678 h2, .ie678 h3 {
  margin-bottom: 25px
}

.ie678 h2 {
  font-size: 40px;
  color: #6e9cbe
}

.ie678 h3 {
  font-size: 30px
}

.ie678 .btn {
  width: 150px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  background-color: #04cdff;
  color: #fff
}

.ie678 .btn:hover {
  background-color: #057088
}

.hamburger {
  display: block;
  cursor: pointer;
  background-color: transparent;
  overflow: visible;
  position: relative;
  width: 40px;
  height: 24px
}

.hamburger>div {
  display: block;
  top: 50%;
  margin-top: -2px
}

.hamburger>div, .hamburger>div:after, .hamburger>div:before {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease
}

.hamburger>div:after, .hamburger>div:before {
  content: "";
  display: block
}

.hamburger>div:before {
  top: -10px
}

.hamburger>div:after {
  bottom: -10px
}

.hamburger.hamburger-1>div {
  top: auto;
  bottom: 0;
  transition-duration: .15s;
  transition-delay: .15s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger.hamburger-1>div:after {
  top: -20px;
  transition: top .3s cubic-bezier(.33333, .66667, .66667, 1) .3s, opacity .1s linear, background-color .3s linear
}

.hamburger.hamburger-1>div:before {
  transition: top .12s cubic-bezier(.33333, .66667, .66667, 1, transform .15s cubic-bezier(.55, .055, .675, .19), background-color .3s linear) .3s
}

.hamburger.hamburger-1.active div {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: .32s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger.hamburger-1.active div:after {
  top: 0;
  opacity: 0;
  transition: top .3s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .27s, background-color .3s linear
}

.hamburger.hamburger-1.active div:before {
  top: 0;
  transform: rotate(-90deg);
  transition: top .12s cubic-bezier(.33333, 0, .66667, .33333) .18s, transform .15s cubic-bezier(.215, .61, .355, 1) .42s, background-color .3s linear
}

.hamburger.hamburger-2>div {
  top: auto;
  bottom: 0;
  transition-duration: .15s;
  transition-delay: .15s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger.hamburger-2>div:after {
  top: -20px;
  transition: top .3s cubic-bezier(.33333, .66667, .66667, 1) .3s, opacity .1s linear, background-color .3s linear
}

.hamburger.hamburger-2>div:before {
  transition: top .12s cubic-bezier(.33333, .66667, .66667, 1) .3s, transform .15s cubic-bezier(.55, .055, .675, .19), background-color .3s linear
}

.hamburger.hamburger-2.active div {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: .32s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger.hamburger-2.active div:after {
  top: 0;
  opacity: 0;
  transition: top .3s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s linear .27s, background-color .3s linear
}

.hamburger.hamburger-2.active div:before {
  top: 0;
  transform: rotate(90deg);
  transition: top .12s cubic-bezier(.33333, 0, .66667, .33333) .18s, transform .15s cubic-bezier(.215, .61, .355, 1) .42s, background-color .3s linear
}

.hamburger.hamburger-3>div {
  top: 0;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

.hamburger.hamburger-3>div:before {
  top: 10px;
  transition: opacity .15s ease .4s, background-color .3s linear
}

.hamburger.hamburger-3>div:after {
  top: 20px;
  transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55), background-color .3s linear
}

.hamburger.hamburger-3.active>div {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: .1s
}

.hamburger.hamburger-3.active>div:before {
  transition-delay: 0s;
  opacity: 0
}

.hamburger.hamburger-3.active>div:after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: .1s
}

.hamburger.hamburger-4>div {
  top: 0;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

.hamburger.hamburger-4>div:before {
  top: 10px;
  transition: opacity .15s ease .4s, background-color .3s linear
}

.hamburger.hamburger-4>div:after {
  top: 20px;
  transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55), background-color .3s linear
}

.hamburger.hamburger-4.active>div {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: .1s
}

.hamburger.hamburger-4.active>div:before {
  transition-delay: 0s;
  opacity: 0
}

.hamburger.hamburger-4.active>div:after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: .1s
}

.hamburger.hamburger-5>div {
  margin-top: -2px;
  transition: background-color .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-5>div:before {
  left: 0;
  transition: transform .2s cubic-bezier(.6, .04, .98, .335), top .05s linear .2s, left .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-5>div:after {
  top: 10px;
  right: 0;
  transition: transform .2s cubic-bezier(.6, .04, .98, .335), top .05s linear .2s, right .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-5.active>div {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent
}

.hamburger.hamburger-5.active>div:before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left .2s ease-out, top .05s linear .2s, transform .2s cubic-bezier(.075, .82, .165, 1) .25s, background-color .3s linear
}

.hamburger.hamburger-5.active>div:after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right .2s ease-out, top .05s linear .2s, transform .2s cubic-bezier(.075, .82, .165, 1) .25s, background-color .3s linear
}

.hamburger.hamburger-6>div {
  margin-top: -2px;
  transition: background-color .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-6>div:before {
  left: 0;
  transition: transform .2s cubic-bezier(.6, .04, .98, .335), top .05s linear .2s, left .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-6>div:after {
  top: 10px;
  right: 0;
  transition: transform .2s cubic-bezier(.6, .04, .98, .335), top .05s linear .2s, right .2s ease-in .25s, background-color .3s linear
}

.hamburger.hamburger-6.active>div {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent
}

.hamburger.hamburger-6.active>div:before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left .2s ease-out, top .05s linear .2s, transform .2s cubic-bezier(.075, .82, .165, 1) .25s, background-color .3s linear
}

.hamburger.hamburger-6.active>div:after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right .2s ease-out, top .05s linear .2s, transform .2s cubic-bezier(.075, .82, .165, 1) .25s, background-color .3s linear
}

.hamburger.hamburger-7>div {
  top: 0
}

.hamburger.hamburger-7>div:before {
  top: 10px;
  transition-property: transform, opacity, background-color;
  transition-timing-function: ease;
  transition-duration: .2s
}

.hamburger.hamburger-7>div:after {
  top: 20px
}

.hamburger.hamburger-7.active>div {
  transform: translate3d(0, 10px, 0) rotate(45deg)
}

.hamburger.hamburger-7.active>div:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0
}

.hamburger.hamburger-7.active>div:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg)
}

.hamburger.hamburger-8>div {
  top: 0
}

.hamburger.hamburger-8>div:before {
  top: 10px;
  transition-property: transform, opacity, background-color;
  transition-timing-function: ease;
  transition-duration: .2s
}

.hamburger.hamburger-8>div:after {
  top: 20px
}

.hamburger.hamburger-8.active>div {
  transform: translate3d(0, 10px, 0) rotate(-45deg)
}

.hamburger.hamburger-8.active>div:before {
  transform: rotate(45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0
}

.hamburger.hamburger-8.active>div:after {
  transform: translate3d(0, -20px, 0) rotate(90deg)
}

.hamburger.hamburger-9>div {
  margin-top: -2px;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger.hamburger-9>div:before {
  transition: top .1s ease-in .34s, opacity .1s ease-in, background-color .3s linear
}

.hamburger.hamburger-9>div:after {
  transition: bottom .1s ease-in .34s, transform .3s cubic-bezier(.55, .055, .675, .19), background-color .3s linear
}

.hamburger.hamburger-9.active>div {
  transform: rotate(225deg);
  transition-delay: .14s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger.hamburger-9.active>div:before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out, opacity .1s ease-out .14s, background-color .3s linear
}

.hamburger.hamburger-9.active>div:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom .1s ease-out, transform .3s cubic-bezier(.215, .61, .355, 1) .14s, background-color .3s linear
}

.hamburger.hamburger-10>div {
  margin-top: -2px;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger.hamburger-10>div:before {
  transition: top .1s ease-in .34s, opacity .1s ease-in, background-color .3s linear
}

.hamburger.hamburger-10>div:after {
  transition: bottom .1s ease-in .34s, transform .3s cubic-bezier(.55, .055, .675, .19), background-color .3s linear
}

.hamburger.hamburger-10.active>div {
  transform: rotate(-225deg);
  transition-delay: .14s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger.hamburger-10.active>div:before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out, opacity .1s ease-out .14s, background-color .3s linear
}

.hamburger.hamburger-10.active>div:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom .1s ease-out, transform .3s cubic-bezier(.215, .61, .355, 1) .14s, background-color .3s linear
}

.hamburger.hamburger-11>div {
  margin-top: -2px;
  transition-duration: .1s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger.hamburger-11>div:before {
  transition: top .1s ease .14s, opacity .1s ease, background-color .3s linear
}

.hamburger.hamburger-11>div:after {
  transition: bottom .1s ease .14s, transform .1s cubic-bezier(.55, .055, .675, .19), background-color .3s linear
}

.hamburger.hamburger-11.active>div {
  transform: rotate(45deg);
  transition-delay: .14s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger.hamburger-11.active>div:before {
  top: 0;
  opacity: 0;
  transition: top .1s ease, opacity .1s ease .14s, background-color .3s linear
}

.hamburger.hamburger-11.active>div:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom .1s ease, transform .1s cubic-bezier(.215, .61, .355, 1) .14s, background-color .3s linear
}

.hamburger.hamburger-12>div {
  margin-top: -2px;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger.hamburger-12>div:after, .hamburger.hamburger-12>div:before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear
}

.hamburger.hamburger-12>div:before {
  transition-property: top, opacity, background-color
}

.hamburger.hamburger-12>div:after {
  transition-property: bottom, transform, background-color
}

.hamburger.hamburger-12.active>div {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger.hamburger-12.active>div:after, .hamburger.hamburger-12.active>div:before {
  transition-delay: 0s
}

.hamburger.hamburger-12.active>div:before {
  top: 0;
  opacity: 0
}

.hamburger.hamburger-12.active>div:after {
  bottom: 0;
  transform: rotate(90deg)
}

.hamburger.hamburger-13>div {
  margin-top: -2px;
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger.hamburger-13>div:after, .hamburger.hamburger-13>div:before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear
}

.hamburger.hamburger-13>div:before {
  transition-property: top, opacity
}

.hamburger.hamburger-13>div:after {
  transition-property: bottom, transform, background-color
}

.hamburger.hamburger-13.active>div {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.hamburger.hamburger-13.active>div:after, .hamburger.hamburger-13.active>div:before {
  transition-delay: 0s
}

.hamburger.hamburger-13.active>div:before {
  top: 0;
  opacity: 0
}

.hamburger.hamburger-13.active>div:after {
  bottom: 0;
  transform: rotate(-90deg)
}

.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  background-color: transparent;
  border: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all .2s
}

.btn-anime {
  padding: 8px 25px;
  background-color: #8ac7db;
  color: #fff
}

.btn-anime span {
  display: block
}

.btn-anime:after, .btn-anime:before, .btn-anime span, .btn-anime span:after, .btn-anime span:before {
  transition-duration: .6s;
  animation-duration: .6s
}

.btn-anime-short:after, .btn-anime-short:before, .btn-anime-short span, .btn-anime-short span:after, .btn-anime-short span:before {
  transition-duration: .3s!important;
  animation-duration: .3s!important
}

.btn-anime-middle:after, .btn-anime-middle:before, .btn-anime-middle span, .btn-anime-middle span:after, .btn-anime-middle span:before {
  transition-duration: .6s!important;
  animation-duration: .6s!important
}

.btn-anime-long:after, .btn-anime-long:before, .btn-anime-long span, .btn-anime-long span:after, .btn-anime-long span:before {
  transition-duration: .9s!important;
  animation-duration: .9s!important
}

.btn-slide-bottom.hover span, .btn-slide-bottom:hover span, .btn-slide-left.hover span, .btn-slide-left:hover span, .btn-slide-right.hover span, .btn-slide-right:hover span, .btn-slide-top.hover span, .btn-slide-top:hover span {
  opacity: 0
}

.btn-slide-bottom.hover:after, .btn-slide-bottom:hover:after, .btn-slide-left.hover:after, .btn-slide-left:hover:after, .btn-slide-right.hover:after, .btn-slide-right:hover:after, .btn-slide-top.hover:after, .btn-slide-top:hover:after {
  transform: translateZ(0)
}

.btn-slide-bottom.hover:after, .btn-slide-bottom.hover:before, .btn-slide-bottom:hover:after, .btn-slide-bottom:hover:before, .btn-slide-left.hover:after, .btn-slide-left.hover:before, .btn-slide-left:hover:after, .btn-slide-left:hover:before, .btn-slide-right.hover:after, .btn-slide-right.hover:before, .btn-slide-right:hover:after, .btn-slide-right:hover:before, .btn-slide-top.hover:after, .btn-slide-top.hover:before, .btn-slide-top:hover:after, .btn-slide-top:hover:before {
  opacity: 1
}

.btn-slide-bottom:after, .btn-slide-bottom:before, .btn-slide-bottom span, .btn-slide-left:after, .btn-slide-left:before, .btn-slide-left span, .btn-slide-right:after, .btn-slide-right:before, .btn-slide-right span, .btn-slide-top:after, .btn-slide-top:before, .btn-slide-top span {
  transition-timing-function: cubic-bezier(.77, 0, .18, 1)
}

.btn-slide-bottom:after, .btn-slide-left:after, .btn-slide-right:after, .btn-slide-top:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .3);
  opacity: 0
}

.btn-slide-bottom:before, .btn-slide-left:before, .btn-slide-right:before, .btn-slide-top:before {
  content: attr(data-text);
  position: absolute;
  z-index: 2;
  width: 100%;
  opacity: 0
}

.btn-slide-top.hover span, .btn-slide-top:hover span {
  transform: translate3d(0, -20px, 0)
}

.btn-slide-top.hover:before, .btn-slide-top:hover:before {
  top: 50%;
  transition-delay: .1s;
  transform: translate3d(0, -50%, 0)
}

.btn-slide-top:after {
  transform: translate3d(0, 100%, 0)
}

.btn-slide-top:before {
  top: 100%;
  left: 0;
  transform: translateZ(0)
}

.btn-slide-right.hover span, .btn-slide-right:hover span {
  transform: translate3d(20px, 0, 0)
}

.btn-slide-right.hover:before, .btn-slide-right:hover:before {
  right: 0;
  transition-delay: .1s
}

.btn-slide-right:after {
  transform: translate3d(-100%, 0, 0)
}

.btn-slide-right:before {
  top: 50%;
  right: 100%;
  transform: translate3d(0, -50%, 0)
}

.btn-slide-bottom.hover span, .btn-slide-bottom:hover span {
  transform: translate3d(0, 20px, 0)
}

.btn-slide-bottom.hover:before, .btn-slide-bottom:hover:before {
  bottom: 50%;
  transition-delay: .1s;
  transform: translate3d(0, 50%, 0)
}

.btn-slide-bottom:after {
  transform: translate3d(0, -100%, 0)
}

.btn-slide-bottom:before {
  bottom: 100%;
  left: 0;
  transform: translateZ(0)
}

.btn-slide-left.hover span, .btn-slide-left:hover span {
  transform: translate3d(-20px, 0, 0)
}

.btn-slide-left.hover:before, .btn-slide-left:hover:before {
  left: 0;
  transition-delay: .1s
}

.btn-slide-left:after {
  transform: translate3d(100%, 0, 0)
}

.btn-slide-left:before {
  top: 50%;
  left: 100%;
  transform: translate3d(0, -50%, 0)
}

.btn-load {
  pointer-events: none
}

.btn-load:after, .btn-load:before {
  display: none
}

.btn-load span {
  transition: none;
  color: transparent;
  position: relative;
  opacity: 1!important;
  transform: translateZ(0)!important
}

.btn-load span:after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-right-color: transparent;
  opacity: 1;
  animation-name: zb;
  animation-timing-function: linear;
  animation-iteration-count: infinite
}

@keyframes zb {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}

.float-left {
  float: left
}

.float-right {
  float: right
}

.clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .row:after, .row:before, ol.list-float:after, ol.list-float:before, ul.list-float:after, ul.list-float:before {
  content: "";
  display: table
}

.clearfix:after, .container-fluid:after, .container:after, .row:after, ol.list-float:after, ul.list-float:after {
  clear: both
}

.width-full {
  width: 100%
}

.height-full {
  height: auto
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-bold {
  font-weight: 700
}

.text-nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden
}

.text-uppercase {
  text-transform: uppercase
}

.img-responsive {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto
}

.block {
  display: block
}

.inline {
  display: inline;
  vertical-align: middle
}

.inline-block {
  display: inline-block;
  vertical-align: middle
}

.vertical-baseline {
  vertical-align: baseline
}

.vertical-top {
  vertical-align: top
}

.vertical-middle {
  vertical-align: middle
}

.vertical-bottom {
  vertical-align: bottom
}

.vertical-text-bottom {
  vertical-align: text-bottom
}

.vertical-text-top {
  vertical-align: text-top
}

.vertical-sub {
  vertical-align: sub
}

.vertical-super {
  vertical-align: super
}

ol.list-float>li, ul.list-float>li {
  float: left
}

ol.list-float a, ul.list-float a {
  display: block
}

ol.list-inline-block>li, ul.list-inline-block>li {
  display: inline-block;
  vertical-align: middle
}

ol.list-inline-block a, ul.list-inline-block a {
  display: block
}

.verc-content {
  font-size: 0
}

.verc-content:after, .verc-content:before, .verc-content>* {
  display: inline-block;
  vertical-align: middle
}

.verc-content:after, .verc-content:before {
  content: "";
  height: 100%
}

.verc-content>* {
  font-size: 14px
}

.verc-transform {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.verc-margin {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}

.verc-table {
  display: table;
  height: 100%;
  width: 100%
}

.verc-tr {
  display: table-row
}

.verc-td {
  display: table-cell;
  vertical-align: middle
}

.bg-cover {
  background-size: cover;
  background-position: 50%
}

.relative {
  position: relative
}

.static {
  position: static!important
}

.z-index-1 {
  z-index: 1
}

.z-index-2 {
  z-index: 2
}

.z-index-3 {
  z-index: 3
}

.z-index-4 {
  z-index: 4
}

.z-index-5 {
  z-index: 5
}

.z-index-6 {
  z-index: 6
}

.z-index-7 {
  z-index: 7
}

.z-index-8 {
  z-index: 8
}

.z-index-9 {
  z-index: 9
}

.cover, .shadow-black-1, .shadow-black-2, .shadow-black-3, .shadow-black-4, .shadow-black-5, .shadow-black-6, .shadow-black-7, .shadow-black-8, .shadow-black-9, .shadow-white-1, .shadow-white-2, .shadow-white-3, .shadow-white-4, .shadow-white-5, .shadow-white-6, .shadow-white-7, .shadow-white-8, .shadow-white-9 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.shadow-black-1 {
  background-color: rgba(0, 0, 0, .1)
}

.shadow-white-1 {
  background-color: hsla(0, 0%, 100%, .1)
}

.shadow-black-2 {
  background-color: rgba(0, 0, 0, .2)
}

.shadow-white-2 {
  background-color: hsla(0, 0%, 100%, .2)
}

.shadow-black-3 {
  background-color: rgba(0, 0, 0, .3)
}

.shadow-white-3 {
  background-color: hsla(0, 0%, 100%, .3)
}

.shadow-black-4 {
  background-color: rgba(0, 0, 0, .4)
}

.shadow-white-4 {
  background-color: hsla(0, 0%, 100%, .4)
}

.shadow-black-5 {
  background-color: rgba(0, 0, 0, .5)
}

.shadow-white-5 {
  background-color: hsla(0, 0%, 100%, .5)
}

.shadow-black-6 {
  background-color: rgba(0, 0, 0, .6)
}

.shadow-white-6 {
  background-color: hsla(0, 0%, 100%, .6)
}

.shadow-black-7 {
  background-color: rgba(0, 0, 0, .7)
}

.shadow-white-7 {
  background-color: hsla(0, 0%, 100%, .7)
}

.shadow-black-8 {
  background-color: rgba(0, 0, 0, .8)
}

.shadow-white-8 {
  background-color: hsla(0, 0%, 100%, .8)
}

.shadow-black-9 {
  background-color: rgba(0, 0, 0, .9)
}

.shadow-white-9 {
  background-color: hsla(0, 0%, 100%, .9)
}

.overflow-hidden {
  overflow: hidden
}

.hide {
  display: none!important
}

@media screen and (max-width:767px) {
  .hide-xs {
    display: none!important
  }
}

@media screen and (max-width:1265px) {
  .hide-sm {
    display: none!important
  }
}

@media screen and (max-width:1279px) {
  .hide-md {
    display: none!important
  }
}

@media screen and (max-width:1439px) {
  .hide-lg {
    display: none!important
  }
}

@media screen and (max-width:1679px) {
  .hide-xlg {
    display: none!important
  }
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
  float: left
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

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

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

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

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  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(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: 50%;
  background-repeat: no-repeat
}

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

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
  display: none
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity .3s;
  transform: translateZ(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(.33);
  position: relative
}

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.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: #007aff
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -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: top .2s, -webkit-transform .2s;
  transition: transform .2s, top .2s;
  transition: transform .2s, top .2s, -webkit-transform .2s
}

.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: left .2s, -webkit-transform .2s;
  transition: transform .2s, left .2s;
  transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: right .2s, -webkit-transform .2s;
  transition: transform .2s, right .2s;
  transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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 {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-container-vertical>.swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: hsla(0, 0%, 100%, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000
}

.swiper-pagination-lock {
  display: none
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(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, .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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: 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%;
  -o-object-fit: contain;
  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: Ab 1s steps(12) infinite
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@keyframes Ab {
  to {
    transform: rotate(1turn)
  }
}

.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: 0;
  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
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px
}

.i-r3 {
  margin-bottom: 50px;
}