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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

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

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

.rubberBand {
  animation-name: rubberBand;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/* line 418, /Users/miguelperez/Sites/csstricks/source/stylesheets/keyframes.css.scss */
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    transform: none;
  }
}
/* line 506, /Users/miguelperez/Sites/csstricks/source/stylesheets/keyframes.css.scss */
.wobble {
  animation-name: wobble;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* line 1216, /Users/miguelperez/Sites/csstricks/source/stylesheets/keyframes.css.scss */
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* line 1286, /Users/miguelperez/Sites/csstricks/source/stylesheets/keyframes.css.scss */
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(0.9, 0.9, 1);
  }
}
@keyframes bubble {
  0% {
    transform: scale(0, 0);
  }
  12% {
    transform: scale(1.5, 1.5);
  }
  23% {
    transform: scale(0.5, 0.5);
  }
  34% {
    transform: scale(1.2, 1.2);
  }
  45% {
    transform: scale(1, 1);
  }
  85% {
    transform: scale(0, 0);
  }
}
/**
 * Foundation for Sites by ZURB
 * Version 6.4.4-rc1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

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

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: hsl(44, 15%, 100%);
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(17, 16, 14, 0.8);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0.375rem;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0.375rem;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  line-height: 1;
  cursor: pointer;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    order: 1;
  }
  .xlarge-order-2 {
    order: 2;
  }
  .xlarge-order-3 {
    order: 3;
  }
  .xlarge-order-4 {
    order: 4;
  }
  .xlarge-order-5 {
    order: 5;
  }
  .xlarge-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    order: 1;
  }
  .xxlarge-order-2 {
    order: 2;
  }
  .xxlarge-order-3 {
    order: 3;
  }
  .xxlarge-order-4 {
    order: 4;
  }
  .xxlarge-order-5 {
    order: 5;
  }
  .xxlarge-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-flex-container {
    display: flex;
  }
  .xlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-flex-container {
    display: flex;
  }
  .xxlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xxlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xxlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xxlarge-flex-dir-row {
    flex-direction: row;
  }
  .xxlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xxlarge-flex-dir-column {
    flex-direction: column;
  }
  .xxlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container.fluid {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0px;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-shrink, .grid-x > .xxlarge-full, .grid-x > .xxlarge-1, .grid-x > .xxlarge-2, .grid-x > .xxlarge-3, .grid-x > .xxlarge-4, .grid-x > .xxlarge-5, .grid-x > .xxlarge-6, .grid-x > .xxlarge-7, .grid-x > .xxlarge-8, .grid-x > .xxlarge-9, .grid-x > .xxlarge-10, .grid-x > .xxlarge-11, .grid-x > .xxlarge-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-x > .xlarge-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xxlarge-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxlarge-shrink {
    flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .cell {
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 2rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 2rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 2rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 2rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 2rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 2rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 3rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 3rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 3rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 3rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 3rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 3rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 3rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 3rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 3rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 3rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 3rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 3rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 3rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 3rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 3rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 3rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 3rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 3rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 3rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 3rem);
  }
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 3rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 3rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 3rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 3rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 3rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 3rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 3rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 3rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 3rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.3333333333% - 3rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 3rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 3rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 3rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 3rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 3rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 3rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 3rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 3rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxlarge-1 {
    width: calc(8.3333333333% - 3rem);
  }
  .grid-margin-x > .xxlarge-2 {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 3rem);
  }
  .grid-margin-x > .xxlarge-4 {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x > .xxlarge-5 {
    width: calc(41.6666666667% - 3rem);
  }
  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 3rem);
  }
  .grid-margin-x > .xxlarge-7 {
    width: calc(58.3333333333% - 3rem);
  }
  .grid-margin-x > .xxlarge-8 {
    width: calc(66.6666666667% - 3rem);
  }
  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 3rem);
  }
  .grid-margin-x > .xxlarge-10 {
    width: calc(83.3333333333% - 3rem);
  }
  .grid-margin-x > .xxlarge-11 {
    width: calc(91.6666666667% - 3rem);
  }
  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 3rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x > .cell {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xxlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 2rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 2rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.25rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 2rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 2rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 2rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.25rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 2rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.25rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 2rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 2rem);
  }
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 3rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 3rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 3rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 3rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 3rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 3rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 3rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 3rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 3rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.2857142857% - 3rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 3rem);
  }
  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 3rem);
  }
  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.3333333333% - 3rem);
  }
  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 3rem);
  }
  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 3rem);
  }
  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.6666666667% - 3rem);
  }
  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.2857142857% - 3rem);
  }
  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 3rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .small-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .medium-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .large-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-margin-collapse > .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-margin-collapse > .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 90em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.625rem);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 0.625rem);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 0.625rem);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.625rem);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 0.625rem);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 0.625rem);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.625rem);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 0.625rem);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 0.625rem);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.625rem);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 0.625rem);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 0.625rem);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.5rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.5rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.5rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.5rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem);
  }
}
@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 1.5rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 1.5rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 1.5rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 1.5rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem);
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 1.5rem);
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.3333333333% + 1.5rem);
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.6666666667% + 1.5rem);
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 1.5rem);
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.3333333333% + 1.5rem);
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.6666666667% + 1.5rem);
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 1.5rem);
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.3333333333% + 1.5rem);
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.6666666667% + 1.5rem);
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 1.5rem);
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.3333333333% + 1.5rem);
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.6666666667% + 1.5rem);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  width: auto;
  max-width: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-shrink, .grid-y > .xlarge-full, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
    flex-basis: auto;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-shrink, .grid-y > .xxlarge-full, .grid-y > .xxlarge-1, .grid-y > .xxlarge-2, .grid-y > .xxlarge-3, .grid-y > .xxlarge-4, .grid-y > .xxlarge-5, .grid-y > .xxlarge-6, .grid-y > .xxlarge-7, .grid-y > .xxlarge-8, .grid-y > .xxlarge-9, .grid-y > .xxlarge-10, .grid-y > .xxlarge-11, .grid-y > .xxlarge-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .grid-y > .xlarge-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-y > .xxlarge-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxlarge-1 {
    height: 8.3333333333%;
  }
  .grid-y > .xxlarge-2 {
    height: 16.6666666667%;
  }
  .grid-y > .xxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxlarge-4 {
    height: 33.3333333333%;
  }
  .grid-y > .xxlarge-5 {
    height: 41.6666666667%;
  }
  .grid-y > .xxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxlarge-7 {
    height: 58.3333333333%;
  }
  .grid-y > .xxlarge-8 {
    height: 66.6666666667%;
  }
  .grid-y > .xxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxlarge-10 {
    height: 83.3333333333%;
  }
  .grid-y > .xxlarge-11 {
    height: 91.6666666667%;
  }
  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y > .cell {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .cell {
    height: calc(100% - 3rem);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 3rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 3rem);
  }
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 3rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xxlarge-grid-frame {
    width: 100%;
  }
  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .xxlarge-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 75em) {
  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 90em) {
  .grid-y.xxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 75em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 90em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .cell {
    height: calc(100% - 3rem);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 2rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 2rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 2rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 2rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 2rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 3rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 3rem);
  }
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 3rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 3rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 3rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.3333333333% - 3rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.6666666667% - 3rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 3rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 3rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 3rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 3rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 3rem);
  }
}
.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 90em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-3 {
    width: 25%;
  }
  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-6 {
    width: 50%;
  }
  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-9 {
    width: 75%;
  }
  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-12 {
    width: 100%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xlarge-centered, .xlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-12 {
    width: 100%;
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxlarge-centered, .xxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid hsl(42, 8%, 56%);
  border-radius: 0.375rem;
  background-color: hsl(44, 15%, 100%);
  box-shadow: inset 0 1px 2px rgba(17, 16, 14, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: hsl(39, 10%, 6%);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid hsl(42, 8%, 35%);
  background-color: hsl(44, 15%, 100%);
  box-shadow: 0 0 5px hsl(42, 8%, 56%);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: hsl(42, 8%, 56%);
}

input::placeholder,
textarea::placeholder {
  color: hsl(42, 8%, 56%);
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: hsl(44, 15%, 94%);
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.375rem;
}

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(17, 16, 14, 0.8);
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: hsl(39, 10%, 6%);
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child {
  border-radius: 0.375rem 0 0 0.375rem;
}
.input-group > :last-child > * {
  border-radius: 0 0.375rem 0.375rem 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid hsl(42, 8%, 56%);
  background: hsl(44, 15%, 94%);
  color: hsl(39, 10%, 6%);
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: auto;
  align-self: stretch;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid hsl(42, 27%, 41%);
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid hsl(42, 8%, 56%);
  border-radius: 0.375rem;
  background-color: hsl(44, 15%, 100%);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: hsl(39, 10%, 6%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2896, 92, 82%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid hsl(42, 8%, 35%);
  background-color: hsl(44, 15%, 100%);
  box-shadow: 0 0 5px hsl(42, 8%, 56%);
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: hsl(44, 15%, 94%);
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #ec5840;
  background-color: #fdeeec;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #ec5840;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #ec5840;
}

.is-invalid-label {
  color: #ec5840;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ec5840;
}
.form-error.is-visible {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: 700;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: hsl(42, 8%, 56%);
}

h1, .h1 {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: 1.5625rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h3, .h3 {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h5, .h5 {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h6, .h6 {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1.125rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  h1, .h1 {
    font-size: 2.375rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.75rem;
  }
  h4, .h4 {
    font-size: 1.375rem;
  }
  h5, .h5 {
    font-size: 1.125rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: hsl(45, 33%, 26%);
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #4c4226;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 2rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid hsl(44, 15%, 94%);
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.5;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 700;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid hsl(42, 8%, 56%);
}
blockquote, blockquote p {
  line-height: 1.5;
  color: hsl(42, 8%, 35%);
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: hsl(42, 8%, 35%);
}
cite:before {
  content: "— ";
}

abbr, abbr[title] {
  border-bottom: 1px dotted hsl(39, 10%, 6%);
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid hsl(42, 8%, 56%);
  background-color: hsl(44, 15%, 94%);
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 300;
  color: hsl(39, 10%, 6%);
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: hsl(44, 15%, 94%);
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: hsl(39, 10%, 6%);
  border-radius: 0.375rem;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: hsl(42, 8%, 35%);
}

.lead {
  font-size: 115%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid hsl(42, 8%, 35%);
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.accordion {
  margin-left: 0;
  background: hsl(44, 15%, 100%);
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0.375rem 0.375rem 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0.375rem 0.375rem;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid hsl(44, 15%, 94%);
  border-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  color: foreground(hsl(44, 15%, 100%), hsl(42, 27%, 41%));
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid hsl(44, 15%, 94%);
  border-radius: 0 0 0.375rem 0.375rem;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: hsl(44, 15%, 94%);
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid hsl(44, 15%, 94%);
  border-bottom: 0;
  background-color: hsl(44, 15%, 100%);
  color: foreground(hsl(44, 15%, 100%), hsl(42, 27%, 41%));
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid hsl(44, 15%, 94%);
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.875rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.93rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: hsl(42, 27%, 41%);
  color: hsl(39, 10%, 6%);
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #716241;
  color: hsl(39, 10%, 6%);
}
.button.tiny {
  font-size: 0.63rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.125rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 94%);
}
.button.primary:hover, .button.primary:focus {
  background-color: #716241;
  color: hsl(44, 15%, 94%);
}
.button.secondary {
  background-color: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 94%);
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #450964;
  color: hsl(44, 15%, 94%);
}
.button.success {
  background-color: #3adb76;
  color: hsl(39, 10%, 6%);
}
.button.success:hover, .button.success:focus {
  background-color: #24c761;
  color: hsl(39, 10%, 6%);
}
.button.warning {
  background-color: #ffae00;
  color: hsl(39, 10%, 6%);
}
.button.warning:hover, .button.warning:focus {
  background-color: #d99400;
  color: hsl(39, 10%, 6%);
}
.button.alert {
  background-color: #ec5840;
  color: hsl(39, 10%, 6%);
}
.button.alert:hover, .button.alert:focus {
  background-color: #e83417;
  color: hsl(39, 10%, 6%);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: hsl(42, 27%, 41%);
  color: hsl(39, 10%, 6%);
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 94%);
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 94%);
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #3adb76;
  color: hsl(39, 10%, 6%);
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ffae00;
  color: hsl(39, 10%, 6%);
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #ec5840;
  color: hsl(39, 10%, 6%);
}
.button.hollow {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #645739;
  color: #645739;
}
.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.hollow.primary {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #645739;
  color: #645739;
}
.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.hollow.secondary {
  border: 2px solid hsl(280, 84%, 25%);
  color: hsl(280, 84%, 25%);
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3d0858;
  color: #3d0858;
}
.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 2px solid hsl(280, 84%, 25%);
  color: hsl(280, 84%, 25%);
}
.button.hollow.success {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #20b056;
  color: #20b056;
}
.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.hollow.warning {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #bf8300;
  color: #bf8300;
}
.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.hollow.alert {
  border: 2px solid #ec5840;
  color: #ec5840;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #cd2e14;
  color: #cd2e14;
}
.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 2px solid #ec5840;
  color: #ec5840;
}
.button.clear {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover, .button.clear:focus {
  border-color: #645739;
  color: #645739;
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #645739;
  color: #645739;
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 2px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 2px solid hsl(280, 84%, 25%);
  color: hsl(280, 84%, 25%);
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #3d0858;
  color: #3d0858;
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 2px solid hsl(280, 84%, 25%);
  color: hsl(280, 84%, 25%);
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: #20b056;
  color: #20b056;
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #bf8300;
  color: #bf8300;
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 2px solid #ec5840;
  color: #ec5840;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #cd2e14;
  color: #cd2e14;
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 2px solid #ec5840;
  color: #ec5840;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: hsl(44, 15%, 100%) transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 0.875rem;
}
.button.dropdown.hollow::after {
  border-top-color: hsl(42, 27%, 41%);
}
.button.dropdown.hollow.primary::after {
  border-top-color: hsl(42, 27%, 41%);
}
.button.dropdown.hollow.secondary::after {
  border-top-color: hsl(280, 84%, 25%);
}
.button.dropdown.hollow.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after {
  border-top-color: #ec5840;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.63rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.125rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button {
  background-color: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 94%);
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #716241;
  color: hsl(44, 15%, 94%);
}
.button-group.secondary .button {
  background-color: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 94%);
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #450964;
  color: hsl(44, 15%, 94%);
}
.button-group.success .button {
  background-color: #3adb76;
  color: hsl(39, 10%, 6%);
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #24c761;
  color: hsl(39, 10%, 6%);
}
.button-group.warning .button {
  background-color: #ffae00;
  color: hsl(39, 10%, 6%);
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #d99400;
  color: hsl(39, 10%, 6%);
}
.button-group.alert .button {
  background-color: #ec5840;
  color: hsl(39, 10%, 6%);
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #e83417;
  color: hsl(39, 10%, 6%);
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 1 1 0px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(17, 16, 14, 0.25);
  border-radius: 0.375rem;
  background-color: white;
  color: rgba(17, 16, 14, 0.8);
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #efebe2;
  color: rgba(17, 16, 14, 0.8);
}
.callout.secondary {
  background-color: #eacafa;
  color: rgba(17, 16, 14, 0.8);
}
.callout.success {
  background-color: #e1faea;
  color: rgba(17, 16, 14, 0.8);
}
.callout.warning {
  background-color: #fff3d9;
  color: rgba(17, 16, 14, 0.8);
}
.callout.alert {
  background-color: #fce6e2;
  color: rgba(17, 16, 14, 0.8);
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.close-button {
  position: absolute;
  color: hsl(42, 8%, 35%);
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: hsl(39, 10%, 6%);
}
.close-button.small {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}
.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75em) {
  .menu.xlarge-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.xlarge-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.xlarge-expanded li {
    flex: 1 1 0px;
  }
  .menu.xlarge-simple li {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 90em) {
  .menu.xxlarge-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.xxlarge-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.xxlarge-expanded li {
    flex: 1 1 0px;
  }
  .menu.xxlarge-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: hsl(44, 15%, 100%);
  color: transparent;
}
.menu .active > a {
  background: hsl(44, 15%, 100%);
  color: transparent;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: transparent;
}
.top-bar input {
  max-width: 180px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 74.9375em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 89.9375em) {
  .top-bar.stacked-for-xlarge {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar.stacked-for-xxlarge {
  flex-wrap: wrap;
}
.top-bar.stacked-for-xxlarge .top-bar-left,
.top-bar.stacked-for-xxlarge .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 1rem;
  visibility: hidden;
  display: none;
  border: 1px solid hsl(42, 8%, 56%);
  border-radius: 0.375rem;
  background-color: hsl(44, 15%, 100%);
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  visibility: visible;
  display: block;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: hsl(45, 33%, 26%) transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
.dropdown.menu a {
  padding: 0.7rem 1rem;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu .is-active > a {
  background: transparent;
  color: hsl(42, 27%, 41%);
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
  top: 0;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  right: auto;
  left: 5px;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent hsl(45, 33%, 26%) transparent transparent;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent hsl(45, 33%, 26%);
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: hsl(45, 33%, 26%) transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent hsl(45, 33%, 26%) transparent transparent;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent hsl(45, 33%, 26%);
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: hsl(45, 33%, 26%) transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent hsl(45, 33%, 26%) transparent transparent;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent hsl(45, 33%, 26%);
  }
}
@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: hsl(45, 33%, 26%) transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent hsl(45, 33%, 26%) transparent transparent;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent hsl(45, 33%, 26%);
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: hsl(45, 33%, 26%) transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > a::after {
    right: auto;
    left: 5px;
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent hsl(45, 33%, 26%) transparent transparent;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent hsl(45, 33%, 26%);
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid hsl(42, 8%, 56%);
  background: hsl(44, 15%, 100%);
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  right: auto;
  left: 5px;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent hsl(45, 33%, 26%) transparent transparent;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent hsl(45, 33%, 26%);
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 100%);
}
.label.primary {
  background: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 100%);
}
.label.secondary {
  background: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 100%);
}
.label.success {
  background: #3adb76;
  color: hsl(39, 10%, 6%);
}
.label.warning {
  background: #ffae00;
  color: hsl(39, 10%, 6%);
}
.label.alert {
  background: #ec5840;
  color: hsl(39, 10%, 6%);
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(96, 92, 82, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: hsl(44, 15%, 100%);
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 -2px 2px rgba(17, 16, 14, 0.1);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: hsl(44, 15%, 100%);
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 -2px 2px rgba(17, 16, 14, 0.1);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .position-left {
    width: 420px;
    transform: translateX(-420px);
  }
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-420px);
  }
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(420px);
  }
}

.position-left.is-transition-push {
  box-shadow: inset -3px 0 5px -3px rgba(17, 16, 14, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .position-right {
    width: 420px;
    transform: translateX(420px);
  }
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(420px);
  }
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-420px);
  }
}

.position-right.is-transition-push {
  box-shadow: inset 3px 0 5px -3px rgba(17, 16, 14, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 54px;
  transform: translateY(-54px);
}
@media print, screen and (min-width: 40em) {
  .position-top {
    height: auto;
    transform: translateY(-auto);
  }
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-54px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-top {
    transform: translateY(-auto);
  }
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(54px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-top.has-transition-push {
    transform: translateY(auto);
  }
}

.position-top.is-transition-push {
  box-shadow: inset 0 -3px 5px -3px rgba(17, 16, 14, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 54px;
  transform: translateY(54px);
}
@media print, screen and (min-width: 40em) {
  .position-bottom {
    height: auto;
    transform: translateY(auto);
  }
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(54px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-bottom {
    transform: translateY(auto);
  }
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-54px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-bottom.has-transition-push {
    transform: translateY(-auto);
  }
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 3px 5px -3px rgba(17, 16, 14, 0.25);
}

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 420px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 420px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 420px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 420px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 420px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 420px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 420px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 420px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 420px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 420px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 420px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 420px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 420px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 420px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 420px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 420px;
  }
}
@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 420px;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 420px;
  }
  .position-right.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 420px;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 420px;
  }
  .position-top.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 420px;
  }
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 420px;
  }
  .position-bottom.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 420px;
  }
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 420px;
  }
}
@media screen and (min-width: 90em) {
  .position-left.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 420px;
  }
  .position-left.reveal-for-xxlarge ~ .off-canvas-content {
    margin-left: 420px;
  }
  .position-right.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 420px;
  }
  .position-right.reveal-for-xxlarge ~ .off-canvas-content {
    margin-right: 420px;
  }
  .position-top.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 420px;
  }
  .position-top.reveal-for-xxlarge ~ .off-canvas-content {
    margin-top: 420px;
  }
  .position-bottom.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xxlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xxlarge {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 420px;
  }
  .position-bottom.reveal-for-xxlarge ~ .off-canvas-content {
    margin-bottom: 420px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
@media screen and (min-width: 75em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-xlarge.position-left, .off-canvas.in-canvas-for-xlarge.position-right, .off-canvas.in-canvas-for-xlarge.position-top, .off-canvas.in-canvas-for-xlarge.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none;
  }
}
@media screen and (min-width: 90em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit;
  }
  .off-canvas.in-canvas-for-xxlarge.position-left, .off-canvas.in-canvas-for-xxlarge.position-right, .off-canvas.in-canvas-for-xxlarge.position-top, .off-canvas.in-canvas-for-xxlarge.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xxlarge .close-button {
    display: none;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(17, 16, 14, 0.5);
  color: hsl(44, 15%, 100%);
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  padding: 1rem;
  color: hsl(44, 15%, 100%);
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(17, 16, 14, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: hsl(42, 8%, 56%);
}
.orbit-bullets button:hover {
  background-color: hsl(42, 8%, 35%);
}
.orbit-bullets button.is-active {
  background-color: hsl(42, 8%, 35%);
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(17, 16, 14, 0.7);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 0;
  border-radius: 0.375rem;
  background-color: hsl(44, 15%, 100%);
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column, .reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px hsl(42, 8%, 35%);
  font-weight: 700;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  background-color: hsl(39, 10%, 6%);
  font-size: 80%;
  color: hsl(44, 15%, 100%);
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent hsl(39, 10%, 6%);
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: hsl(39, 10%, 6%) transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent hsl(39, 10%, 6%);
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent hsl(39, 10%, 6%) transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 75em) and (max-width: 89.9375em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (min-width: 90em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em) {
  .show-for-xxlarge {
    display: none !important;
  }
}

@media screen and (min-width: 90em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
}
thead,
tbody,
tfoot {
  border: 2px solid;
  background-color: hsl(44, 15%, 100%);
}

caption {
  padding: 1.25rem 0.5rem;
  font-weight: 700;
}

thead {
  background: #faf9f8;
  color: rgba(17, 16, 14, 0.8);
}

tfoot {
  background: #f4f3f0;
  color: rgba(17, 16, 14, 0.8);
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 1.25rem 0.5rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: 1.25rem 0.5rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: hsl(44, 15%, 100%);
}

table.unstriped tbody {
  background-color: hsl(44, 15%, 100%);
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 2px solid;
  background-color: hsl(44, 15%, 100%);
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f5f4f2;
}
table.hover tfoot tr:hover {
  background-color: #f0eeea;
}
table.hover tbody tr:hover {
  background-color: #fbfaf9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #f0eeea;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  border: 1px solid hsl(44, 15%, 94%);
  background: hsl(44, 15%, 100%);
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: hsl(42, 27%, 41%);
}
.tabs.primary > li > a {
  color: hsl(44, 15%, 100%);
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #7e6e49;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: hsl(42, 27%, 41%);
}
.tabs-title > a:hover {
  background: hsl(44, 15%, 100%);
  color: #726442;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: hsl(44, 15%, 94%);
  color: hsl(42, 27%, 41%);
}

.tabs-content {
  border: 1px solid hsl(44, 15%, 94%);
  border-top: 0;
  background: hsl(44, 15%, 100%);
  color: rgba(17, 16, 14, 0.8);
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid hsl(44, 15%, 94%);
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid rgba(133, 116, 76, 0.25);
  border-radius: 0.375rem;
  background: hsl(44, 15%, 100%);
  box-shadow: none;
  overflow: hidden;
  color: rgba(17, 16, 14, 0.8);
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  flex: 0 1 auto;
  display: flex;
  padding: 1rem;
  background: hsl(44, 15%, 94%);
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: hsl(44, 15%, 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0.375rem;
  background: hsl(42, 8%, 56%);
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0.375rem;
  background: hsl(44, 15%, 100%);
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: hsl(42, 27%, 41%);
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

body.reveal-site-nav {
  overflow-y: hidden;
}

#viewport {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: hsl(44, 15%, 100%);
}

.page {
  position: relative;
  overflow: hidden;
  background: hsl(44, 15%, 100%);
}
.page.thanks #content {
  text-align: center;
  background-image: url("../img/bg/the-jewels_gray.jpg");
}
.page.thanks #content a {
  font-size: 85%;
  text-decoration: underline;
}
.page.thanks #content .page-title {
  margin-bottom: 0;
}
.page.thanks #content p {
  font-size: 1.5em;
}
.page.thanks .primary-nav li#goto-book {
  background: hsl(42, 61%, 90%);
  color: hsl(44, 15%, 100%);
}
@media screen and (max-width: 56em) {
  .page {
    padding-bottom: 44px;
  }
}

#content {
  position: relative;
  overflow: hidden;
}

section {
  padding: 3rem 36px;
  margin: 0 auto;
}
section#intro {
  text-align: center;
}
section.related-content {
  background: url("/lib/dist/img/bg/the-jewels_gray.jpg") fixed;
}
@media screen and (max-width: 650px) {
  section {
    padding: 1.5rem 1rem;
  }
}

div.dim-lights {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0);
}

@media screen and (min-width: 100em) {
  .row, .grid-container {
    max-width: 90rem;
  }
}
.header-active {
  transition: all 0.5s linear;
  position: fixed !important;
  z-index: 9 !important;
}
.header-active .header-top {
  display: none;
}
.header-active .header-bottom {
  border-bottom: 1px solid #85754c;
}
.header-active #small-logo {
  display: block !important;
}
.header-active .large-logo {
  width: 0 !important;
}

@media screen and (max-width: 74.9375em) {
  #early-access ~ #viewport #header {
    position: relative;
  }
}
.header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 19;
}
@media screen and (min-width: 75em) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
}
@media screen and (min-width: 75em) {
  .header .grid-container {
    max-width: 1400px;
  }
}
@media screen and (min-width: 120em) {
  .header .grid-container {
    max-width: 1600px;
  }
}
@media screen and (max-width: 74.9375em) {
  .header .large-down-full {
    padding: 0;
    margin: 0;
  }
}
.header .top-bar {
  padding: 0;
}
.header a:hover {
  text-decoration: underline;
}
.header .large-logo {
  width: 152px;
}
.header .header-logo {
  position: absolute;
  z-index: 2;
  background-color: hsl(44, 15%, 100%);
  padding: 0.25rem;
}
.header .top-bar-lang {
  margin-right: 1rem;
}
@media screen and (max-width: 74.9375em) {
  .header .top-bar-lang {
    display: none;
  }
}
.header .top-bar-lang a {
  color: hsl(42, 27%, 41%);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.header .top-bar-lang a svg {
  margin-right: 0.3rem;
}
.header .top-bar-lang a svg use {
  stroke: hsl(42, 27%, 41%);
}
.header .top-bar-tafer {
  margin-right: 1rem;
}
.header .top-bar-tafer a {
  display: flex;
  align-items: center;
}
.header .top-bar-login {
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .top-bar-login button {
  color: hsl(42, 27%, 41%);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 0;
  display: flex;
  align-items: center;
}
.header .top-bar-login button svg {
  margin-right: 0.3rem;
}
.header .close-menu {
  display: none;
}
@media screen and (min-width: 75em) {
  .header .dropdown.menu > li.is-dropdown-submenu-parent > a::after, .header .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: none !important;
  }
}
.header .header-top {
  background-color: hsl(44, 15%, 100%);
  border-bottom: 1px solid hsl(42, 61%, 90%);
}
.header .header-top .top-bar .menu li a {
  color: hsl(39, 10%, 6%);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.85rem;
}
.header .header-top .top-bar .menu li a:hover {
  color: hsl(42, 27%, 41%);
}
@media screen and (max-width: 74.9375em) {
  .header .header-top .top-bar #openMenu {
    margin-right: 1rem;
  }
}
.header .header-bottom {
  background-color: hsl(44, 15%, 100%);
}
.header .header-bottom #small-logo {
  display: none;
}
.header .header-bottom .button {
  margin: 0;
  white-space: nowrap;
}
.header .header-bottom .menu li a {
  color: hsl(39, 10%, 6%);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 17px;
}
@media screen and (max-width: 120em) {
  .header .header-bottom .menu li a {
    padding: 0.7rem !important;
  }
}
.header .header-bottom .menu li a:hover {
  color: hsl(42, 27%, 41%);
}
.header .header-bottom .menu .container-menu a {
  color: hsl(42, 27%, 41%);
}
.header .header-bottom .black {
  color: hsl(39, 10%, 6%) !important;
}
.header .dropdown li ul {
  background-color: hsl(44, 15%, 100%);
}
.header .dropdown li ul li a {
  color: hsl(42, 27%, 41%) !important;
  font-size: 0.85rem !important;
  padding: 0.7rem 1rem !important;
}
.header .small-logo {
  background-color: hsl(44, 15%, 100%);
  border-bottom: 1px solid rgba(133, 117, 76, 0.0901960784);
  padding: 0.2rem 0.5rem;
}
@media screen and (min-width: 75em) {
  .header .small-logo {
    display: none;
  }
}
.header .small-title {
  margin-left: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .header .small-title {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 75em) {
  .header .small-title {
    display: none;
  }
}
.header .small-title span {
  color: hsl(42, 27%, 41%);
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  vertical-align: middle;
}
.header .small-title span span {
  color: hsl(42, 27%, 41%);
  display: block;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 75em) {
  .header .wide-dropdown {
    min-width: 565px;
    padding: 30px 40px 0;
  }
  .header .wide-dropdown .title-menu {
    border-bottom: 1px solid hsl(44, 15%, 94%);
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .header .wide-dropdown .title-menu > .title-dropdown {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1;
  }
  .header .wide-dropdown .title-menu > .subtitle-dropdown {
    margin: 0;
  }
  .header .wide-dropdown .cell {
    margin-bottom: 20px;
  }
  .header .wide-dropdown .cell:last-child {
    margin-bottom: 0;
  }
  .header .wide-dropdown .title-column {
    margin: 0 0 7px 0;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: "playfair-display", serif;
  }
  .header .wide-dropdown a {
    font-size: 0.85rem !important;
    color: hsl(42, 27%, 41%) !important;
    padding: 0.3rem;
    font-weight: 300 !important;
  }
  .header .wide-dropdown a.view-all {
    text-align: right;
    border-top: 1px solid hsl(44, 15%, 94%);
    padding: 25px 0;
  }
}

.offcanvas-overlay {
  position: fixed;
  z-index: 18;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s linear;
}

#offCanvasHeader {
  box-shadow: -3px 0px 5px -3px rgba(17, 16, 14, 0.25) !important;
  background-color: #fff;
  margin: auto;
  padding-bottom: 10rem;
  width: 100%;
  max-width: 420px;
  min-height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  height: 100%;
  overflow-y: auto;
  transition: all 0.25s ease-in-out;
}
#offCanvasHeader .is-accordion-submenu-parent > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 5px inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #85744c transparent transparent;
  position: absolute;
  margin-top: -3px;
  right: 1rem;
}
#offCanvasHeader #secondaryActions {
  background-color: hsl(44, 15%, 100%);
  padding: 0 0.5rem 0 0;
}
#offCanvasHeader #secondaryActions .small-logo {
  background-color: hsl(44, 15%, 100%);
  padding: 0 1rem;
}
#offCanvasHeader #secondaryActions .small-title {
  margin-left: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  #offCanvasHeader #secondaryActions .small-title {
    margin-left: 1rem;
  }
}
#offCanvasHeader #secondaryActions .small-title span {
  color: hsl(42, 27%, 41%);
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  vertical-align: middle;
}
#offCanvasHeader #secondaryActions .small-title span span {
  color: hsl(42, 27%, 41%);
  display: block;
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 0;
  text-transform: uppercase;
}
#offCanvasHeader #secondaryActions .top-bar-login {
  margin-right: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 40em) {
  #offCanvasHeader #secondaryActions .top-bar-login {
    margin-right: 1rem;
  }
}
#offCanvasHeader #secondaryActions .top-bar-login button {
  color: hsl(42, 27%, 41%);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 0;
  display: flex;
  align-items: center;
}
#offCanvasHeader #secondaryActions .top-bar-login button svg {
  margin-right: 0.3rem;
}
#offCanvasHeader #secondaryActions .open-menu {
  display: none;
}
#offCanvasHeader #langContainer .top-bar-lang a {
  color: hsl(42, 27%, 41%);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#offCanvasHeader #langContainer .top-bar-lang a svg {
  margin-right: 0.3rem;
}
#offCanvasHeader #langContainer .top-bar-lang a svg use {
  stroke: hsl(42, 27%, 41%);
}
#offCanvasHeader #langContainer .top-bar-tafer a svg use {
  fill: hsl(42, 27%, 41%) !important;
}
#offCanvasHeader #offCanvasMenu .menu li a {
  color: hsl(39, 10%, 6%);
  border-bottom: solid 1px #eee;
  font-weight: 400;
  text-transform: capitalize;
}
#offCanvasHeader #offCanvasMenu .menu li a:hover {
  color: hsl(42, 27%, 41%);
}
#offCanvasHeader #offCanvasMenu .menu li ul li a {
  color: hsl(39, 10%, 6%);
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 300;
  border: none;
}
#offCanvasHeader #offCanvasMenu :first-child :first-child a {
  border-top: solid 1px #eee;
}
@media screen and (max-width: 74.9375em) {
  #offCanvasHeader #offCanvasMenu .wide-dropdown .submenu-container {
    margin: 1rem 2rem;
  }
  #offCanvasHeader #offCanvasMenu .wide-dropdown .title-column {
    font-size: 1rem;
    font-weight: bold;
    margin: 0px 0 10px 0;
    font-family: "playfair-display", serif;
  }
  #offCanvasHeader #offCanvasMenu .wide-dropdown a {
    font-weight: 300 !important;
    border: none !important;
  }
  #offCanvasHeader #offCanvasMenu .wide-dropdown .view-all {
    display: inline-block;
    text-align: center;
    width: 100%;
    border-top: 1px solid #f2f1ed !important;
    border-bottom: 1px solid #f2f1ed !important;
    padding: 15px 0;
  }
}
#offCanvasHeader #secondaryMobileNav > ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-rule: dotted 1px #e7e7e7;
       column-rule: dotted 1px #e7e7e7;
  list-style-type: none;
  display: block;
  padding: 2rem 0;
  padding-left: 1rem;
}
#offCanvasHeader #secondaryMobileNav > ul li a {
  padding: 0.7rem 0 !important;
  border: none;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: hsl(39, 10%, 6%);
}
#offCanvasHeader .social-icons {
  margin: 0;
}
#offCanvasHeader .social-icons li a {
  padding: 0;
  border: none;
}
#offCanvasHeader .social-icons li a img {
  margin-right: 0.8rem;
  width: 20px;
  height: 20px;
}
#offCanvasHeader .uppercase {
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: hsl(39, 10%, 6%);
}
#offCanvasHeader .bg-gray {
  background: rgba(242, 241, 237, 0.4);
  border-top: solid 1px hsl(42, 27%, 41%);
  border-bottom: solid 1px hsl(42, 27%, 41%);
  padding: 1rem 0;
}
#offCanvasHeader .bg-gray .site-cta a {
  color: hsl(39, 10%, 6%);
}
#offCanvasHeader .bg-gray .site-cta a small {
  font-weight: 400;
  display: block;
}
#offCanvasHeader .bg-gray button {
  margin: 0;
}

.off-canvas-phone-numbers__title {
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-bottom: solid 1px #eee;
}
.off-canvas-phone-numbers__title::before {
  top: 33% !important;
}
.off-canvas-phone-numbers .accordion-content {
  padding-top: 0;
  margin-left: 1em;
  border: none;
}
.off-canvas-phone-numbers__phone {
  padding: 0 !important;
  border-top: none !important;
}
@media screen and (max-width: 74.9375em) {
  .off-canvas-phone-numbers {
    display: none;
  }
}

.header-phone-numbers-mobile__link {
  padding: 0 !important;
}
.header-phone-numbers-mobile__link span {
  color: hsl(42, 27%, 41%) !important;
  text-decoration: underline !important;
}
.header-phone-numbers-mobile__menu {
  padding-top: 0.5em;
  margin-left: 2em !important;
}
@media print, screen and (min-width: 64em) {
  .header-phone-numbers-mobile {
    display: none;
  }
}

footer .breadcrumbs {
  position: relative;
}
footer .breadcrumbs li,
footer .breadcrumbs a,
footer .breadcrumbs li:not(:last-child):after {
  color: hsl(45, 33%, 26%);
}

#loyalty-wrap a {
  color: hsl(39, 10%, 6%) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
}

#taferRewardsTopHeaderMenu {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
#taferRewardsTopHeaderMenu .taferrewards-menu-item-link {
  color: white;
  font-size: clamp(0.7rem, 3vw, 1rem);
  font-weight: 500;
}

#colophon {
  padding-bottom: var(--bottom-bar-height);
}
#colophon p {
  font-size: 0.8125rem;
}
#colophon .cintillo {
  background-color: hsl(42, 27%, 41%);
  padding: 1rem 0;
}
#colophon .container {
  max-width: calc(1536px + 1rem);
  padding-inline: 1rem;
  margin-inline: auto;
}
#colophon .links__title {
  font-size: 1rem !important;
  font-weight: bold;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
#colophon .links__item {
  padding-inline: 0;
  font-size: 0.9rem;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  color: hsl(42, 27%, 41%);
  font-weight: 400;
}
#colophon .links__item:hover {
  color: hsl(48, 37%, 15%);
  text-decoration: underline;
}
#colophon .links__item--white {
  color: hsl(44, 15%, 94%);
}
#colophon .links__item--white:hover {
  color: hsl(44, 15%, 94%);
}
#colophon .footer,
#colophon .footer-extra {
  padding: 2rem 0;
}
#colophon .footer__title,
#colophon .footer-extra__title {
  font-size: 1rem !important;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
#colophon .footer__logo {
  border-bottom: 1px solid rgba(197, 192, 181, 0.3);
  padding-bottom: 1.5rem;
}
#colophon .footer-extra {
  background-color: hsl(39, 10%, 6%);
}
#colophon .footer-extra__menu {
  padding: 1rem 0;
}
#colophon .footer-extra__logo {
  padding: inherit 3rem 2rem 3rem;
  margin-top: 0.75rem;
}
#colophon .footer-extra .cross-marketing {
  border-bottom: 1px solid rgba(242, 241, 237, 0.15);
  padding-bottom: 1rem;
}
#colophon .footer-extra .copy {
  border-top: 1px solid rgba(242, 241, 237, 0.15);
  padding-top: 1rem;
  color: hsl(44, 15%, 94%);
}

#crossmkt {
  border-bottom: 1px solid rgba(197, 192, 181, 0.2);
}
#crossmkt object.svg {
  width: 54px;
  height: 54px;
}
#crossmkt svg use {
  stroke: none !important;
  fill: #86754d !important;
}
#crossmkt .svg-container {
  display: inline-block;
  position: relative;
  z-index: 1;
  vertical-align: middle;
}
#crossmkt .svg-container span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
#crossmkt #tafer-logo {
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  #crossmkt #tafer-logo:after {
    content: "";
    border-right: 1px solid rgba(197, 192, 181, 0.5);
    position: relative;
    padding-left: 40%;
  }
}
@media screen and (max-width: 1000px) {
  #crossmkt #tafer-logo a {
    border-bottom: 1px solid hsl(44, 15%, 94%);
    padding-bottom: 0.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  #crossmkt #tafer-logo {
    text-align: left;
  }
}

#tafer-resorts nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  #tafer-resorts {
    padding-top: 2rem;
  }
}

#tafer-brands .other-links-button {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(17, 16, 14, 0.7);
}
@media print, screen and (min-width: 40em) {
  #tafer-brands .other-links-button {
    margin: 1.5rem 0;
  }
}
#tafer-brands dl {
  font-size: 1em;
  text-align: left;
}
#tafer-brands dt,
#tafer-brands dd {
  padding: 0 4px;
}
#tafer-brands dt {
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1em;
  color: rgba(17, 16, 14, 0.7);
}
#tafer-brands dd {
  position: relative;
  margin: 0 0 4px;
}
#tafer-brands dd:hover a span {
  color: rgba(17, 16, 14, 0.7);
}
#tafer-brands dd a {
  font-size: 0.75em;
  color: #86754d;
}
#tafer-brands dd a span {
  display: inline-block;
  position: relative;
}
#tafer-brands #other-links-footer dl {
  margin-top: 1rem;
}
@media print, screen and (min-width: 40em) {
  #tafer-brands dl {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
  }
}
#tafer-brands dl.resorts {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  #tafer-brands dl.resorts {
    margin: 1.5rem 0;
  }
  #tafer-brands dl.resorts dd {
    display: inline-block;
  }
}
@media print, screen and (min-width: 64em) {
  #tafer-brands dl.resorts {
    margin: 1.5rem 0;
  }
}

.progress-wrap {
  position: fixed;
  right: 30px;
  height: 46px;
  width: 46px;
  bottom: 90px;
  background-color: hsl(44, 15%, 100%);
  cursor: pointer;
  border-radius: 50px;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1), inset 0 0 0 2px rgba(42, 40, 34, 0.2);
  padding: 0;
  border: none;
}
.progress-wrap path {
  fill: none;
}
.progress-wrap:focus {
  background-color: hsl(44, 15%, 94%);
}
.progress-wrap.active-progress {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap .progress-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 200ms linear;
  opacity: 0.5;
}
.progress-wrap .progress-arrow use {
  fill: hsl(39, 10%, 6%);
  stroke: hsl(42, 27%, 41%);
  stroke-width: 3;
}
.progress-wrap .progress-circle path {
  stroke: hsl(42, 27%, 41%);
  stroke-width: 3;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  color: hsl(42, 27%, 41%);
}

body:has(.cookiesbar[style="display: block;"]) .progress-wrap {
  bottom: 125px;
}

@media print, screen and (min-width: 64em) {
  #content {
    margin-top: 94px !important;
  }
}

#hero {
  position: relative;
}
#hero .swiper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 100vw;
  max-height: 100vh;
}
@media print, screen and (min-width: 40em) {
  #hero .swiper {
    height: 74.8502994012vw;
  }
}
@media print, screen and (min-width: 64em) {
  #hero .swiper {
    height: 42.96875vw;
  }
}
@media screen and (min-width: 75em) {
  #hero .swiper {
    height: 42.96875vw;
  }
}
@media screen and (min-width: 75em) and (orientation: landscape) {
  #hero .swiper {
    height: calc(100vh - 61px - 94px);
  }
}
#hero .swiper.home {
  height: 121.7158176944vw;
}
@media print, screen and (min-width: 40em) {
  #hero .swiper.home {
    height: 74.8502994012vw;
  }
}
@media print, screen and (min-width: 64em) {
  #hero .swiper.home {
    height: 66.640625vw;
  }
}
@media screen and (min-width: 75em) {
  #hero .swiper.home {
    height: 56.25vw;
  }
}
@media screen and (min-width: 75em) and (orientation: landscape) {
  #hero .swiper.home {
    height: calc(100vh - 61px - 94px);
  }
}
#hero .swiper-wraper {
  height: inherit;
}
#hero .swiper-slide {
  width: 100vw;
  height: inherit;
}
#hero .swiper-slide.bg-gradient::before {
  content: "";
  pointer-events: none;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1490196078);
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  #hero .swiper-slide.bg-gradient::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4392156863), transparent);
  }
}
#hero .swiper-slide:first-child .swiper-slide-description {
  opacity: 1;
}
#hero .swiper-slide-img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#hero .swiper-slide-video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#hero .swiper-slide-description {
  overflow: hidden;
  color: #fff;
  pointer-events: none;
  position: absolute;
  max-width: 90%;
  height: 85%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 2rem;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  #hero .swiper-slide-description {
    height: auto;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: block;
    padding: 0;
  }
}
#hero .swiper-slide-active button,
#hero .swiper-slide-active a {
  pointer-events: auto;
}
#hero .swiper-button-prev, #hero .swiper-button-next {
  display: none;
  padding: 2rem;
}
@media print, screen and (min-width: 64em) {
  #hero .swiper-button-prev, #hero .swiper-button-next {
    display: flex;
  }
}
@media print, screen and (min-width: 64em) {
  #hero .swiper-pagination {
    display: none;
  }
}
#hero .swiper-pagination-bullet {
  width: 2.5rem;
  height: 5px;
  border-radius: 2rem;
  background-color: hsl(45, 33%, 26%);
  opacity: 0.5;
}
#hero .swiper-pagination-bullet-active {
  background-color: hsl(44, 15%, 100%);
  opacity: 1;
}
#hero .swiper-awards {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#hero .swiper-awards img {
  margin: 0 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

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

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

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

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

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

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

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

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

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

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

.swiper-slide {
  touch-action: pan-y;
}
.swiper-pagination-bullet-active {
  background: #86754d;
}

.swiper-pagination.under {
  position: relative;
  margin-top: 1rem;
}

.page-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0.75rem 0 0.25rem;
  font-family: "playfair-display", serif;
  font-weight: 300;
}
.page-title span {
  font-size: 50%;
  font-weight: 300;
  position: relative;
  display: block;
  top: 5px;
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.page-subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0 0 0.63rem;
}

.title {
  font-family: "playfair-display", serif;
  line-height: 1.2;
  position: relative;
}

.subtitle {
  font-size: 0.8125rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 1.125rem 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}
.section-title span {
  font-family: "playfair-display", serif;
  line-height: 1;
}
.section-title b {
  font-size: 50%;
  font-weight: 300;
  letter-spacing: 0.1rem;
  display: block;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 37em) {
  .section-title {
    font-size: 1.85rem;
  }
  .section-title b {
    font-size: 60%;
  }
}

.dropcap {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-size: 72px;
  text-transform: uppercase;
  line-height: 72px;
  display: block;
  float: left;
  position: relative;
  margin: -6px 10px 0 0;
  height: 60px;
}

.phnum {
  font-family: Helvetica, Arial, sans-serif;
}

@media print, screen and (min-width: 40em) {
  .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .page-subtitle {
    font-size: 0.96rem;
  }
}
.section-heading {
  margin-bottom: 2rem;
}
.section-heading .title {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 300;
  font-family: "playfair-display", serif;
  text-transform: none;
}
.section-heading .title:first-child {
  margin-bottom: 0.4rem;
}
@media print, screen and (min-width: 64em) {
  .section-heading .title {
    font-size: 2.2rem;
  }
}
.section-heading .subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-heading .subtitle:nth-child(2) {
  margin: 0;
}

#site-intro .section-heading .title {
  font-weight: 500;
  letter-spacing: normal;
  text-transform: unset;
  margin-bottom: 0;
  font-family: "playfair-display", serif;
}
@media print, screen and (min-width: 64em) {
  #site-intro .section-heading .title {
    font-size: 2.75rem;
  }
}
#site-intro .section-heading .subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/*! menu bar */
.menu-bar {
  overflow: visible;
  position: relative;
  padding: 0;
}
.menu-bar::before, .menu-bar::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.menu-bar::after {
  clear: both;
}
.menu-bar li {
  position: relative;
  margin: 0 8px 0 0;
  padding: 0;
  float: left;
  list-style: none;
}
.menu-bar li a {
  text-transform: uppercase;
  display: block;
  padding: 0;
  width: auto;
  float: none;
}

.social-icons-footer {
  overflow: visible;
  position: relative;
  padding: 0;
}
.social-icons-footer::before, .social-icons-footer::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.social-icons-footer::after {
  clear: both;
}
.social-icons-footer li {
  position: relative;
  margin: 0 8px 0 0;
  padding: 0.1em;
  float: left;
  list-style: none;
  font-size: 180%;
}
.social-icons-footer li a {
  text-transform: uppercase;
  display: block;
  padding: 0;
  width: auto;
  float: none;
}

nav.secondary {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}
nav.secondary ul li a {
  font-size: 0.8em !important;
  line-height: 28px !important;
  font-weight: 100;
}
@media screen and (min-width: 56em) {
  nav.secondary {
    display: none !important;
  }
}

.secondary:last-child > ul > li:last-child a {
  color: #91825e !important;
}

.bottom-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: 0.775rem;
  text-align: center;
  background: hsl(44, 15%, 100%);
  border-top: 1px solid hsl(42, 27%, 41%);
  flex-wrap: nowrap;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
}
.bottom-bar .book-now {
  width: 100%;
  background-color: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 100%);
}
.bottom-bar .book-now svg use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}
.bottom-bar a,
.bottom-bar button {
  color: hsl(42, 27%, 41%);
  padding: 0.5rem 1rem;
  margin: 0;
  width: 100%;
}
.bottom-bar a:first-child,
.bottom-bar button:first-child {
  margin-left: 0.6rem;
}
@media print, screen and (min-width: 40em) {
  .bottom-bar a,
  .bottom-bar button {
    padding: 0.5rem 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .bottom-bar a,
  .bottom-bar button {
    padding: 0.5rem 5rem;
  }
}
.bottom-bar svg {
  display: block;
  margin: 0 auto 0.15rem;
}
.bottom-bar svg use {
  stroke: hsl(42, 27%, 41%);
  fill: hsl(42, 27%, 41%);
}

.dropdown-pane {
  background-color: hsl(44, 15%, 100%);
  display: block;
  margin: 0;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  width: 100%;
  z-index: 5;
  box-shadow: 0 5px 10px rgba(17, 16, 14, 0.33);
  border: none;
}
.dropdown-pane:hover, .dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.booking-container [data-booking=landscape] {
  z-index: 10;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 40em) {
  .booking-container {
    padding: 0;
  }
}
.booking-container .search-availability {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.booking-container .search-availability .form-head {
  padding: 1rem 1rem 0 1rem;
}
.booking-container .search-availability .form-head .form-title {
  color: hsl(45, 33%, 26%);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}
.booking-container .search-availability .form-head .form-title .svg-check {
  display: none;
}
.booking-container .search-availability .form-body {
  margin: 0;
  padding: 0;
  border-top: 0;
}
.booking-container .search-availability .form-body form {
  margin: 0;
  border-radius: 0;
  padding: 0;
  background: hsl(44, 15%, 94%);
}
.booking-container .search-availability .form-body form ul.form_container {
  background: hsl(44, 15%, 100%);
  padding-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
  position: relative;
  border: 1px solid hsl(43, 12%, 74%);
  list-style: none;
}
.booking-container .search-availability .form-body form ul.form_container .form-field {
  position: relative;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs {
  position: relative;
  text-align: center;
  display: flex;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button {
  flex: 1 1 auto;
  background: hsl(44, 15%, 94%);
  border: none;
  color: #a69b84;
  font-size: 0.93rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 0;
  padding: 0.8rem;
  text-transform: uppercase;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button .icon-svg use {
  stroke: #a69b84;
  fill: #a69b84;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button.is-active {
  background: hsl(44, 15%, 100%);
  color: #86754d;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button.is-active .icon-svg use {
  stroke: #86754d;
  fill: #86754d;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs button#hotelOnly {
  border-radius: 6px 0 0 0 !important;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs button#hotelFlight {
  border-radius: 0 6px 0 0 !important;
}
.booking-container .search-availability .form-body form ul.form_container .best-rate {
  display: none;
}
.booking-container .search-availability .form-body form ul.form_container .field-pax,
.booking-container .search-availability .form-body form ul.form_container .field-rooms,
.booking-container .search-availability .form-body form ul.form_container .field-airport,
.booking-container .search-availability .form-body form ul.form_container .field-date,
.booking-container .search-availability .form-body form ul.form_container .field-resort,
.booking-container .search-availability .form-body form ul.form_container .field-buttons {
  width: 100%;
  display: block;
  background: hsl(44, 15%, 100%);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.booking-container .search-availability .form-body form ul.form_container .field-airport .ui-autocomplete-input {
  width: 88%;
}
.booking-container .search-availability .form-body form ul.form_container .field-date {
  display: flex;
  align-items: center;
}
.booking-container .search-availability .form-body form ul.form_container .field-date input {
  background: hsl(44, 15%, 100%);
  cursor: pointer;
}
.booking-container .search-availability .form-body form ul.form_container .field-promocode label b {
  font-weight: 300;
  border-bottom: 1px dotted;
}
.booking-container .search-availability .form-body form ul.form_container input[type=text],
.booking-container .search-availability .form-body form ul.form_container select {
  width: auto;
  font-size: 0.825rem;
  border: 0;
  border-radius: 0 !important;
  border-bottom: 1px solid hsl(42, 8%, 56%);
  box-shadow: none;
  display: inline-block;
  color: rgba(17, 16, 14, 0.8);
  margin-bottom: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.booking-container .search-availability .form-body form ul.form_container span.separator {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 50%;
  font-size: 2rem;
  border-bottom: 1px solid hsl(42, 8%, 56%);
  width: 15px;
}
.booking-container .search-availability .form-body form ul.form_container label {
  text-align: left;
  display: inline-block;
  font-weight: 400;
  line-height: inherit;
  color: rgba(17, 16, 14, 0.8);
}
.booking-container .search-availability .form-body form ul.form_container label span {
  padding-left: 0.5rem;
}
.booking-container .search-availability .form-body form ul.form_container label .icon-svg {
  position: relative;
  width: 16px;
}
.booking-container .search-availability .form-body form ul.form_container label .icon-svg use {
  stroke: hsl(42, 27%, 41%);
  fill: hsl(42, 27%, 41%);
}
.booking-container .search-availability .form-body form ul.form_container select#id_adultos {
  background-image: url("/lib/dist/img/icons/dropdown.png");
  background-repeat: no-repeat, repeat;
  background-size: 0.65em auto, 100%;
  width: 89%;
}
.booking-container .search-availability .form-body form ul.form_container input#entrada,
.booking-container .search-availability .form-body form ul.form_container input#salida {
  max-width: 46%;
}
@media screen and (max-width: 375px) {
  .booking-container .search-availability .form-body form ul.form_container input#entrada,
  .booking-container .search-availability .form-body form ul.form_container input#salida {
    max-width: 45%;
  }
}
.booking-container .search-availability .form-body form ul.form_container input#salida {
  position: relative;
  left: -5px;
  text-align: right;
}
.booking-container .search-availability .form-body form ul.form_container .button-group {
  justify-content: center;
  margin-bottom: 0;
}
.booking-container .search-availability .form-body form ul.form_container .button-group .button.primary.hollow {
  margin-right: 0.5rem;
}
.booking-container .search-availability .form-body form ul.form_container .button-group .button {
  margin-bottom: 0;
}
.booking-container .search-availability .form-foot {
  text-align: center;
  padding: 1rem;
}
.booking-container .search-availability .form-foot p {
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 0;
}
.booking-container .search-availability.landscape .form-head {
  display: none;
}
.booking-container .search-availability.landscape .form-body {
  border: 0;
}
.booking-container .search-availability.landscape .form-body form {
  padding: 0;
  position: relative;
  background: hsl(44, 15%, 100%);
}
.booking-container .search-availability.landscape .form-body form ul.form_container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-tabs {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-tabs .tab-button.is-active {
  border: 1px solid rgba(133, 116, 76, 0.1);
  border-bottom: none;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .best-rate {
  align-items: center;
  display: flex;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .best-rate span {
  font-size: 75%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.booking-container .search-availability.landscape .form-body form ul.form_container li.form-field {
  margin: 0;
  padding: 0 0.5rem;
}
@media screen and (max-width: 63.9375em) {
  .booking-container .search-availability.landscape .form-body form ul.form_container li.form-field {
    width: 100%;
  }
}
@media print, screen and (min-width: 900px) {
  .booking-container .search-availability.landscape .form-body form ul.form_container li.form-field {
    height: 60px;
    padding: 0.5rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .booking-container .search-availability.landscape .form-body form ul.form_container li.form-field {
    padding: 0.5rem 1rem;
  }
}
.booking-container .search-availability.landscape .form-body form ul.form_container input#entrada,
.booking-container .search-availability.landscape .form-body form ul.form_container input#salida {
  max-width: 70px;
}
@media print, screen and (min-width: 40em) {
  .booking-container .search-availability.landscape .form-body form ul.form_container input#entrada,
  .booking-container .search-availability.landscape .form-body form ul.form_container input#salida {
    max-width: 80px;
  }
}
@media print, screen and (min-width: 64em) {
  .booking-container .search-availability.landscape .form-body form ul.form_container input#entrada,
  .booking-container .search-availability.landscape .form-body form ul.form_container input#salida {
    max-width: 125px;
  }
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-pax,
.booking-container .search-availability.landscape .form-body form ul.form_container .field-rooms,
.booking-container .search-availability.landscape .form-body form ul.form_container .field-airport,
.booking-container .search-availability.landscape .form-body form ul.form_container .field-date,
.booking-container .search-availability.landscape .form-body form ul.form_container .field-resort,
.booking-container .search-availability.landscape .form-body form ul.form_container .field-buttons {
  width: auto;
  display: inline-block;
  background: hsl(44, 15%, 100%);
  border-top: 0;
  border-bottom: 0;
  margin: 0;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-airport {
  min-width: 280px;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-airport span {
  padding: 0;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-pax {
  min-width: 180px;
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-pax select#id_adultos {
  width: 80%;
}
.booking-container .search-availability.landscape .form-body form .border_right {
  border-right: 1px solid hsl(42, 8%, 56%);
}
.booking-container .search-availability.landscape .form-foot {
  text-align: right;
  display: none;
}
.booking-container .search-availability.landscape .form-title,
.booking-container .search-availability.landscape .form-description {
  display: none;
}

.ui-widget.ui-widget-content.ui-autocomplete {
  border: 0;
  box-shadow: 0 2px 2px rgba(17, 16, 14, 0.1);
  cursor: pointer;
  font-size: 0.875rem;
  list-style: none;
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 280px !important;
  z-index: 100;
}
.ui-widget.ui-widget-content.ui-autocomplete .ui-menu-item-wrapper {
  padding: 0.5rem;
}
.ui-widget.ui-widget-content.ui-autocomplete .ui-state-active {
  background: #f0f5f9;
  border: 0;
  color: rgba(17, 16, 14, 0.8);
  margin: 0;
}

.ui-widget.ui-widget-content {
  z-index: 2000 !important;
}

.reveal#booking-modal {
  max-width: 430px;
  padding: 0;
}
@media print, screen and (min-width: 64em) {
  .reveal#booking-modal {
    max-width: 375px;
    top: 90px !important;
  }
}
.reveal#booking-modal .grid-x {
  display: block;
}
.reveal#booking-modal[aria-hidden=false] {
  background: hsl(44, 15%, 94%);
}
.reveal#booking-modal .close-button {
  z-index: 2;
  color: hsl(42, 27%, 41%);
}
.reveal#booking-modal .large-auto.cell, .reveal#booking-modal .large-2.cell, .reveal#booking-modal .large-3.cell {
  width: 100% !important;
  flex-basis: auto !important;
}
.reveal#booking-modal .cell {
  padding: 0 !important;
}
.reveal#booking-modal label {
  line-height: 2.5;
}

#menu-booking-container {
  position: relative;
  animation-duration: 0.5s;
}
#menu-booking-container .close-button {
  display: none;
}
#menu-booking-container h4 {
  font-size: 0.8rem;
  padding: 4px;
  line-height: 0;
  margin-top: 0;
  text-align: center;
  color: hsl(42, 8%, 35%);
}

#booking .close-button {
  display: none;
}

.loading {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0.55rem solid rgba(13, 57, 145, 0.19);
  border-top-color: #3adb76;
  animation: spin 1s infinite linear;
  text-align: center;
  margin: 0 auto;
}

.lbl_season {
  color: hsl(42, 27%, 41%);
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
  background: rgb(247, 245, 245);
  padding: 0.5rem;
  font-weight: 600;
}

@media screen and (max-width: 63.9375em) {
  #modalAirport {
    width: 90%;
    height: 70%;
    height: 70vh;
    min-height: 70vh;
    margin-top: 5%;
    margin-left: auto;
  }
  #modalAirport .button-group {
    margin-top: 1rem;
    position: absolute;
    bottom: 0;
  }
}

#home div#booking {
  margin: 0rem auto;
}

.btn-disable {
  display: none;
}

div#controls {
  padding: 1% 2%;
}
div#controls label {
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 6px 0 0;
  display: block;
}
div#controls button {
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  display: inline-block;
  padding: 6px 9px;
  background: none;
  margin-bottom: 6px;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  color: hsl(45, 33%, 26%);
  cursor: pointer;
}
div#controls button:hover {
  color: #7a6b3e;
}
div#controls button:focus {
  outline: 0 none;
}
div#controls button.active {
  border-color: hsl(45, 33%, 26%);
}
@media all and (min-width: 56em) {
  div#controls {
    text-align: center;
  }
  div#controls label {
    display: inline-block;
  }
  div#controls label:after {
    content: ":";
  }
  div#controls button {
    margin-bottom: 0;
  }
  div#controls button + label {
    margin-left: 6px;
  }
}

ul.box {
  padding: 2% 2% 0;
  margin: 0;
  text-align: justify;
  -webkit-backface-visibility: hidden;
}
ul.box:after {
  content: "";
  display: inline-block;
  width: 100%;
}
ul.box.no-filter .mix {
  display: inline-block;
}
ul.box .mix,
ul.box .gap {
  display: inline-block;
  width: 49%;
}
ul.box .mix {
  text-align: left;
  background: white;
  margin-bottom: 2%;
  vertical-align: top;
  display: none;
  background: #FFF;
  border-radius: 0.1875rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
}
ul.box .mix.no-filter {
  display: inline-block;
}
ul.box#album .mix, ul.box.album .mix {
  background: none;
  box-shadow: none;
}
@media all and (min-width: 37em) {
  ul.box .mix, ul.box .gap {
    width: 32%;
  }
}
@media all and (min-width: 56em) {
  ul.box .mix, ul.box .gap {
    width: 23.5%;
  }
}

.breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  background: hsl(44, 15%, 100%);
}
.breadcrumbs ul {
  font-family: helvetica, arial, sans-serif;
  margin-bottom: 0;
}
.breadcrumbs li {
  list-style: none;
  display: inline-block;
  font-size: 0.75em;
  line-height: 36px;
  text-transform: capitalize;
  margin: 0;
  color: hsl(42, 8%, 56%);
}
.breadcrumbs a {
  display: block;
  line-height: inherit;
}
.breadcrumbs i {
  top: 5px;
}

.breadcrumbs-modular {
  position: relative;
  text-transform: capitalize;
}
.breadcrumbs-modular ul {
  position: relative;
  margin-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04rem;
}
.breadcrumbs-modular ul li {
  color: hsl(39, 10%, 6%);
  display: flex;
  align-items: center;
}
.breadcrumbs-modular ul li::after {
  content: "";
  margin: 0 0.425rem;
  width: 14px;
  height: 14px;
  background: url(/icons.svg#arrow-right) no-repeat center;
}
.breadcrumbs-modular ul li:last-child::after {
  content: unset;
}
.breadcrumbs-modular ul li a {
  --bs-link-hover-color: hsl(42, 27%, 41%);
  --bs-link-color: hsl(39, 10%, 6%);
}

/* CSS SUCCESS */
.input-append .active,
.input-prepend .active {
  background-color: #dfd2b1 !important;
  border: 1px solid #fff !important;
}

.put.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #ab9766 !important;
}

.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border: 1px solid #fff !important;
}

.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border: 1px solid #fff !important;
}

/* ERROR */
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #9F4543 !important;
}

.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border: 0.21em solid #9F4543 !important;
}

.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border: 0.21em solid #9F4543 !important;
}

.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #9F4543 !important;
  background-color: #9F4543 !important;
  border: 0.21em solid #9F4543 !important;
}

.error input[type=text] {
  border: 1px solid #ca9b97 !important;
  box-shadow: 2px 1px 6px #F44336 !important;
}

.cookiesbar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 4.5rem;
  color: hsl(42, 8%, 35%);
  text-align: center;
  width: 100%;
  z-index: 11;
}
.cookiesbar a {
  color: rgba(17, 16, 14, 0.8);
}
.cookiesbar p {
  border-radius: 0.375rem;
  margin: 0;
  padding: 0.5rem 0.785rem;
  width: auto;
  background-color: rgba(242, 241, 237, 0.92);
  display: inline-block;
}
@media screen and (min-width: 75em) {
  .cookiesbar {
    bottom: 7.5rem;
  }
}

/*! jQuery UI - v1.12.1 - 2016-11-14
* http://jqueryui.com
* Includes: core.css, datepicker.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=&bgImgOpacityHighlight=&bgImgOpacityActive=&bgImgOpacityHover=&bgImgOpacityDefault=&bgImgOpacityContent=&bgImgOpacityHeader=&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23aaaaaa&iconColorError=%23cc0000&fcError=%235f3f3f&borderColorError=%23f1a899&bgTextureError=flat&bgColorError=%23fddfdf&iconColorHighlight=%23777620&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgTextureHighlight=flat&bgColorHighlight=%23fffa90&iconColorActive=%23ffffff&fcActive=%23ffffff&borderColorActive=%23ab9766&bgTextureActive=flat&bgColorActive=%23ab9766&iconColorHover=%23555555&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgTextureHover=flat&bgColorHover=%23ededed&iconColorDefault=%23777777&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgTextureDefault=flat&bgColorDefault=%23f6f6f6&iconColorContent=%23444444&fcContent=%23333333&borderColorContent=%23dddddd&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23ffffff&fcHeader=%23ffffff&borderColorHeader=%23ab9766&bgTextureHeader=flat&bgColorHeader=%23ab9766&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

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

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
  z-index: 200002 !important;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #ab9766;
  background: #ab9766;
  color: #ffffff;
  font-weight: bold;
}

.ui-widget-header a {
  color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #ab9766;
  background: #ab9766;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #ab9766;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  box-shadow: 0px 0px 5px #666666;
}

.frm_access .input-group, .frm .input-group {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}
.frm_access .input-group input, .frm_access .input-group select, .frm .input-group input, .frm .input-group select {
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid hsl(42, 27%, 41%);
  box-shadow: none;
  background-color: transparent;
  /* For -webkit-*/
  /* For -firefox- */
}
.frm_access .input-group input:not(:focus)::-moz-placeholder, .frm_access .input-group select:not(:focus)::-moz-placeholder, .frm .input-group input:not(:focus)::-moz-placeholder, .frm .input-group select:not(:focus)::-moz-placeholder {
  -moz-transition: color 300ms ease;
  transition: color 300ms ease;
}
.frm_access .input-group input:not(:focus)::placeholder, .frm_access .input-group select:not(:focus)::placeholder, .frm .input-group input:not(:focus)::placeholder, .frm .input-group select:not(:focus)::placeholder {
  transition: color 300ms ease;
}
.frm_access .input-group input:not(:focus)::-moz-placeholder, .frm_access .input-group select:not(:focus)::-moz-placeholder, .frm .input-group input:not(:focus)::-moz-placeholder, .frm .input-group select:not(:focus)::-moz-placeholder {
  color: transparent;
}
.frm_access .input-group input:not(:focus)::placeholder, .frm_access .input-group select:not(:focus)::placeholder, .frm .input-group input:not(:focus)::placeholder, .frm .input-group select:not(:focus)::placeholder {
  color: transparent;
}
.frm_access .input-group label, .frm .input-group label {
  position: absolute;
  top: 3px;
  left: 2.25rem;
  color: hsl(42, 27%, 41%);
  transform-origin: 0 -150%;
  transition: transform 300ms ease;
  pointer-events: none;
}
.frm_access .input-group label b, .frm .input-group label b {
  font-weight: 300;
  color: rgba(17, 16, 14, 0.54);
}
.frm_access .input-group label i, .frm .input-group label i {
  font-style: normal;
  font-size: 80%;
  color: rgba(17, 16, 14, 0.54);
}
.frm_access .input-group.focused .input-group-label label,
.frm_access .input-group.focused .input-group-label label, .frm_access .input-group.filled .input-group-label label,
.frm_access .input-group.filled .input-group-label label, .frm .input-group.focused .input-group-label label,
.frm .input-group.focused .input-group-label label, .frm .input-group.filled .input-group-label label,
.frm .input-group.filled .input-group-label label {
  transform: scale(0.7);
  top: 0;
  left: 0.25rem;
}
.frm_access .input-group-label, .frm .input-group-label {
  text-align: left;
  width: 24px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid hsl(42, 27%, 41%);
}
.frm_access .input-group-field, .frm .input-group-field {
  border-color: hsl(42, 27%, 41%);
}
.frm_access .help-text, .frm .help-text {
  display: none;
  opacity: 0;
}
.frm_access .material-icons, .frm .material-icons {
  color: hsl(42, 27%, 41%);
  width: 1rem;
}
.frm_access .accept-terms, .frm .accept-terms {
  display: table;
  width: 100%;
  margin-bottom: 2rem;
}
.frm_access .accept-terms > *, .frm .accept-terms > * {
  display: table-cell;
}
.frm_access .accept-terms label, .frm .accept-terms label {
  padding: 0 6px;
  line-height: 1.2;
}
.frm_access select, .frm_access textarea, .frm select, .frm textarea {
  border: 1px solid hsl(42, 8%, 35%);
  color: hsl(42, 8%, 35%);
}

.login-opt {
  padding-left: 0;
}

.social-btn {
  text-transform: none !important;
}
.social-btn i {
  position: relative;
  top: 2px;
}

.facebook-btn {
  border-color: #3B5998 !important;
  color: #3B5998 !important;
}
.facebook-btn:hover {
  color: #1e2e4f !important;
  border-color: #1e2e4f !important;
}
.facebook-btn:focus {
  color: #1e2e4f !important;
  border-color: #1e2e4f !important;
}

.google-btn {
  border-color: #DB4A39 !important;
  color: #DB4A39 !important;
}
.google-btn:hover {
  color: #93271b !important;
  border-color: #93271b !important;
}
.google-btn:focus {
  color: #93271b !important;
  border-color: #93271b !important;
}

.block-frm .change {
  margin-right: 1rem;
}
.block-frm select {
  background: transparent;
  border: none;
  border-bottom: 1px solid;
}
.block-frm select:focus {
  box-shadow: none;
}

.members-sessions .reset {
  background: #faf9f7;
  border-top: 1px solid hsl(44, 15%, 94%);
}
.members-sessions .details {
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.members-sessions .intro .widgetLogin {
  background: hsl(44, 15%, 100%);
  padding: 1rem;
  border: 1px solid hsl(42, 8%, 56%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}
.members-sessions .intro .widgetLogin h4 {
  margin: 1.5rem 0;
}
.members-sessions #benefits .media-object-section .thumbnail {
  padding: 0.5rem;
}
.members-sessions #benefits .media-object-section:first-child {
  padding-right: 1rem;
}
.members-sessions #benefits .media-object-section {
  display: table-cell;
  vertical-align: top;
}
.members-sessions #container-tables {
  margin: 3rem 1rem;
}
@media screen and (max-width: 74.9375em) {
  .members-sessions .container_benefits {
    background: hsl(42, 27%, 41%);
    color: hsl(44, 15%, 100%);
  }
}

.user {
  font-size: 10rem !important;
  color: #e8e8e8;
}

@media screen and (max-width: 960px) {
  .account-mobile {
    background: rgba(255, 255, 255, 0.85);
    text-align: right;
    padding: 0.87rem 1.2rem;
    position: absolute;
    width: 100%;
  }
  .account-mobile .content {
    width: 90%;
  }
  .account-mobile a {
    margin-left: 1rem;
  }
}
.loading {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0.55rem solid rgba(13, 57, 145, 0.19);
  border-top-color: hsl(42, 27%, 41%);
  animation: spin 1s infinite linear;
  text-align: center;
  margin: 0 auto;
}

/* Base colors */
.mbsc-cloak {
  visibility: hidden !important;
}

/* Empty view */
.mbsc-empty {
  text-align: center;
  margin: 3em;
  color: inherit;
}

.mbsc-empty h3 {
  margin: 0.666666em 0;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  font-weight: normal;
  font-family: inherit;
}

.mbsc-empty p {
  margin: 1em 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.5;
}

.mbsc-anim-trans .mbsc-fr-scroll {
  overflow: hidden;
}

.mbsc-anim-trans-flip .mbsc-fr-persp,
.mbsc-anim-trans-swing .mbsc-fr-persp {
  perspective: 1000px;
}

.mbsc-anim-trans .mbsc-fr-popup,
.mbsc-anim-trans .mbsc-fr-overlay {
  animation-fill-mode: forwards;
}

.mbsc-anim-in .mbsc-fr-popup,
.mbsc-anim-in .mbsc-fr-overlay {
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: 225ms;
  animation-timing-function: ease-out;
  animation-duration: 225ms;
}

.mbsc-anim-out .mbsc-fr-popup,
.mbsc-anim-out .mbsc-fr-overlay {
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-duration: 195ms;
  animation-timing-function: ease-in;
  animation-duration: 195ms;
}

.mbsc-anim-in .mbsc-fr-overlay {
  animation-name: mbsc-anim-f-in;
}

.mbsc-anim-out .mbsc-fr-overlay {
  animation-name: mbsc-anim-f-out;
}

.mbsc-anim-flip,
.mbsc-anim-swing,
.mbsc-anim-slidehorizontal,
.mbsc-anim-slidevertical,
.mbsc-anim-slidedown,
.mbsc-anim-slideup,
.mbsc-anim-fade {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(0);
  backface-visibility: hidden;
  transform: translateX(0);
}

.mbsc-anim-swing,
.mbsc-anim-slidehorizontal,
.mbsc-anim-slidevertical,
.mbsc-anim-slidedown,
.mbsc-anim-slideup,
.mbsc-anim-fade {
  transform-origin: 0 0;
}

.mbsc-anim-flip,
.mbsc-anim-pop {
  transform-origin: 50% 50%;
}

.mbsc-anim-in .mbsc-anim-pop {
  opacity: 1;
  -webkit-animation-name: mbsc-anim-p-in;
  -webkit-animation-duration: 100ms;
  -webkit-transform: scale(1);
  animation-name: mbsc-anim-p-in;
  animation-duration: 100ms;
  transform: scale(1);
}

.mbsc-anim-out .mbsc-anim-pop {
  opacity: 0;
  -webkit-animation-name: mbsc-anim-p-out;
  -webkit-animation-duration: 150ms;
  animation-name: mbsc-anim-p-out;
  animation-duration: 150ms;
}

.mbsc-anim-trans-pop .mbsc-fr-overlay {
  animation-duration: 150ms;
}

.mbsc-anim-in .mbsc-anim-flip {
  opacity: 1;
  -webkit-animation-name: mbsc-anim-fl-in;
  -webkit-transform: scale(1);
  animation-name: mbsc-anim-fl-in;
  transform: scale(1);
}

.mbsc-anim-out .mbsc-anim-flip {
  opacity: 0;
  animation-name: mbsc-anim-fl-out;
}

.mbsc-anim-in .mbsc-anim-swing {
  opacity: 1;
  -webkit-animation-name: mbsc-anim-sw-in;
  transform: scale(1);
  animation-name: mbsc-anim-sw-in;
}

.mbsc-anim-out .mbsc-anim-swing {
  opacity: 0;
  animation-name: mbsc-anim-sw-out;
}

.mbsc-anim-in .mbsc-anim-slidehorizontal {
  opacity: 1;
  -webkit-animation-name: mbsc-anim-sh-in;
  transform: scale(1);
  animation-name: mbsc-anim-sh-in;
}

.mbsc-anim-out .mbsc-anim-slidehorizontal {
  opacity: 0;
  animation-name: mbsc-anim-sh-out;
}

.mbsc-anim-in .mbsc-anim-slidevertical {
  opacity: 1;
  -webkit-animation-name: mbsc-anim-sv-in;
  -webkit-transform: scale(1);
  animation-name: mbsc-anim-sv-in;
  transform: scale(1);
}

.mbsc-anim-out .mbsc-anim-slidevertical {
  opacity: 0;
  animation-name: mbsc-anim-sv-out;
}

.mbsc-anim-in .mbsc-anim-slidedown {
  -webkit-animation-name: mbsc-anim-sd-in;
  -webkit-transform: scale(1);
  animation-name: mbsc-anim-sd-in;
  transform: scale(1);
}

.mbsc-anim-out .mbsc-anim-slidedown {
  -webkit-animation-name: mbsc-anim-sd-out;
  -webkit-transform: translateY(-100%);
  animation-name: mbsc-anim-sd-out;
}

.mbsc-anim-in .mbsc-anim-slideup {
  -webkit-animation-name: mbsc-anim-su-in;
  transform: scale(1);
  animation-name: mbsc-anim-su-in;
}

.mbsc-anim-out .mbsc-anim-slideup {
  -webkit-animation-name: mbsc-anim-su-out;
  -webkit-transform: translateY(100%);
  animation-name: mbsc-anim-su-out;
}

.mbsc-anim-in .mbsc-anim-fade {
  opacity: 1;
  animation-name: mbsc-anim-f-in;
}

.mbsc-anim-out .mbsc-anim-fade {
  opacity: 0;
  animation-name: mbsc-anim-f-out;
}

.mbsc-fr-pointer.mbsc-anim-in .mbsc-anim-slidedown {
  animation-name: mbsc-anim-sd-in, mbsc-anim-f-in;
}
.mbsc-fr-pointer.mbsc-anim-out .mbsc-anim-slidedown {
  animation-name: mbsc-anim-sd-out, mbsc-anim-f-out;
}
.mbsc-fr-pointer.mbsc-anim-in .mbsc-anim-slideup {
  animation-name: mbsc-anim-su-in, mbsc-anim-f-in;
}
.mbsc-fr-pointer.mbsc-anim-out .mbsc-anim-slideup {
  animation-name: mbsc-anim-su-out, mbsc-anim-f-out;
}

/* Fade in */
@keyframes mbsc-anim-f-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fade out */
@keyframes mbsc-anim-f-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Pop in */
@keyframes mbsc-anim-p-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Pop out */
@keyframes mbsc-anim-p-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
/* Flip in */
@keyframes mbsc-anim-fl-in {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}
/* Flip out */
@keyframes mbsc-anim-fl-out {
  from {
    opacity: 1;
    transform: rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
/* Swing in */
@keyframes mbsc-anim-sw-in {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
/* Swing out */
@keyframes mbsc-anim-sw-out {
  from {
    opacity: 1;
    transform: rotateY(0deg);
  }
  to {
    opacity: 0;
    transform: rotateY(-90deg);
  }
}
/* Slide horizontal in */
@keyframes mbsc-anim-sh-in {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Slide horizontal out */
@keyframes mbsc-anim-sh-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
/* Slide vertical in */
@keyframes mbsc-anim-sv-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Slide vertical out */
@keyframes mbsc-anim-sv-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}
/* Slide Down In */
@keyframes mbsc-anim-sd-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Slide down out */
@keyframes mbsc-anim-sd-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
/* Slide Up In */
@keyframes mbsc-anim-su-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Slide up out */
@keyframes mbsc-anim-su-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@font-face {
  font-family: "icons_mobiscroll";
  src: url("../fonts/icons_mobiscroll.woff?fefkmo") format("woff"), url("../fonts/icons_mobiscroll.woff") format("woff"), url("../fonts/icons_mobiscroll.ttf?fefkmo") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.mbsc-ic:before {
  font-family: "icons_mobiscroll";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Icons */
.mbsc-ic-aid::before {
  content: "\ea01";
}

.mbsc-ic-airplane::before {
  content: "\ea02";
}

.mbsc-ic-alarm2::before {
  content: "\ea03";
}

.mbsc-ic-arrow-down5::before {
  content: "\ea04";
}

.mbsc-ic-arrow-left5::before {
  content: "\ea05";
}

.mbsc-ic-arrow-left6::before {
  content: "\ea06";
}

.mbsc-ic-arrow-right5::before {
  content: "\ea07";
}

.mbsc-ic-arrow-right6::before {
  content: "\ea08";
}

.mbsc-ic-arrow-up5::before {
  content: "\ea09";
}

.mbsc-ic-attachment::before {
  content: "\ea0a";
}

.mbsc-ic-bars::before {
  content: "\ea0b";
}

.mbsc-ic-book::before {
  content: "\ea0c";
}

.mbsc-ic-bubble::before {
  content: "\ea0d";
}

.mbsc-ic-bubbles::before {
  content: "\ea0e";
}

.mbsc-ic-bullhorn::before {
  content: "\ea0f";
}

.mbsc-ic-calendar::before {
  content: "\ea10";
}

.mbsc-ic-camera::before {
  content: "\ea11";
}

.mbsc-ic-cart::before {
  content: "\ea12";
}

.mbsc-ic-checkmark::before {
  content: "\ea13";
}

.mbsc-ic-clock::before {
  content: "\ea14";
}

.mbsc-ic-close::before {
  content: "\ea15";
}

.mbsc-ic-cloud-download::before {
  content: "\ea16";
}

.mbsc-ic-cloud-upload::before {
  content: "\ea17";
}

.mbsc-ic-cogs::before {
  content: "\ea18";
}

.mbsc-ic-connection::before {
  content: "\ea19";
}

.mbsc-ic-copy2::before {
  content: "\ea1a";
}

.mbsc-ic-copy3::before {
  content: "\ea1c";
}

.mbsc-ic-credit::before {
  content: "\ea1b";
}

.mbsc-ic-disk::before {
  content: "\ea1d";
}

.mbsc-ic-download::before {
  content: "\ea1e";
}

.mbsc-ic-drawer::before {
  content: "\ea1f";
}

.mbsc-ic-droplet::before {
  content: "\ea20";
}

.mbsc-ic-earth::before {
  content: "\ea21";
}

.mbsc-ic-eye-blocked::before {
  content: "\ea22";
}

.mbsc-ic-eye::before {
  content: "\ea23";
}

.mbsc-ic-fa-globe::before {
  content: "\ea25";
}

.mbsc-ic-fa-leaf::before {
  content: "\ea24";
}

.mbsc-ic-fa-mail-reply::before {
  content: "\ea26";
}

.mbsc-ic-fa-retweet::before {
  content: "\ea27";
}

.mbsc-ic-fa-rotate-left::before {
  content: "\ea28";
}

.mbsc-ic-file4::before {
  content: "\ea29";
}

.mbsc-ic-film::before {
  content: "\ea2a";
}

.mbsc-ic-flag::before {
  content: "\ea2b";
}

.mbsc-ic-folder::before {
  content: "\ea2c";
}

.mbsc-ic-forward::before {
  content: "\ea2d";
}

.mbsc-ic-foundation-mail::before {
  content: "\ea2e";
}

.mbsc-ic-foundation-minus-circle::before {
  content: "\ea2f";
}

.mbsc-ic-globe::before {
  content: "\ea30";
}

.mbsc-ic-heart::before {
  content: "\ea31";
}

.mbsc-ic-history::before {
  content: "\ea32";
}

.mbsc-ic-home::before {
  content: "\ea33";
}

.mbsc-ic-image2::before {
  content: "\ea34";
}

.mbsc-ic-ion-android-system-windows::before {
  content: "\ea35";
}

.mbsc-ic-ion-bluetooth::before {
  content: "\ea36";
}

.mbsc-ic-ion-navigate::before {
  content: "\ea37";
}

.mbsc-ic-key2::before {
  content: "\ea38";
}

.mbsc-ic-library::before {
  content: "\ea39";
}

.mbsc-ic-line-settings::before {
  content: "\ea3a";
}

.mbsc-ic-link::before {
  content: "\ea3b";
}

.mbsc-ic-location::before {
  content: "\ea3c";
}

.mbsc-ic-lock2::before {
  content: "\ea3d";
}

.mbsc-ic-loop2::before {
  content: "\ea3e";
}

.mbsc-ic-map::before {
  content: "\ea3f";
}

.mbsc-ic-material-arrow-back::before {
  content: "\ea40";
}

.mbsc-ic-material-brightness-medium::before {
  content: "\ea41";
}

.mbsc-ic-material-check::before {
  content: "\ea42";
}

.mbsc-ic-material-crop::before {
  content: "\ea43";
}

.mbsc-ic-material-equalizer::before {
  content: "\ea44";
}

.mbsc-ic-material-filter::before {
  content: "\ea45";
}

.mbsc-ic-material-iso::before {
  content: "\ea46";
}

.mbsc-ic-material-palette::before {
  content: "\ea47";
}

.mbsc-ic-material-pause::before {
  content: "\ea48";
}

.mbsc-ic-material-people::before {
  content: "\ea49";
}

.mbsc-ic-material-photo-size-select-large::before {
  content: "\ea4a";
}

.mbsc-ic-material-play-arrow::before {
  content: "\ea4b";
}

.mbsc-ic-material-repeat::before {
  content: "\ea4c";
}

.mbsc-ic-material-rotate-right::before {
  content: "\ea4d";
}

.mbsc-ic-material-shuffle::before {
  content: "\ea4e";
}

.mbsc-ic-material-skip-next::before {
  content: "\ea4f";
}

.mbsc-ic-material-skip-previous::before {
  content: "\ea50";
}

.mbsc-ic-material-stop::before {
  content: "\ea51";
}

.mbsc-ic-material-texture::before {
  content: "\ea52";
}

.mbsc-ic-material-wb-auto::before {
  content: "\ea53";
}

.mbsc-ic-meteo-cloud2::before {
  content: "\ea54";
}

.mbsc-ic-meteo-cloud3::before {
  content: "\ea55";
}

.mbsc-ic-meteo-cloudy::before {
  content: "\ea56";
}

.mbsc-ic-meteo-sun::before {
  content: "\ea57";
}

.mbsc-ic-minus::before {
  content: "\ea58";
}

.mbsc-ic-mobile::before {
  content: "\ea59";
}

.mbsc-ic-music::before {
  content: "\ea5a";
}

.mbsc-ic-neutral::before {
  content: "\ea5b";
}

.mbsc-ic-newspaper::before {
  content: "\ea5c";
}

.mbsc-ic-office::before {
  content: "\ea5d";
}

.mbsc-ic-pencil::before {
  content: "\ea5e";
}

.mbsc-ic-phone::before {
  content: "\ea60";
}

.mbsc-ic-play::before {
  content: "\ea5f";
}

.mbsc-ic-plus::before {
  content: "\ea61";
}

.mbsc-ic-redo2::before {
  content: "\ea62";
}

.mbsc-ic-remove::before {
  content: "\ea63";
}

.mbsc-ic-reply::before {
  content: "\ea64";
}

.mbsc-ic-sad::before {
  content: "\ea65";
}

.mbsc-ic-sad2::before {
  content: "\ea66";
}

.mbsc-ic-share::before {
  content: "\ea67";
}

.mbsc-ic-smiley::before {
  content: "\ea68";
}

.mbsc-ic-smiley2::before {
  content: "\ea69";
}

.mbsc-ic-stack::before {
  content: "\ea6a";
}

.mbsc-ic-star::before {
  content: "\ea6b";
}

.mbsc-ic-star3::before {
  content: "\ea6c";
}

.mbsc-ic-stopwatch::before {
  content: "\ea6d";
}

.mbsc-ic-support::before {
  content: "\ea6e";
}

.mbsc-ic-tag::before {
  content: "\ea6f";
}

.mbsc-ic-thumbs-up::before {
  content: "\ea70";
}

.mbsc-ic-thumbs-up2::before {
  content: "\ea71";
}

.mbsc-ic-undo2::before {
  content: "\ea72";
}

.mbsc-ic-unlocked::before {
  content: "\ea73";
}

.mbsc-ic-upload::before {
  content: "\ea74";
}

.mbsc-ic-user4::before {
  content: "\ea75";
}

.mbsc-ic-volume-high::before {
  content: "\ea76";
}

.mbsc-ic-volume-medium::before {
  content: "\ea77";
}

.mbsc-ic-volume-mute2::before {
  content: "\ea78";
}

.mbsc-fr-w,
.mbsc-fr-overlay {
  -webkit-transform: translateZ(0);
}

.mbsc-fr {
  pointer-events: none;
  z-index: 99998;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
}

.mbsc-fr-lock-ctx {
  position: relative;
}

.mbsc-fr-lock.mbsc-fr-lock-ios {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
}

.mbsc-fr-pos {
  visibility: hidden;
}

.mbsc-fr-scroll {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mbsc-fr-popup {
  max-width: 98%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  font-size: 12px;
  text-shadow: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

.mbsc-rtl {
  direction: rtl;
}

/* Box sizing */
.mbsc-fr-popup,
.mbsc-fr-btn-cont,
.mbsc-fr-arr {
  box-sizing: border-box;
}

.mbsc-fr .mbsc-fr-w {
  box-sizing: content-box;
}

.mbsc-fr-w {
  min-width: 256px;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  font-family: arial, verdana, sans-serif;
}

/* Modal overlay */
.mbsc-fr,
.mbsc-fr-persp,
.mbsc-fr-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mbsc-fr-lock .mbsc-fr-persp {
  touch-action: none;
}

.mbsc-fr-lock-ctx > .mbsc-fr,
.mbsc-fr-lock-ctx .mbsc-fr-persp,
.mbsc-fr-lock-ctx .mbsc-fr-overlay {
  position: absolute;
}

.mbsc-fr-persp {
  pointer-events: auto;
  overflow: hidden;
}

.mbsc-fr-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Liquid mode */
.mbsc-fr-liq .mbsc-fr-popup {
  max-width: 100%;
}

/* Top/Bottom mode */
.mbsc-fr-top .mbsc-fr-popup,
.mbsc-fr-bottom .mbsc-fr-popup {
  width: 100%;
  max-width: 100%;
}

.mbsc-fr-top .mbsc-fr-w,
.mbsc-fr-bottom .mbsc-fr-w {
  padding-left: constant(safe-area-inset-left);
  padding-left: env(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-right: env(safe-area-inset-right);
}

.mbsc-fr-bottom .mbsc-fr-w {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.mbsc-fr-top .mbsc-fr-popup {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

/* Inline mode */
.mbsc-fr-inline {
  position: relative;
  pointer-events: auto;
  z-index: 0;
}

.mbsc-fr-inline .mbsc-fr-popup {
  position: static;
  max-width: 100%;
}

/* Bubble mode */
.mbsc-fr-bubble,
.mbsc-fr-bubble .mbsc-fr-persp {
  position: absolute;
}

.mbsc-fr-bubble .mbsc-fr-arr-w {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.mbsc-fr-bubble-top .mbsc-fr-arr-w {
  top: 100%;
}

.mbsc-fr-bubble-bottom .mbsc-fr-arr-w {
  bottom: 100%;
}

.mbsc-fr-bubble .mbsc-fr-arr-i {
  margin: 0 1.75em;
  position: relative;
  direction: ltr;
}

.mbsc-fr-bubble .mbsc-fr-arr {
  display: block;
}

.mbsc-fr-arr {
  display: none;
  position: relative;
  left: 0;
  width: 2em;
  height: 2em;
  transform: rotate(-45deg);
  margin-left: -1em;
}

.mbsc-fr-bubble-bottom .mbsc-fr-arr {
  top: 1.333334em;
}

.mbsc-fr-bubble-top .mbsc-fr-arr {
  top: -1.333334em;
}

.mbsc-fr-hdn {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

/* Header */
.mbsc-fr-hdr {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* Buttons */
.mbsc-fr-btn {
  overflow: hidden;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: top;
}

.mbsc-fr-btn-e {
  cursor: pointer;
}

.mbsc-fr-btn.mbsc-disabled {
  cursor: not-allowed;
}

/* Button container */
.mbsc-fr-btn-cont {
  display: table;
  width: 100%;
  text-align: center;
  white-space: normal;
}

.mbsc-fr-btn-cont .mbsc-disabled {
  opacity: 0.3;
}

/* Button wrapper */
.mbsc-fr-btn-w {
  vertical-align: top;
  display: table-cell;
  position: relative;
  z-index: 5;
}

.mbsc-fr-btn-w .mbsc-fr-btn:before {
  padding: 0.375em;
}

/* Desktop view */
.mbsc-fr-pointer {
  /* Embedded components */
}
.mbsc-fr-pointer.mbsc-fr .mbsc-fr-w .mbsc-fr-inline .mbsc-fr-w {
  box-shadow: none;
  border-radius: 0;
}
.mbsc-fr-pointer .mbsc-ltr .mbsc-fr-w,
.mbsc-fr-pointer .mbsc-ltr .mbsc-sc-whl .mbsc-sel-gr {
  text-align: left;
}
.mbsc-fr-pointer .mbsc-rtl .mbsc-fr-w,
.mbsc-fr-pointer .mbsc-rtl .mbsc-sc-whl .mbsc-sel-gr {
  text-align: right;
}
.mbsc-fr-pointer.mbsc-fr-top .mbsc-fr-w, .mbsc-fr-pointer.mbsc-fr-bottom .mbsc-fr-w {
  pointer-events: auto;
  display: inline-block;
  margin-top: 3em;
  margin-bottom: 3em;
  max-width: 98%;
}
.mbsc-fr-pointer.mbsc-fr-top .mbsc-fr-popup, .mbsc-fr-pointer.mbsc-fr-bottom .mbsc-fr-popup {
  text-align: center;
  pointer-events: none;
}
.mbsc-fr-pointer.mbsc-fr-bubble .mbsc-fr-arr-w {
  display: none;
}
.mbsc-fr-pointer .mbsc-sel-empty {
  text-align: center;
}

.mbsc-mobiscroll {
  /* Display modes */
}
.mbsc-mobiscroll .mbsc-fr-w {
  min-width: 16em;
  font-size: 16px;
}
.mbsc-mobiscroll .mbsc-fr-hdr {
  padding: 0 0.6666em;
  padding-top: 0.6666em;
  font-size: 0.75em;
  text-transform: uppercase;
  min-height: 2em;
  line-height: 2em;
}
.mbsc-mobiscroll .mbsc-fr-btn-cont {
  display: block;
  overflow: hidden;
  text-align: right;
  padding: 0 0.5em 0.5em 0.5em;
}
.mbsc-mobiscroll .mbsc-ltr .mbsc-fr-btn-cont {
  text-align: right;
}
.mbsc-mobiscroll .mbsc-rtl .mbsc-fr-btn-cont {
  text-align: left;
}
.mbsc-mobiscroll .mbsc-fr-btn-w {
  display: inline-block;
}
.mbsc-mobiscroll .mbsc-fr-btn {
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 1em;
  text-transform: uppercase;
}
.mbsc-mobiscroll.mbsc-fr-center .mbsc-fr-w, .mbsc-mobiscroll.mbsc-fr-bubble .mbsc-fr-w {
  border-radius: 0.25em;
}
.mbsc-mobiscroll.mbsc-fr-no-overlay .mbsc-fr-arr {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
}
.mbsc-mobiscroll.mbsc-fr-no-overlay .mbsc-fr-w {
  box-shadow: 0 0.125em 1em rgba(0, 0, 0, 0.3);
}
.mbsc-mobiscroll.mbsc-fr-no-overlay.mbsc-fr-bubble .mbsc-fr-w {
  border-radius: 0.25em;
}

.mbsc-mobiscroll .mbsc-fr-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.mbsc-mobiscroll .mbsc-fr-w {
  background: #f7f7f7;
  color: #454545;
}
.mbsc-mobiscroll .mbsc-fr-hdr,
.mbsc-mobiscroll .mbsc-fr-btn {
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-fr-btn.mbsc-active, .mbsc-mobiscroll.mbsc-no-touch .mbsc-fr-btn-e:not(.mbsc-disabled):hover {
  background: rgba(133, 116, 76, 0.3);
}
.mbsc-mobiscroll .mbsc-fr-arr {
  background: #f7f7f7;
}

.mbsc-sc-whl-o,
.mbsc-sc-btn {
  /* Prevent flickering on animation */
  -webkit-transform: translateZ(0);
}

/* Force content box */
.mbsc-sc .mbsc-sc-whl-c,
.mbsc-sc .mbsc-sc-whl-l,
.mbsc-sc .mbsc-sc-whl {
  box-sizing: content-box;
}

/* Force border box */
.mbsc-sc-whl-gr-c,
.mbsc-sc-itm {
  box-sizing: border-box;
}

.mbsc-sc-whl-gr-c {
  position: relative;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
}

.mbsc-fr-bottom .mbsc-sc-whl-gr-c:first-child:last-child,
.mbsc-fr-top .mbsc-sc-whl-gr-c:first-child:last-child,
.mbsc-fr-inline .mbsc-sc-whl-gr-c:first-child:last-child,
.mbsc-fr-liq .mbsc-sc-whl-gr-c {
  display: block;
}

.mbsc-sc-whl-gr {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.mbsc-sc-whl-w {
  max-width: 100%;
  position: relative;
  touch-action: none;
}

.mbsc-fr-pointer .mbsc-sc-whl-w,
.mbsc-fr-liq .mbsc-sc-whl-w {
  flex: 1 auto;
}

.mbsc-sc-whl-o {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  display: none;
}

.mbsc-sc-whl-l {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
}

.mbsc-sc-whl-w .mbsc-sc-whl-l {
  display: block;
}

.mbsc-sc-whl {
  overflow: hidden;
  /* Forces IE to respect overflow hidden while animating */
  /* Looks like this is not needed, also, it brakes rendering on Samsung S5 Mini */
  /* border-radius: 1px; */
  /* Fixes Firefox rendering issues */
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  margin: -1px 0;
}

.mbsc-sc-whl-c {
  position: relative;
  z-index: 1;
  top: 50%;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.mbsc-sc-whl-sc {
  position: relative;
}

.mbsc-sc-itm {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbsc-sc-itm-inv,
.mbsc-sc-itm-inv-h {
  opacity: 0.3;
}

.mbsc-sc-lbl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  display: none;
}

.mbsc-sc-lbl-v .mbsc-sc-lbl {
  display: block;
}

.mbsc-sc-btn {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  cursor: pointer;
  opacity: 1;
  text-align: center;
  transition: opacity 0.2s linear;
}

.mbsc-sc-btn:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.mbsc-sc-whl-a .mbsc-sc-btn {
  opacity: 0;
}

.mbsc-sc-btn-plus {
  bottom: 0;
}

.mbsc-sc-btn-minus {
  top: 0;
}

/* 3D */
.mbsc-sc-whl-gr-3d {
  perspective: 1200px;
}

.mbsc-sc-whl-gr-3d .mbsc-sc-whl {
  /* For iOS to respect z-index */
  overflow: visible;
}

.mbsc-sc-whl-gr-3d .mbsc-sc-whl-c {
  overflow: hidden;
}

.mbsc-sc-whl-gr-3d .mbsc-sc-whl-w,
.mbsc-sc-whl-gr-3d .mbsc-sc-whl {
  /* For Edge and Firefox */
  transform-style: preserve-3d;
}

.mbsc-sc-whl-3d {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform-style: preserve-3d;
}

.mbsc-sc-itm-3d {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  backface-visibility: hidden;
}

.mbsc-sc-itm-del {
  display: none;
}

/* Multiline */
.mbsc-sc-itm-ml {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}

/* Multiple */
.mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  text-align: center;
}

/* Desktop view */
.mbsc-fr-pointer .mbsc-fr-w .mbsc-sc-whl-gr-c,
.mbsc-fr-pointer .mbsc-fr-w .mbsc-sc-whl-gr {
  padding: 0;
}
.mbsc-fr-pointer .mbsc-sc-whl-gr-c:first-child:last-child {
  display: block;
}

.mbsc-sc-bar-c {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.05);
  transform: translateZ(0);
  transition: opacity 0.2s;
}

.mbsc-sc-bar {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
}

.mbsc-sc-bar:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

.mbsc-sc-whl-w:hover .mbsc-sc-bar-c,
.mbsc-sc-whl-anim .mbsc-sc-bar-c {
  opacity: 1;
}

.mbsc-mobiscroll {
  /* Multiple select */
  /* Desktop view */
}
.mbsc-mobiscroll .mbsc-sc-whl-gr {
  padding: 0.5em 0.25em;
}
.mbsc-mobiscroll .mbsc-sc-whl-w {
  margin: 0 0.25em;
}
.mbsc-mobiscroll .mbsc-sc-lbl-v .mbsc-sc-whl-w {
  margin-top: 1.875em;
}
.mbsc-mobiscroll .mbsc-sc-lbl {
  font-size: 0.75em;
  line-height: 2.5em;
  text-transform: uppercase;
}
.mbsc-mobiscroll .mbsc-sc-cp .mbsc-sc-whl-w {
  padding: 2em 0;
}
.mbsc-mobiscroll .mbsc-sc-btn {
  height: 2em;
  line-height: 2em;
}
.mbsc-mobiscroll .mbsc-sc-btn:before {
  font-size: 1.5em;
}
.mbsc-mobiscroll .mbsc-sc-itm {
  padding: 0 0.25em;
  font-size: 1.375em;
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-sc-itm.mbsc-btn-e:hover,
.mbsc-mobiscroll .mbsc-sc-itm:focus {
  outline: 0;
}
.mbsc-mobiscroll .mbsc-sc-whl-multi .mbsc-sc-itm {
  padding: 0 1.818181em;
}
.mbsc-mobiscroll .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  font-size: 1.818181em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-sc-lbl {
  padding-left: 1.666667em;
  padding-right: 1.666667em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-sc-whl-w {
  margin-left: 0;
  margin-right: 0;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-sc-itm {
  font-size: 1em;
  padding: 0 1.25em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-sc-whl-multi .mbsc-sc-itm {
  padding: 0 2.5em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  font-size: 2em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-ltr .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  left: 0.125em;
}
.mbsc-mobiscroll.mbsc-fr-pointer .mbsc-rtl .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  right: 0.125em;
}

.mbsc-mobiscroll {
  /* Multiple select */
}
.mbsc-mobiscroll .mbsc-sc-lbl {
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-sc-whl-l {
  border-top: 1px solid hsl(42, 27%, 41%);
  border-bottom: 1px solid hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-sc-btn {
  color: hsl(42, 27%, 41%);
  background: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-sc-itm.mbsc-btn-e:hover,
.mbsc-mobiscroll .mbsc-sc-itm:focus {
  background: rgba(69, 69, 69, 0.1);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-sc-btn:hover:before, .mbsc-mobiscroll.mbsc-sc .mbsc-sc-whl .mbsc-sc-itm.mbsc-active,
.mbsc-mobiscroll .mbsc-sc-btn.mbsc-active:before {
  background: rgba(133, 116, 76, 0.3);
}
.mbsc-mobiscroll .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  color: hsl(42, 27%, 41%);
}

/* Box sizing */
.mbsc-cal-slide,
.mbsc-cal-day,
.mbsc-cal-day-i {
  box-sizing: border-box;
}

.mbsc-cal .mbsc-cal-day-date {
  text-align: center;
  box-sizing: content-box;
}

/* Flex layout */
.mbsc-cal-hdr,
.mbsc-cal-btn-w,
.mbsc-cal-days-c,
.mbsc-cal-days,
.mbsc-cal-tabbed .mbsc-fr-c .mbsc-sc-whl-gr-c {
  display: flex;
}

.mbsc-cal-btn-w,
.mbsc-cal-month,
.mbsc-cal-year,
.mbsc-cal-days,
.mbsc-cal-days > div {
  flex: 1 auto;
}

.mbsc-cal-c {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

/* Header */
.mbsc-cal-btn-w {
  width: 50%;
}

.mbsc-cal-month,
.mbsc-cal-year {
  width: 1%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.mbsc-cal-btn.mbsc-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Week days */
.mbsc-cal-days {
  line-height: 1.875em;
  text-align: center;
}

.mbsc-cal-days > div {
  width: 14.285715%;
}

.mbsc-cal-body {
  position: relative;
}

.mbsc-cal-scroll-c {
  overflow: hidden;
  height: 100%;
}

.mbsc-cal-scroll {
  width: 100%;
  height: 100%;
}

.mbsc-cal-slide {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mbsc-cal-slide:first-child {
  position: relative;
}

.mbsc-cal-table {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
  -webkit-transform: translateZ(0);
}

.mbsc-cal-row {
  display: table-row;
}

.mbsc-cal-cell {
  display: table-cell;
  vertical-align: middle;
}
.mbsc-cal-cell:focus {
  outline: 0;
}

.mbsc-cal-picker {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.9375em 0;
  transition: all 0.2s ease-in-out;
}
.mbsc-cal-picker .mbsc-cal-cell {
  width: 33.333333%;
  height: 25%;
  cursor: pointer;
}

.mbsc-cal-h {
  visibility: hidden;
  opacity: 0;
}

.mbsc-cal-day {
  max-width: 14.285715%;
  height: 16.666667%;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.mbsc-cal-day-i {
  position: relative;
  height: 100%;
}

.mbsc-cal-day-markup {
  overflow: hidden;
}

.mbsc-cal-day-diff .mbsc-cal-day-date {
  opacity: 0.5;
}

.mbsc-cal-week-view .mbsc-cal-day-date,
.mbsc-cal-day-diff.mbsc-selected .mbsc-cal-day-date {
  opacity: 1;
}

.mbsc-cal-cell.mbsc-disabled {
  cursor: not-allowed;
}
.mbsc-cal-cell.mbsc-disabled .mbsc-cal-cell-txt {
  opacity: 0.2;
}

/* Hide outer days */
.mbsc-cal-hide-diff .mbsc-cal-day-diff {
  cursor: default;
}
.mbsc-cal-hide-diff .mbsc-cal-day-diff .mbsc-cal-day-i {
  visibility: hidden;
}

/* Week numbers */
.mbsc-ltr .mbsc-cal-weeks .mbsc-cal-days {
  margin-left: 1.625em;
}

.mbsc-rtl .mbsc-cal-weeks .mbsc-cal-days {
  margin-right: 1.625em;
}

.mbsc-cal-week-nr {
  width: 1.625em;
  text-align: center;
}

/* Multiple month */
.mbsc-cal-multi .mbsc-cal-hdr {
  display: block;
}
.mbsc-cal-multi .mbsc-cal-btn-w {
  width: auto;
}
.mbsc-cal-multi .mbsc-cal-days,
.mbsc-cal-multi .mbsc-cal-slide {
  padding: 0 0.5em;
}

/* Liquid mode */
.mbsc-fr-liq .mbsc-cal-c {
  display: block;
}

/* Full screen mode */
.mbsc-calendar.mbsc-fr-liq.mbsc-fr-center .mbsc-fr-overlay {
  display: none;
}
.mbsc-calendar.mbsc-fr-liq.mbsc-fr-center .mbsc-fr-w {
  border-radius: 0;
  padding-left: constant(safe-area-inset-left);
  padding-left: env(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-right: env(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Tabs */
.mbsc-cal-tabs-c {
  display: none;
}

.mbsc-cal-tabs {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mbsc-cal-tab {
  position: relative;
  width: 33.33%;
  display: table-cell;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.mbsc-cal-tabbed {
  /* During positioning */
}
.mbsc-cal-tabbed .mbsc-fr-c {
  position: relative;
}
.mbsc-cal-tabbed .mbsc-w-p {
  transition: opacity 0.2s ease-in-out;
}
.mbsc-cal-tabbed .mbsc-sc-whl-gr-c {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  height: 100%;
  -ms-box-align: center;
  align-items: center;
}
.mbsc-cal-tabbed .mbsc-cal-c,
.mbsc-cal-tabbed .mbsc-cal-tabs-c {
  display: block;
}
.mbsc-cal-tabbed .mbsc-fr-pos .mbsc-sc-whl-gr-c {
  width: auto;
}

/* Marks */
.mbsc-cal-has-marks .mbsc-cal-day {
  padding-bottom: 0.25em;
}

.mbsc-cal-marks {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.375em;
  margin-top: -0.125em;
  overflow: hidden;
  white-space: nowrap;
}

.mbsc-cal-mark {
  display: inline-block;
  vertical-align: top;
  width: 0.25em;
  height: 0.25em;
  margin: 0.0625em;
  border-radius: 0.25em;
}

/* Text & icons */
.mbsc-cal-txt-w {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.mbsc-ltr .mbsc-cal-txt {
  text-align: left;
}

.mbsc-rtl .mbsc-cal-txt {
  text-align: right;
}

.mbsc-cal-txt,
.mbsc-cal-txt-ph,
.mbsc-cal-txt-more {
  position: relative;
  height: 1.6em;
  line-height: 1.6em;
  overflow: hidden;
  padding: 0 0.3em;
  font-size: 0.625em;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0.1em 0.2em 0.1em;
}

.mbsc-no-touch .mbsc-cal-txt:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background-color 0.2s;
}

.mbsc-no-touch .mbsc-cal-txt.mbsc-hover:before {
  background-color: rgba(0, 0, 0, 0.2);
}

.mbsc-no-touch .mbsc-cal-txt-more:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mbsc-cal-txt-more {
  text-align: left;
  transition: background-color 0.2s;
}

.mbsc-cal .mbsc-cal-btn {
  position: relative;
  z-index: 1;
}

.mbsc-mobiscroll {
  /* Week numbers */
  /* Tabs */
}
.mbsc-mobiscroll .mbsc-cal-c {
  padding: 0.5em;
}
.mbsc-mobiscroll .mbsc-cal-btn-w {
  font-size: 1.125em;
  line-height: 2.222223em;
}
.mbsc-mobiscroll .mbsc-cal .mbsc-cal-btn {
  width: 2.666667em;
  height: 2.666667em;
  line-height: 2.666667em;
  padding: 0;
  border-radius: 2em;
  margin: -0.222222em;
}
.mbsc-mobiscroll .mbsc-cal-picker {
  border-top: 1px solid transparent;
}
.mbsc-mobiscroll .mbsc-cal-picker .mbsc-cal-cell-i {
  display: inline-block;
  height: 2em;
  padding: 0 1em;
  line-height: 2em;
  border-radius: 2em;
  white-space: nowrap;
}
.mbsc-mobiscroll .mbsc-cal-days > div {
  font-size: 0.6875em;
}
.mbsc-mobiscroll .mbsc-cal-day-date {
  display: inline-block;
  width: 2.153847em;
  height: 2.153847em;
  margin: 0.307692em 0;
  line-height: 2.153847em;
  font-size: 0.8125em;
  border: 2px solid transparent;
  border-radius: 2em;
}
.mbsc-mobiscroll .mbsc-cal-week-nr {
  width: 2.363637em;
  font-size: 0.6875em;
}
.mbsc-mobiscroll .mbsc-cal-tabs-c {
  line-height: 1.875em;
  padding: 0.5em 0.5em 0 0.5em;
  text-transform: uppercase;
}
.mbsc-mobiscroll .mbsc-cal-tab {
  font-size: 0.7em;
  padding: 0 1.2em;
}

.mbsc-mobiscroll {
  /* Hover, focus */
  /* Selected */
  /* Week numbers */
  /* Marks */
}
.mbsc-mobiscroll .mbsc-cal-picker {
  background: #f7f7f7;
}
.mbsc-mobiscroll .mbsc-cal-days > div {
  border-bottom: 1px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-cal-today {
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-no-touch:not(.mbsc-ev-cal) .mbsc-cal-cell:not(.mbsc-disabled):hover .mbsc-cal-cell-txt, .mbsc-mobiscroll.mbsc-no-touch .mbsc-cal-day:not(.mbsc-disabled) .mbsc-cal-day-date:hover,
.mbsc-mobiscroll .mbsc-cal-cell:focus .mbsc-cal-cell-txt {
  background: rgba(133, 116, 76, 0.3);
}
.mbsc-mobiscroll .mbsc-cal-c .mbsc-cal .mbsc-cal-body .mbsc-cal-row .mbsc-selected .mbsc-cal-cell-txt {
  background: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll .mbsc-cal-day-colored.mbsc-selected .mbsc-cal-day-date {
  border-color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-cal-week-nr {
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-cal-tab {
  border: 1px solid hsl(42, 27%, 41%);
  color: #454545;
}
.mbsc-mobiscroll .mbsc-fr-w .mbsc-cal-tabs-c .mbsc-cal-tabs .mbsc-cal-tab.mbsc-selected {
  background: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll .mbsc-cal-mark {
  background: #454545;
}
.mbsc-mobiscroll .mbsc-cal-txt {
  color: #f7f7f7;
  background: #454545;
  color: #f7f7f7;
  background: #4caf50;
}
.mbsc-mobiscroll .mbsc-cal-icons {
  color: #454545;
}

.mbsc-range-btn,
.mbsc-range-btn-t,
.mbsc-range-btn-c {
  box-sizing: border-box;
}

.mbsc-range-btn-t {
  display: table;
  width: 100%;
}

.mbsc-range-btn-c {
  display: table-cell;
  width: 50%;
}

.mbsc-range-btn {
  text-decoration: none;
  text-align: center;
  display: block;
  cursor: pointer;
}

.mbsc-cal-hide-diff .mbsc-cal-day-diff:after {
  display: none;
}

.mbsc-mobiscroll .mbsc-range-btn-t {
  padding: 0.5em 0.25em 0 0.25em;
}
.mbsc-mobiscroll .mbsc-range-btn {
  margin: 0 0.3333em;
  padding: 0.3333em;
  font-size: 0.75em;
  line-height: 1.666667em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-fr-w {
  padding: 0;
}
.mbsc-mobiscroll.mbsc-range .mbsc-fr-hdr {
  padding-top: 0.6666em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal .mbsc-cal-row .mbsc-cal-day.mbsc-selected .mbsc-cal-day-date {
  background: none;
  border-color: transparent;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-day.mbsc-selected:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.25em;
  left: 0;
  right: 0;
  height: 2em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-sel-start:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-sel-end:after {
  left: 50%;
  margin-left: -1em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-sel-end:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-sel-start:after {
  right: 50%;
  margin-right: -1em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-sel-start:after,
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-day:first-child:after,
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-hide-diff .mbsc-cal-day-first:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-sel-end:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-day:last-child:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-hide-diff .mbsc-cal-day-last:after {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-sel-end:after,
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-day:last-child:after,
.mbsc-mobiscroll.mbsc-range .mbsc-ltr .mbsc-cal-hide-diff .mbsc-cal-day-last:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-sel-start:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-day:first-child:after,
.mbsc-mobiscroll.mbsc-range .mbsc-rtl .mbsc-cal-hide-diff .mbsc-cal-day-first:after {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
}

.mbsc-mobiscroll .mbsc-range-btn {
  border: 1px solid hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-range .mbsc-range-btn-t .mbsc-range-btn.mbsc-selected {
  background: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal .mbsc-cal-row .mbsc-cal-day.mbsc-selected .mbsc-cal-day-date {
  background: none;
  border-color: transparent;
  color: #454545;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal .mbsc-cal-row .mbsc-cal-day.mbsc-cal-day-hl .mbsc-cal-day-date {
  background: hsl(42, 27%, 41%);
  border-color: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-day.mbsc-selected:after {
  background: rgba(133, 116, 76, 0.3);
}

.mbsc-collapsible.mbsc-form-group {
  margin: 0;
}

.mbsc-collapsible-header {
  position: relative;
  padding-right: 3em;
}

.mbsc-collapsible .mbsc-collapsible-icon {
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 1em;
  margin-top: -0.5em;
  line-height: 1em;
  font-size: 1em;
  transition: transform 0.125s ease-out;
}

.mbsc-collapsible .mbsc-collapsible-content {
  overflow: hidden;
  transition: height 0.125s ease;
  box-sizing: content-box;
}

.mbsc-collapsible:not(.mbsc-collapsible-open) .mbsc-collapsible-content {
  height: 0;
  padding-bottom: 0;
}

.mbsc-collapsible-open > .mbsc-collapsible-header .mbsc-collapsible-icon {
  transform: rotateX(180deg);
}

/* Collapsible rtl */
.mbsc-rtl .mbsc-collapsible.mbsc-form-group .mbsc-collapsible-header,
.mbsc-rtl .mbsc-collapsible.mbsc-form-group .mbsc-collapsible-header.mbsc-form-group-title,
.mbsc-rtl .mbsc-collapsible.mbsc-card .mbsc-collapsible-header,
.mbsc-rtl .mbsc-collapsible.mbsc-card .mbsc-collapsible-header.mbsc-form-group-title {
  padding-right: 1em;
  padding-left: 3em;
}
.mbsc-rtl .mbsc-collapsible.mbsc-form-group .mbsc-collapsible-header .mbsc-collapsible-icon,
.mbsc-rtl .mbsc-collapsible.mbsc-form-group .mbsc-collapsible-header.mbsc-form-group-title .mbsc-collapsible-icon,
.mbsc-rtl .mbsc-collapsible.mbsc-card .mbsc-collapsible-header .mbsc-collapsible-icon,
.mbsc-rtl .mbsc-collapsible.mbsc-card .mbsc-collapsible-header.mbsc-form-group-title .mbsc-collapsible-icon {
  right: auto;
  left: 1em;
}

.mbsc-mobiscroll .mbsc-collapsible .mbsc-form-group-title {
  padding: 1em;
}
.mbsc-mobiscroll .mbsc-collapsible .mbsc-collapsible-header {
  padding-right: 3em;
}

[mbsc-page]:not(.mbsc-page) {
  visibility: hidden;
}

.mbsc-page-ctx {
  margin: 0;
  padding: 0;
  height: 100%;
}

.mbsc-page {
  min-height: 100%;
  font-size: 16px;
  font-family: arial, verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  padding-left: constant(safe-area-inset-left);
  padding-left: env(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-right: env(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.mbsc-page,
.mbsc-page * {
  box-sizing: border-box;
}

.mbsc-page:before,
.mbsc-page:after {
  content: "";
  display: table;
}

/* RTL mode */
.mbsc-rtl {
  direction: rtl;
}

/* Typography */
.mbsc-page h1,
.mbsc-page h2,
.mbsc-page h3,
.mbsc-page h4,
.mbsc-page h5,
.mbsc-page h6,
.mbsc-h1,
.mbsc-h2,
.mbsc-h3,
.mbsc-h4,
.mbsc-h5,
.mbsc-h6 {
  margin: 0;
  padding: 0;
  color: inherit;
  font-weight: normal;
  font-family: inherit;
}

.mbsc-page p,
.mbsc-p {
  margin: 1em 0;
  padding: 0;
  line-height: 1.5;
}

.mbsc-page a,
.mbsc-a {
  text-decoration: none;
}

.mbsc-page a:hover,
.mbsc-a:hover {
  text-decoration: underline;
}

.mbsc-page a.mbsc-btn:hover,
.mbsc-a.mbsc-btn:hover {
  text-decoration: none;
}

.mbsc-page h1,
.mbsc-h1 {
  margin: 0.347826em 0;
  font-size: 2.875em;
}

.mbsc-page h2,
.mbsc-h2 {
  margin: 0.470588em 0;
  font-size: 2.125em;
}

.mbsc-page h3,
.mbsc-h3 {
  margin: 0.666666em 0;
  font-size: 1.5em;
}

.mbsc-page h4,
.mbsc-h4 {
  margin: 0.8em 0;
  font-size: 1.25em;
}

.mbsc-page h5,
.mbsc-h5 {
  margin: 1.066666em 0;
  font-size: 0.9375em;
}

.mbsc-page h6,
.mbsc-h6 {
  margin: 1.333333em 0;
  font-size: 0.75em;
}

/* Padding, margin */
.mbsc-padding {
  padding: 1em;
}

.mbsc-padding > p:first-child {
  margin-top: 0;
}

.mbsc-padding > p:last-child {
  margin-bottom: 0;
}

.mbsc-margin {
  margin: 1em 0;
}

.mbsc-margin:first-child {
  margin-top: 0;
}

.mbsc-margin:last-child {
  margin-bottom: 0;
}

/* Lists */
.mbsc-page ul,
.mbsc-page ol,
.mbsc-ul,
.mbsc-ol {
  padding: 0;
  margin: 1em 0 1em 1.25em;
  line-height: 1.5;
}

.mbsc-page ul ul,
.mbsc-page ol ol,
.mbsc-ul .mbsc-ul,
.mbsc-ol .mbsc-ol {
  margin: 0 0 0 1.25em;
}

/* Font sizes */
.mbsc-txt-xs {
  font-size: 0.625em;
}

.mbsc-txt-s {
  font-size: 0.75em;
}

.mbsc-txt-m {
  font-size: 1.25em;
}

.mbsc-txt-l {
  font-size: 1.5em;
}

.mbsc-txt-xl {
  font-size: 2em;
}

.mbsc-txt-muted {
  opacity: 0.6;
}

/* Line heights */
.mbsc-line-height-xs {
  line-height: 1;
}

.mbsc-line-height-s {
  line-height: 1.25;
}

.mbsc-line-height-m {
  line-height: 1.5;
}

.mbsc-line-height-l {
  line-height: 1.75;
}

.mbsc-line-height-xl {
  line-height: 2;
}

/* Font weights */
.mbsc-ultra-bold {
  font-weight: 900;
}

.mbsc-bold {
  font-weight: bold;
}

.mbsc-medium {
  font-weight: 500;
}

.mbsc-light {
  font-weight: 300;
}

.mbsc-thin {
  font-weight: 100;
}

.mbsc-italic {
  font-style: italic;
}

/* Text align */
.mbsc-align-left {
  text-align: left;
}

.mbsc-align-right {
  text-align: right;
}

.mbsc-align-center {
  text-align: center;
}

.mbsc-align-justify {
  text-align: justify;
}

/* Float */
.mbsc-pull-right {
  float: right;
}

.mbsc-pull-left {
  float: left;
}

/* Image section */
.mbsc-media-fluid {
  display: block;
  width: 100%;
}

.mbsc-img-thumbnail {
  width: 6em;
  height: 6em;
  margin: 1em;
}

/* Avatar image */
.mbsc-avatar {
  width: 2.5em;
  height: 2.5em;
  padding: 0;
  border-radius: 1.25em;
}

/* Note */
.mbsc-note {
  position: relative;
  padding: 0.75em 1.25em;
  margin: 1em;
  border: 1px solid transparent;
  font-size: 0.875em;
}

@media screen and (max-width: 600px) {
  .mbsc-note {
    text-align: center;
  }
}
.mbsc-mobiscroll {
  /* Note */
}
.mbsc-mobiscroll .mbsc-note {
  border-radius: 0.1875em;
}
.mbsc-mobiscroll .mbsc-note,
.mbsc-mobiscroll .mbsc-note-primary {
  color: #074b95;
  background-color: #a0ccfb;
}
.mbsc-mobiscroll .mbsc-note-secondary {
  color: #454b50;
  background-color: #c6cace;
}
.mbsc-mobiscroll .mbsc-note-success {
  color: #1b4d26;
  background-color: #8fd8a0;
}
.mbsc-mobiscroll .mbsc-note-danger {
  color: #a10b09;
  background-color: #faafaf;
}
.mbsc-mobiscroll .mbsc-note-warning {
  color: #b46f07;
  background-color: #fcd9a4;
}
.mbsc-mobiscroll .mbsc-note-info {
  color: #235b64;
  background-color: #a6d8e0;
}
.mbsc-mobiscroll .mbsc-note-light {
  color: #4d4d4d;
  background-color: #d9d9d9;
}
.mbsc-mobiscroll .mbsc-note-dark {
  color: black;
  background-color: #adafb0;
}

.mbsc-mobiscroll .mbsc-empty {
  color: #787878;
}

.mbsc-mobiscroll.mbsc-page {
  background: #f7f7f7;
  color: #454545;
}
.mbsc-mobiscroll a {
  color: hsl(42, 27%, 41%);
}

@keyframes autofill {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.mbsc-input {
  position: relative;
  display: block;
  margin: 0;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mbsc-input .mbsc-control:-webkit-autofill {
  animation-name: autofill;
}

.mbsc-input input,
.mbsc-input select,
.mbsc-input textarea {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mbsc-input-wrap,
.mbsc-input input,
.mbsc-input textarea {
  box-sizing: border-box;
}

.mbsc-input input,
.mbsc-input select,
.mbsc-input textarea {
  display: block;
  width: 100%;
  font-size: 1em;
}

.mbsc-input input:focus,
.mbsc-input select:focus,
.mbsc-input textarea:focus {
  outline: 0;
}

.mbsc-input-wrap {
  position: relative;
  display: block;
}

/* Textbox, textarea, select */
.mbsc-input .mbsc-label {
  font-size: 0.875em;
  white-space: nowrap;
}

.mbsc-input-ic {
  position: absolute;
  height: 2em;
  width: 2em;
  line-height: 2em;
  text-align: center;
}

.mbsc-input-toggle {
  cursor: pointer;
}

.mbsc-ic-right .mbsc-input-ic {
  right: 0.5em;
}

.mbsc-ic-left .mbsc-input-ic {
  left: 0.5em;
}

.mbsc-ic-right input {
  padding-right: 2.4em;
}

.mbsc-ic-left input {
  padding-left: 2.4em;
}

/* Inline labels */
.mbsc-label-inline.mbsc-input.mbsc-control-w {
  display: flex;
}
.mbsc-label-inline.mbsc-input.mbsc-control-w .mbsc-input-wrap {
  -moz-flex: 1 auto;
  flex: 1 auto;
}
.mbsc-label-inline.mbsc-input.mbsc-control-w .mbsc-label {
  position: static;
  -moz-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 1em;
  width: 30%;
  max-width: 12.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: content-box;
}

/* Floating labels */
.mbsc-label-floating.mbsc-input .mbsc-label {
  pointer-events: none;
  transition: transform 0.2s;
}
.mbsc-label-floating.mbsc-input .mbsc-label ~ .mbsc-input-wrap {
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
}
.mbsc-label-floating.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-control::-webkit-input-placeholder {
  opacity: 0;
}
.mbsc-label-floating.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-control:-moz-placeholder {
  opacity: 0;
}
.mbsc-label-floating.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-control::-moz-placeholder {
  opacity: 0;
}
.mbsc-label-floating.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-control:-ms-input-placeholder {
  opacity: 0;
}
.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label ~ .mbsc-input-wrap {
  /* WebKit browsers */
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10+ */
}
.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label ~ .mbsc-input-wrap .mbsc-control::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label ~ .mbsc-input-wrap .mbsc-control:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label ~ .mbsc-input-wrap .mbsc-control::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label ~ .mbsc-input-wrap .mbsc-control:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.mbsc-ltr.mbsc-label-floating.mbsc-input .mbsc-label {
  transform-origin: top left;
}

.mbsc-rtl.mbsc-label-floating.mbsc-input .mbsc-label {
  transform-origin: top right;
}

/* file type */
.mbsc-input-wrap .mbsc-control[type=file] {
  position: absolute;
  left: 0;
  opacity: 0;
}

.mbsc-mobiscroll {
  /* Textbox */
  /* Input */
  /* Textarea */
  /* Select */
  /* Select inline */
  /* LTR left icon */
  /* LTR right icon */
  /* RTL left icon */
  /* RTL right icon */
  /* Inline labels */
  /* Floating labels */
  /* Box Input */
  /* Outline Input */
}
.mbsc-mobiscroll.mbsc-input input, .mbsc-mobiscroll.mbsc-input textarea, .mbsc-mobiscroll.mbsc-color-input {
  height: 2.125em;
  padding: 0 0 1px 0;
  background: transparent;
  font-size: 1em;
}
.mbsc-mobiscroll.mbsc-input input:disabled, .mbsc-mobiscroll.mbsc-input textarea:disabled, .mbsc-mobiscroll.mbsc-input input:disabled ~ .mbsc-color-input, .mbsc-mobiscroll.mbsc-input .mbsc-control:disabled ~ input, .mbsc-mobiscroll.mbsc-input .mbsc-control:disabled ~ .mbsc-select-ic {
  opacity: 0.4;
}
.mbsc-mobiscroll.mbsc-input {
  margin: 1.5em 1em;
}
.mbsc-mobiscroll.mbsc-input .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0.875em;
}
.mbsc-mobiscroll.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-input-ic {
  top: 0.9375em;
}
.mbsc-mobiscroll .mbsc-input-ic {
  top: 0.0625em;
  margin: -2px 0 0 0;
}
.mbsc-mobiscroll.mbsc-input textarea {
  padding-top: 0.25em;
}
.mbsc-mobiscroll .mbsc-select-ic {
  position: absolute;
  display: block;
  height: 1.25em;
  width: 1.25em;
  top: 0.5625em;
  text-align: center;
}
.mbsc-mobiscroll.mbsc-ltr .mbsc-select-ic {
  left: auto;
  right: 0.6875em;
}
.mbsc-mobiscroll.mbsc-rtl .mbsc-select-ic {
  right: auto;
  left: 0.6875em;
}
.mbsc-mobiscroll .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 1.4375em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-select input {
  padding-right: 1.25em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-select.mbsc-ic-right input {
  padding-right: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  left: auto;
  right: 0;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  right: 1.75em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-select input {
  padding-left: 1.25em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-select.mbsc-ic-right input {
  padding-left: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  right: auto;
  left: 0;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  left: 1.75em;
}
.mbsc-mobiscroll .mbsc-select-inline .mbsc-select-ic {
  display: none;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-left textarea {
  padding-left: 1.625em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-left .mbsc-left-ic {
  right: auto;
  left: -0.375em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-left .mbsc-label,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-left .mbsc-err-msg {
  left: 2.166667em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-right textarea {
  padding-right: 1.625em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input.mbsc-ic-right .mbsc-right-ic {
  left: auto;
  right: -0.375em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-left textarea {
  padding-right: 1.625em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-left .mbsc-left-ic {
  left: auto;
  right: -0.375em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-left .mbsc-label,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-left .mbsc-err-msg {
  right: 2.166667em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-right textarea {
  padding-left: 1.625em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input.mbsc-ic-right .mbsc-right-ic {
  right: auto;
  left: -0.375em;
}
.mbsc-mobiscroll.mbsc-input .mbsc-label {
  position: absolute;
  top: 0;
  font-size: 0.75em;
}
.mbsc-mobiscroll.mbsc-label-inline.mbsc-input .mbsc-label {
  line-height: 2em;
}
.mbsc-mobiscroll.mbsc-label-inline.mbsc-input .mbsc-label + .mbsc-input-wrap {
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-label-inline.mbsc-input .mbsc-label + .mbsc-input-wrap .mbsc-input-ic {
  top: 0.0625em;
}
.mbsc-mobiscroll.mbsc-label-inline.mbsc-input.mbsc-select .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 0.5625em;
}
.mbsc-mobiscroll.mbsc-label-floating.mbsc-input .mbsc-label {
  font-size: 1em;
  line-height: 2em;
  top: 0.875em;
}
.mbsc-mobiscroll.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label {
  transform: translateY(-1.125em) scale(0.75);
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  left: 1.625em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  right: 1.625em;
}
.mbsc-mobiscroll.mbsc-input-box {
  /* Inline labels */
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-input-wrap {
  border-radius: 4px 4px 0 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input input, .mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-color-input {
  height: 2.25em;
  padding: 0.0625em 1em;
  border-radius: 4px 4px 0 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input textarea {
  padding: 0.375em 1em 0.0625em 1em;
  height: 2.25em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label ~ .mbsc-input-wrap input,
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-color-input {
  padding-top: 1.25em;
  height: 3.5em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label ~ .mbsc-input-wrap textarea:focus {
  padding-bottom: 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-input-ic {
  top: 0.875em;
}
.mbsc-mobiscroll.mbsc-input-box .mbsc-input-ic {
  top: 0.25em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-label {
  padding: 0.666667em 0;
  z-index: 1;
  line-height: normal;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-textarea .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 1.625em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-textarea .mbsc-label ~ .mbsc-input-wrap textarea {
  height: 1.866667em;
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  top: 0.625em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-select .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 1.375em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline .mbsc-label {
  padding-top: 0.125em;
  padding-bottom: 0.125em;
  line-height: 2em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap input,
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap .mbsc-color-input {
  height: 2.25em;
  padding-top: 0.0625em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap .mbsc-input-ic {
  top: 0.1875em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline.mbsc-textarea .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0.375em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-inline.mbsc-select .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 0.625em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-floating .mbsc-label {
  top: 0.125em;
  line-height: 2em;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-label-floating.mbsc-label-floating-active .mbsc-label {
  line-height: normal;
  transform: translateY(-0.125em) scale(0.75);
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box {
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box .mbsc-err-msg {
  left: 1.333334em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box .mbsc-label {
  left: 1.333334em;
  right: auto;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-left .mbsc-err-msg {
  left: 4em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-left .mbsc-label {
  left: 4em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-left .mbsc-left-ic {
  left: 0.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-left textarea {
  padding-left: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-right textarea {
  padding-right: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-right .mbsc-right-ic {
  right: 0.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  right: 2em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-select input {
  padding-right: 2em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  right: 0.6875em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-select.mbsc-ic-right input {
  padding-right: 4em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  right: 2.75em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-label-floating.mbsc-input .mbsc-label {
  left: 1em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-box.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  left: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box {
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box .mbsc-err-msg {
  right: 1.333334em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box .mbsc-label {
  right: 1.333334em;
  left: auto;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-left .mbsc-err-msg {
  right: 4em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-left .mbsc-label {
  right: 4em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-left .mbsc-left-ic {
  right: 0.5em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-left textarea {
  padding-right: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-right textarea {
  padding-left: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-right .mbsc-right-ic {
  left: 0.5em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  left: 2em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-select input {
  padding-left: 2em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  left: 0.6875em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-select.mbsc-ic-right input {
  padding-left: 4em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  left: 2.75em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-label-floating.mbsc-input .mbsc-label {
  right: 1em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-box.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  right: 3em;
}
.mbsc-mobiscroll.mbsc-input-outline {
  /* Inline labels */
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input input, .mbsc-mobiscroll.mbsc-input-outline.mbsc-input textarea, .mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-color-input {
  border-radius: 4px;
  height: 3.375em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input input, .mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-color-input {
  padding: 0.0625em 1em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input textarea {
  padding: 0.875em 1em 0.4375em 1em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-label {
  top: -0.166667em;
  z-index: 1;
  padding: 0 0.333334em;
}
.mbsc-mobiscroll.mbsc-input-outline .mbsc-input-ic {
  top: 0.8125em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0.25em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-label ~ .mbsc-input-wrap .mbsc-input-ic {
  top: 1.0625em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input input:focus, .mbsc-mobiscroll.mbsc-input-outline.mbsc-input select:focus ~ input, .mbsc-mobiscroll.mbsc-input-outline.mbsc-err input {
  padding-top: 0;
  padding-bottom: 0;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-err input, .mbsc-mobiscroll.mbsc-input-outline.mbsc-err textarea {
  border-color: #de3226;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  top: 1.3125em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-select .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 1.5625em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-inline .mbsc-label {
  line-height: 3.375em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap {
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-inline .mbsc-label ~ .mbsc-input-wrap .mbsc-input-ic {
  top: 0.8125em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-inline.mbsc-select .mbsc-label ~ .mbsc-input-wrap .mbsc-select-ic {
  top: 1.3125em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-floating.mbsc-input .mbsc-label {
  top: 0.9375em;
  padding: 0 0.25em;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-floating.mbsc-input.mbsc-label-floating-active .mbsc-label {
  transform: translateY(-1.375em) scale(0.75);
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline {
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline .mbsc-err-msg {
  left: 1.416667em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline .mbsc-label {
  left: 1.083334em;
  right: auto;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-left .mbsc-err-msg {
  left: 4.083334em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-left .mbsc-label {
  left: 3.75em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-left .mbsc-left-ic {
  left: 0.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-left textarea {
  padding-left: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-right textarea {
  padding-right: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-ic-right .mbsc-right-ic {
  right: 0.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-select input {
  padding-right: 2em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  right: 0.6875em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-select.mbsc-ic-right input {
  padding-right: 4em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  right: 3em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-label-floating.mbsc-input .mbsc-label {
  left: 0.875em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-input-outline.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  left: 2.875em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline {
  /* Floating labels */
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline .mbsc-err-msg {
  right: 1.416667em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline .mbsc-label {
  right: 1.083334em;
  left: auto;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-left .mbsc-err-msg {
  right: 4.083334em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-left .mbsc-label {
  right: 3.75em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-left .mbsc-left-ic {
  right: 0.5em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-left input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-left textarea {
  padding-right: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-right input,
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-right textarea {
  padding-left: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-ic-right .mbsc-right-ic {
  left: 0.5em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-select input {
  padding-left: 2em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-select .mbsc-input-wrap .mbsc-select-ic {
  left: 0.6875em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-select.mbsc-ic-right input {
  padding-left: 4em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-select.mbsc-ic-right .mbsc-input-wrap .mbsc-select-ic {
  left: 3em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-label-floating.mbsc-input .mbsc-label {
  right: 0.875em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-input-outline.mbsc-label-floating.mbsc-input.mbsc-ic-left .mbsc-label {
  right: 2.875em;
}

.mbsc-mobiscroll {
  /* Textbox */
  /* Box Input */
  /* Outline Input */
}
.mbsc-mobiscroll.mbsc-input .mbsc-control {
  border-bottom: 1px solid #787878;
  color: #1f1f1f;
}
.mbsc-mobiscroll.mbsc-input .mbsc-control:focus, .mbsc-mobiscroll.mbsc-input select:focus ~ input .mbsc-input textarea:focus {
  border-color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-input-ic {
  color: #787878;
}
.mbsc-mobiscroll.mbsc-input-box.mbsc-input .mbsc-input-wrap {
  background: #dedede;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-control {
  border: 1px solid #787878;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-label {
  background: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-label-inline.mbsc-input .mbsc-label, .mbsc-mobiscroll.mbsc-input-outline.mbsc-label-floating:not(.mbsc-label-floating-active).mbsc-input .mbsc-label {
  background: none;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input .mbsc-control:focus, .mbsc-mobiscroll.mbsc-input-outline.mbsc-input select:focus ~ input, .mbsc-mobiscroll.mbsc-input-outline.mbsc-err input {
  border-color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input textarea:focus {
  border-color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-input.mbsc-err input, .mbsc-mobiscroll.mbsc-input.mbsc-err textarea {
  border-color: #de3226;
}

.mbsc-progress {
  position: relative;
  display: block;
  margin: 0;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transform: translate3d(0, 0, 0);
}

.mbsc-progress progress {
  display: none;
}

.mbsc-progress .mbsc-input-wrap {
  position: relative;
  display: block;
}

.mbsc-progress .mbsc-input-ic {
  position: absolute;
  height: 2em;
  width: 2em;
  line-height: 2em;
  text-align: center;
}

.mbsc-progress-cont {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}

.mbsc-progress-track {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.mbsc-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

.mbsc-rtl .mbsc-progress-bar {
  left: auto;
  right: 0;
}

.mbsc-progress-anim .mbsc-progress-bar {
  transition: width 0.1s ease-in-out;
}

.mbsc-progress-value {
  position: absolute;
  top: 50%;
  width: 3em;
  overflow: hidden;
  margin-top: -0.5em;
  line-height: 1em;
}

.mbsc-progress-value-right .mbsc-progress-value {
  right: 0;
  text-align: right;
}

.mbsc-rtl.mbsc-progress-value-right .mbsc-progress-value {
  right: auto;
  left: 0;
  text-align: left;
}

.mbsc-progress-value-left .mbsc-progress-value {
  left: 0;
  text-align: left;
}

.mbsc-rtl.mbsc-progress-value-left .mbsc-progress-value {
  left: auto;
  right: 0;
  text-align: right;
}

.mbsc-progress-step-label {
  position: absolute;
  top: 1em;
  width: 3.5em;
  font-size: 0.75em;
  text-align: center;
  overflow: hidden;
}

.mbsc-ltr .mbsc-progress-step-label {
  margin-left: -1.75em;
}

.mbsc-rtl .mbsc-progress-step-label {
  margin-right: -1.75em;
}

/* Inline labels */
.mbsc-label-inline.mbsc-progress.mbsc-control-w {
  display: flex;
}
.mbsc-label-inline.mbsc-progress.mbsc-control-w .mbsc-input-wrap {
  -moz-flex: 1 auto;
  flex: 1 auto;
}
.mbsc-label-inline.mbsc-progress.mbsc-control-w .mbsc-label {
  position: static;
  -moz-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 1em;
  line-height: 2.125em;
  width: 30%;
  max-width: 12.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mbsc-mobiscroll.mbsc-progress {
  padding: 1em;
}
.mbsc-mobiscroll.mbsc-progress .mbsc-label {
  font-size: 0.75em;
}
.mbsc-mobiscroll.mbsc-progress .mbsc-input-ic {
  top: 0.0625em;
  margin: 0;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-ic-left .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-ic-right .mbsc-input-wrap {
  padding-left: 2.75em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-ic-right .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-ic-left .mbsc-input-wrap {
  padding-right: 2.75em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-ic-left .mbsc-left-ic, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-ic-right .mbsc-right-ic {
  right: auto;
  left: -0.375em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-ic-right .mbsc-right-ic, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-ic-left .mbsc-left-ic {
  left: auto;
  right: -0.375em;
}
.mbsc-mobiscroll .mbsc-progress-cont {
  padding: 1em 0;
}
.mbsc-mobiscroll .mbsc-progress-track {
  border-radius: 1em;
  height: 0.125em;
}
.mbsc-mobiscroll .mbsc-progress-value {
  width: 3.75em;
  font-size: 0.875em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-progress-value-left .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-progress-value-right .mbsc-input-wrap {
  padding-left: 3.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress.mbsc-progress-value-right .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress.mbsc-progress-value-left .mbsc-input-wrap {
  padding-right: 3.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress-value-left.mbsc-ic-left .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress-value-right.mbsc-ic-right .mbsc-input-wrap {
  padding-left: 5.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress-value-right.mbsc-ic-right .mbsc-input-wrap, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress-value-left.mbsc-ic-left .mbsc-input-wrap {
  padding-right: 5.5em;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress-value-left.mbsc-ic-left .mbsc-progress-value, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress-value-right.mbsc-ic-right .mbsc-progress-value {
  left: 2.25em;
  right: auto;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-progress-value-right.mbsc-ic-right .mbsc-progress-value, .mbsc-mobiscroll.mbsc-rtl.mbsc-progress-value-left.mbsc-ic-left .mbsc-progress-value {
  left: auto;
  right: 2.25em;
}
.mbsc-mobiscroll .mbsc-progress-primary .mbsc-progress-bar {
  background: #3f97f6;
}
.mbsc-mobiscroll .mbsc-progress-secondary .mbsc-progress-bar {
  background: #90979e;
}
.mbsc-mobiscroll .mbsc-progress-success .mbsc-progress-bar {
  background: #43be5f;
}
.mbsc-mobiscroll .mbsc-progress-danger .mbsc-progress-bar {
  background: #f5504e;
}
.mbsc-mobiscroll .mbsc-progress-warning .mbsc-progress-bar {
  background: #f8b042;
}
.mbsc-mobiscroll .mbsc-progress-info .mbsc-progress-bar {
  background: #5bb7c5;
}

.mbsc-mobiscroll.mbsc-progress .mbsc-input-ic {
  color: #787878;
}
.mbsc-mobiscroll .mbsc-progress-track {
  background: #dedede;
}
.mbsc-mobiscroll .mbsc-progress-bar {
  background: hsl(42, 27%, 41%);
}

.mbsc-progress.mbsc-slider input {
  display: none;
}

.mbsc-ltr .mbsc-progress-anim .mbsc-slider-handle-cont {
  transition: left 0.1s ease-in-out;
}

.mbsc-rtl .mbsc-progress-anim .mbsc-slider-handle-cont {
  transition: right 0.1s ease-in-out;
}

.mbsc-slider-handle-cont {
  position: absolute;
  width: 2em;
  height: 2em;
  top: 0.0625em;
  margin-top: -1em;
  cursor: pointer;
}

.mbsc-ltr .mbsc-slider-handle-cont {
  right: -1em;
}

.mbsc-rtl .mbsc-slider-handle-cont {
  left: -1em;
}

.mbsc-ltr .mbsc-slider-handle-cont.mbsc-slider-handle-left {
  left: 0;
}

.mbsc-rtl .mbsc-slider-handle-cont.mbsc-slider-handle-left {
  right: 0;
}

.mbsc-ltr .mbsc-progress-track .mbsc-slider-handle-cont {
  margin-left: -1em;
}

.mbsc-rtl .mbsc-progress-track .mbsc-slider-handle-cont {
  margin-right: -1em;
}

.mbsc-slider-handle {
  position: absolute;
  top: 0.125em;
  right: 50%;
  margin: -0.5em -0.5em 0 0;
  z-index: 2;
}

.mbsc-slider-handle-cont .mbsc-slider-handle {
  box-sizing: content-box;
}

.mbsc-slider .mbsc-slider-handle:focus,
.mbsc-slider .mbsc-active .mbsc-slider-handle {
  outline: 0;
  z-index: 15;
}

.mbsc-slider .mbsc-handle-curr {
  z-index: 16;
}

.mbsc-slider-tooltip {
  position: absolute;
  right: 50%;
  opacity: 0;
  color: #000;
}

.mbsc-slider-step {
  position: absolute;
  top: 0;
  width: 0.125em;
  height: 100%;
  margin-left: -0.0625em;
}

.mbsc-mobiscroll.mbsc-slider .mbsc-input-wrap {
  padding: 0 0.5em;
}
.mbsc-mobiscroll .mbsc-slider-handle {
  top: 50%;
  width: 1em;
  height: 1em;
  border-radius: 1.125em;
  transform: scale(1);
  transition: transform 0.2s ease-in-out;
}
.mbsc-mobiscroll .mbsc-slider-handle:focus,
.mbsc-mobiscroll .mbsc-active .mbsc-slider-handle {
  transform: scale(1.3);
}
.mbsc-mobiscroll.mbsc-slider input:disabled ~ .mbsc-progress-cont .mbsc-progress-track {
  opacity: 0.4;
}
.mbsc-mobiscroll.mbsc-slider input:disabled ~ .mbsc-progress-cont .mbsc-slider-handle {
  transform: scale(1);
}
.mbsc-mobiscroll .mbsc-slider-tooltip {
  top: -1.91666em;
  width: 2.33333333em;
  height: 2.33333333em;
  border-radius: 2em;
  margin-right: -1.1666em;
  line-height: 2.33333333em;
  text-align: center;
  font-size: 0.75em;
  z-index: 5;
  transform: scale(0.4) translate3d(0, 5em, 0);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.mbsc-mobiscroll .mbsc-slider-handle:focus ~ .mbsc-slider-tooltip,
.mbsc-mobiscroll .mbsc-active .mbsc-slider-tooltip {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.mbsc-mobiscroll.mbsc-slider-has-tooltip .mbsc-slider-handle:focus, .mbsc-mobiscroll.mbsc-slider-has-tooltip .mbsc-active .mbsc-slider-handle {
  transform: scale(0.5);
}
.mbsc-mobiscroll.mbsc-slider-primary .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-primary .mbsc-slider-handle,
.mbsc-mobiscroll.mbsc-slider-primary .mbsc-progress-bar {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-slider-secondary .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-secondary .mbsc-slider-handle,
.mbsc-mobiscroll.mbsc-slider-secondary .mbsc-progress-bar {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-slider-success .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-success .mbsc-slider-handlem .mbsc-progress-bar {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-slider-danger .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-danger .mbsc-slider-handle,
.mbsc-mobiscroll.mbsc-slider-danger .mbsc-progress-bar {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-slider-warning .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-warning .mbsc-slider-handle,
.mbsc-mobiscroll.mbsc-slider-warning .mbsc-progress-bar {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-slider-info .mbsc-slider-tooltip,
.mbsc-mobiscroll.mbsc-slider-info .mbsc-slider-handle,
.mbsc-mobiscroll.mbsc-slider-info .mbsc-progress-bar {
  background: #5bb7c5;
}

.mbsc-mobiscroll .mbsc-slider-step {
  background: #f7f7f7;
}
.mbsc-mobiscroll .mbsc-slider-handle {
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-slider-tooltip {
  color: #ededed;
  background-color: hsl(42, 27%, 41%);
}

.mbsc-rating.mbsc-progress .mbsc-progress-cont {
  display: inline-block;
  width: auto;
  padding: 0 0.5em;
  margin: 0 -0.681818em;
  cursor: pointer;
}
.mbsc-rating .mbsc-progress-cont .mbsc-progress-track {
  height: auto;
  background: none;
}
.mbsc-rating .mbsc-ic {
  font-size: 1.375em;
  margin: 0 0.181818em;
}
.mbsc-rating.mbsc-progress input {
  display: none;
}
.mbsc-rating.mbsc-progress .mbsc-progress-cont .mbsc-slider-handle {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  background: none;
  box-shadow: none;
  border: 0;
  transform: none;
}
.mbsc-rating .mbsc-progress-cont .mbsc-progress-bar {
  background: none;
  overflow: hidden;
  white-space: nowrap;
}

.mbsc-mobiscroll.mbsc-rating .mbsc-label {
  padding-bottom: 0.5em;
}
.mbsc-mobiscroll.mbsc-rating input:disabled ~ .mbsc-progress-cont .mbsc-progress-track {
  opacity: 0.4;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-primary .mbsc-progress-track {
  color: #3f97f6;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-secondary .mbsc-progress-track {
  color: #90979e;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-success .mbsc-progress-track {
  color: #43be5f;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-danger .mbsc-progress-track {
  color: #f5504e;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-warning .mbsc-progress-track {
  color: #f8b042;
}
.mbsc-mobiscroll.mbsc-rating.mbsc-rating-info .mbsc-progress-track {
  color: #5bb7c5;
}

.mbsc-mobiscroll.mbsc-rating .mbsc-progress-track {
  color: hsl(42, 27%, 41%);
}

.mbsc-wdg .mbsc-wdg-c {
  position: relative;
  z-index: 0;
  font-size: 14px;
  white-space: normal;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.mbsc-wdg .mbsc-ltr .mbsc-wdg-c {
  text-align: left;
}

.mbsc-wdg .mbsc-rtl .mbsc-wdg-c {
  text-align: right;
}

.mbsc-wdg .mbsc-wdg-c.mbsc-w-p {
  padding: 1em;
}

.mbsc-no-padding.mbsc-wdg .mbsc-wdg-c.mbsc-w-p {
  padding: 0;
}

/* Toast, snackbar */
.mbsc-toast .mbsc-fr-persp,
.mbsc-snackbar .mbsc-fr-persp {
  pointer-events: none;
}

.mbsc-toast .mbsc-fr-overlay,
.mbsc-snackbar .mbsc-fr-overlay {
  display: none;
}

.mbsc-toast.mbsc-fr .mbsc-fr-persp .mbsc-fr-popup,
.mbsc-snackbar.mbsc-fr .mbsc-fr-persp .mbsc-fr-popup {
  border: 0;
  line-height: 1.428572;
}

/* Snackbar */
.mbsc-snackbar.mbsc-fr .mbsc-fr-w {
  min-width: 18em;
  max-width: 36em;
  margin: 0 auto;
  pointer-events: auto;
  box-shadow: none;
}

.mbsc-snackbar-cont {
  display: flex;
  align-items: center;
}

.mbsc-snackbar-msg {
  flex: 1;
  padding: 0 1em;
}

.mbsc-snackbar .mbsc-snackbar-cont .mbsc-snackbar-btn {
  margin: -1em 0;
  padding: 1em;
  line-height: 1.428572;
  font-size: 1em;
  font-weight: 400;
}

.mbsc-snackbar.mbsc-no-touch.mbsc-fr .mbsc-fr-c .mbsc-btn-flat:not(:disabled):hover {
  background: none;
  box-shadow: none;
}

/* Toast */
.mbsc-toast.mbsc-fr .mbsc-fr-w {
  background: none;
  box-shadow: none;
}

.mbsc-toast.mbsc-fr .mbsc-fr-c.mbsc-wdg-c {
  text-align: center;
  padding-bottom: 4em;
}

.mbsc-toast .mbsc-toast-msg {
  display: inline-block;
  min-width: 10em;
  max-width: 50em;
  padding: 0.857143em 2em;
}

/* Alert, confirm, prompt */
.mbsc-alert.mbsc-fr .mbsc-fr-c.mbsc-wdg-c {
  padding: 1.714286em;
  max-width: 20em;
}

.mbsc-alert .mbsc-fr-c .mbsc-input {
  padding: 0;
  margin: 0;
}

.mbsc-alert.mbsc-fr h2 {
  margin: 0 0 1em 0;
  padding: 0;
  font-size: 1.428572em;
  font-weight: bold;
}

.mbsc-alert.mbsc-fr p {
  margin: 1em 0;
  padding: 0;
  font-size: 1em;
}

.mbsc-mobiscroll {
  /* Snackbar and Toast color presets */
}
.mbsc-mobiscroll.mbsc-toast .mbsc-toast-msg {
  opacity: 0.9;
  border-radius: 0.5em;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-primary .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-primary .mbsc-toast-msg {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-secondary .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-secondary .mbsc-toast-msg {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-success .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-success .mbsc-toast-msg {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-danger .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-danger .mbsc-toast-msg {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-warning .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-warning .mbsc-toast-msg {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-info .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-info .mbsc-toast-msg {
  background: #5bb7c5;
}

.mbsc-mobiscroll {
  /* Snackbar and Toast color presets */
}
.mbsc-mobiscroll.mbsc-snackbar .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast .mbsc-toast-msg {
  background: #787878;
  color: #ffffff;
}
.mbsc-mobiscroll.mbsc-snackbar.mbsc-primary .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-primary .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-secondary .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-secondary .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-success .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-success .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-danger .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-danger .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-warning .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-warning .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-info .mbsc-fr-w, .mbsc-mobiscroll.mbsc-toast.mbsc-info .mbsc-toast-msg, .mbsc-mobiscroll.mbsc-snackbar.mbsc-primary .mbsc-snackbar-btn, .mbsc-mobiscroll.mbsc-snackbar.mbsc-secondary .mbsc-snackbar-btn, .mbsc-mobiscroll.mbsc-snackbar.mbsc-success .mbsc-snackbar-btn, .mbsc-mobiscroll.mbsc-snackbar.mbsc-danger .mbsc-snackbar-btn, .mbsc-mobiscroll.mbsc-snackbar.mbsc-warning .mbsc-snackbar-btn, .mbsc-mobiscroll.mbsc-snackbar.mbsc-info .mbsc-snackbar-btn {
  color: #f7f7f7;
}

/* Forms */
[mbsc-form]:not(.mbsc-form) {
  visibility: hidden;
}

.mbsc-form,
.mbsc-control-w,
.mbsc-btn,
.mbsc-segmented {
  font-size: 16px;
  font-family: arial, verdana, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.mbsc-form:before,
.mbsc-form:after {
  content: "";
  display: table;
}

.mbsc-form-group {
  margin: 1.5em 0;
}

.mbsc-form-group-inset {
  margin: 2em 1.5em;
}

.mbsc-form-group,
.mbsc-form-group-inset {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* No background inside widget */
.mbsc-wdg .mbsc-w-p .mbsc-form {
  background: none;
}

/* Other mobiscroll components inline */
.mbsc-input .mbsc-fr-inline .mbsc-fr-popup {
  display: block;
}

.mbsc-err-msg {
  display: block;
  font-size: 0.75em;
}

.mbsc-checkbox,
.mbsc-switch,
.mbsc-radio,
.mbsc-stepper-cont {
  line-height: 1.25em;
}

.mbsc-checkbox,
.mbsc-switch,
.mbsc-btn,
.mbsc-radio,
.mbsc-segmented,
.mbsc-stepper-cont {
  position: relative;
  display: block;
  margin: 0;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mbsc-checkbox input,
.mbsc-switch input,
.mbsc-radio input,
.mbsc-segmented input,
.mbsc-btn {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mbsc-checkbox input,
.mbsc-switch input,
.mbsc-radio input,
.mbsc-select select,
.mbsc-segmented input {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  margin: 0;
}

.mbsc-btn,
.mbsc-checkbox-box,
.mbsc-checkbox-box:after,
.mbsc-radio-box,
.mbsc-radio-box:after,
.mbsc-switch-track,
.mbsc-segmented,
.mbsc-progress progress,
.mbsc-stepper-cont {
  box-sizing: border-box;
}

.mbsc-segmented .mbsc-segmented-content,
.mbsc-btn-flat .mbsc-btn-ic {
  box-sizing: content-box;
}

.mbsc-desc {
  display: block;
  font-size: 0.75em;
  opacity: 0.6;
}

label.mbsc-input,
.mbsc-label {
  margin: 0;
  display: block;
  font-weight: normal;
}

.mbsc-control-w {
  max-width: none;
  margin: 0;
  font-size: 1em;
  font-weight: normal;
}

/* Textarea */
.mbsc-input textarea {
  resize: none;
  overflow: hidden;
  line-height: 1.5em;
}

.mbsc-input .mbsc-textarea-scroll {
  overflow: auto;
}

/* Select */
.mbsc-select select,
.mbsc-select input {
  cursor: pointer;
}

.mbsc-select select option {
  color: initial;
}

.mbsc-select-ic {
  display: none;
}

/* Checkbox */
.mbsc-checkbox {
  padding: 0.5em;
}

.mbsc-checkbox-box {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.375em;
  height: 1.375em;
}

.mbsc-checkbox-box:after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  transform: rotate(-45deg);
}

.mbsc-checkbox input:checked + .mbsc-checkbox-box:after {
  opacity: 1;
}

/* Radio */
.mbsc-radio {
  padding: 0.5em;
}

.mbsc-radio-box {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.25em;
  height: 1.25em;
  border-radius: 1.25em;
}

.mbsc-radio-box:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625em;
  height: 0.625em;
  margin-top: -0.3125em;
  margin-left: -0.3125em;
  border-radius: 0.625em;
  opacity: 0;
}

.mbsc-radio input:checked + .mbsc-radio-box:after {
  opacity: 1;
}

/* Switch */
.mbsc-switch {
  padding: 0.5em;
}

.mbsc-switch-track {
  position: absolute;
  top: 50%;
  display: block;
  width: 3.375em;
  height: 1.625em;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
  z-index: 4;
}

.mbsc-switch .mbsc-switch-track .mbsc-progress-track {
  height: 100%;
  background: none;
}

.mbsc-switch .mbsc-switch-track .mbsc-slider-handle-cont {
  top: 50%;
}

.mbsc-switch-handle {
  position: absolute;
  display: block;
}

.mbsc-switch-txt-off,
.mbsc-switch-txt-on {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  font-size: 0.625em;
  text-align: center;
  line-height: 2em;
}

/* Segmented control & Stepper */
.mbsc-segmented {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.mbsc-segmented .mbsc-segmented-item {
  margin: 0;
  display: table-cell;
  position: relative;
  vertical-align: top;
  text-align: center;
  font-size: 1em;
}

.mbsc-segmented-content {
  position: relative;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.875em;
  font-weight: normal;
  z-index: 2;
}

.mbsc-segmented-item label {
  display: block;
  margin: 0;
}

.mbsc-segmented input:disabled ~ .mbsc-segmented-item .mbsc-segmented-content,
.mbsc-disabled .mbsc-segmented-content,
.mbsc-segmented input:disabled + .mbsc-segmented-content {
  z-index: 0;
}

.mbsc-stepper {
  position: absolute;
  display: block;
  width: auto;
  right: 1em;
  top: 50%;
}

.mbsc-rtl .mbsc-stepper {
  right: auto;
  left: 1em;
}

.mbsc-stepper-cont .mbsc-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mbsc-segmented-item:focus {
  outline: 0;
}

.mbsc-stepper input {
  position: absolute;
  left: 4.142857em;
  width: 4.142857em;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-size: 0.875em;
  text-align: center;
  opacity: 1;
  z-index: 4;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.mbsc-stepper input::-webkit-outer-spin-button,
.mbsc-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mbsc-ltr.mbsc-stepper-val-right .mbsc-stepper input {
  left: auto;
  right: 0;
}

.mbsc-rtl.mbsc-stepper-val-right .mbsc-stepper input {
  right: auto;
  left: 0;
}

.mbsc-ltr.mbsc-stepper-val-left .mbsc-stepper input {
  left: 0;
}

.mbsc-rtl.mbsc-stepper-val-left .mbsc-stepper input {
  right: 0;
}

.mbsc-stepper .mbsc-segmented-item {
  width: 3.625em;
}

.mbsc-stepper-cont.mbsc-stepper-val-left .mbsc-stepper .mbsc-segmented-item:nth-child(2) .mbsc-segmented-content,
.mbsc-stepper-cont.mbsc-stepper-val-right .mbsc-stepper .mbsc-segmented-item:last-child .mbsc-segmented-content {
  /* Strong rule is needed to override disabled styling */
  border: 0;
  background: transparent;
}

.mbsc-control-w.mbsc-stepper-cont .mbsc-stepper {
  padding: 0;
}

.mbsc-segmented-item .mbsc-control,
.mbsc-stepper .mbsc-segmented-content {
  cursor: pointer;
}

.mbsc-disabled .mbsc-segmented-content,
.mbsc-segmented input:disabled,
.mbsc-segmented input:disabled ~ .mbsc-segmented-item .mbsc-segmented-content {
  cursor: not-allowed;
}

/* Buttons */
.mbsc-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 1em;
  font-family: arial, verdana, sans-serif;
  cursor: pointer;
}

.mbsc-btn:disabled {
  cursor: not-allowed;
}
.mbsc-btn:disabled * {
  /* Prevents click event firing for the Angular mbsc-button component, when disabled */
  pointer-events: none;
}

.mbsc-btn:focus {
  outline: 0;
}

.mbsc-btn-ic {
  line-height: 1;
}

.mbsc-btn-group,
.mbsc-btn-group-block,
.mbsc-btn-group-justified {
  border: 1px solid transparent;
}

.mbsc-btn-group-block .mbsc-btn,
.mbsc-btn-block {
  display: block;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mbsc-btn-group-justified,
.mbsc-btn-group-justified mbsc-button {
  display: flex;
  flex-wrap: wrap;
}

.mbsc-btn-group-justified .mbsc-btn,
.mbsc-btn-group-justified mbsc-button {
  flex: 1 auto;
}

input:disabled + span .mbsc-slider-handle-cont {
  cursor: not-allowed;
}

/* Form in grid */
.mbsc-form .mbsc-form-grid .mbsc-form-group-title {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.mbsc-mobiscroll {
  /* Form grid */
  /* Checkbox, switch, radio */
  /* Checkbox */
  /* Checkbox color presets */
  /* Radio */
  /* Radio color presets */
  /* Checkbox, Switch, Radio */
  /* Buttons */
  /* Button color presets */
  /* Outline buttons */
  /* Outline buttons */
  /* Switch */
  /* Switch color presets */
  /* Stepper and Segmented */
  /* Segmented color presets */
  /* Stepper color presets */
}
.mbsc-mobiscroll .mbsc-divider,
.mbsc-mobiscroll .mbsc-form-group-title {
  padding: 0.5em 1em;
}
.mbsc-mobiscroll .mbsc-err-msg {
  position: absolute;
  padding-top: 0.333334em;
  font-size: 0.75em;
}
.mbsc-mobiscroll .mbsc-form-grid {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.mbsc-mobiscroll .mbsc-form-grid .mbsc-input-box,
.mbsc-mobiscroll .mbsc-form-grid .mbsc-input-outline {
  margin: 0.75em 1em;
}
.mbsc-mobiscroll.mbsc-checkbox .mbsc-err-msg, .mbsc-mobiscroll.mbsc-switch .mbsc-err-msg, .mbsc-mobiscroll.mbsc-radio .mbsc-err-msg {
  padding-top: 0;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-checkbox {
  padding: 1em 3.125em 1em 1em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-checkbox {
  padding: 1em 1em 1em 3.125em;
}
.mbsc-mobiscroll .mbsc-checkbox-box {
  margin-top: -0.5625em;
  width: 1.125em;
  height: 1.125em;
  right: 1em;
}
.mbsc-mobiscroll.mbsc-rtl .mbsc-checkbox-box {
  right: auto;
  left: 1em;
}
.mbsc-mobiscroll .mbsc-checkbox-box:after {
  top: 0.25em;
  left: 0.185em;
  width: 0.8125em;
  height: 0.4375em;
}
.mbsc-mobiscroll.mbsc-checkbox-primary .mbsc-checkbox-box {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-checkbox-secondary .mbsc-checkbox-box {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-checkbox-success .mbsc-checkbox-box {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-checkbox-danger .mbsc-checkbox-box {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-checkbox-warning .mbsc-checkbox-box {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-checkbox-info .mbsc-checkbox-box {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-radio {
  padding: 1em 3.125em 1em 1em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-radio {
  padding: 1em 1em 1em 3.125em;
}
.mbsc-mobiscroll .mbsc-radio-box {
  right: 1em;
  width: 1.125em;
  height: 1.125em;
  margin-top: -0.5625em;
  background: transparent;
}
.mbsc-mobiscroll.mbsc-rtl .mbsc-radio-box {
  right: auto;
  left: 1em;
}
.mbsc-mobiscroll .mbsc-radio-box:after {
  width: 0.5em;
  height: 0.5em;
  margin-top: -0.25em;
  margin-left: -0.25em;
  border-radius: 0.625em;
}
.mbsc-mobiscroll.mbsc-radio input:checked + .mbsc-radio-box {
  background: transparent;
}
.mbsc-mobiscroll.mbsc-radio-primary .mbsc-radio-box {
  border-color: #3f97f6;
}
.mbsc-mobiscroll.mbsc-radio-primary .mbsc-radio-box:after {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-radio-secondary .mbsc-radio-box {
  border-color: #90979e;
}
.mbsc-mobiscroll.mbsc-radio-secondary .mbsc-radio-box:after {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-radio-success .mbsc-radio-box {
  border-color: #43be5f;
}
.mbsc-mobiscroll.mbsc-radio-success .mbsc-radio-box:after {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-radio-danger .mbsc-radio-box {
  border-color: #f5504e;
}
.mbsc-mobiscroll.mbsc-radio-danger .mbsc-radio-box:after {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-radio-warning .mbsc-radio-box {
  border-color: #f8b042;
}
.mbsc-mobiscroll.mbsc-radio-warning .mbsc-radio-box:after {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-radio-info .mbsc-radio-box {
  border-color: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-radio-info .mbsc-radio-box:after {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-checkbox input:disabled ~ .mbsc-label, .mbsc-mobiscroll.mbsc-checkbox input:disabled ~ .mbsc-desc, .mbsc-mobiscroll.mbsc-radio input:disabled ~ .mbsc-label, .mbsc-mobiscroll.mbsc-radio input:disabled ~ .mbsc-desc, .mbsc-mobiscroll.mbsc-switch input:disabled ~ .mbsc-label, .mbsc-mobiscroll.mbsc-switch input:disabled ~ .mbsc-desc {
  opacity: 0.4;
}
.mbsc-mobiscroll .mbsc-checkbox-box:after,
.mbsc-mobiscroll .mbsc-radio-box:after {
  opacity: 1;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.1s ease-out;
}
.mbsc-mobiscroll.mbsc-checkbox input:checked + .mbsc-checkbox-box:after, .mbsc-mobiscroll.mbsc-radio input:checked + .mbsc-radio-box:after {
  opacity: 1;
  transform: scale(1) rotate(-45deg);
}
.mbsc-mobiscroll.mbsc-btn {
  margin: 0.5em;
  padding: 0.6875em;
  font-size: 1em;
  text-transform: uppercase;
}
.mbsc-mobiscroll .mbsc-btn-ic {
  padding-right: 0.6875em;
}
.mbsc-mobiscroll .mbsc-btn-icon-only .mbsc-btn-ic {
  padding: 0 0.5em;
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-btn:not(:disabled):not(.mbsc-active):hover {
  opacity: 0.8;
}
.mbsc-mobiscroll.mbsc-btn.mbsc-active {
  opacity: 0.6;
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  opacity: 1;
}
.mbsc-mobiscroll.mbsc-btn-flat {
  background: transparent;
  border-color: transparent;
}
.mbsc-mobiscroll.mbsc-btn-flat.mbsc-btn.mbsc-active {
  opacity: 1;
}
.mbsc-mobiscroll.mbsc-btn-flat:disabled {
  background: transparent;
}
.mbsc-mobiscroll.mbsc-btn-primary.mbsc-btn {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-btn-primary.mbsc-btn.mbsc-btn-flat {
  color: #3f97f6;
}
.mbsc-mobiscroll.mbsc-btn-primary.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(63, 151, 246, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-primary.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(63, 151, 246, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-secondary.mbsc-btn {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-btn-secondary.mbsc-btn.mbsc-btn-flat {
  color: #90979e;
}
.mbsc-mobiscroll.mbsc-btn-secondary.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(144, 151, 158, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-secondary.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(144, 151, 158, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-success.mbsc-btn {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-btn-success.mbsc-btn.mbsc-btn-flat {
  color: #43be5f;
}
.mbsc-mobiscroll.mbsc-btn-success.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(67, 190, 95, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-success.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(67, 190, 95, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-danger.mbsc-btn {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-btn-danger.mbsc-btn.mbsc-btn-flat {
  color: #f5504e;
}
.mbsc-mobiscroll.mbsc-btn-danger.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(245, 80, 78, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-danger.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(245, 80, 78, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-warning.mbsc-btn {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-btn-warning.mbsc-btn.mbsc-btn-flat {
  color: #f8b042;
}
.mbsc-mobiscroll.mbsc-btn-warning.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(248, 176, 66, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-warning.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(248, 176, 66, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-info.mbsc-btn {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-btn-info.mbsc-btn.mbsc-btn-flat {
  color: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-btn-info.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(91, 183, 197, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-info.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(91, 183, 197, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-light.mbsc-btn {
  background: #e6e6e6;
}
.mbsc-mobiscroll.mbsc-btn-light.mbsc-btn.mbsc-btn-flat {
  color: #a6a6a6;
}
.mbsc-mobiscroll.mbsc-btn-light.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  color: #a6a6a6;
  background: rgba(166, 166, 166, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-light.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(166, 166, 166, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-dark.mbsc-btn {
  background: #47494a;
}
.mbsc-mobiscroll.mbsc-btn-dark.mbsc-btn.mbsc-btn-flat {
  color: #47494a;
}
.mbsc-mobiscroll.mbsc-btn-dark.mbsc-btn.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(71, 73, 74, 0.2);
}
.mbsc-mobiscroll.mbsc-btn-dark.mbsc-btn.mbsc-btn-flat.mbsc-active {
  background: rgba(71, 73, 74, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-flat.mbsc-btn, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn {
  background: transparent;
}
.mbsc-mobiscroll .mbsc-btn-group,
.mbsc-mobiscroll .mbsc-btn-group-justified {
  margin: 0.5em;
}
.mbsc-mobiscroll .mbsc-btn-group-block {
  margin: 0.5em 1em;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-active {
  opacity: 1;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-primary {
  border-color: #3f97f6;
  color: #3f97f6;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-primary.mbsc-active {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-secondary {
  border-color: #90979e;
  color: #90979e;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-secondary.mbsc-active {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-success {
  border-color: #43be5f;
  color: #43be5f;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-success.mbsc-active {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-danger {
  border-color: #f5504e;
  color: #f5504e;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-danger.mbsc-active {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-warning {
  border-color: #f8b042;
  color: #f8b042;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-warning.mbsc-active {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-info {
  border-color: #5bb7c5;
  color: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-info.mbsc-active {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-light {
  border-color: #a6a6a6;
  color: #a6a6a6;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-light.mbsc-active {
  background: #a6a6a6;
  color: #e6e6e6;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-dark {
  border-color: #47494a;
  color: #47494a;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-dark.mbsc-active {
  background: #47494a;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-switch {
  padding: 1em 4.375em 1em 1em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-switch {
  padding: 1em 1em 1em 4.375em;
}
.mbsc-mobiscroll .mbsc-switch-track {
  right: 1em;
  width: 2.375em;
  height: 0.875em;
  padding: 0 0.75em;
  margin-top: -0.4375em;
  border-radius: 1.25em;
}
.mbsc-mobiscroll.mbsc-rtl .mbsc-switch-track {
  right: auto;
  left: 1em;
}
.mbsc-mobiscroll .mbsc-switch-handle {
  top: 0.25em;
  left: 0.25em;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 1.25em;
}
.mbsc-mobiscroll.mbsc-rtl .mbsc-switch-handle {
  right: 0.25em;
}
.mbsc-mobiscroll .mbsc-active .mbsc-switch-handle {
  transform: scale(1);
}
.mbsc-mobiscroll.mbsc-switch input:disabled + .mbsc-switch-track {
  opacity: 0.7;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-primary input:checked + .mbsc-switch-track {
  background: #a0ccfb;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-primary input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-secondary input:checked + .mbsc-switch-track {
  background: #c6cace;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-secondary input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-success input:checked + .mbsc-switch-track {
  background: #8fd8a0;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-success input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-danger input:checked + .mbsc-switch-track {
  background: #faafaf;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-danger input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-warning input:checked + .mbsc-switch-track {
  background: #fcd9a4;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-warning input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-info input:checked + .mbsc-switch-track {
  background: #a6d8e0;
}
.mbsc-mobiscroll.mbsc-switch.mbsc-switch-info input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-segmented {
  padding: 0.5em 1em;
}
.mbsc-mobiscroll .mbsc-segmented-content {
  height: 2.28571428em;
  margin: 0 -0.071428em;
  line-height: 2.28575em;
  padding: 0 0.285714em;
  text-transform: uppercase;
}
.mbsc-mobiscroll.mbsc-ltr.mbsc-stepper-cont {
  padding: 1.75em 12.875em 1.75em 1em;
}
.mbsc-mobiscroll.mbsc-rtl.mbsc-stepper-cont {
  padding: 1.75em 1em 1.75em 12.875em;
}
.mbsc-mobiscroll .mbsc-stepper {
  margin-top: -1.125em;
}
.mbsc-mobiscroll.mbsc-segmented input:disabled ~ .mbsc-segmented-item .mbsc-segmented-content, .mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-disabled .mbsc-segmented-content, .mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item input:disabled + .mbsc-segmented-content {
  background: transparent;
}
.mbsc-mobiscroll .mbsc-segmented-primary .mbsc-segmented-content {
  border-color: #3f97f6;
  color: #3f97f6;
}
.mbsc-mobiscroll .mbsc-segmented-primary.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #3f97f6;
}
.mbsc-mobiscroll .mbsc-segmented-primary.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(63, 151, 246, 0.35);
}
.mbsc-mobiscroll .mbsc-segmented-secondary .mbsc-segmented-content {
  border-color: #90979e;
  color: #90979e;
}
.mbsc-mobiscroll .mbsc-segmented-secondary.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #90979e;
}
.mbsc-mobiscroll .mbsc-segmented-secondary.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(144, 151, 158, 0.35);
}
.mbsc-mobiscroll .mbsc-segmented-success .mbsc-segmented-content {
  border-color: #43be5f;
  color: #43be5f;
}
.mbsc-mobiscroll .mbsc-segmented-success.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #43be5f;
}
.mbsc-mobiscroll .mbsc-segmented-success.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(67, 190, 95, 0.35);
}
.mbsc-mobiscroll .mbsc-segmented-danger .mbsc-segmented-content {
  border-color: #f5504e;
  color: #f5504e;
}
.mbsc-mobiscroll .mbsc-segmented-danger.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #f5504e;
}
.mbsc-mobiscroll .mbsc-segmented-danger.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(245, 80, 78, 0.35);
}
.mbsc-mobiscroll .mbsc-segmented-warning .mbsc-segmented-content {
  border-color: #f8b042;
  color: #f8b042;
}
.mbsc-mobiscroll .mbsc-segmented-warning.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #f8b042;
}
.mbsc-mobiscroll .mbsc-segmented-warning.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(248, 176, 66, 0.35);
}
.mbsc-mobiscroll .mbsc-segmented-info .mbsc-segmented-content {
  border-color: #5bb7c5;
  color: #5bb7c5;
}
.mbsc-mobiscroll .mbsc-segmented-info.mbsc-segmented-item input.mbsc-control:checked + .mbsc-segmented-content {
  background: #5bb7c5;
}
.mbsc-mobiscroll .mbsc-segmented-info.mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(91, 183, 197, 0.35);
}
.mbsc-mobiscroll.mbsc-stepper-primary .mbsc-segmented-content {
  border-color: #3f97f6;
  color: #3f97f6;
}
.mbsc-mobiscroll.mbsc-stepper-primary .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #3f97f6;
}
.mbsc-mobiscroll.mbsc-stepper-secondary .mbsc-segmented-content {
  border-color: #90979e;
  color: #90979e;
}
.mbsc-mobiscroll.mbsc-stepper-secondary .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #90979e;
}
.mbsc-mobiscroll.mbsc-stepper-success .mbsc-segmented-content {
  border-color: #43be5f;
  color: #43be5f;
}
.mbsc-mobiscroll.mbsc-stepper-success .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #43be5f;
}
.mbsc-mobiscroll.mbsc-stepper-danger .mbsc-segmented-content {
  border-color: #f5504e;
  color: #f5504e;
}
.mbsc-mobiscroll.mbsc-stepper-danger .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #f5504e;
}
.mbsc-mobiscroll.mbsc-stepper-warning .mbsc-segmented-content {
  border-color: #f8b042;
  color: #f8b042;
}
.mbsc-mobiscroll.mbsc-stepper-warning .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #f8b042;
}
.mbsc-mobiscroll.mbsc-stepper-info .mbsc-segmented-content {
  border-color: #5bb7c5;
  color: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-stepper-info .mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content {
  background: #5bb7c5;
}
.mbsc-mobiscroll.mbsc-no-touch {
  /* Segmented hover color styles */
  /* Stepper hover color styles */
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-primary.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(63, 151, 246, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-secondary.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(144, 151, 158, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-success.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(67, 190, 95, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-danger.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(245, 80, 78, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-warning.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(248, 176, 66, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-info.mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(91, 183, 197, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-primary .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(63, 151, 246, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-secondary .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(144, 151, 158, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-success .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(67, 190, 95, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-danger .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(245, 80, 78, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-warning .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(248, 176, 66, 0.35);
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-stepper-info .mbsc-stepper .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(91, 183, 197, 0.35);
}

.mbsc-mobiscroll {
  /* Form grid */
  /* Radio */
  /* Buttons */
  /* Outline buttons */
  /* Switch */
  /* Stepper and Segmented */
}
.mbsc-mobiscroll.mbsc-form {
  background: #f7f7f7;
  color: #454545;
}
.mbsc-mobiscroll.mbsc-control-w {
  color: #454545;
}
.mbsc-mobiscroll.mbsc-form *::-moz-selection, .mbsc-mobiscroll.mbsc-control-w *::-moz-selection {
  color: #ffffff;
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-form *::-moz-selection, .mbsc-mobiscroll.mbsc-control-w *::-moz-selection, .mbsc-mobiscroll.mbsc-form *::selection, .mbsc-mobiscroll.mbsc-control-w *::selection {
  color: #ffffff;
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-divider,
.mbsc-mobiscroll .mbsc-form-group-title {
  background: #f7f7f7;
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-err-msg,
.mbsc-mobiscroll .mbsc-err .mbsc-label {
  color: #de3226;
}
.mbsc-mobiscroll .mbsc-checkbox-box {
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-checkbox-box:after {
  border-bottom: 0.125em solid white;
  border-left: 0.125em solid white;
}
.mbsc-mobiscroll.mbsc-checkbox input:disabled + .mbsc-checkbox-box {
  background: #d6d6d6;
}
.mbsc-mobiscroll .mbsc-radio-box {
  border: 0.125em solid hsl(42, 27%, 41%);
}
.mbsc-mobiscroll .mbsc-radio-box:after {
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-radio input:checked + .mbsc-radio-box {
  background: transparent;
}
.mbsc-mobiscroll.mbsc-radio input:disabled + .mbsc-radio-box {
  border-color: #d6d6d6;
}
.mbsc-mobiscroll.mbsc-radio input:disabled + .mbsc-radio-box:after {
  background: #d6d6d6;
}
.mbsc-mobiscroll.mbsc-btn {
  background: hsl(42, 27%, 41%);
  color: #efefef;
}
.mbsc-mobiscroll.mbsc-btn:disabled {
  background: #dedede;
}
.mbsc-mobiscroll.mbsc-no-touch.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(247, 247, 247, 0.1);
}
.mbsc-mobiscroll.mbsc-btn-flat {
  background: transparent;
  color: hsl(42, 27%, 41%);
  border-color: transparent;
}
.mbsc-mobiscroll.mbsc-btn-flat.mbsc-btn.mbsc-active {
  background: rgba(133, 116, 76, 0.3);
}
.mbsc-mobiscroll.mbsc-btn-flat:disabled {
  color: #c7c7c7;
  background: transparent;
}
.mbsc-mobiscroll.mbsc-btn-light.mbsc-btn {
  color: #000;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn {
  border: 1px solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-active {
  background: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-primary.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-secondary.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-success.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-danger.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-warning.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-info.mbsc-active, .mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-btn-dark.mbsc-active {
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-btn.mbsc-btn-outline:disabled {
  color: #dedede;
  border-color: #dedede;
  background: transparent;
}
.mbsc-mobiscroll .mbsc-switch-track {
  background: #dedede;
}
.mbsc-mobiscroll .mbsc-switch-handle {
  background: #c7c7c7;
}
.mbsc-mobiscroll.mbsc-switch input:checked + .mbsc-switch-track {
  background: #bbb096;
}
.mbsc-mobiscroll.mbsc-switch input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-switch input:disabled + .mbsc-switch-track {
  background: #d6d6d6;
}
.mbsc-mobiscroll.mbsc-switch input:disabled + .mbsc-switch-track .mbsc-switch-handle {
  background: #e3e3e3;
}
.mbsc-mobiscroll .mbsc-segmented-content {
  border: 0.142857em solid hsl(42, 27%, 41%);
  color: hsl(42, 27%, 41%);
}
.mbsc-mobiscroll.mbsc-stepper input {
  color: #454545;
}
.mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content, .mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item input:checked + .mbsc-segmented-content {
  background: hsl(42, 27%, 41%);
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(133, 116, 76, 0.3);
}
.mbsc-mobiscroll.mbsc-segmented input:disabled ~ .mbsc-segmented-item .mbsc-segmented-content, .mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-disabled .mbsc-segmented-content, .mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item input:disabled + .mbsc-segmented-content {
  color: #d6d6d6;
  border-color: #d6d6d6;
}
.mbsc-mobiscroll .mbsc-stepper input:disabled {
  color: #d6d6d6;
  -webkit-text-fill-color: #d6d6d6;
}
.mbsc-mobiscroll.mbsc-segmented input:disabled:checked + .mbsc-segmented-content {
  border-color: #dedede;
  background: #dedede;
  color: #efefef;
}
.mbsc-mobiscroll.mbsc-stepper .mbsc-active.mbsc-disabled .mbsc-segmented-content {
  background: transparent;
  color: #d6d6d6;
}
.mbsc-mobiscroll.mbsc-no-touch .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(133, 116, 76, 0.1);
}

.mbsc-grid,
.mbsc-grid-unresp,
.mbsc-grid-fixed {
  width: 100%;
  padding-right: 1em;
  padding-left: 1em;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.mbsc-grid *,
.mbsc-grid-unresp *,
.mbsc-grid-fixed * {
  box-sizing: border-box;
}

.mbsc-no-padding .mbsc-col,
.mbsc-no-padding [class*=mbsc-col-],
.mbsc-form-grid .mbsc-col,
.mbsc-form-grid [class*=mbsc-col-] {
  padding-right: 0;
  padding-left: 0;
}

.mbsc-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1em;
  margin-left: -1em;
}

.mbsc-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.mbsc-col-1,
.mbsc-col-2,
.mbsc-col-3,
.mbsc-col-4,
.mbsc-col-5,
.mbsc-col-6,
.mbsc-col-7,
.mbsc-col-8,
.mbsc-col-9,
.mbsc-col-10,
.mbsc-col-11,
.mbsc-col-12,
.mbsc-col,
.mbsc-col-auto,
.mbsc-col-sm-1,
.mbsc-col-sm-2,
.mbsc-col-sm-3,
.mbsc-col-sm-4,
.mbsc-col-sm-5,
.mbsc-col-sm-6,
.mbsc-col-sm-7,
.mbsc-col-sm-8,
.mbsc-col-sm-9,
.mbsc-col-sm-10,
.mbsc-col-sm-11,
.mbsc-col-sm-12,
.mbsc-col-sm,
.mbsc-col-sm-auto,
.mbsc-col-md-1,
.mbsc-col-md-2,
.mbsc-col-md-3,
.mbsc-col-md-4,
.mbsc-col-md-5,
.mbsc-col-md-6,
.mbsc-col-md-7,
.mbsc-col-md-8,
.mbsc-col-md-9,
.mbsc-col-md-10,
.mbsc-col-md-11,
.mbsc-col-md-12,
.mbsc-col-md,
.mbsc-col-md-auto,
.mbsc-col-lg-1,
.mbsc-col-lg-2,
.mbsc-col-lg-3,
.mbsc-col-lg-4,
.mbsc-col-lg-5,
.mbsc-col-lg-6,
.mbsc-col-lg-7,
.mbsc-col-lg-8,
.mbsc-col-lg-9,
.mbsc-col-lg-10,
.mbsc-col-lg-11,
.mbsc-col-lg-12,
.mbsc-col-lg,
.mbsc-col-lg-auto,
.mbsc-col-xl-1,
.mbsc-col-xl-2,
.mbsc-col-xl-3,
.mbsc-col-xl-4,
.mbsc-col-xl-5,
.mbsc-col-xl-6,
.mbsc-col-xl-7,
.mbsc-col-xl-8,
.mbsc-col-xl-9,
.mbsc-col-xl-10,
.mbsc-col-xl-11,
.mbsc-col-xl-12,
.mbsc-col-xl,
.mbsc-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 1em;
  padding-left: 1em;
}

.mbsc-col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.mbsc-col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.mbsc-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.mbsc-col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.mbsc-col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.mbsc-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.mbsc-col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.mbsc-col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.mbsc-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.mbsc-col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.mbsc-col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.mbsc-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mbsc-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.mbsc-offset-1 {
  margin-left: 8.333333%;
}

.mbsc-offset-2 {
  margin-left: 16.666667%;
}

.mbsc-offset-3 {
  margin-left: 25%;
}

.mbsc-offset-4 {
  margin-left: 33.333333%;
}

.mbsc-offset-5 {
  margin-left: 41.666667%;
}

.mbsc-offset-6 {
  margin-left: 50%;
}

.mbsc-offset-7 {
  margin-left: 58.333333%;
}

.mbsc-offset-8 {
  margin-left: 66.666667%;
}

.mbsc-offset-9 {
  margin-left: 75%;
}

.mbsc-offset-10 {
  margin-left: 83.333333%;
}

.mbsc-offset-11 {
  margin-left: 91.666667%;
}

.mbsc-grid-sm.mbsc-grid-fixed {
  max-width: 540px;
}
.mbsc-grid-sm .mbsc-col-sm {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.mbsc-grid-sm .mbsc-col-sm-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.mbsc-grid-sm .mbsc-col-sm-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.mbsc-grid-sm .mbsc-col-sm-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.mbsc-grid-sm .mbsc-col-sm-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.mbsc-grid-sm .mbsc-col-sm-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.mbsc-grid-sm .mbsc-col-sm-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.mbsc-grid-sm .mbsc-col-sm-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mbsc-grid-sm .mbsc-col-sm-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.mbsc-grid-sm .mbsc-col-sm-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.mbsc-grid-sm .mbsc-col-sm-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.mbsc-grid-sm .mbsc-col-sm-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.mbsc-grid-sm .mbsc-col-sm-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.mbsc-grid-sm .mbsc-col-sm-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mbsc-grid-sm .mbsc-offset-sm-0 {
  margin-left: 0;
}
.mbsc-grid-sm .mbsc-offset-sm-1 {
  margin-left: 8.333333%;
}
.mbsc-grid-sm .mbsc-offset-sm-2 {
  margin-left: 16.666667%;
}
.mbsc-grid-sm .mbsc-offset-sm-3 {
  margin-left: 25%;
}
.mbsc-grid-sm .mbsc-offset-sm-4 {
  margin-left: 33.333333%;
}
.mbsc-grid-sm .mbsc-offset-sm-5 {
  margin-left: 41.666667%;
}
.mbsc-grid-sm .mbsc-offset-sm-6 {
  margin-left: 50%;
}
.mbsc-grid-sm .mbsc-offset-sm-7 {
  margin-left: 58.333333%;
}
.mbsc-grid-sm .mbsc-offset-sm-8 {
  margin-left: 66.666667%;
}
.mbsc-grid-sm .mbsc-offset-sm-9 {
  margin-left: 75%;
}
.mbsc-grid-sm .mbsc-offset-sm-10 {
  margin-left: 83.333333%;
}
.mbsc-grid-sm .mbsc-offset-sm-11 {
  margin-left: 91.666667%;
}
.mbsc-grid-sm .mbsc-push-sm-0 {
  left: auto;
}
.mbsc-grid-sm .mbsc-push-sm-1 {
  left: 8.33333333%;
}
.mbsc-grid-sm .mbsc-push-sm-2 {
  left: 16.66666667%;
}
.mbsc-grid-sm .mbsc-push-sm-3 {
  left: 25%;
}
.mbsc-grid-sm .mbsc-push-sm-4 {
  left: 33.33333333%;
}
.mbsc-grid-sm .mbsc-push-sm-5 {
  left: 41.66666667%;
}
.mbsc-grid-sm .mbsc-push-sm-6 {
  left: 50%;
}
.mbsc-grid-sm .mbsc-push-sm-7 {
  left: 58.33333333%;
}
.mbsc-grid-sm .mbsc-push-sm-8 {
  left: 66.66666667%;
}
.mbsc-grid-sm .mbsc-push-sm-9 {
  left: 75%;
}
.mbsc-grid-sm .mbsc-push-sm-10 {
  left: 83.33333333%;
}
.mbsc-grid-sm .mbsc-push-sm-11 {
  left: 91.66666667%;
}
.mbsc-grid-sm .mbsc-push-sm-12 {
  left: 100%;
}
.mbsc-grid-sm .mbsc-pull-sm-0 {
  right: auto;
}
.mbsc-grid-sm .mbsc-pull-sm-1 {
  right: 8.33333333%;
}
.mbsc-grid-sm .mbsc-pull-sm-2 {
  right: 16.66666667%;
}
.mbsc-grid-sm .mbsc-pull-sm-3 {
  right: 25%;
}
.mbsc-grid-sm .mbsc-pull-sm-4 {
  right: 33.33333333%;
}
.mbsc-grid-sm .mbsc-pull-sm-5 {
  right: 41.66666667%;
}
.mbsc-grid-sm .mbsc-pull-sm-6 {
  right: 50%;
}
.mbsc-grid-sm .mbsc-pull-sm-7 {
  right: 58.33333333%;
}
.mbsc-grid-sm .mbsc-pull-sm-8 {
  right: 66.66666667%;
}
.mbsc-grid-sm .mbsc-pull-sm-9 {
  right: 75%;
}
.mbsc-grid-sm .mbsc-pull-sm-10 {
  right: 83.33333333%;
}
.mbsc-grid-sm .mbsc-pull-sm-11 {
  right: 91.66666667%;
}
.mbsc-grid-sm .mbsc-pull-sm-12 {
  right: 100%;
}

@media (min-width: 576px) {
  .mbsc-grid.mbsc-grid-fixed {
    max-width: 540px;
  }
  .mbsc-grid .mbsc-col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .mbsc-grid .mbsc-col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .mbsc-grid .mbsc-col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .mbsc-grid .mbsc-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .mbsc-grid .mbsc-col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .mbsc-grid .mbsc-col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .mbsc-grid .mbsc-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mbsc-grid .mbsc-col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .mbsc-grid .mbsc-col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .mbsc-grid .mbsc-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .mbsc-grid .mbsc-col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .mbsc-grid .mbsc-col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .mbsc-grid .mbsc-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-offset-sm-0 {
    margin-left: 0;
  }
  .mbsc-grid .mbsc-offset-sm-1 {
    margin-left: 8.333333%;
  }
  .mbsc-grid .mbsc-offset-sm-2 {
    margin-left: 16.666667%;
  }
  .mbsc-grid .mbsc-offset-sm-3 {
    margin-left: 25%;
  }
  .mbsc-grid .mbsc-offset-sm-4 {
    margin-left: 33.333333%;
  }
  .mbsc-grid .mbsc-offset-sm-5 {
    margin-left: 41.666667%;
  }
  .mbsc-grid .mbsc-offset-sm-6 {
    margin-left: 50%;
  }
  .mbsc-grid .mbsc-offset-sm-7 {
    margin-left: 58.333333%;
  }
  .mbsc-grid .mbsc-offset-sm-8 {
    margin-left: 66.666667%;
  }
  .mbsc-grid .mbsc-offset-sm-9 {
    margin-left: 75%;
  }
  .mbsc-grid .mbsc-offset-sm-10 {
    margin-left: 83.333333%;
  }
  .mbsc-grid .mbsc-offset-sm-11 {
    margin-left: 91.666667%;
  }
  .mbsc-grid .mbsc-push-sm-0 {
    left: auto;
  }
  .mbsc-grid .mbsc-push-sm-1 {
    left: 8.33333333%;
  }
  .mbsc-grid .mbsc-push-sm-2 {
    left: 16.66666667%;
  }
  .mbsc-grid .mbsc-push-sm-3 {
    left: 25%;
  }
  .mbsc-grid .mbsc-push-sm-4 {
    left: 33.33333333%;
  }
  .mbsc-grid .mbsc-push-sm-5 {
    left: 41.66666667%;
  }
  .mbsc-grid .mbsc-push-sm-6 {
    left: 50%;
  }
  .mbsc-grid .mbsc-push-sm-7 {
    left: 58.33333333%;
  }
  .mbsc-grid .mbsc-push-sm-8 {
    left: 66.66666667%;
  }
  .mbsc-grid .mbsc-push-sm-9 {
    left: 75%;
  }
  .mbsc-grid .mbsc-push-sm-10 {
    left: 83.33333333%;
  }
  .mbsc-grid .mbsc-push-sm-11 {
    left: 91.66666667%;
  }
  .mbsc-grid .mbsc-push-sm-12 {
    left: 100%;
  }
  .mbsc-grid .mbsc-pull-sm-0 {
    right: auto;
  }
  .mbsc-grid .mbsc-pull-sm-1 {
    right: 8.33333333%;
  }
  .mbsc-grid .mbsc-pull-sm-2 {
    right: 16.66666667%;
  }
  .mbsc-grid .mbsc-pull-sm-3 {
    right: 25%;
  }
  .mbsc-grid .mbsc-pull-sm-4 {
    right: 33.33333333%;
  }
  .mbsc-grid .mbsc-pull-sm-5 {
    right: 41.66666667%;
  }
  .mbsc-grid .mbsc-pull-sm-6 {
    right: 50%;
  }
  .mbsc-grid .mbsc-pull-sm-7 {
    right: 58.33333333%;
  }
  .mbsc-grid .mbsc-pull-sm-8 {
    right: 66.66666667%;
  }
  .mbsc-grid .mbsc-pull-sm-9 {
    right: 75%;
  }
  .mbsc-grid .mbsc-pull-sm-10 {
    right: 83.33333333%;
  }
  .mbsc-grid .mbsc-pull-sm-11 {
    right: 91.66666667%;
  }
  .mbsc-grid .mbsc-pull-sm-12 {
    right: 100%;
  }
}
.mbsc-grid-md.mbsc-grid-fixed {
  max-width: 720px;
}
.mbsc-grid-md .mbsc-col-md {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.mbsc-grid-md .mbsc-col-md-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.mbsc-grid-md .mbsc-col-md-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.mbsc-grid-md .mbsc-col-md-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.mbsc-grid-md .mbsc-col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.mbsc-grid-md .mbsc-col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.mbsc-grid-md .mbsc-col-md-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.mbsc-grid-md .mbsc-col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mbsc-grid-md .mbsc-col-md-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.mbsc-grid-md .mbsc-col-md-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.mbsc-grid-md .mbsc-col-md-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.mbsc-grid-md .mbsc-col-md-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.mbsc-grid-md .mbsc-col-md-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.mbsc-grid-md .mbsc-col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mbsc-grid-md .mbsc-offset-md-0 {
  margin-left: 0;
}
.mbsc-grid-md .mbsc-offset-md-1 {
  margin-left: 8.333333%;
}
.mbsc-grid-md .mbsc-offset-md-2 {
  margin-left: 16.666667%;
}
.mbsc-grid-md .mbsc-offset-md-3 {
  margin-left: 25%;
}
.mbsc-grid-md .mbsc-offset-md-4 {
  margin-left: 33.333333%;
}
.mbsc-grid-md .mbsc-offset-md-5 {
  margin-left: 41.666667%;
}
.mbsc-grid-md .mbsc-offset-md-6 {
  margin-left: 50%;
}
.mbsc-grid-md .mbsc-offset-md-7 {
  margin-left: 58.333333%;
}
.mbsc-grid-md .mbsc-offset-md-8 {
  margin-left: 66.666667%;
}
.mbsc-grid-md .mbsc-offset-md-9 {
  margin-left: 75%;
}
.mbsc-grid-md .mbsc-offset-md-10 {
  margin-left: 83.333333%;
}
.mbsc-grid-md .mbsc-offset-md-11 {
  margin-left: 91.666667%;
}
.mbsc-grid-md .mbsc-push-md-0 {
  left: auto;
}
.mbsc-grid-md .mbsc-push-md-1 {
  left: 8.33333333%;
}
.mbsc-grid-md .mbsc-push-md-2 {
  left: 16.66666667%;
}
.mbsc-grid-md .mbsc-push-md-3 {
  left: 25%;
}
.mbsc-grid-md .mbsc-push-md-4 {
  left: 33.33333333%;
}
.mbsc-grid-md .mbsc-push-md-5 {
  left: 41.66666667%;
}
.mbsc-grid-md .mbsc-push-md-6 {
  left: 50%;
}
.mbsc-grid-md .mbsc-push-md-7 {
  left: 58.33333333%;
}
.mbsc-grid-md .mbsc-push-md-8 {
  left: 66.66666667%;
}
.mbsc-grid-md .mbsc-push-md-9 {
  left: 75%;
}
.mbsc-grid-md .mbsc-push-md-10 {
  left: 83.33333333%;
}
.mbsc-grid-md .mbsc-push-md-11 {
  left: 91.66666667%;
}
.mbsc-grid-md .mbsc-push-md-12 {
  left: 100%;
}
.mbsc-grid-md .mbsc-pull-md-0 {
  right: auto;
}
.mbsc-grid-md .mbsc-pull-md-1 {
  right: 8.33333333%;
}
.mbsc-grid-md .mbsc-pull-md-2 {
  right: 16.66666667%;
}
.mbsc-grid-md .mbsc-pull-md-3 {
  right: 25%;
}
.mbsc-grid-md .mbsc-pull-md-4 {
  right: 33.33333333%;
}
.mbsc-grid-md .mbsc-pull-md-5 {
  right: 41.66666667%;
}
.mbsc-grid-md .mbsc-pull-md-6 {
  right: 50%;
}
.mbsc-grid-md .mbsc-pull-md-7 {
  right: 58.33333333%;
}
.mbsc-grid-md .mbsc-pull-md-8 {
  right: 66.66666667%;
}
.mbsc-grid-md .mbsc-pull-md-9 {
  right: 75%;
}
.mbsc-grid-md .mbsc-pull-md-10 {
  right: 83.33333333%;
}
.mbsc-grid-md .mbsc-pull-md-11 {
  right: 91.66666667%;
}
.mbsc-grid-md .mbsc-pull-md-12 {
  right: 100%;
}

@media (min-width: 768px) {
  .mbsc-grid.mbsc-grid-fixed {
    max-width: 720px;
  }
  .mbsc-grid .mbsc-col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .mbsc-grid .mbsc-col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .mbsc-grid .mbsc-col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .mbsc-grid .mbsc-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .mbsc-grid .mbsc-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .mbsc-grid .mbsc-col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .mbsc-grid .mbsc-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mbsc-grid .mbsc-col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .mbsc-grid .mbsc-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .mbsc-grid .mbsc-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .mbsc-grid .mbsc-col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .mbsc-grid .mbsc-col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .mbsc-grid .mbsc-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-offset-md-0 {
    margin-left: 0;
  }
  .mbsc-grid .mbsc-offset-md-1 {
    margin-left: 8.333333%;
  }
  .mbsc-grid .mbsc-offset-md-2 {
    margin-left: 16.666667%;
  }
  .mbsc-grid .mbsc-offset-md-3 {
    margin-left: 25%;
  }
  .mbsc-grid .mbsc-offset-md-4 {
    margin-left: 33.333333%;
  }
  .mbsc-grid .mbsc-offset-md-5 {
    margin-left: 41.666667%;
  }
  .mbsc-grid .mbsc-offset-md-6 {
    margin-left: 50%;
  }
  .mbsc-grid .mbsc-offset-md-7 {
    margin-left: 58.333333%;
  }
  .mbsc-grid .mbsc-offset-md-8 {
    margin-left: 66.666667%;
  }
  .mbsc-grid .mbsc-offset-md-9 {
    margin-left: 75%;
  }
  .mbsc-grid .mbsc-offset-md-10 {
    margin-left: 83.333333%;
  }
  .mbsc-grid .mbsc-offset-md-11 {
    margin-left: 91.666667%;
  }
  .mbsc-grid .mbsc-push-md-0 {
    left: auto;
  }
  .mbsc-grid .mbsc-push-md-1 {
    left: 8.33333333%;
  }
  .mbsc-grid .mbsc-push-md-2 {
    left: 16.66666667%;
  }
  .mbsc-grid .mbsc-push-md-3 {
    left: 25%;
  }
  .mbsc-grid .mbsc-push-md-4 {
    left: 33.33333333%;
  }
  .mbsc-grid .mbsc-push-md-5 {
    left: 41.66666667%;
  }
  .mbsc-grid .mbsc-push-md-6 {
    left: 50%;
  }
  .mbsc-grid .mbsc-push-md-7 {
    left: 58.33333333%;
  }
  .mbsc-grid .mbsc-push-md-8 {
    left: 66.66666667%;
  }
  .mbsc-grid .mbsc-push-md-9 {
    left: 75%;
  }
  .mbsc-grid .mbsc-push-md-10 {
    left: 83.33333333%;
  }
  .mbsc-grid .mbsc-push-md-11 {
    left: 91.66666667%;
  }
  .mbsc-grid .mbsc-push-md-12 {
    left: 100%;
  }
  .mbsc-grid .mbsc-pull-md-0 {
    right: auto;
  }
  .mbsc-grid .mbsc-pull-md-1 {
    right: 8.33333333%;
  }
  .mbsc-grid .mbsc-pull-md-2 {
    right: 16.66666667%;
  }
  .mbsc-grid .mbsc-pull-md-3 {
    right: 25%;
  }
  .mbsc-grid .mbsc-pull-md-4 {
    right: 33.33333333%;
  }
  .mbsc-grid .mbsc-pull-md-5 {
    right: 41.66666667%;
  }
  .mbsc-grid .mbsc-pull-md-6 {
    right: 50%;
  }
  .mbsc-grid .mbsc-pull-md-7 {
    right: 58.33333333%;
  }
  .mbsc-grid .mbsc-pull-md-8 {
    right: 66.66666667%;
  }
  .mbsc-grid .mbsc-pull-md-9 {
    right: 75%;
  }
  .mbsc-grid .mbsc-pull-md-10 {
    right: 83.33333333%;
  }
  .mbsc-grid .mbsc-pull-md-11 {
    right: 91.66666667%;
  }
  .mbsc-grid .mbsc-pull-md-12 {
    right: 100%;
  }
}
.mbsc-grid-lg.mbsc-grid-fixed {
  max-width: 960px;
}
.mbsc-grid-lg .mbsc-col-lg {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.mbsc-grid-lg .mbsc-col-lg-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.mbsc-grid-lg .mbsc-col-lg-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.mbsc-grid-lg .mbsc-col-lg-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.mbsc-grid-lg .mbsc-col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.mbsc-grid-lg .mbsc-col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.mbsc-grid-lg .mbsc-col-lg-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.mbsc-grid-lg .mbsc-col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mbsc-grid-lg .mbsc-col-lg-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.mbsc-grid-lg .mbsc-col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.mbsc-grid-lg .mbsc-col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.mbsc-grid-lg .mbsc-col-lg-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.mbsc-grid-lg .mbsc-col-lg-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.mbsc-grid-lg .mbsc-col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mbsc-grid-lg .mbsc-offset-lg-0 {
  margin-left: 0;
}
.mbsc-grid-lg .mbsc-offset-lg-1 {
  margin-left: 8.333333%;
}
.mbsc-grid-lg .mbsc-offset-lg-2 {
  margin-left: 16.666667%;
}
.mbsc-grid-lg .mbsc-offset-lg-3 {
  margin-left: 25%;
}
.mbsc-grid-lg .mbsc-offset-lg-4 {
  margin-left: 33.333333%;
}
.mbsc-grid-lg .mbsc-offset-lg-5 {
  margin-left: 41.666667%;
}
.mbsc-grid-lg .mbsc-offset-lg-6 {
  margin-left: 50%;
}
.mbsc-grid-lg .mbsc-offset-lg-7 {
  margin-left: 58.333333%;
}
.mbsc-grid-lg .mbsc-offset-lg-8 {
  margin-left: 66.666667%;
}
.mbsc-grid-lg .mbsc-offset-lg-9 {
  margin-left: 75%;
}
.mbsc-grid-lg .mbsc-offset-lg-10 {
  margin-left: 83.333333%;
}
.mbsc-grid-lg .mbsc-offset-lg-11 {
  margin-left: 91.666667%;
}
.mbsc-grid-lg .mbsc-push-lg-0 {
  left: auto;
}
.mbsc-grid-lg .mbsc-push-lg-1 {
  left: 8.33333333%;
}
.mbsc-grid-lg .mbsc-push-lg-2 {
  left: 16.66666667%;
}
.mbsc-grid-lg .mbsc-push-lg-3 {
  left: 25%;
}
.mbsc-grid-lg .mbsc-push-lg-4 {
  left: 33.33333333%;
}
.mbsc-grid-lg .mbsc-push-lg-5 {
  left: 41.66666667%;
}
.mbsc-grid-lg .mbsc-push-lg-6 {
  left: 50%;
}
.mbsc-grid-lg .mbsc-push-lg-7 {
  left: 58.33333333%;
}
.mbsc-grid-lg .mbsc-push-lg-8 {
  left: 66.66666667%;
}
.mbsc-grid-lg .mbsc-push-lg-9 {
  left: 75%;
}
.mbsc-grid-lg .mbsc-push-lg-10 {
  left: 83.33333333%;
}
.mbsc-grid-lg .mbsc-push-lg-11 {
  left: 91.66666667%;
}
.mbsc-grid-lg .mbsc-push-lg-12 {
  left: 100%;
}
.mbsc-grid-lg .mbsc-pull-lg-0 {
  right: auto;
}
.mbsc-grid-lg .mbsc-pull-lg-1 {
  right: 8.33333333%;
}
.mbsc-grid-lg .mbsc-pull-lg-2 {
  right: 16.66666667%;
}
.mbsc-grid-lg .mbsc-pull-lg-3 {
  right: 25%;
}
.mbsc-grid-lg .mbsc-pull-lg-4 {
  right: 33.33333333%;
}
.mbsc-grid-lg .mbsc-pull-lg-5 {
  right: 41.66666667%;
}
.mbsc-grid-lg .mbsc-pull-lg-6 {
  right: 50%;
}
.mbsc-grid-lg .mbsc-pull-lg-7 {
  right: 58.33333333%;
}
.mbsc-grid-lg .mbsc-pull-lg-8 {
  right: 66.66666667%;
}
.mbsc-grid-lg .mbsc-pull-lg-9 {
  right: 75%;
}
.mbsc-grid-lg .mbsc-pull-lg-10 {
  right: 83.33333333%;
}
.mbsc-grid-lg .mbsc-pull-lg-11 {
  right: 91.66666667%;
}
.mbsc-grid-lg .mbsc-pull-lg-12 {
  right: 100%;
}

@media (min-width: 992px) {
  .mbsc-grid.mbsc-grid-fixed {
    max-width: 960px;
  }
  .mbsc-grid .mbsc-col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .mbsc-grid .mbsc-col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .mbsc-grid .mbsc-col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .mbsc-grid .mbsc-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .mbsc-grid .mbsc-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .mbsc-grid .mbsc-col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .mbsc-grid .mbsc-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mbsc-grid .mbsc-col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .mbsc-grid .mbsc-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .mbsc-grid .mbsc-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .mbsc-grid .mbsc-col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .mbsc-grid .mbsc-col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .mbsc-grid .mbsc-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-offset-lg-0 {
    margin-left: 0;
  }
  .mbsc-grid .mbsc-offset-lg-1 {
    margin-left: 8.333333%;
  }
  .mbsc-grid .mbsc-offset-lg-2 {
    margin-left: 16.666667%;
  }
  .mbsc-grid .mbsc-offset-lg-3 {
    margin-left: 25%;
  }
  .mbsc-grid .mbsc-offset-lg-4 {
    margin-left: 33.333333%;
  }
  .mbsc-grid .mbsc-offset-lg-5 {
    margin-left: 41.666667%;
  }
  .mbsc-grid .mbsc-offset-lg-6 {
    margin-left: 50%;
  }
  .mbsc-grid .mbsc-offset-lg-7 {
    margin-left: 58.333333%;
  }
  .mbsc-grid .mbsc-offset-lg-8 {
    margin-left: 66.666667%;
  }
  .mbsc-grid .mbsc-offset-lg-9 {
    margin-left: 75%;
  }
  .mbsc-grid .mbsc-offset-lg-10 {
    margin-left: 83.333333%;
  }
  .mbsc-grid .mbsc-offset-lg-11 {
    margin-left: 91.666667%;
  }
  .mbsc-grid .mbsc-push-lg-0 {
    left: auto;
  }
  .mbsc-grid .mbsc-push-lg-1 {
    left: 8.33333333%;
  }
  .mbsc-grid .mbsc-push-lg-2 {
    left: 16.66666667%;
  }
  .mbsc-grid .mbsc-push-lg-3 {
    left: 25%;
  }
  .mbsc-grid .mbsc-push-lg-4 {
    left: 33.33333333%;
  }
  .mbsc-grid .mbsc-push-lg-5 {
    left: 41.66666667%;
  }
  .mbsc-grid .mbsc-push-lg-6 {
    left: 50%;
  }
  .mbsc-grid .mbsc-push-lg-7 {
    left: 58.33333333%;
  }
  .mbsc-grid .mbsc-push-lg-8 {
    left: 66.66666667%;
  }
  .mbsc-grid .mbsc-push-lg-9 {
    left: 75%;
  }
  .mbsc-grid .mbsc-push-lg-10 {
    left: 83.33333333%;
  }
  .mbsc-grid .mbsc-push-lg-11 {
    left: 91.66666667%;
  }
  .mbsc-grid .mbsc-push-lg-12 {
    left: 100%;
  }
  .mbsc-grid .mbsc-pull-lg-0 {
    right: auto;
  }
  .mbsc-grid .mbsc-pull-lg-1 {
    right: 8.33333333%;
  }
  .mbsc-grid .mbsc-pull-lg-2 {
    right: 16.66666667%;
  }
  .mbsc-grid .mbsc-pull-lg-3 {
    right: 25%;
  }
  .mbsc-grid .mbsc-pull-lg-4 {
    right: 33.33333333%;
  }
  .mbsc-grid .mbsc-pull-lg-5 {
    right: 41.66666667%;
  }
  .mbsc-grid .mbsc-pull-lg-6 {
    right: 50%;
  }
  .mbsc-grid .mbsc-pull-lg-7 {
    right: 58.33333333%;
  }
  .mbsc-grid .mbsc-pull-lg-8 {
    right: 66.66666667%;
  }
  .mbsc-grid .mbsc-pull-lg-9 {
    right: 75%;
  }
  .mbsc-grid .mbsc-pull-lg-10 {
    right: 83.33333333%;
  }
  .mbsc-grid .mbsc-pull-lg-11 {
    right: 91.66666667%;
  }
  .mbsc-grid .mbsc-pull-lg-12 {
    right: 100%;
  }
}
.mbsc-grid-xl.mbsc-grid-fixed {
  max-width: 1140px;
}
.mbsc-grid-xl .mbsc-col-xl {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.mbsc-grid-xl .mbsc-col-xl-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.mbsc-grid-xl .mbsc-col-xl-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.mbsc-grid-xl .mbsc-col-xl-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.mbsc-grid-xl .mbsc-col-xl-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.mbsc-grid-xl .mbsc-col-xl-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.mbsc-grid-xl .mbsc-col-xl-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.mbsc-grid-xl .mbsc-col-xl-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.mbsc-grid-xl .mbsc-col-xl-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.mbsc-grid-xl .mbsc-col-xl-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.mbsc-grid-xl .mbsc-col-xl-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.mbsc-grid-xl .mbsc-col-xl-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.mbsc-grid-xl .mbsc-col-xl-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.mbsc-grid-xl .mbsc-col-xl-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.mbsc-grid-xl .mbsc-offset-xl-0 {
  margin-left: 0;
}
.mbsc-grid-xl .mbsc-offset-xl-1 {
  margin-left: 8.333333%;
}
.mbsc-grid-xl .mbsc-offset-xl-2 {
  margin-left: 16.666667%;
}
.mbsc-grid-xl .mbsc-offset-xl-3 {
  margin-left: 25%;
}
.mbsc-grid-xl .mbsc-offset-xl-4 {
  margin-left: 33.333333%;
}
.mbsc-grid-xl .mbsc-offset-xl-5 {
  margin-left: 41.666667%;
}
.mbsc-grid-xl .mbsc-offset-xl-6 {
  margin-left: 50%;
}
.mbsc-grid-xl .mbsc-offset-xl-7 {
  margin-left: 58.333333%;
}
.mbsc-grid-xl .mbsc-offset-xl-8 {
  margin-left: 66.666667%;
}
.mbsc-grid-xl .mbsc-offset-xl-9 {
  margin-left: 75%;
}
.mbsc-grid-xl .mbsc-offset-xl-10 {
  margin-left: 83.333333%;
}
.mbsc-grid-xl .mbsc-offset-xl-11 {
  margin-left: 91.666667%;
}
.mbsc-grid-xl .mbsc-push-xl-0 {
  left: auto;
}
.mbsc-grid-xl .mbsc-push-xl-1 {
  left: 8.33333333%;
}
.mbsc-grid-xl .mbsc-push-xl-2 {
  left: 16.66666667%;
}
.mbsc-grid-xl .mbsc-push-xl-3 {
  left: 25%;
}
.mbsc-grid-xl .mbsc-push-xl-4 {
  left: 33.33333333%;
}
.mbsc-grid-xl .mbsc-push-xl-5 {
  left: 41.66666667%;
}
.mbsc-grid-xl .mbsc-push-xl-6 {
  left: 50%;
}
.mbsc-grid-xl .mbsc-push-xl-7 {
  left: 58.33333333%;
}
.mbsc-grid-xl .mbsc-push-xl-8 {
  left: 66.66666667%;
}
.mbsc-grid-xl .mbsc-push-xl-9 {
  left: 75%;
}
.mbsc-grid-xl .mbsc-push-xl-10 {
  left: 83.33333333%;
}
.mbsc-grid-xl .mbsc-push-xl-11 {
  left: 91.66666667%;
}
.mbsc-grid-xl .mbsc-push-xl-12 {
  left: 100%;
}
.mbsc-grid-xl .mbsc-pull-xl-0 {
  right: auto;
}
.mbsc-grid-xl .mbsc-pull-xl-1 {
  right: 8.33333333%;
}
.mbsc-grid-xl .mbsc-pull-xl-2 {
  right: 16.66666667%;
}
.mbsc-grid-xl .mbsc-pull-xl-3 {
  right: 25%;
}
.mbsc-grid-xl .mbsc-pull-xl-4 {
  right: 33.33333333%;
}
.mbsc-grid-xl .mbsc-pull-xl-5 {
  right: 41.66666667%;
}
.mbsc-grid-xl .mbsc-pull-xl-6 {
  right: 50%;
}
.mbsc-grid-xl .mbsc-pull-xl-7 {
  right: 58.33333333%;
}
.mbsc-grid-xl .mbsc-pull-xl-8 {
  right: 66.66666667%;
}
.mbsc-grid-xl .mbsc-pull-xl-9 {
  right: 75%;
}
.mbsc-grid-xl .mbsc-pull-xl-10 {
  right: 83.33333333%;
}
.mbsc-grid-xl .mbsc-pull-xl-11 {
  right: 91.66666667%;
}
.mbsc-grid-xl .mbsc-pull-xl-12 {
  right: 100%;
}

@media (min-width: 1200px) {
  .mbsc-grid.mbsc-grid-fixed {
    max-width: 1140px;
  }
  .mbsc-grid .mbsc-col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .mbsc-grid .mbsc-col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .mbsc-grid .mbsc-col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .mbsc-grid .mbsc-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .mbsc-grid .mbsc-col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .mbsc-grid .mbsc-col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .mbsc-grid .mbsc-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mbsc-grid .mbsc-col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .mbsc-grid .mbsc-col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .mbsc-grid .mbsc-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .mbsc-grid .mbsc-col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .mbsc-grid .mbsc-col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .mbsc-grid .mbsc-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mbsc-grid .mbsc-offset-xl-0 {
    margin-left: 0;
  }
  .mbsc-grid .mbsc-offset-xl-1 {
    margin-left: 8.333333%;
  }
  .mbsc-grid .mbsc-offset-xl-2 {
    margin-left: 16.666667%;
  }
  .mbsc-grid .mbsc-offset-xl-3 {
    margin-left: 25%;
  }
  .mbsc-grid .mbsc-offset-xl-4 {
    margin-left: 33.333333%;
  }
  .mbsc-grid .mbsc-offset-xl-5 {
    margin-left: 41.666667%;
  }
  .mbsc-grid .mbsc-offset-xl-6 {
    margin-left: 50%;
  }
  .mbsc-grid .mbsc-offset-xl-7 {
    margin-left: 58.333333%;
  }
  .mbsc-grid .mbsc-offset-xl-8 {
    margin-left: 66.666667%;
  }
  .mbsc-grid .mbsc-offset-xl-9 {
    margin-left: 75%;
  }
  .mbsc-grid .mbsc-offset-xl-10 {
    margin-left: 83.333333%;
  }
  .mbsc-grid .mbsc-offset-xl-11 {
    margin-left: 91.666667%;
  }
  .mbsc-grid .mbsc-push-xl-0 {
    left: auto;
  }
  .mbsc-grid .mbsc-push-xl-1 {
    left: 8.33333333%;
  }
  .mbsc-grid .mbsc-push-xl-2 {
    left: 16.66666667%;
  }
  .mbsc-grid .mbsc-push-xl-3 {
    left: 25%;
  }
  .mbsc-grid .mbsc-push-xl-4 {
    left: 33.33333333%;
  }
  .mbsc-grid .mbsc-push-xl-5 {
    left: 41.66666667%;
  }
  .mbsc-grid .mbsc-push-xl-6 {
    left: 50%;
  }
  .mbsc-grid .mbsc-push-xl-7 {
    left: 58.33333333%;
  }
  .mbsc-grid .mbsc-push-xl-8 {
    left: 66.66666667%;
  }
  .mbsc-grid .mbsc-push-xl-9 {
    left: 75%;
  }
  .mbsc-grid .mbsc-push-xl-10 {
    left: 83.33333333%;
  }
  .mbsc-grid .mbsc-push-xl-11 {
    left: 91.66666667%;
  }
  .mbsc-grid .mbsc-push-xl-12 {
    left: 100%;
  }
  .mbsc-grid .mbsc-pull-xl-0 {
    right: auto;
  }
  .mbsc-grid .mbsc-pull-xl-1 {
    right: 8.33333333%;
  }
  .mbsc-grid .mbsc-pull-xl-2 {
    right: 16.66666667%;
  }
  .mbsc-grid .mbsc-pull-xl-3 {
    right: 25%;
  }
  .mbsc-grid .mbsc-pull-xl-4 {
    right: 33.33333333%;
  }
  .mbsc-grid .mbsc-pull-xl-5 {
    right: 41.66666667%;
  }
  .mbsc-grid .mbsc-pull-xl-6 {
    right: 50%;
  }
  .mbsc-grid .mbsc-pull-xl-7 {
    right: 58.33333333%;
  }
  .mbsc-grid .mbsc-pull-xl-8 {
    right: 66.66666667%;
  }
  .mbsc-grid .mbsc-pull-xl-9 {
    right: 75%;
  }
  .mbsc-grid .mbsc-pull-xl-10 {
    right: 83.33333333%;
  }
  .mbsc-grid .mbsc-pull-xl-11 {
    right: 91.66666667%;
  }
  .mbsc-grid .mbsc-pull-xl-12 {
    right: 100%;
  }
}
.mbsc-align-items-start {
  align-items: flex-start !important;
}

.mbsc-align-items-center {
  align-items: center !important;
}

.mbsc-align-items-end {
  align-items: flex-end !important;
}

.mbsc-justify-content-start {
  justify-content: flex-start !important;
}

.mbsc-justify-content-center {
  justify-content: center !important;
}

.mbsc-justify-content-end {
  justify-content: flex-end !important;
}

.mbsc-justify-content-around {
  justify-content: space-around !important;
}

.mbsc-justify-content-between {
  justify-content: space-between !important;
}

.mbsc-mobiscroll-dark .mbsc-fr-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.mbsc-mobiscroll-dark .mbsc-fr-w {
  background: #263238;
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark .mbsc-fr-hdr,
.mbsc-mobiscroll-dark .mbsc-fr-btn {
  color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-fr-btn.mbsc-active, .mbsc-mobiscroll-dark.mbsc-no-touch .mbsc-fr-btn-e:not(.mbsc-disabled):hover {
  background: rgba(79, 204, 196, 0.3);
}
.mbsc-mobiscroll-dark .mbsc-fr-arr {
  background: #263238;
}

.mbsc-mobiscroll-dark {
  /* Multiple select */
}
.mbsc-mobiscroll-dark .mbsc-sc-lbl {
  color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-sc-whl-l {
  border-top: 1px solid #4fccc4;
  border-bottom: 1px solid #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-sc-btn {
  color: #4fccc4;
  background: #263238;
}
.mbsc-mobiscroll-dark.mbsc-no-touch .mbsc-sc-itm.mbsc-btn-e:hover,
.mbsc-mobiscroll-dark .mbsc-sc-itm:focus {
  background: rgba(247, 247, 247, 0.1);
}
.mbsc-mobiscroll-dark.mbsc-no-touch .mbsc-sc-btn:hover:before, .mbsc-mobiscroll-dark.mbsc-sc .mbsc-sc-whl .mbsc-sc-itm.mbsc-active,
.mbsc-mobiscroll-dark .mbsc-sc-btn.mbsc-active:before {
  background: rgba(79, 204, 196, 0.3);
}
.mbsc-mobiscroll-dark .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  color: #4fccc4;
}

.mbsc-mobiscroll-dark {
  /* Hover, focus */
  /* Selected */
  /* Week numbers */
  /* Marks */
}
.mbsc-mobiscroll-dark .mbsc-cal-picker {
  background: #263238;
}
.mbsc-mobiscroll-dark .mbsc-cal-days > div {
  border-bottom: 1px solid #4fccc4;
  color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-cal-today {
  color: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-no-touch:not(.mbsc-ev-cal) .mbsc-cal-cell:not(.mbsc-disabled):hover .mbsc-cal-cell-txt, .mbsc-mobiscroll-dark.mbsc-no-touch .mbsc-cal-day:not(.mbsc-disabled) .mbsc-cal-day-date:hover,
.mbsc-mobiscroll-dark .mbsc-cal-cell:focus .mbsc-cal-cell-txt {
  background: rgba(79, 204, 196, 0.3);
}
.mbsc-mobiscroll-dark .mbsc-cal-c .mbsc-cal .mbsc-cal-body .mbsc-cal-row .mbsc-selected .mbsc-cal-cell-txt {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark .mbsc-cal-day-colored.mbsc-selected .mbsc-cal-day-date {
  border-color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-cal-week-nr {
  color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-cal-tab {
  border: 1px solid #4fccc4;
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark .mbsc-fr-w .mbsc-cal-tabs-c .mbsc-cal-tabs .mbsc-cal-tab.mbsc-selected {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark .mbsc-cal-mark {
  background: #f7f7f7;
}
.mbsc-mobiscroll-dark .mbsc-cal-txt {
  color: #263238;
  background: #f7f7f7;
  color: #f7f7f7;
  background: #4caf50;
}
.mbsc-mobiscroll-dark .mbsc-cal-icons {
  color: #f7f7f7;
}

.mbsc-mobiscroll-dark .mbsc-range-btn {
  border: 1px solid #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-range .mbsc-range-btn-t .mbsc-range-btn.mbsc-selected {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-range .mbsc-cal .mbsc-cal-row .mbsc-cal-day.mbsc-selected .mbsc-cal-day-date {
  background: none;
  border-color: transparent;
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark.mbsc-range .mbsc-cal .mbsc-cal-row .mbsc-cal-day.mbsc-cal-day-hl .mbsc-cal-day-date {
  background: #4fccc4;
  border-color: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-range .mbsc-cal-day.mbsc-selected:after {
  background: rgba(79, 204, 196, 0.3);
}

.mbsc-mobiscroll-dark .mbsc-empty {
  color: #f7f7f7;
}

.mbsc-mobiscroll-dark.mbsc-page {
  background: #263238;
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark a {
  color: #4fccc4;
}

.mbsc-mobiscroll-dark {
  /* Textbox */
  /* Box Input */
  /* Outline Input */
}
.mbsc-mobiscroll-dark.mbsc-input .mbsc-control {
  border-bottom: 1px solid white;
  color: #d1d1d1;
}
.mbsc-mobiscroll-dark.mbsc-input .mbsc-control:focus, .mbsc-mobiscroll-dark.mbsc-input select:focus ~ input .mbsc-input textarea:focus {
  border-color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-input-ic {
  color: white;
}
.mbsc-mobiscroll-dark.mbsc-input-box.mbsc-input .mbsc-input-wrap {
  background: #3b4d56;
}
.mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-input .mbsc-control {
  border: 1px solid white;
}
.mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-input .mbsc-label {
  background: #263238;
}
.mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-label-inline.mbsc-input .mbsc-label, .mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-label-floating:not(.mbsc-label-floating-active).mbsc-input .mbsc-label {
  background: none;
}
.mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-input .mbsc-control:focus, .mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-input select:focus ~ input, .mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-err input {
  border-color: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-input-outline.mbsc-input textarea:focus {
  border-color: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-input.mbsc-err input, .mbsc-mobiscroll-dark.mbsc-input.mbsc-err textarea {
  border-color: #de3226;
}

.mbsc-mobiscroll-dark.mbsc-progress .mbsc-input-ic {
  color: white;
}
.mbsc-mobiscroll-dark .mbsc-progress-track {
  background: #364850;
}
.mbsc-mobiscroll-dark .mbsc-progress-bar {
  background: #4fccc4;
}

.mbsc-mobiscroll-dark .mbsc-slider-step {
  background: #263238;
}
.mbsc-mobiscroll-dark .mbsc-slider-handle {
  background: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-slider-tooltip {
  color: #263238;
  background-color: #4fccc4;
}

.mbsc-mobiscroll-dark.mbsc-rating .mbsc-progress-track {
  color: #4fccc4;
}

.mbsc-mobiscroll-dark {
  /* Snackbar and Toast color presets */
}
.mbsc-mobiscroll-dark.mbsc-snackbar .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast .mbsc-toast-msg {
  background: #787878;
  color: #ffffff;
}
.mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-primary .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-primary .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-secondary .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-secondary .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-success .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-success .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-danger .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-danger .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-warning .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-warning .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-info .mbsc-fr-w, .mbsc-mobiscroll-dark.mbsc-toast.mbsc-info .mbsc-toast-msg, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-primary .mbsc-snackbar-btn, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-secondary .mbsc-snackbar-btn, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-success .mbsc-snackbar-btn, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-danger .mbsc-snackbar-btn, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-warning .mbsc-snackbar-btn, .mbsc-mobiscroll-dark.mbsc-snackbar.mbsc-info .mbsc-snackbar-btn {
  color: #263238;
}

.mbsc-mobiscroll-dark {
  /* Form grid */
  /* Radio */
  /* Buttons */
  /* Outline buttons */
  /* Switch */
  /* Stepper and Segmented */
}
.mbsc-mobiscroll-dark.mbsc-form {
  background: #263238;
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark.mbsc-control-w {
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark.mbsc-form *::-moz-selection, .mbsc-mobiscroll-dark.mbsc-control-w *::-moz-selection {
  color: #ffffff;
  background: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-form *::-moz-selection, .mbsc-mobiscroll-dark.mbsc-control-w *::-moz-selection, .mbsc-mobiscroll-dark.mbsc-form *::selection, .mbsc-mobiscroll-dark.mbsc-control-w *::selection {
  color: #ffffff;
  background: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-divider,
.mbsc-mobiscroll-dark .mbsc-form-group-title {
  background: #263238;
  color: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-err-msg,
.mbsc-mobiscroll-dark .mbsc-err .mbsc-label {
  color: #de3226;
}
.mbsc-mobiscroll-dark .mbsc-checkbox-box {
  background: #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-checkbox-box:after {
  border-bottom: 0.125em solid #263238;
  border-left: 0.125em solid #263238;
}
.mbsc-mobiscroll-dark.mbsc-checkbox input:disabled + .mbsc-checkbox-box {
  background: #49606c;
}
.mbsc-mobiscroll-dark .mbsc-radio-box {
  border: 0.125em solid #4fccc4;
}
.mbsc-mobiscroll-dark .mbsc-radio-box:after {
  background: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-radio input:checked + .mbsc-radio-box {
  background: transparent;
}
.mbsc-mobiscroll-dark.mbsc-radio input:disabled + .mbsc-radio-box {
  border-color: #49606c;
}
.mbsc-mobiscroll-dark.mbsc-radio input:disabled + .mbsc-radio-box:after {
  background: #49606c;
}
.mbsc-mobiscroll-dark.mbsc-btn {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-btn:disabled {
  background: #364850;
}
.mbsc-mobiscroll-dark.mbsc-no-touch.mbsc-btn-flat:not(:disabled):not(.mbsc-active):hover {
  background: rgba(38, 50, 56, 0.1);
}
.mbsc-mobiscroll-dark.mbsc-btn-flat {
  background: transparent;
  color: #4fccc4;
  border-color: transparent;
}
.mbsc-mobiscroll-dark.mbsc-btn-flat.mbsc-btn.mbsc-active {
  background: rgba(79, 204, 196, 0.3);
}
.mbsc-mobiscroll-dark.mbsc-btn-flat:disabled {
  color: #435863;
  background: transparent;
}
.mbsc-mobiscroll-dark.mbsc-btn-light.mbsc-btn {
  color: #000;
}
.mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn {
  border: 1px solid #4fccc4;
  color: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-active {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-primary.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-secondary.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-success.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-danger.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-warning.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-info.mbsc-active, .mbsc-mobiscroll-dark.mbsc-btn-outline.mbsc-btn.mbsc-btn-dark.mbsc-active {
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-btn.mbsc-btn-outline:disabled {
  color: #364850;
  border-color: #364850;
  background: transparent;
}
.mbsc-mobiscroll-dark .mbsc-switch-track {
  background: #364850;
}
.mbsc-mobiscroll-dark .mbsc-switch-handle {
  background: #435863;
}
.mbsc-mobiscroll-dark.mbsc-switch input:checked + .mbsc-switch-track {
  background: #b5e6e3;
}
.mbsc-mobiscroll-dark.mbsc-switch input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-switch input:disabled + .mbsc-switch-track {
  background: #49606c;
}
.mbsc-mobiscroll-dark.mbsc-switch input:disabled + .mbsc-switch-track .mbsc-switch-handle {
  background: #34454d;
}
.mbsc-mobiscroll-dark .mbsc-segmented-content {
  border: 0.142857em solid #4fccc4;
  color: #4fccc4;
}
.mbsc-mobiscroll-dark.mbsc-stepper input {
  color: #f7f7f7;
}
.mbsc-mobiscroll-dark.mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-active .mbsc-segmented-content, .mbsc-mobiscroll-dark.mbsc-segmented .mbsc-segmented-item input:checked + .mbsc-segmented-content {
  background: #4fccc4;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-segmented .mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(79, 204, 196, 0.3);
}
.mbsc-mobiscroll-dark.mbsc-segmented input:disabled ~ .mbsc-segmented-item .mbsc-segmented-content, .mbsc-mobiscroll-dark.mbsc-segmented .mbsc-segmented-item.mbsc-stepper-control.mbsc-disabled .mbsc-segmented-content, .mbsc-mobiscroll-dark.mbsc-segmented .mbsc-segmented-item input:disabled + .mbsc-segmented-content {
  color: #49606c;
  border-color: #49606c;
}
.mbsc-mobiscroll-dark .mbsc-stepper input:disabled {
  color: #49606c;
  -webkit-text-fill-color: #49606c;
}
.mbsc-mobiscroll-dark.mbsc-segmented input:disabled:checked + .mbsc-segmented-content {
  border-color: #364850;
  background: #364850;
  color: #263238;
}
.mbsc-mobiscroll-dark.mbsc-stepper .mbsc-active.mbsc-disabled .mbsc-segmented-content {
  background: transparent;
  color: #49606c;
}
.mbsc-mobiscroll-dark.mbsc-no-touch .mbsc-segmented-item:hover .mbsc-segmented-content {
  background: rgba(79, 204, 196, 0.1);
}

.callout-global {
  font-size: 0.875rem;
  width: 100%;
  padding: 0.5rem;
  position: relative;
  z-index: 9;
  background: hsl(39, 10%, 6%);
  color: hsl(44, 15%, 100%);
}
@media print, screen and (min-width: 40em) {
  .callout-global .insignia {
    margin-right: 4rem;
  }
}
.callout-global .countdown {
  padding-top: 0.5rem;
  padding-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .callout-global .countdown {
    padding: 0;
  }
}
.callout-global .wrapper-content {
  justify-content: center;
}
.callout-global .content {
  font-size: 0.875rem;
  display: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 40em) {
  .callout-global .content {
    display: block;
  }
}
.callout-global .button {
  margin: 0;
  padding: 0.6rem 1.2rem;
  display: block;
}
@media print, screen and (min-width: 40em) {
  .callout-global .button {
    display: none;
  }
}
.callout-global .close-button {
  top: 0.25rem;
  color: hsl(44, 15%, 100%);
}
.callout-global.fixed {
  position: fixed;
}
.callout-global.early-access {
  padding: 1rem;
}
.callout-global.early-access .wrapper-content {
  justify-content: space-evenly;
}
.callout-global.rewards {
  background: #222222;
  color: hsl(44, 15%, 100%);
}
.callout-global.rewards .button {
  margin-bottom: 0;
  color: #aa9767;
}
.callout-global.wellness {
  background: #6F6259;
}
.callout-global.wellness .button {
  margin: 0;
  background: transparent;
  padding: 0.8rem 1.5rem;
  line-height: 0.9;
}
@media print, screen and (min-width: 40em) {
  .callout-global.wellness .button {
    color: #6F6259;
    background: hsl(44, 15%, 100%);
  }
}
.callout-global.tafer-live .button {
  background: rgba(255, 195, 24, 0.8196078431);
}

@font-face {
  font-family: "lg";
  src: url("../fonts/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg.woff?io9a6k") format("woff"), url("../fonts/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}
.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-overlay-open {
  overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  transition-duration: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../images/loading.gif") no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  transition: transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}
.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}
.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer.lg-animate-thumb .lg-thumb {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  transition-duration: 0ms !important;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}
.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  transform: scale3d(1, 1, 1);
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
  transition: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
  transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
  transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  top: 50% !important;
  left: 0% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-icon.lg-zoom-in:after {
  content: "\e311";
}
.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 0.5;
  pointer-events: none;
}
.lg-icon.lg-actual-size {
  font-size: 20px;
}
.lg-icon.lg-actual-size:after {
  content: "\e033";
}
.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
.lg-icon.lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer[data-lg-slide-type=video] .lg-zoom-in,
.lg-outer[data-lg-slide-type=video] .lg-actual-size,
.lg-outer[data-lg-slide-type=video] .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,
.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none;
}

.lg-css3.lg-zoom-in .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-in .lg-item.lg-prev-slide {
  transform: scale3d(1.3, 1.3, 1.3);
}
.lg-css3.lg-zoom-in .lg-item.lg-next-slide {
  transform: scale3d(1.3, 1.3, 1.3);
}
.lg-css3.lg-zoom-in .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-in .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-lollipop-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide {
  transform: translate3d(0, 0, 0) scale(0.5);
}
.lg-css3.lg-lollipop-rev .lg-item.lg-next-slide {
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-lollipop-rev .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-lollipop-rev .lg-item.lg-prev-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-next-slide, .lg-css3.lg-lollipop-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew-ver-cross .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide {
  transform: skew(0deg, 20deg) translate3d(0, -100%, 0px);
}
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide {
  transform: skew(0deg, 20deg) translate3d(0, 100%, 0px);
}
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-ver-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-lollipop .lg-item {
  opacity: 0;
}
.lg-css3.lg-lollipop .lg-item.lg-prev-slide {
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-lollipop .lg-item.lg-next-slide {
  transform: translate3d(0, 0, 0) scale(0.5);
}
.lg-css3.lg-lollipop .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-lollipop .lg-item.lg-prev-slide, .lg-css3.lg-lollipop .lg-item.lg-next-slide, .lg-css3.lg-lollipop .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew-ver-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide {
  transform: skew(-60deg, 0deg) translate3d(0, -100%, 0px);
}
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide {
  transform: skew(-60deg, 0deg) translate3d(0, 100%, 0px);
}
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-ver-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-rotate-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide {
  transform: rotate(360deg);
}
.lg-css3.lg-rotate-rev .lg-item.lg-next-slide {
  transform: rotate(-360deg);
}
.lg-css3.lg-rotate-rev .lg-item.lg-current {
  transform: rotate(0deg);
  opacity: 1;
}
.lg-css3.lg-rotate-rev .lg-item.lg-prev-slide, .lg-css3.lg-rotate-rev .lg-item.lg-next-slide, .lg-css3.lg-rotate-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew-ver .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide {
  transform: skew(60deg, 0deg) translate3d(0, -100%, 0px);
}
.lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide {
  transform: skew(60deg, 0deg) translate3d(0, 100%, 0px);
}
.lg-css3.lg-slide-skew-ver .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-ver .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-rotate .lg-item {
  opacity: 0;
}
.lg-css3.lg-rotate .lg-item.lg-prev-slide {
  transform: rotate(-360deg);
}
.lg-css3.lg-rotate .lg-item.lg-next-slide {
  transform: rotate(360deg);
}
.lg-css3.lg-rotate .lg-item.lg-current {
  transform: rotate(0deg);
  opacity: 1;
}
.lg-css3.lg-rotate .lg-item.lg-prev-slide, .lg-css3.lg-rotate .lg-item.lg-next-slide, .lg-css3.lg-rotate .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew .lg-item.lg-prev-slide {
  transform: skew(20deg, 0deg) translate3d(-100%, 0%, 0px);
}
.lg-css3.lg-slide-skew .lg-item.lg-next-slide {
  transform: skew(20deg, 0deg) translate3d(100%, 0%, 0px);
}
.lg-css3.lg-slide-skew .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew .lg-item.lg-next-slide, .lg-css3.lg-slide-skew .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-scale-up .lg-item {
  opacity: 0;
}
.lg-css3.lg-scale-up .lg-item.lg-prev-slide {
  transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}
.lg-css3.lg-scale-up .lg-item.lg-next-slide {
  transform: scale3d(0.8, 0.8, 0.8) translate3d(0%, 10%, 0);
}
.lg-css3.lg-scale-up .lg-item.lg-current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-scale-up .lg-item.lg-prev-slide, .lg-css3.lg-scale-up .lg-item.lg-next-slide, .lg-css3.lg-scale-up .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-vertical-growth .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide {
  transform: scale3d(0.5, 0.5, 0.5) translate3d(0, -150%, 0);
}
.lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide {
  transform: scale3d(0.5, 0.5, 0.5) translate3d(0, 150%, 0);
}
.lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide-vertical-growth .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical-growth .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical-growth .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-circular-vertical .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide {
  transform: scale3d(0, 0, 0) translate3d(0, -100%, 0);
}
.lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide {
  transform: scale3d(0, 0, 0) translate3d(0, 100%, 0);
}
.lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide-circular-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-circular-vertical .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-vertical .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide {
  transform: translate3d(0, -100%, 0);
}
.lg-css3.lg-slide-vertical .lg-item.lg-next-slide {
  transform: translate3d(0, 100%, 0);
}
.lg-css3.lg-slide-vertical .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide-vertical .lg-item.lg-prev-slide, .lg-css3.lg-slide-vertical .lg-item.lg-next-slide, .lg-css3.lg-slide-vertical .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-circular .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.lg-css3.lg-slide-circular .lg-item.lg-current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide-circular .lg-item.lg-prev-slide, .lg-css3.lg-slide-circular .lg-item.lg-next-slide, .lg-css3.lg-slide-circular .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-soft-zoom .lg-item {
  opacity: 0;
}
.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide {
  transform: scale3d(1.1, 1.1, 1.1);
}
.lg-css3.lg-soft-zoom .lg-item.lg-next-slide {
  transform: scale3d(0.9, 0.9, 0.9);
}
.lg-css3.lg-soft-zoom .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-soft-zoom .lg-item.lg-prev-slide, .lg-css3.lg-soft-zoom .lg-item.lg-next-slide, .lg-css3.lg-soft-zoom .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-cross-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide {
  transform: skew(0deg, -60deg) translate3d(-100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide {
  transform: skew(0deg, -60deg) translate3d(100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-tube .lg-item {
  opacity: 0;
}
.lg-css3.lg-tube .lg-item.lg-prev-slide {
  transform: scale3d(1, 0, 1) translate3d(-100%, 0, 0);
}
.lg-css3.lg-tube .lg-item.lg-next-slide {
  transform: scale3d(1, 0, 1) translate3d(100%, 0, 0);
}
.lg-css3.lg-tube .lg-item.lg-current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-tube .lg-item.lg-prev-slide, .lg-css3.lg-tube .lg-item.lg-next-slide, .lg-css3.lg-tube .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew-cross .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide {
  transform: skew(0deg, 60deg) translate3d(-100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide {
  transform: skew(0deg, 60deg) translate3d(100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-cross .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-cross .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-cross .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-cross .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-zoom-in-big .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide {
  transform: scale3d(2, 2, 2);
}
.lg-css3.lg-zoom-in-big .lg-item.lg-next-slide {
  transform: scale3d(2, 2, 2);
}
.lg-css3.lg-zoom-in-big .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-in-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-big .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-only-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide {
  transform: skew(-10deg, 0deg);
}
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide {
  transform: skew(-10deg, 0deg);
}
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg);
  opacity: 1;
}
.lg-css3.lg-slide-skew-only-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-zoom-in-out .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide {
  transform: scale3d(2, 2, 2);
}
.lg-css3.lg-zoom-in-out .lg-item.lg-next-slide {
  transform: scale3d(0, 0, 0);
}
.lg-css3.lg-zoom-in-out .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-in-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-in-out .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-only-y-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide {
  transform: skew(0deg, -10deg);
}
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide {
  transform: skew(0deg, -10deg);
}
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg);
  opacity: 1;
}
.lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-slide-skew-only-y .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide {
  transform: skew(0deg, 10deg);
}
.lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide {
  transform: skew(0deg, 10deg);
}
.lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
  transform: skew(0deg, 0deg);
  opacity: 1;
}
.lg-css3.lg-slide-skew-only-y .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only-y .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only-y .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-zoom-out-big .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide {
  transform: scale3d(0, 0, 0);
}
.lg-css3.lg-zoom-out-big .lg-item.lg-next-slide {
  transform: scale3d(0, 0, 0);
}
.lg-css3.lg-zoom-out-big .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-out-big .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-big .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-only .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide {
  transform: skew(10deg, 0deg);
}
.lg-css3.lg-slide-skew-only .lg-item.lg-next-slide {
  transform: skew(10deg, 0deg);
}
.lg-css3.lg-slide-skew-only .lg-item.lg-current {
  transform: skew(0deg, 0deg);
  opacity: 1;
}
.lg-css3.lg-slide-skew-only .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-only .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-only .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-zoom-out-in .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide {
  transform: scale3d(0, 0, 0);
}
.lg-css3.lg-zoom-out-in .lg-item.lg-next-slide {
  transform: scale3d(2, 2, 2);
}
.lg-css3.lg-zoom-out-in .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-out-in .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-next-slide, .lg-css3.lg-zoom-out-in .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide {
  transform: skew(-20deg, 0deg) translate3d(-100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide {
  transform: skew(-20deg, 0deg) translate3d(100%, 0%, 0px);
}
.lg-css3.lg-slide-skew-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.lg-css3.lg-zoom-out .lg-item {
  opacity: 0;
}
.lg-css3.lg-zoom-out .lg-item.lg-prev-slide {
  transform: scale3d(0.7, 0.7, 0.7);
}
.lg-css3.lg-zoom-out .lg-item.lg-next-slide {
  transform: scale3d(0.7, 0.7, 0.7);
}
.lg-css3.lg-zoom-out .lg-item.lg-current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-css3.lg-zoom-out .lg-item.lg-prev-slide, .lg-css3.lg-zoom-out .lg-item.lg-next-slide, .lg-css3.lg-zoom-out .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.lg-css3.lg-slide-skew-ver-cross-rev .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide {
  transform: skew(0deg, -20deg) translate3d(0, -100%, 0px);
}
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide {
  transform: skew(0deg, -20deg) translate3d(0, 100%, 0px);
}
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
  transform: skew(0deg, 0deg) translate3d(0%, 0%, 0px);
  opacity: 1;
}
.lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-prev-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-next-slide, .lg-css3.lg-slide-skew-ver-cross-rev .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

.personalized_web_cta {
  padding: 1rem 0;
}
@media print, screen and (min-width: 40em) {
  .personalized_web_cta .close-button {
    right: 1rem;
  }
}

.personalized_web {
  color: hsl(42, 8%, 35%);
  border-top: 8px solid hsl(42, 27%, 41%);
}
.personalized_web #registerContainer, .personalized_web #loginContainer {
  margin: 0 auto;
  max-width: 340px;
}
.personalized_web .closed {
  display: none;
}
@media screen and (max-width: 39.9375em) {
  .personalized_web #login .login-opt {
    font-size: 0.7rem;
  }
  .personalized_web #login .login-opt:last-child {
    padding-right: 0;
  }
}

img:not([src]):not([srcset]), img[data-ll-status=error] {
  visibility: hidden;
}
img.lazy {
  transition: opacity 0.3s;
  opacity: 0;
}
img[data-ll-status=loaded], img.loaded {
  opacity: 1;
}

/*! Flavors detail */
.is-reveal-open .reveal-overlay {
  z-index: 200000;
}

.is-reveal-open .reveal-overlay table th {
  padding-left: 1em;
  border-bottom: 2px solid !important;
  border-color: hsl(42, 27%, 41%) !important;
}

.is-reveal-open .reveal-overlay table ul {
  padding-left: 1.8em;
}

.dining .off-canvas.is-transition-overlap {
  z-index: 200015 !important;
  background: hsl(44, 15%, 100%);
}
.dining .header {
  padding-top: 0;
}
.dining .header .has-tip {
  border-bottom: none;
}
.dining .sectionVideo {
  padding-bottom: 2em;
}
.dining .orbit-container {
  padding: 0px;
}
.dining .quote h3 {
  margin-top: 1rem;
  border-left: 2px solid hsl(42, 27%, 41%);
  border-right: 0;
  margin-left: 0.5rem;
  text-align: left;
  padding: 0 1rem;
  color: hsl(42, 27%, 41%);
}
.dining .quote h3 span {
  display: block;
  font-size: 0.65em;
  color: rgba(17, 16, 14, 0.8);
}
.dining .quote p {
  font-size: 0.85em;
  padding-top: 1em;
}
.dining .share-links {
  max-width: 430px;
  text-align: left;
  padding-top: 1.5em;
  border: none;
}
.dining .share-links span {
  font-size: 1em;
}
.dining .share-links #st-1.st-animated {
  text-align: left;
  padding-top: 0.5em;
}
.dining .logo .code {
  padding: 1em 0 0.2em 0;
  font-size: 0.95em;
  margin-bottom: 0.5em;
  list-style: none;
  margin-left: 0;
}
.dining .logo .code .material-icons {
  font-size: 1.3em;
  color: hsl(42, 8%, 35%);
  padding: 0.2em 0.3em 0.2em 0;
}
.dining .logo .dress-modal {
  padding-top: 1em;
  cursor: pointer;
}
.dining .logo .dress-modal a {
  font-weight: 700;
  color: rgba(17, 16, 14, 0.8);
}
.dining .logo .dress-modal .material-icons {
  top: -2px;
  position: relative;
  padding: 0 !important;
  font-size: 1.3em !important;
}
.dining .logo .material-icons.hour {
  font-size: 1.3em;
  padding: 0.2em 0.3em 0.2em 0;
  color: hsl(42, 8%, 35%);
}
.dining .logo .material-icons.tool {
  color: hsl(42, 27%, 41%);
  padding: 0 0.2em;
}
.dining .logo .material-icons.tool {
  animation: pulse 1s infinite alternate;
  cursor: pointer;
}
.dining .logo .material-icons:after {
  transform: translateX(-80%);
}
.dining .logo .menuRest {
  padding: 0;
  color: hsl(42, 27%, 41%);
  font-weight: 600;
  margin: 0;
}
.dining .logo .menuRest button {
  color: hsl(42, 27%, 41%);
  font-weight: 700;
}
.dining .logo .menuRest span {
  width: auto;
  padding: 0.45em 0;
  display: block;
}
.dining .logo .menuRest .material-icons {
  color: #86754d;
  padding: 0 0.2em 0 0;
}
.dining .logo .menuRest .material-icons.more {
  font-size: 1.3em;
}
.dining .logo .reservation {
  background: hsl(44, 15%, 94%);
  padding: 8px 15px;
}
.dining .logo .reservation span {
  font-size: 0.86em;
  display: block;
}
.dining .widgetTA {
  position: relative;
  overflow: hidden;
  height: 207px;
  display: block;
  width: 220px;
  padding: 0;
}
.dining .widgetTA #CDSWIDSSP {
  top: -25px;
}
.dining .widgetTA.widES {
  height: 265px;
}
.dining .widgetTA .link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.dining .widgetTA .link-b {
  position: absolute;
  width: 100%;
  height: 40px;
  z-index: 9;
  background: #fff;
}
.dining #sectionGallery .concepts {
  background: url("/lib/dist/img/bg/the-jewels_gray.jpg") hsl(44, 15%, 94%);
  padding: 10px;
  margin-top: 0.7em;
}
.dining #sectionGallery .concepts .back {
  padding: 0px 12px 30px 12px;
  border: 1px solid #eee;
  background: hsl(44, 15%, 100%);
  text-align: center;
}
.dining #sectionGallery .concepts .back .adds h3 {
  margin-bottom: 0;
}
.dining #sectionGallery .concepts .back .adds p {
  font-size: 0.875rem;
  margin-top: 0;
}
.dining #sectionGallery .concepts .back .adds:first-child {
  border-bottom: 1px dashed #bbb;
}
.dining #offCanvas {
  background: url("/lib/dist/img/bg/the-jewels_gray.jpg") fixed;
  padding: 2em 0.9em 3em 0;
}
.dining #offCanvas .menu-content {
  background: hsl(44, 15%, 100%);
  text-align: center;
  padding: 0.1em 8px;
  margin-top: 3em;
}
.dining #offCanvas .menu-content h3 {
  color: hsl(42, 27%, 41%);
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.dining #offCanvas .menu-content dd {
  margin: 0;
  font-size: 0.95em;
}
.dining #offCanvas .close-button {
  top: 3em;
  right: 0.1em;
}
.dining #offCanvas #conditions {
  font-size: 0.85em;
  border-top: 1px solid hsl(44, 15%, 94%);
}
.dining #offCanvasVeganMenu {
  padding: 2em 0.9em 3em 0;
}
.dining #offCanvasVeganMenu .menu-content {
  background: hsl(44, 15%, 100%);
  text-align: center;
  padding: 0.1em 8px;
  margin-top: 3em;
}
.dining #offCanvasVeganMenu .menu-content dd {
  margin: 0;
  font-size: 0.95em;
}
.dining #offCanvasVeganMenu .close-button {
  top: 3em;
  right: 0.1em;
}
.dining #offCanvasVeganMenu #conditions {
  font-size: 0.85em;
  border-top: 1px solid hsl(44, 15%, 94%);
}

@media screen and (min-width: 40em) {
  .is-reveal-open .reveal-overlay {
    z-index: 1005;
  }
  .is-reveal-open .reveal-overlay table th {
    padding-left: 1.8em;
  }
  .is-reveal-open .reveal-overlay table ul {
    padding-left: 2.2em !important;
  }
  .dining .sectionVideo {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .dining ul.box .mix {
    width: 32% !important;
  }
}
@media screen and (min-width: 64em) {
  .is-reveal-open .reveal-overlay table td {
    width: 50px;
  }
  .dining .logo .reservation {
    width: 250px;
  }
  .dining .logo .widgetTA {
    width: 250px;
  }
  .dining .quote {
    border-top: 1px solid hsl(44, 15%, 94%);
    padding: 0 18px;
    border-bottom: 1px solid hsl(44, 15%, 94%);
    margin: 1em 0;
  }
  .dining .quote h3 {
    width: 180px;
    display: inline-block;
    border-right: 2px solid hsl(42, 27%, 41%);
    border-left: 0;
    text-align: right;
    vertical-align: middle;
    color: hsl(42, 27%, 41%);
  }
  .dining .quote p {
    width: 62%;
    display: inline-block;
    margin-left: 20px;
    text-align: justify;
    vertical-align: middle;
  }
  .dining .share-links {
    margin-left: 3.6em;
    padding-top: 0;
    width: auto;
  }
  .dining .share-links span {
    float: left;
    top: 0.9em;
    margin-right: 1em;
    position: relative;
  }
  .dining .share-links.quoteOff {
    margin-left: 0;
    padding-top: 0.8em;
  }
  .dining #offCanvas {
    padding: 0 0.9em 0 0;
  }
  .dining #offCanvas .menu-content {
    margin-top: 0;
  }
  .dining #offCanvas .close-button {
    top: 0em;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal {
    max-width: 75rem;
    width: auto;
  }
}
.hidden {
  display: none !important;
  visibility: hidden;
}

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

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  background: var(--countdown-bg);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --countdown-fs: 3;
}
.countdown > div {
  padding: 0 1rem;
  text-align: center;
  position: relative;
}
.countdown > div::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  background-color: var(--countdown-separator-color, hsl(40, 10%, 15%));
}
.countdown > div:last-child::before {
  content: none;
}
.countdown > div > div:first-child {
  font-size: calc(var(--countdown-fs) * 0.25rem + 1rem);
  line-height: 1;
  font-weight: 700;
}
.countdown > div > div:last-child {
  text-transform: uppercase;
  font-size: calc(var(--countdown-fs) * 0.25rem + 0.25rem);
}
.countdown.text-white {
  --countdown-separator-color: white;
}
.countdown.text-black {
  --countdown-separator-color: black;
}

.button {
  font-weight: 700;
  text-transform: none;
  color: hsl(280, 84%, 25%);
  font-weight: bold;
  text-transform: uppercase;
}
.button.primary, .button.secondary, .button.white {
  color: hsl(44, 15%, 100%);
  border: 2px solid rgba(133, 116, 76, 0.1);
  transition: all 0.5s ease;
}
.button.primary.clear, .button.secondary.clear, .button.white.clear {
  border: 0;
}
.button.primary.hollow:hover {
  background: hsl(42, 27%, 41%);
  color: hsl(44, 15%, 100%);
}
.button.secondary.hollow:hover {
  background: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 100%);
}
.button.primary-color.hollow.clear:hover {
  background: transparent;
}
.button.secondary.hollow.clear:hover {
  background: transparent;
}
.button.white {
  color: hsl(280, 84%, 25%);
}
.button.white:hover {
  background: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 100%);
}
.button.white.hollow {
  border-color: hsl(44, 15%, 100%);
  color: hsl(44, 15%, 100%);
}
.button.turquoise {
  /* button spa */
  background: #4e9f9f;
  color: hsl(44, 15%, 100%);
}
.button.turquoise:hover {
  color: hsl(44, 15%, 100%);
  background: #3d7d7d;
}
.button.hollow.tafer {
  color: #86754d;
  border-color: #86754d;
}
.button--no-margin {
  margin: 0;
}
.button--no-padding {
  padding: 0;
}

/* button suite detail*/
#sleeping-detail #related-content .button,
#packages #related-content .button {
  padding: 0;
  margin: 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

/* Titles */
.subheader {
  color: hsl(42, 8%, 35%);
  font-size: 0.7rem;
  letter-spacing: 0.06rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.alert {
  color: hsl(44, 15%, 100%) !important;
  text-align: center;
}
@media screen and (max-width: 39.9375em) {
  .alert {
    font-size: 0.85rem;
  }
}
.alert a {
  color: hsl(44, 15%, 100%) !important;
  font-weight: 600;
  text-decoration: underline;
}
.alert button {
  color: hsl(44, 15%, 100%);
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
}
.alert [data-toggle=close-alert] {
  cursor: pointer;
}

.error-match-records.label.alert {
  display: block;
  white-space: pre-line;
  line-height: 1.2;
}

#virtualtour {
  overflow: hidden;
}
#virtualtour .flex-media {
  margin-top: 2em;
}
#virtualtour iframe {
  min-height: 520px;
  border: none;
}
@media screen and (max-width: 39.9375em) {
  #virtualtour iframe {
    min-height: auto;
  }
}

.cta_member {
  font-size: 0.85em;
  text-align: center;
  color: hsl(44, 15%, 100%);
  padding: 0.5em 0;
  position: relative;
}
.cta_member a {
  font-weight: 700;
  color: hsl(44, 15%, 100%);
}
.cta_member p {
  margin: 0;
  color: hsl(44, 15%, 100%) !important;
}
.cta_member.member_logout_btn {
  border-top: 1px solid rgba(134, 117, 77, 0.5);
  background: #b7a782;
}
.cta_member.member_logout_btn:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #b7a782;
  clear: both;
  bottom: 100%;
  right: 0;
  margin: 0 auto;
}
.cta_member.member_logout_btn a,
.cta_member.member_logout_btn button {
  text-decoration: underline;
  color: hsl(44, 15%, 100%);
}
.cta_member.member_login_btn {
  background: hsl(42, 27%, 41%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
}
.cta_member.member_login_btn b {
  font-size: 1.25em;
}
.cta_member.member_login_btn.top {
  background: #f5f2ed;
  font-weight: 700;
  font-size: 0.87rem;
}
.cta_member.member_login_btn.top p,
.cta_member.member_login_btn.top span {
  color: hsl(42, 61%, 90%) !important;
}
.cta_member.member_login_bottom_btn {
  background: #c0b392;
}
.cta_member.member_login_bottom_btn:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #c0b392;
  clear: both;
  bottom: 100%;
  right: 0;
  margin: 0 auto;
}

.tabs {
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  border-width: 0;
}
.tabs .tabs-title:nth-child(1) a {
  z-index: 3;
}
.tabs .tabs-title:nth-child(2) a {
  z-index: 2;
}
.tabs .tabs-title:nth-child(3) a {
  z-index: 1;
  background: #e7e3db;
}
.tabs .tabs-title:nth-child(3) a:after {
  border-color: #e7e3db;
}
.tabs .tabs-title:nth-child(4) a {
  z-index: 0;
}
.tabs .tabs-title > a {
  font-size: 0.785rem;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  display: block;
  padding: 0.875rem 1.2rem;
  margin-right: 0.63rem;
  z-index: 1;
  color: hsl(45, 33%, 26%);
  border-radius: 0;
  border: 1px inset rgba(133, 116, 76, 0.25);
  border-bottom: 0;
  background: #f0eeea;
}
.tabs .tabs-title > a:hover, .tabs .tabs-title > a:focus {
  color: rgba(17, 16, 14, 0.8);
  outline: 0;
}
@media screen and (min-width: 20.0625em) {
  .tabs .tabs-title > a {
    font-size: 0.93rem;
  }
}
.tabs .tabs-title > a[aria-selected=true] {
  font-weight: 700;
  text-shadow: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: hsl(44, 15%, 100%);
  z-index: 5;
}

.tabs-content {
  position: relative;
  margin-bottom: 2rem;
  padding: 0.63rem 0;
  z-index: 3;
  color: rgba(17, 16, 14, 0.8);
  border-top-width: 0;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 -3px 6px -3px rgba(17, 16, 14, 0.13);
}

.reveal {
  box-shadow: 0 0 14px rgba(17, 16, 14, 0.25);
  outline: 0;
}

@media screen and (min-width: 640px) {
  .valign-middle {
    display: table;
  }
  .valign-middle .columns {
    display: table-cell;
    vertical-align: middle;
  }
  .valign-middle .columns,
  .valign-middle [class*=column] + [class*=column]:last-child {
    float: none;
  }
}
.reveal.howit-works .close-video {
  background: hsl(42, 27%, 41%);
  z-index: 2;
  line-height: 0;
  color: hsl(44, 15%, 100%);
  top: 15px;
}

.call-center {
  width: 310px;
  margin-bottom: 0;
}
.call-center .card {
  border: 8px double hsl(44, 15%, 100%);
  min-height: 250;
  padding: 1.25rem 0;
  background: #b7a782;
  color: hsl(44, 15%, 100%);
}
.call-center .card .card-divider {
  background: transparent;
  display: block;
}
.call-center .title {
  font-size: 1.5rem;
  font-weight: 500;
}
.call-center .title span {
  display: block;
  font-size: 1rem;
}
.call-center img {
  width: 150px;
  border-radius: 100%;
  margin: 0 auto;
  border: 3px solid hsl(44, 15%, 94%);
}
.call-center .phone {
  padding-top: 1rem;
}
.call-center .phone strong {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 900px) {
  .call-center .card {
    min-height: auto;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 700px) {
  .call-center {
    width: 100%;
  }
  .call-center .card {
    margin: 0 auto;
    width: 300px;
  }
}

aside.share-links {
  padding: 15px 0;
  margin-top: 2rem;
  max-width: 290px;
  position: relative;
  border: 1px solid rgba(17, 16, 14, 0.1);
}
aside.share-links .title {
  display: block;
  position: absolute;
  top: -0.75em;
  left: 0.5rem;
  margin: 0;
  padding: 0 0.5rem;
  font-size: 1em;
  background: hsl(44, 15%, 100%);
}

.card:hover {
  box-shadow: 0 2px 14px rgba(17, 16, 14, 0.1);
}
.card p {
  color: rgba(17, 16, 14, 0.6);
  font-size: 0.875em;
}
.card .title-campaign {
  font-family: "playfair-display", serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: rgba(17, 16, 14, 0.8);
}
.card .card-header {
  position: relative;
  overflow: hidden;
}
.card .card-header img {
  transition: all 0.5s;
  opacity: 1;
  width: 100%;
}
.card .card-header img:hover {
  opacity: 0.85;
}
.card .card-header h2, .card .card-header h3, .card .card-header h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 8px;
  margin: 0;
  z-index: 2;
  color: hsl(44, 15%, 100%);
  font-family: "playfair-display", serif;
  text-shadow: 1px 1px 1px rgba(17, 16, 14, 0.38);
  transition: all 0.5s;
  background-image: linear-gradient(0, rgba(17, 16, 14, 0.75), rgba(17, 16, 14, 0));
  font-weight: 500;
}
@media print, screen and (min-width: 64em) {
  .card .card-header h2, .card .card-header h3, .card .card-header h4 {
    font-size: 1.5rem;
  }
}
.card .card-header h2:hover, .card .card-header h3:hover, .card .card-header h4:hover {
  background-image: linear-gradient(0, rgba(17, 16, 14, 0.85), rgba(17, 16, 14, 0));
}
.card .card-header h2 span, .card .card-header h3 span, .card .card-header h4 span {
  font-size: 90%;
  display: block;
  font-weight: 300;
  color: hsl(44, 15%, 100%);
  font-family: "museo-sans", Helvetica, Arial, sans-serif;
}
@media print, screen and (min-width: 64em) {
  .card .card-header h2 span, .card .card-header h3 span, .card .card-header h4 span {
    font-size: 70%;
  }
}

.card--custom {
  border: 0;
  position: relative;
}
.card--custom .card-section {
  background: linear-gradient(to top, rgba(17, 16, 14, 0.7) 0%, rgba(17, 16, 14, 0.5) 25%, rgba(17, 16, 14, 0.3) 50%, rgba(17, 16, 14, 0) 100%);
  bottom: 0;
  padding: 1rem 10%;
  position: absolute;
  text-align: center;
  width: 100%;
  transition-timing-function: ease-in;
  transition: 0.1s;
}
.card--custom .card-section h3 {
  font-family: "playfair-display", serif;
  font-weight: 400;
}
.card--custom .card-section .small-text {
  margin: 0;
}
.card--custom .card-section * {
  color: hsl(44, 15%, 100%);
}
.card--custom .card-section a:hover,
.card--custom .card-section a:focus {
  color: hsl(44, 15%, 100%);
}
.card--custom:hover .card-section, .card--custom:focus .card-section {
  padding-top: 40vh;
  transition-timing-function: ease-out;
  transition: 0.15s;
}
.card--custom .button.clear {
  padding: 0.875rem;
}

.card--featured {
  border: 0;
  position: relative;
  margin: 1px;
}
.card--featured .card-section {
  background: linear-gradient(to top, rgba(17, 16, 14, 0.7) 0%, rgba(17, 16, 14, 0.5) 25%, rgba(17, 16, 14, 0.3) 50%, rgba(17, 16, 14, 0) 100%);
  bottom: 0;
  padding: 1rem 10%;
  position: absolute;
  text-align: center;
  width: 100%;
  transition-timing-function: ease-in;
  transition: 0.1s;
}
.card--featured .card-section h3 {
  font-family: "playfair-display", serif;
  font-weight: 400;
}
.card--featured .card-section .small-text {
  margin: 0;
}
.card--featured .card-section * {
  color: hsl(44, 15%, 100%);
}
.card--featured .card-section a:hover,
.card--featured .card-section a:focus {
  color: hsl(44, 15%, 100%);
}
.card--featured:hover .card-section, .card--featured:focus .card-section {
  padding-top: 40vh;
  transition-timing-function: ease-out;
  transition: 0.15s;
}
.card--featured .button.clear {
  padding: 0.875rem;
}
.card--featured p {
  opacity: 0;
  transition-timing-function: ease-out;
  transition: 0.5s;
  transform: translate(0, 100px);
}
@media print, screen and (min-width: 64em) {
  .card--featured .button {
    opacity: 0;
    transition-timing-function: ease-out;
    transition: 0.5s;
    transform: translate(0, 100px);
  }
  .card--featured h3 {
    transform: translate(0, 150px);
    transition-timing-function: ease-out;
    transition: 0.5s;
  }
}
.card--featured:hover p, .card--featured:hover .button, .card--featured:hover h3 {
  opacity: 1;
  transition-timing-function: ease-out;
  transition: 0.5s;
  transform: translate(0, 0);
}
.card--featured .button.white.clear {
  background: none !important;
}
.card--featured img {
  width: 100%;
}

header#main_header.headerFixed {
  width: 100%;
  height: 100%;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 10;
  display: block;
}
@media screen and (max-width: 640px) {
  header#main_header.headerFixed {
    position: fixed;
  }
}
header#main_header.headerFixed .breadcrumbs {
  display: none;
}

#footer-links .btn_appAlice {
  color: hsl(45, 33%, 26%);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 600px) {
  #footer-links .btn_appAlice {
    padding-bottom: 0.8rem;
  }
}

#aliceAppModal {
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(17, 16, 14, 0.64);
}
@media screen and (min-width: 600px) {
  #aliceAppModal {
    width: 450px;
  }
}
#aliceAppModal img {
  padding: 1.5rem 0;
}
#aliceAppModal .button {
  color: hsl(44, 15%, 100%);
  line-height: 16px;
  text-align: left;
  border-radius: 4px;
}
#aliceAppModal .button small {
  display: block;
}
#aliceAppModal .button b {
  font-weight: 700;
}

#newsletterModal {
  padding: 0;
  box-shadow: none;
  border: none;
}
#newsletterModal .close-button {
  color: hsl(40, 10%, 15%);
  font-size: 1.5em;
  z-index: 9999999999;
}
#newsletterModal .title {
  font-size: 3.2rem;
  color: hsl(40, 10%, 15%);
}
#newsletterModal .subtitle {
  font-size: 1.35rem;
  margin-bottom: 0;
  margin-top: 2rem;
}
#newsletterModal .newsletter-signup {
  margin-top: 2rem;
}
#newsletterModal .newsletter-content {
  padding: 1rem 0;
}
#newsletterModal .button {
  background: #86754d;
}
@media screen and (min-width: 1000px) {
  #newsletterModal {
    width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  #newsletterModal {
    width: 97%;
  }
  #newsletterModal .title {
    font-size: 2.6rem;
  }
  #newsletterModal .newsletter-signup {
    margin-top: 1rem;
  }
  #newsletterModal .newsletter-content {
    padding: 0.75rem 2rem;
  }
  #newsletterModal .subtitle {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  #newsletterModal {
    width: 100%;
  }
  #newsletterModal .title {
    font-size: 2rem;
  }
  #newsletterModal .subtitle {
    font-size: 1.15rem;
  }
  #newsletterModal .newsletter-content {
    padding: 0.75rem 1.25rem;
  }
  #newsletterModal .newsletter-content img {
    width: 50px;
  }
  #newsletterModal .close-button {
    padding: 5px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 640px) {
  #top_message {
    padding: 0;
  }
  #top_message span {
    font-size: 0.65rem;
    padding: 0;
    margin: 0;
  }
  #top_message span b {
    font-size: 0.85rem;
  }
}
svg {
  vertical-align: sub;
}
svg use {
  stroke: hsl(42, 27%, 41%);
  fill: hsl(42, 27%, 41%);
}
svg.white use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}
svg.gray use {
  stroke: hsl(40, 10%, 15%);
  fill: hsl(40, 10%, 15%);
}
svg.black use {
  stroke: hsl(39, 10%, 6%);
  fill: hsl(39, 10%, 6%);
}

.two-columns {
  -moz-column-count: 1;
  column-count: 1;
  column-gap: 25px;
  -moz-column-gap: 25px;
}
@media print, screen and (min-width: 40em) {
  .two-columns {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media screen and (max-width: 63.9375em) {
  .LPMcontainer {
    right: 100% !important;
  }
}

#testimonialModal {
  padding: 0 !important;
}
#testimonialModal .title {
  font-size: 1.15rem;
}
#testimonialModal .title span {
  font-weight: 300;
  font-size: 0.9rem;
}
#testimonialModal #boxTestimonial {
  margin-bottom: 0;
}
#testimonialModal #boxTestimonial.responsive-embed {
  padding-bottom: 55%;
}
#testimonialModal .cta-video-testimonial {
  padding: 1rem;
}
@media screen and (min-width: 1000px) {
  #testimonialModal {
    width: 1000px;
  }
}
@media screen and (max-width: 999px) {
  #testimonialModal {
    width: 90%;
  }
}
@media screen and (max-width: 640px) {
  #testimonialModal {
    width: 100%;
  }
  #testimonialModal .title {
    padding-top: 2rem;
  }
}

.color--white {
  color: hsl(44, 15%, 100%);
}
.color--black {
  color: hsl(39, 10%, 6%);
}
.color--gold {
  color: #86754d;
}

.image--divider {
  position: relative;
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 63.9375em) {
  .image--divider p {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .image--divider {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
  .image--divider--content {
    color: hsl(44, 15%, 100%);
    position: absolute;
    bottom: 4.5rem;
    left: 0;
    right: 0;
    text-align: left;
  }
  .image--divider--content h3 {
    color: hsl(44, 15%, 100%);
  }
  .image--divider--content h3 span {
    color: hsl(44, 15%, 100%);
  }
}

.video_box--testimonial .youtube__thumbnail {
  background-color: #11100e;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.video_box--testimonial .youtube__play {
  width: 90px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.video_box--testimonial .youtube__play::before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.video_box--testimonial .youtube__thumbnail img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: 0.7;
  position: absolute;
}

.header .header--container {
  max-width: 1600px !important;
}

span.tag__new {
  position: absolute;
  top: 5px;
  right: 50px;
  background: hsl(42, 27%, 41%);
  padding: 0.25rem;
  color: #fff;
  border: 1px solid hsl(44, 15%, 100%);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.light--bg {
  background: hsl(44, 15%, 94%);
}

.bg--dark {
  background: #685736;
}

.tafer {
  color: #86754d !important;
}

.small-text {
  font-size: 0.785rem;
}

/*

  // List Suites TAFER REWARDS CTA

*/
.rate__plan {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.instant__discount .button {
  border-radius: 4px;
  display: flex;
  margin-bottom: 0;
  margin-left: auto;
}

.instant__discount small {
  display: block;
  line-height: 1.2;
  text-transform: initial;
}

.instant__discount + small.black {
  color: #121317;
}

.instant__discount svg use {
  fill: #86754d;
}

.instant__discount_best_rate {
  border-top: 1px solid #86754d;
  border-bottom: 1px solid #86754d;
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.currency__rates {
  font-weight: normal;
}

a.color--gold:hover {
  color: #86754d;
}

.instant__discount_benefits {
  background: #86754d;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

#early-access {
  background: hsl(280, 84%, 25%);
  color: hsl(44, 15%, 100%);
  font-size: 0.875rem;
  position: relative;
  z-index: 20;
  width: 100%;
  position: absolute;
  padding: 0.9rem 0;
}
@media screen and (min-width: 75em) {
  #early-access {
    position: relative;
  }
}
#early-access #closeOffer {
  top: 0.25rem;
  color: hsl(44, 15%, 100%);
}
#early-access a {
  margin: 0;
  padding: 5px 10px;
}
#early-access .txt {
  font-size: 14px;
}
#early-access a {
  margin: 0;
  padding: 5px 10px;
}
#early-access #closeOffer {
  top: 0.25rem;
  color: hsl(44, 15%, 100%);
}
@media print, screen and (min-width: 40em) {
  #early-access {
    padding: 0.5rem 0;
  }
  #early-access .txt {
    font-size: 1.25rem;
    padding: 0 5rem;
    font-size: 1rem;
    font-family: Helvetica;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
  }
}

.dropdown-phones {
  min-width: 300px;
  padding: 15px 15px 0;
}

.offcanvas-phones {
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  background: hsl(44, 15%, 100%);
  width: 100%;
  bottom: -350px;
  border: 1px solid hsl(44, 15%, 94%);
}

.dropdown-phones .cell,
.offcanvas-phones .cell {
  margin-bottom: 1rem;
}
.dropdown-phones .cell p,
.offcanvas-phones .cell p {
  margin-bottom: 0;
  font-weight: bold;
}
.dropdown-phones .cell a.phone,
.offcanvas-phones .cell a.phone {
  padding: 5px 0px 0 0px;
  color: hsl(42, 27%, 41%) !important;
}

@keyframes show-popup {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hide-popup {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
.popup {
  position: absolute;
  background-color: white;
  padding: 1rem;
  text-align: center;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}

.show-popup {
  animation: show-popup 0.3s;
}

.hide-popup {
  animation: hide-popup 0.3s;
  transition: 0s opacity 0.3s;
  opacity: 0;
}

.container-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9997;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-active {
  display: flex;
}

.fondo-modal {
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9998;
}

.newsletterModal {
  z-index: 9999;
  background-color: #fff;
  position: relative;
}

strong, b {
  font-weight: 700 !important;
}

.text-primary {
  color: hsl(42, 27%, 41%) !important;
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

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

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}
