@charset "UTF-8";
.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;
}
@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 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 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 bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@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;
}

/**
 * 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: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #413c39;
  -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: 15px;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 15px;
}

.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: 15px;
  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;
  }
}
.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;
  }
}
.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: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.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: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.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;
  }
}
.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%;
  }
}
.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: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.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% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.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% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}
@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% - 1.875rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

.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: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.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: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.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: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

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

.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 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 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: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-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% + 0.9375rem);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem);
  }
}
@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem);
  }
}
.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;
  }
}
.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%;
  }
}

.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: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.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: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

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

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

.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%;
  }
}

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

.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 + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
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.6;
  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: "Roboto", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  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: #b5a89b;
}

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2.25rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.75rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1rem;
  }
  h6, .h6 {
    font-size: 0.875rem;
  }
}
a {
  line-height: inherit;
  color: #496C40;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #3a5633;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #e0d9d1;
  border-left: 0;
}

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

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 #b5a89b;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #413c39;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #413c39;
}
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 #b5a89b;
  background-color: #e0d9d1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: hsl(39, 10%, 6%);
}

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

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #413c39;
}

.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;
  }
}
.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 #413c39;
    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;
  }
}
[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.5375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #b5a89b;
  border-radius: 15px;
  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: 400;
  line-height: 1.6;
  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 #413c39;
  background-color: hsl(44, 15%, 100%);
  box-shadow: 0 0 5px #b5a89b;
  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: #b5a89b;
}

input::placeholder,
textarea::placeholder {
  color: #b5a89b;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e0d9d1;
  cursor: not-allowed;
}

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

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: 400;
  line-height: 1.4;
  color: #413c39;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #413c39;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child {
  border-radius: 15px 0 0 15px;
}
.input-group > :last-child > * {
  border-radius: 0 15px 15px 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 #e0d9d1;
  background: hsl(44, 15%, 100%);
  color: #413c39;
  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 #e0d9d1;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.5375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #b5a89b;
  border-radius: 15px;
  background-color: hsl(44, 15%, 100%);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  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%2865, 60, 57%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 #413c39;
  background-color: hsl(44, 15%, 100%);
  box-shadow: 0 0 5px #b5a89b;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e0d9d1;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: hsl(40, 60%, 36%);
  background-color: #f4f1e9;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: hsl(40, 60%, 36%);
}
.is-invalid-input:not(:focus)::placeholder {
  color: hsl(40, 60%, 36%);
}

.is-invalid-label {
  color: hsl(40, 60%, 36%);
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(40, 60%, 36%);
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.75rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 15px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.87rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #7B9462;
  color: hsl(44, 15%, 100%);
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #697e53;
  color: hsl(44, 15%, 100%);
}
.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: #8CA771;
  color: hsl(44, 15%, 100%);
}
.button.primary:hover, .button.primary:focus {
  background-color: #77935b;
  color: hsl(44, 15%, 100%);
}
.button.secondary {
  background-color: #589CAF;
  color: hsl(44, 15%, 100%);
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #488697;
  color: hsl(44, 15%, 100%);
}
.button.success {
  background-color: hsl(201, 47%, 43%);
  color: hsl(44, 15%, 100%);
}
.button.success:hover, .button.success:focus {
  background-color: #316a89;
  color: hsl(44, 15%, 100%);
}
.button.warning {
  background-color: hsl(4, 62%, 26%);
  color: hsl(44, 15%, 100%);
}
.button.warning:hover, .button.warning:focus {
  background-color: #5b1a15;
  color: hsl(44, 15%, 100%);
}
.button.alert {
  background-color: hsl(40, 60%, 36%);
  color: hsl(44, 15%, 100%);
}
.button.alert:hover, .button.alert:focus {
  background-color: #7d5e1f;
  color: hsl(44, 15%, 100%);
}
.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: #7B9462;
  color: hsl(44, 15%, 100%);
}
.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: #8CA771;
  color: hsl(44, 15%, 100%);
}
.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: #589CAF;
  color: hsl(44, 15%, 100%);
}
.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: hsl(201, 47%, 43%);
  color: hsl(44, 15%, 100%);
}
.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: hsl(4, 62%, 26%);
  color: hsl(44, 15%, 100%);
}
.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: hsl(40, 60%, 36%);
  color: hsl(44, 15%, 100%);
}
.button.hollow {
  border: 1px solid #7B9462;
  color: #7B9462;
}
.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: #5c6f4a;
  color: #5c6f4a;
}
.button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
  border: 1px solid #7B9462;
  color: #7B9462;
}
.button.hollow.primary {
  border: 1px solid #8CA771;
  color: #8CA771;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #698250;
  color: #698250;
}
.button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
  border: 1px solid #8CA771;
  color: #8CA771;
}
.button.hollow.secondary {
  border: 1px solid #589CAF;
  color: #589CAF;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #407685;
  color: #407685;
}
.button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
  border: 1px solid #589CAF;
  color: #589CAF;
}
.button.hollow.success {
  border: 1px solid hsl(201, 47%, 43%);
  color: hsl(201, 47%, 43%);
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #2c5e79;
  color: #2c5e79;
}
.button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
  border: 1px solid hsl(201, 47%, 43%);
  color: hsl(201, 47%, 43%);
}
.button.hollow.warning {
  border: 1px solid hsl(4, 62%, 26%);
  color: hsl(4, 62%, 26%);
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #511713;
  color: #511713;
}
.button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
  border: 1px solid hsl(4, 62%, 26%);
  color: hsl(4, 62%, 26%);
}
.button.hollow.alert {
  border: 1px solid hsl(40, 60%, 36%);
  color: hsl(40, 60%, 36%);
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #6e531c;
  color: #6e531c;
}
.button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
  border: 1px solid hsl(40, 60%, 36%);
  color: hsl(40, 60%, 36%);
}
.button.clear {
  border: 1px solid #7B9462;
  color: #7B9462;
}
.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: #5c6f4a;
  color: #5c6f4a;
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #7B9462;
  color: #7B9462;
}
.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: 1px solid #8CA771;
  color: #8CA771;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #698250;
  color: #698250;
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #8CA771;
  color: #8CA771;
}
.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: 1px solid #589CAF;
  color: #589CAF;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #407685;
  color: #407685;
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #589CAF;
  color: #589CAF;
}
.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: 1px solid hsl(201, 47%, 43%);
  color: hsl(201, 47%, 43%);
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: #2c5e79;
  color: #2c5e79;
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid hsl(201, 47%, 43%);
  color: hsl(201, 47%, 43%);
}
.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: 1px solid hsl(4, 62%, 26%);
  color: hsl(4, 62%, 26%);
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #511713;
  color: #511713;
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid hsl(4, 62%, 26%);
  color: hsl(4, 62%, 26%);
}
.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: 1px solid hsl(40, 60%, 36%);
  color: hsl(40, 60%, 36%);
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #6e531c;
  color: #6e531c;
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid hsl(40, 60%, 36%);
  color: hsl(40, 60%, 36%);
}
.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.75rem;
}
.button.dropdown.hollow::after {
  border-top-color: #7B9462;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #8CA771;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #589CAF;
}
.button.dropdown.hollow.success::after {
  border-top-color: hsl(201, 47%, 43%);
}
.button.dropdown.hollow.warning::after {
  border-top-color: hsl(4, 62%, 26%);
}
.button.dropdown.hollow.alert::after {
  border-top-color: hsl(40, 60%, 36%);
}
.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: 1rem;
  margin-bottom: 1rem;
  font-size: 0.87rem;
  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: #8CA771;
  color: hsl(44, 15%, 100%);
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #77935b;
  color: hsl(44, 15%, 100%);
}
.button-group.secondary .button {
  background-color: #589CAF;
  color: hsl(44, 15%, 100%);
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #488697;
  color: hsl(44, 15%, 100%);
}
.button-group.success .button {
  background-color: hsl(201, 47%, 43%);
  color: hsl(44, 15%, 100%);
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #316a89;
  color: hsl(44, 15%, 100%);
}
.button-group.warning .button {
  background-color: hsl(4, 62%, 26%);
  color: hsl(44, 15%, 100%);
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #5b1a15;
  color: hsl(44, 15%, 100%);
}
.button-group.alert .button {
  background-color: hsl(40, 60%, 36%);
  color: hsl(44, 15%, 100%);
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #7d5e1f;
  color: hsl(44, 15%, 100%);
}
.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: 15px;
  background-color: white;
  color: #413c39;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #eef2ea;
  color: #413c39;
}
.callout.secondary {
  background-color: #e6f0f3;
  color: #413c39;
}
.callout.success {
  background-color: #dfecf3;
  color: #413c39;
}
.callout.warning {
  background-color: #f4d3d1;
  color: #413c39;
}
.callout.alert {
  background-color: #f5ebd8;
  color: #413c39;
}
.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;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #b5a89b;
  border-radius: 15px;
  background: hsl(44, 15%, 100%);
  box-shadow: none;
  overflow: hidden;
  color: #413c39;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  flex: 0 1 auto;
  display: flex;
  padding: 1rem;
  background: hsl(44, 15%, 100%);
}
.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;
}

.close-button {
  position: absolute;
  color: #413c39;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: hsl(39, 10%, 6%);
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  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;
  }
}
.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: #8CA771;
  color: hsl(44, 15%, 100%);
}
.menu .active > a {
  background: #8CA771;
  color: hsl(44, 15%, 100%);
}
.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.6rem;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
.top-bar,
.top-bar ul {
  background-color: transparent;
}
.top-bar ul ul {
  background-color: hsl(44, 15%, 100%);
}
.top-bar input {
  max-width: 200px;
  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%;
}
.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-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: 300px;
  padding: 1rem;
  visibility: hidden;
  display: none;
  border: 1px solid #BFDBAA;
  border-radius: 15px;
  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.25rem;
}
.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: #6A8153 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: #8CA771;
}
.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 #6A8153 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 #6A8153;
}
@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.25rem;
  }
  .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: #6A8153 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 #6A8153 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 #6A8153;
  }
}
@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.25rem;
  }
  .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: #6A8153 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 #6A8153 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 #6A8153;
  }
}
@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.25rem;
  }
  .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: #6A8153 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 #6A8153 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 #6A8153;
  }
}
.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 #BFDBAA;
  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 #6A8153 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 #6A8153;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #8CA771;
  color: hsl(44, 15%, 100%);
}
.label.primary {
  background: #8CA771;
  color: hsl(39, 10%, 6%);
}
.label.secondary {
  background: #589CAF;
  color: hsl(39, 10%, 6%);
}
.label.success {
  background: hsl(201, 47%, 43%);
  color: hsl(44, 15%, 100%);
}
.label.warning {
  background: hsl(4, 62%, 26%);
  color: hsl(44, 15%, 100%);
}
.label.alert {
  background: hsl(40, 60%, 36%);
  color: hsl(44, 15%, 100%);
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 39.9375em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 39.9375em) {
  .media-object.stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .media-object.stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.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(255, 255, 255, 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: 16;
  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: 16;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 17;
}
.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: 16;
  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: 16;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 17;
}
.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: 92px;
    transform: translateY(-92px);
  }
}
.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(-92px);
  }
}
.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(92px);
  }
}

.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: 92px;
    transform: translateY(92px);
  }
}
.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(92px);
  }
}
.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(-92px);
  }
}

.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 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;
  }
}
.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: 2rem;
  background-color: rgba(106, 129, 83, 0.5);
  color: hsl(44, 15%, 100%);
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0.5rem;
  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.25);
}

.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: 0.5rem;
  height: 0.5rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #e0d9d1;
}
.orbit-bullets button:hover {
  background-color: #8CA771;
}
.orbit-bullets button.is-active {
  background-color: #8CA771;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 45%;
  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%;
}

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(65, 60, 57, 0.92);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  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 {
  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;
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

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

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

thead {
  background: hsl(44, 15%, 100%);
  color: #262321;
}

tfoot {
  background: #f4f3f0;
  color: #413c39;
}

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: #fbfaf9;
}
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 #e0d9d1;
  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: #8CA771;
}
.tabs.primary > li > a {
  color: hsl(39, 10%, 6%);
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #85a268;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #b5a89b;
}
.tabs-title > a:hover {
  background: hsl(44, 15%, 100%);
  color: #a19080;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: hsl(44, 15%, 100%);
  color: #8CA771;
}

.tabs-content {
  border: 1px solid #e0d9d1;
  border-top: 0;
  background: #f3f0ed;
  color: #413c39;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #e0d9d1;
  border-left: 0;
}

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

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #413c39;
  font-weight: 700;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 15px;
  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;
  }
}

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

.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: 15px 15px 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 15px 15px;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #b5a89b;
  border-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  color: #413c39;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #b5a89b;
  border-radius: 0 0 15px 15px;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #f3f0ed;
}
.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 #b5a89b;
  border-bottom: 0;
  background-color: hsl(44, 15%, 100%);
  color: #413c39;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #b5a89b;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: hsl(44, 15%, 100%);
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: hsl(44, 15%, 100%);
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #8CA771;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  left: auto;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #6A8153;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  right: auto;
  left: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #6A8153 transparent transparent;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #8CA771 transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0;
}

.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: 15px;
  background: #b5a89b;
  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: 15px;
  background: hsl(44, 15%, 100%);
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #496C40;
}
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;
}

.page {
  position: relative;
  padding: 0 0 58px;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .page {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 74.9375em) {
  .page {
    padding-bottom: 44px;
  }
}
@media screen and (max-width: 74.9375em) {
  .page {
    padding-top: 0;
    padding-bottom: 54px;
  }
}

#content {
  position: relative;
}

@media screen and (min-width: 100em) {
  .row, .grid-container, hr {
    max-width: 90rem;
  }
}
section {
  position: relative;
  padding: 1.5rem 1rem;
}
@media print, screen and (min-width: 40em) {
  section {
    padding: 3rem 2rem;
  }
}
section.divisor {
  background: #f3f0ed;
}

aside.sidebar h4 {
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid #e0d9d1;
}
aside.sidebar .item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
aside.sidebar .item img {
  width: 100px;
  padding-right: 1rem;
}
aside.sidebar .item img:hover {
  opacity: 0.9;
}
aside.sidebar .item h6 {
  padding-left: 1rem;
}

/*! Header */
.masthead {
  position: relative;
  background-color: hsl(44, 15%, 100%);
}
@media screen and (max-width: 56em) {
  .masthead {
    z-index: 12;
  }
}
.masthead ul {
  padding-left: 0;
}
.masthead ul li {
  margin-bottom: 0;
}

/* .page {
  padding-top: 60.2px;
} */
@media screen and (min-width: 75em) {
  .page {
    padding-top: 0;
  }
}
header#main_header.headerFixed {
  width: 100%;
  height: 100%;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 12;
  display: block;
  position: fixed !important;
}
header#main_header.headerFixed .breadcrumbs {
  display: none;
}

#branding {
  display: none;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  #branding {
    display: block;
  }
}
#branding .grid-container {
  position: relative;
}

.site-logo {
  padding: 0;
  display: block;
  position: relative;
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  .site-logo img {
    width: 120px;
  }
}

.site-cta {
  text-align: right;
  line-height: 1;
  color: #8CA771;
}
.site-cta .tollphone {
  display: inline-block;
  padding-right: 1.3rem;
}
.site-cta small {
  font-size: 80%;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.site-cta strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.site-cta button#icon-booking-hotel {
  padding: 0.87rem 1.5rem;
}
.site-cta a {
  color: #8CA771;
}

ul.social_icons {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: scroll;
}
ul.social_icons a {
  color: #8CA771;
  padding: 0 0.5rem;
}

.social_nav__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 0.5rem;
  cursor: pointer;
  color: #8CA771;
}
.social_nav__label span {
  display: none;
  transition: display 0.3s ease-in-out;
}
.social_nav__label span:first-child {
  display: block;
}
.social_nav--input {
  position: absolute;
  right: 100%;
}
.social_nav--hide {
  width: auto;
  max-width: 96px;
  display: inline-block;
  transition: max-width 0.3s ease-out;
  overflow: hidden;
  position: relative;
}

input[type=checkbox]:checked ~ .social_nav--hide {
  width: auto;
  max-width: 650px;
  transition: max-width 0.7s ease-in;
}

input[type=checkbox]:checked ~ .social_nav--hide + .social_nav__label span {
  display: none;
  transition: display 0.7s ease-in-out;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 19;
}
@media screen and (max-width: 63.9375em) {
  .header--container {
    padding: 0;
  }
}
.header a:hover, .header button:hover {
  text-decoration: underline !important;
}
.header .top-bar a, .header .top-bar button {
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media screen and (min-width: 75em) {
  .header .top-bar a, .header .top-bar button {
    text-transform: inherit;
  }
}
@media screen and (min-width: 90em) {
  .header .top-bar a, .header .top-bar button {
    font-size: 0.875rem;
  }
}
.header .top-bar .top-bar-right {
  width: 100%;
}
@media screen and (min-width: 75em) {
  .header .top-bar .top-bar-right {
    width: auto;
  }
}
.header .top-bar .top-bar-lang {
  display: none;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.header .top-bar .top-bar-tafer {
  display: none;
}
.header .top-bar .top-bar-login {
  display: none;
}
.header .top-bar .menu__close {
  display: none;
}
.header .header-menu a {
  font-size: 1.125rem;
}
@media print, screen and (min-width: 64em) {
  .header #mainMenu {
    padding: 0rem;
  }
}
@media screen and (min-width: 75em) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(17, 15, 14, 0.7) 0%, rgba(17, 15, 14, 0.5) 25%, rgba(17, 15, 14, 0.3) 50%, rgba(17, 15, 14, 0) 100%);
    border-bottom: 0;
    padding-bottom: 2rem;
    transition-timing-function: ease-out;
    transition: 0.1s;
  }
  .header:hover, .header:focus {
    background: linear-gradient(to bottom, rgba(17, 15, 14, 0.8) 0%, rgba(17, 15, 14, 0.6) 25%, rgba(17, 15, 14, 0.4) 50%, rgba(17, 15, 14, 0.2) 85%, rgba(17, 15, 14, 0.005) 100%);
    transition-timing-function: ease-in;
    transition: 0.45s;
    padding-bottom: 2.5rem;
  }
  .header .top-bar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1rem;
    padding: 0.25rem;
  }
  .header .top-bar .top-bar-lang {
    display: block;
    padding-right: 1rem;
    margin-right: 1rem;
  }
  .header .top-bar .top-bar-tafer {
    display: block;
    margin-right: 1rem;
  }
  .header .top-bar .top-bar-login {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-items: center;
    color: hsl(44, 15%, 100%);
  }
  .header .top-bar .top-bar-login svg use {
    stroke: hsl(44, 15%, 100%);
    vertical-align: text-top;
  }
  .header .top-bar .top-bar-login .top-bar-user--menu svg use {
    stroke: #8CA771;
  }
  .header .top-bar ul {
    background-color: transparent;
  }
  .header .top-bar ul.top-bar-more--menu, .header .top-bar ul.top-bar-user--menu {
    background: hsl(44, 15%, 100%);
  }
  .header a, .header button {
    color: hsl(44, 15%, 100%);
  }
  .header a svg use, .header button svg use {
    stroke: hsl(44, 15%, 100%);
    fill: hsl(44, 15%, 100%);
  }
  .header a.button.hollow, .header button.button.hollow {
    border-color: hsl(44, 15%, 100%) !important;
    color: hsl(44, 15%, 100%) !important;
  }
  .header--main {
    padding-left: 0;
  }
  .header #mainMenu {
    padding: 0 0.5rem;
  }
}
@media screen and (min-width: 90em) {
  .header #mainMenu {
    padding: 0;
  }
  .header .header--main {
    padding-left: 1rem;
  }
}
.header .header--circle {
  display: none;
}
.header .header--ctas {
  display: none;
}
.header .secondary__menu_container {
  display: none;
}
.header .social__menu_container {
  display: none;
}
.header__logo-responsive {
  display: none;
}
.header--active {
  transition: all 0.5s linear;
  background: rgba(84, 118, 72, 0.75);
  padding-bottom: 0;
  position: fixed;
  z-index: 20;
}
.header--active #mainMenu {
  height: 70px;
}
.header--active .header__logo, .header--active .header--top-bar {
  display: none;
}
.header--active .header__logo-responsive {
  display: block;
}
.header--active:hover, .header--active:focus {
  background: rgba(84, 118, 72, 0.95);
  padding-bottom: 0;
}
.header--active li {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 75em) {
  .header .is-active > a {
    color: hsl(44, 15%, 100%) !important;
  }
}
.header .submenu {
  background-color: hsl(44, 15%, 100%);
}
.header .submenu a {
  color: #6A8153;
  font-size: 1rem;
}

@media screen and (max-width: 74.9375em) {
  #early-access ~ .page .header {
    position: relative;
  }
  #early-access ~ .page {
    padding-top: 0;
  }
}
.showcase {
  width: 100vw;
  height: 100vw;
  overflow: hidden;
  position: relative;
}
.showcase--img {
  width: 100%;
}
.showcase--video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.showcase--arrow {
  bottom: 10px;
  left: 0;
  margin: 0 auto;
  padding: 1rem;
  position: absolute;
  right: 0;
  width: 40px;
}
.showcase--awards {
  bottom: 0;
  right: 0;
  margin: 1.5rem 3rem;
  position: absolute;
}
@media screen and (max-width: 63.9375em) {
  .showcase--awards {
    display: none;
  }
}

@media print, screen and (min-width: 40em) {
  .showcase {
    height: 75vw;
  }
}
@media print, screen and (min-width: 64em) {
  .showcase {
    height: 42.8571vw;
  }
}
@media screen and (min-width: 80em) {
  .showcase {
    height: 43vw;
  }
}
.index .showcase {
  overflow: hidden;
  height: 121.3333333333vw;
}
@media print, screen and (min-width: 40em) {
  .index .showcase {
    height: 74.8502994012vw;
  }
}
@media print, screen and (min-width: 64em) {
  .index .showcase {
    height: 66.640625vw;
  }
}
@media screen and (min-width: 90em) {
  .index .showcase {
    height: 56.25vw;
  }
}
@media screen and (orientation: landscape) and (min-width: 64em) {
  .index .showcase {
    height: calc(100vh - 92px);
  }
}
@media screen and (orientation: landscape) and (min-width: 75em) {
  .index .showcase {
    height: calc(100vh - 92px);
  }
}
.index .showcase #scrollBtn {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  max-width: 200px;
}
.index .showcase #scrollBtn .material-icons {
  opacity: 0.6;
}
.index .showcase #scrollBtn .material-icons:hover {
  opacity: 1;
}
.index .tafer-life {
  position: relative;
  height: 100%;
}
.index .tafer-life-logo {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 0);
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  .index .tafer-life-logo {
    left: 10%;
    bottom: 50%;
    transform: translate(0, 50%);
    text-align: left;
  }
}
.index .tafer-life-logo img {
  display: block;
}
.index .tafer-life-logo button {
  margin-top: 1rem !important;
  border-color: #fff;
  color: #fff;
}
.index .field-awards {
  display: none !important;
}

footer .breadcrumbs {
  position: relative;
}
footer .breadcrumbs li, footer .breadcrumbs a, footer .breadcrumbs li:not(:last-child):after {
  color: #597044;
}

#loyalty-wrap a {
  color: hsl(39, 10%, 6%);
  font-size: 1rem;
}
#loyalty-wrap div nav ul li a {
  color: black !important;
  font-size: 1rem !important;
}

.loyalty-widget span {
  color: white;
}
.loyalty-widget button {
  background-color: white !important;
}

#top_bar_login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  color: black;
}
@media screen and (min-width: 75em) {
  #top_bar_login {
    color: white;
  }
}

#colophon {
  background: hsl(44, 15%, 100%);
}

#contactinfo {
  padding: 1rem;
  color: inherit;
}
@media print, screen and (min-width: 40em) {
  #contactinfo {
    padding: 3rem 1rem;
  }
}
#contactinfo .vcard {
  font-size: 0.8125rem;
}
#contactinfo .vcard .org {
  font-size: 1rem;
  color: #8CA771;
}
@media screen and (max-width: 63.9375em) {
  #contactinfo .vcard {
    margin-bottom: 2rem;
  }
}
#contactinfo .vcard img.photo {
  margin-bottom: 1rem;
}
#contactinfo #social_icons_footer {
  margin-top: 2rem;
}
#contactinfo #social_icons_footer li {
  margin-right: 0.8rem;
}
#contactinfo #social_icons_footer .social_icons a {
  padding: 0;
}
#contactinfo #social_icons_footer .social_icons a img {
  min-width: 33px;
  max-height: 30px;
}
#contactinfo .title-footer {
  font-size: 1rem !important;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
#contactinfo p {
  font-size: 0.8125rem;
}
#contactinfo .awards_footer {
  text-align: left;
}
@media print, screen and (min-width: 64em) {
  #contactinfo .awards_footer {
    text-align: center;
  }
}
#contactinfo .awards_footer img.logos {
  margin: 1rem auto 2rem auto;
}

#footer-links {
  padding: 1rem 0;
  color: rgba(73, 108, 64, 0.8);
  background: hsl(44, 15%, 100%);
  border-top: 1px solid rgba(224, 217, 209, 0.5);
  border-bottom: 1px solid rgba(224, 217, 209, 0.5);
}
@media print, screen and (min-width: 40em) {
  #footer-links {
    padding: 0;
  }
}
#footer-links a {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 45px;
  padding: 0 0.5rem;
  color: inherit;
}
#footer-links a:hover {
  color: #496C40;
}
#footer-links a:first-child {
  padding-left: 0;
}
#footer-links a:last-child {
  padding-right: 0;
}
#footer-links #phnumbers {
  text-transform: uppercase;
  text-align: left;
}
@media print, screen and (min-width: 40em) {
  #footer-links #phnumbers {
    text-align: right;
  }
}
@media print, screen and (min-width: 64em) {
  #footer-links {
    height: 45px;
  }
}
#footer-links #footer-nav, #footer-links .dropdown.menu {
  display: inline-block;
}
#footer-links .grid-container {
  max-width: 75rem;
}
#footer-links .dropdown.menu {
  padding-left: 1rem;
}
#footer-links .dropdown.menu li.is-dropdown-submenu-parent > a::after {
  display: none;
}
#footer-links .dropdown.menu li {
  margin-bottom: 0;
}
#footer-links .dropdown.menu li a {
  line-height: 35px !important;
}
#footer-links .dropdown.menu .submenu {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid #e0d9d1;
  margin: 0;
}
#footer-links ul.social_icons li {
  margin: 0 0.8rem;
}
#footer-links ul.social_icons img {
  min-width: 25px;
  max-height: 25px;
}
#footer-links span.gds {
  font-size: 0.75rem;
  line-height: 45px;
  font-weight: 700;
  border-bottom: none;
}

#crossmkt {
  background: hsl(44, 15%, 100%);
  border-bottom: 1px solid rgba(224, 217, 209, 0.5);
  border-top: 1px solid rgba(224, 217, 209, 0.5);
  padding: 1rem;
}
#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 #e0d9d1;
    position: relative;
    padding-left: 40%;
  }
}
@media screen and (max-width: 1000px) {
  #crossmkt #tafer-logo a {
    border-bottom: 1px solid #e0d9d1;
    padding-bottom: 0.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  #crossmkt {
    padding: 2rem 1rem;
  }
  #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;
  }
}

#copy {
  text-align: left;
  padding: 2rem 1rem;
}
#copy small {
  display: block;
}
@media print, screen and (min-width: 40em) {
  #copy {
    text-align: center;
    padding: 2rem 0;
  }
}
@media print, screen and (min-width: 64em) {
  #copy {
    text-align: right;
  }
}

body.reveal-site-nav {
  overflow: hidden;
}
body.reveal-site-nav #site-nav {
  display: block;
  bottom: 0;
}

@media screen and (max-width: 640px) {
  .container-menu {
    padding: 0 !important;
  }
}

.site-nav {
  background: transparent;
  display: none;
}
@media print, screen and (min-width: 64em) {
  .site-nav {
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .site-nav .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
  }
  .site-nav .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.25rem;
  }
}
.site-nav ul.dropdown, .site-nav ul {
  background: transparent;
}
.site-nav ul.dropdown li.is-dropdown-submenu-parent > a, .site-nav ul li.is-dropdown-submenu-parent > a {
  text-align: left;
}
@media print, screen and (min-width: 64em) {
  .site-nav ul.dropdown li.is-dropdown-submenu-parent > a, .site-nav ul li.is-dropdown-submenu-parent > a {
    color: hsl(44, 15%, 100%);
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .site-nav ul.dropdown li, .site-nav ul li {
    width: 100%;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .site-nav ul.dropdown li, .site-nav ul li {
    width: 100%;
  }
}
.site-nav ul.dropdown ul, .site-nav ul ul {
  background: hsl(44, 15%, 100%);
}
.site-nav ul.dropdown ul.menu.vertical.submenu.is-accordion-submenu.is-active, .site-nav ul ul.menu.vertical.submenu.is-accordion-submenu.is-active {
  background: rgba(224, 217, 209, 0.2) !important;
}
.site-nav .menu li {
  margin-bottom: 0;
}
.site-nav .menu li a {
  text-transform: uppercase;
  position: relative;
  padding: 0.75rem 0.5rem;
}
.site-nav .menu li a:hover {
  background: #e0d9d1;
}
@media screen and (max-width: 63.9375em) {
  .site-nav .menu li a {
    padding: 0.75rem 1rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .site-nav .menu li a {
    font-size: 0.85rem;
    padding: 0.5rem 0.2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .site-nav .menu li a {
    color: hsl(44, 15%, 100%);
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem;
  }
  .site-nav .menu li a:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.9) !important;
  }
}
@media screen and (min-width: 75em) {
  .site-nav .menu li a {
    font-size: 0.95rem;
    padding: 0.75rem 0.5rem;
  }
}
@media screen and (min-width: 90em) {
  .site-nav .menu li a {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .site-nav .menu li a {
    font-size: 1.25rem;
    padding: 1rem 1.75rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .site-nav .menu li a {
    font-size: 1.25rem;
    padding: 1rem 1.75rem;
    text-transform: uppercase;
  }
}
@media print, screen and (min-width: 64em) {
  .site-nav .menu li ul li a {
    color: #597044 !important;
    text-transform: none !important;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .site-nav .menu li ul li a:hover {
    color: rgba(140, 167, 113, 0.9) !important;
  }
}
@media screen and (max-width: 74.9375em) {
  .site-nav .is-submenu-item.is-accordion-submenu-item a {
    text-transform: none;
    font-size: 0.85rem;
  }
}
.site-nav .secondary-nav-container {
  margin: 0 auto;
  width: 100%;
}
.site-nav .secondary-nav-container:hover {
  background: none !important;
}
.site-nav #secondary-nav-mobile {
  border-top: 1px solid #8CA771;
  border-bottom: 1px solid #8CA771;
  padding: 0.75rem 0;
  width: 92%;
  margin: 1rem auto;
}
.site-nav #secondary-nav-mobile ul {
  margin: 0;
  display: flex;
  justify-content: space-around;
}
.site-nav #secondary-nav-mobile li {
  display: inline-block !important;
  width: auto !important;
}
.site-nav #secondary-nav-mobile li a {
  padding: 0.5rem 0.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}
@media print, screen and (min-width: 40em) {
  .site-nav #secondary-nav-mobile li a {
    padding: 0.65rem;
  }
}
.site-nav #logo-tafer-rewards-mobile {
  text-align: center;
  position: relative;
  display: block;
  z-index: 0;
}
@media screen and (max-width: 74.9375em) {
  .site-nav {
    padding: 0 !important;
  }
}

.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: #8CA771 transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a:after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

/* Portrait  */
@media only screen and (min-device-width: 640px) and (max-device-width: 1024px) and (orientation: portrait) {
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: none !important;
  }
}
@media screen and (min-width: 75em) {
  .dropdown.menu > li.is-dropdown-submenu-parent > a::after, .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: none !important;
  }
  .top-bar-login .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    border-color: hsl(44, 15%, 100%) transparent transparent;
    display: block !important;
  }
}
.dropdown .is-dropdown-submenu a {
  text-transform: none;
  font-size: 0.85rem;
}

body.reveal-site-nav {
  overflow: hidden;
}
body.reveal-site-nav .site-nav {
  padding-top: 2rem !important;
}

/**
***
* VERSION DESKTOP DE MENU DROPDOWN GRANDE (EJEMPLO: SUITES, RESIDENCES) 
***
**/
@media screen and (min-width: 75em) {
  .header--main-menu .dropdown.menu .dropdown--grande a,
  html[lang=es] .header--main-menu .dropdown.menu .container-suites a,
  html[lang=es] .header--main-menu .dropdown.menu .container-residences a,
  html[lang=es] .header--main-menu .dropdown.menu .container-submenu a {
    padding: 0.4rem 0;
  }
  .header--main-menu .dropdown.menu .dropdown--grande a.view--all,
  html[lang=es] .header--main-menu .dropdown.menu .container-suites a.view--all,
  html[lang=es] .header--main-menu .dropdown.menu .container-residences a.view--all,
  html[lang=es] .header--main-menu .dropdown.menu .container-submenu a.view--all {
    padding: 25px 0;
  }
}
@media screen and (min-width: 75em) {
  .dropdown--grande {
    min-width: 565px;
    padding: 30px 40px 0;
  }
  .dropdown--grande .title-menu {
    border-bottom: 1px solid #BFDBAA;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .dropdown--grande .title-menu .title-dropdown {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    line-height: 1;
  }
  .dropdown--grande .title-menu .subtitle-dropdown {
    margin: 0;
  }
  .dropdown--grande .cell {
    margin-bottom: 20px;
  }
  .dropdown--grande .cell:last-child {
    margin-bottom: 0;
  }
  .dropdown--grande .container-suites > .cell:nth-child(1) {
    order: 1;
  }
  .dropdown--grande .container-suites > .cell:nth-child(2) {
    order: 3;
  }
  .dropdown--grande .container-suites > .cell:nth-child(3) {
    order: 2;
  }
  .dropdown--grande .container-suites > .cell:nth-child(4) {
    order: 4;
  }
  .dropdown--grande .container-suites > .cell:nth-child(5) {
    order: 5;
  }
  .dropdown--grande .container-residences > .cell .column1 {
    display: inline-block;
    width: 49.5%;
  }
  .dropdown--grande .title-column {
    margin: 0 0 7px 0;
    font-size: 16px;
    font-weight: bold;
  }
  .dropdown--grande a {
    padding: 0.7rem 0;
  }
  .dropdown--grande a.view--all {
    text-align: right;
    border-top: 1px solid #BFDBAA;
  }
}

.offcanvas__menu#mobileMenu {
  background-color: hsl(44, 15%, 100%);
  box-shadow: none;
}
.offcanvas__menu#mobileMenu .buttonMenu {
  display: none;
}
.offcanvas__menu#mobileMenu .header--main-menu {
  background: hsl(44, 15%, 100%);
  display: flex !important;
  flex-direction: column-reverse;
  border-bottom: 1px solid #8CA771;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu {
  padding: 2.25rem;
  padding-top: 1rem;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li {
  position: relative;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .header--circle {
  position: absolute;
  left: 0px;
  background: rgba(202, 191, 180, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .header--circle svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .header--circle use {
  fill: #6A8153;
  stroke: #6A8153;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li a {
  color: #6A8153;
  padding-left: 50px;
  position: relative;
  font-size: 1.0625rem;
  line-height: 2.8;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande .container-suites,
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande .container-residences,
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande .container-submenu {
  margin-top: 20px;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande .cell {
  margin-bottom: 15px;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande .cell:last-child {
  margin-bottom: 0;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande h4 {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0px 0 10px 0;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande a {
  margin: 0 0 12px 0;
  border: none;
  padding: 0;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande a.view--all {
  color: #597044;
  display: inline-block;
  text-align: center;
  width: 100%;
  border-top: 1px solid #BFDBAA;
  border-bottom: 1px solid #BFDBAA;
  padding: 15px 0;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande a.view--all svg {
  margin-left: 5px;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li .dropdown--grande a.view--all svg use {
  stroke: #597044;
  fill: #597044;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu > li:last-child a {
  border: 0;
}
.offcanvas__menu#mobileMenu .header--main-menu .header-menu .submenu a {
  color: #6A8153;
  font-size: 0.875rem;
  line-height: 2;
}
.offcanvas__menu#mobileMenu .header--main-menu .is-accordion-submenu-parent > a::after {
  right: 0;
}
.offcanvas__menu#mobileMenu .user__menu {
  background: rgba(191, 219, 170, 0.1);
  border-bottom: 1px solid #8CA771;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  justify-content: center;
  align-items: center;
}
.offcanvas__menu#mobileMenu .user__menu .top-bar-login {
  display: flex;
  color: hsl(39, 10%, 6%);
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.offcanvas__menu#mobileMenu .header__ctas {
  background: rgba(191, 219, 170, 0.1);
  border-bottom: 1px solid #8CA771;
  padding: 1rem 2.25rem;
}
.offcanvas__menu#mobileMenu .header__ctas a.booknow, .offcanvas__menu#mobileMenu .header__ctas button {
  background: #589CAF;
  color: hsl(44, 15%, 100%);
  font-size: 0.875rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.offcanvas__menu#mobileMenu .header__ctas a.booknow svg use, .offcanvas__menu#mobileMenu .header__ctas button svg use {
  stroke: #8CA771;
}
.offcanvas__menu#mobileMenu .header__ctas button {
  color: hsl(44, 15%, 100%);
}
.offcanvas__menu#mobileMenu .toll_free_header {
  color: #8CA771;
}
.offcanvas__menu#mobileMenu svg.white use {
  stroke: #8CA771;
  fill: #8CA771;
}
.offcanvas__menu#mobileMenu .header--top-bar {
  background: hsl(44, 15%, 100%);
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-right {
  width: 100%;
}
@media screen and (min-width: 75em) {
  .offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-right {
    width: auto;
  }
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-lang {
  display: block;
  border-top: solid 1px #8CA771;
  line-height: 2;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-tafer {
  display: block;
  border-top: solid 1px #8CA771;
  line-height: 2;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-login {
  display: block;
  border-top: solid 1px #8CA771;
  line-height: 2;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  color: hsl(44, 15%, 100%);
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar .top-bar-login button {
  text-transform: uppercase;
  font-size: 0.875rem;
}
.offcanvas__menu#mobileMenu .header--top-bar .top-bar a {
  color: #6A8153;
  font-size: 0.875rem;
}
.offcanvas__menu#mobileMenu .header--top-bar-menu {
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 30px;
  -moz-column-gap: 30px;
  display: block;
  padding: 1.5rem 0.25rem;
}
.offcanvas__menu#mobileMenu .header--top-bar-menu a {
  color: #6A8153;
  font-size: 0.875rem;
  position: relative;
}
.offcanvas__menu#mobileMenu .social__menu_container {
  border-bottom: 1px solid #6A8153;
  border-top: 1px solid #6A8153;
  display: block;
  margin: 0 2.25rem;
  font-size: 0.75rem;
  margin-bottom: 4rem;
}
.offcanvas__menu#mobileMenu .social__menu_container li a {
  color: #6A8153;
  padding: 1.35rem 0.5rem;
}
.offcanvas__menu#mobileMenu .social__menu_container li:first-child a {
  padding-left: 0;
}
.offcanvas__menu#mobileMenu .social__menu_container li:last-child a {
  padding-right: 0;
}
.offcanvas__menu#mobileMenu .is-accordion-submenu-parent > a::after {
  border-color: #6A8153 transparent transparent;
}

.header__ctas a.booknow, .header__ctas button {
  color: hsl(44, 15%, 100%);
  background: #589CAF;
  border: 1px solid hsl(44, 15%, 100%);
}

.toll_free_header {
  color: hsl(44, 15%, 100%);
  display: block;
}

.top_bar.mobile {
  width: 100%;
  z-index: 9;
  border-bottom: 1px solid #8CA771 !important;
  background: hsl(44, 15%, 100%);
}
@media screen and (max-width: 39.9375em) {
  .top_bar.mobile .small-4:last-child {
    text-align: right;
  }
}
.top_bar.desktop {
  display: none;
}
@media print, screen and (min-width: 40em) {
  .top_bar {
    height: 124px;
  }
}
@media print, screen and (min-width: 64em) {
  .top_bar {
    height: 44px;
  }
  .top_bar.mobile {
    display: none;
  }
  .top_bar.desktop {
    display: inline;
    width: 100%;
  }
  .top_bar.desktop::before, .top_bar.desktop::after {
    display: table;
    content: " ";
    flex-basis: 0;
    order: 1;
  }
  .top_bar.desktop::after {
    clear: both;
  }
}

.top-bar {
  border-bottom: 1px solid #633d21;
}

.header__logo_site {
  color: #262321;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding-left: 0.5rem;
  text-transform: capitalize;
  vertical-align: middle;
  width: calc(100% - 48px);
}
.header__logo_site span {
  color: #a2622a;
  display: block;
  font-size: 0.625rem;
  letter-spacing: 1px;
  padding-left: 3px;
  text-transform: uppercase;
}

.header__logo use {
  fill: #6A8153;
}

@media print, screen and (min-width: 64em) {
  .secondary-nav,
  .utility-nav {
    line-height: 48px;
  }
}
.secondary-nav ul,
.utility-nav ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: inherit;
}
@media (max-width: 1023px) {
  .secondary-nav ul,
  .utility-nav ul {
    align-items: center;
    justify-content: center;
  }
}
.secondary-nav ul li,
.utility-nav ul li {
  flex-shrink: 0;
}
.secondary-nav ul li a, .secondary-nav ul li button,
.utility-nav ul li a,
.utility-nav ul li button {
  color: #8CA771;
  font-size: 0.75rem;
  padding: 0 0.75rem;
  line-height: inherit;
  text-transform: uppercase;
  font-weight: 500;
}
.secondary-nav ul li a:hover, .secondary-nav ul li button:hover,
.utility-nav ul li a:hover,
.utility-nav ul li button:hover {
  color: rgba(140, 167, 113, 0.9);
}
.secondary-nav button,
.utility-nav button {
  color: #8CA771;
  font-size: 0.8125rem;
  line-height: inherit;
  text-transform: uppercase;
}
.secondary-nav button:hover,
.utility-nav button:hover {
  color: rgba(140, 167, 113, 0.9);
}

@media screen and (max-width: 63.9375em) {
  #secondary-nav-mobile.secondary-nav ul {
    background: transparent;
  }
  #secondary-nav-mobile.secondary-nav li {
    lex-shrink: 1;
  }
  #secondary-nav-mobile.secondary-nav li a {
    font-size: 0.75rem;
    padding-bottom: 1rem;
  }
}

.utility-nav b, button.menu-icon b {
  font-size: 0.7rem;
  display: block;
  font-weight: 500;
}
@media print, screen and (min-width: 40em) {
  .utility-nav b, button.menu-icon b {
    font-size: 0.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .utility-nav b, button.menu-icon b {
    display: inline-block;
    font-size: inherit;
  }
}
.utility-nav .material-icons, button.menu-icon .material-icons {
  font-size: 23px !important;
  top: -2px;
  position: relative;
  right: 3px;
}
@media screen and (max-width: 63.9375em) {
  .utility-nav .material-icons, button.menu-icon .material-icons {
    right: 0;
  }
}
.utility-nav .icon-lang, button.menu-icon .icon-lang {
  width: 17px;
  top: -1px;
  position: relative;
  right: 3px;
}
@media screen and (max-width: 63.9375em) {
  .utility-nav .icon-lang, button.menu-icon .icon-lang {
    right: 0;
  }
}
.utility-nav #member-login button, .utility-nav #member-login a, button.menu-icon #member-login button, button.menu-icon #member-login a {
  text-decoration: none;
  display: block !important;
  text-align: left;
}

@media print, screen and (min-width: 64em) {
  .secondary-nav {
    float: right;
    z-index: 17;
    position: relative;
  }
  .border-bottom-cell {
    border-bottom: 1px solid #8CA771;
  }
}
#more-links, #member-login, #member-login-mobile {
  position: absolute;
  width: 180px;
  top: 50px;
  display: none;
  background: hsl(44, 15%, 100%);
  z-index: 15;
  text-align: left;
  box-shadow: 0 0 2px rgba(17, 16, 14, 0.15);
}
#more-links a, #member-login a, #member-login-mobile a {
  display: block !important;
  text-transform: none;
}
#more-links a:hover, #member-login a:hover, #member-login-mobile a:hover {
  background: rgba(140, 167, 113, 0.1);
  color: #8CA771;
}

#more-links {
  right: 0;
}

#member-login, #member-login-mobile {
  left: 0;
}
#member-login a, #member-login-mobile a {
  padding-left: 0.75rem !important;
  letter-spacing: 1px;
  display: block !important;
}
@media print, screen and (min-width: 64em) {
  #member-login a, #member-login-mobile a {
    padding: inherit;
  }
}

@media (max-width: 1100px) {
  .utility-nav ul li:first-child {
    margin-left: 0.3rem !important;
  }
}
@media (max-width: 900px) {
  .utility-nav ul li {
    padding: 0 0.5rem;
  }
}

.breadcrumbs ul {
  margin-bottom: 0;
}
.breadcrumbs li {
  list-style: none;
  display: inline-block;
  font-size: 0.75em;
  line-height: 36px;
  text-transform: capitalize;
  margin: 0;
  color: #597044;
}
.breadcrumbs a {
  display: inline;
  line-height: inherit;
}
.breadcrumbs a svg use {
  stroke: #597044;
  fill: #597044;
}

.showcase .breadcrumbs li {
  color: hsl(44, 15%, 100%);
}
.showcase .breadcrumbs li svg use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}

.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: #597044;
  font-size: 1.5rem;
  font-weight: 400;
}
.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: #f3f0ed;
}
.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 #e0d9d1;
  border-radius: 15px;
}
.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: #ebe6e0;
  border: none;
  border-radius: 0;
  color: #7B9462;
  font-size: 0.93rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 0;
  padding: 0.8rem;
  border-radius: 15px 15px 0 0;
  text-transform: uppercase;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button .icon-svg use {
  stroke: #7B9462;
  fill: #7B9462;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button.is-active {
  background: hsl(44, 15%, 100%);
  color: #6A8153;
}
.booking-container .search-availability .form-body form ul.form_container .field-tabs .tab-button.is-active .icon-svg use {
  stroke: #6A8153;
  fill: #6A8153;
}
.booking-container .search-availability .form-body form ul.form_container .field-pax,
.booking-container .search-availability .form-body form ul.form_container .field-pax-kids,
.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-pax {
  display: flex;
  align-items: center;
}
.booking-container .search-availability .form-body form ul.form_container .field-promocode label b {
  font-weight: 400;
  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 #b5a89b;
  box-shadow: none;
  display: inline-block;
  color: #413c39;
  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 #b5a89b;
  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: #413c39;
}
.booking-container .search-availability .form-body form ul.form_container label span {
  padding: 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: #6A8153;
  fill: #6A8153;
}
.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 .switch {
  display: inline-block;
  top: 0.3rem;
  height: auto;
}
.booking-container .search-availability .form-body form ul.form_container input:checked ~ .switch-paddle {
  background: #597044;
}
.booking-container .search-availability .form-body form ul.form_container .switch-paddle {
  border-radius: 20px;
  margin: 0;
  background: #e0d9d1;
}
.booking-container .search-availability .form-body form ul.form_container .switch-paddle:after {
  border-radius: 100%;
}
.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%;
  z-index: 1;
  transform: translateX(-50%);
}
.booking-container .search-availability.landscape .form-body form ul.form_container .field-tabs .tab-button.is-active {
  border: 1px solid rgba(140, 167, 113, 0.1);
  border-bottom: none;
}
.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-pax-kids,
.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-agent,
.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 #b5a89b;
}
.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 {
  background: white;
  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: #413c39;
  margin: 0;
}

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

.reveal#booking-modal {
  max-width: 430px;
  border-radius: 15px;
  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: #f3f0ed;
}
.reveal#booking-modal .close-button {
  z-index: 2;
  color: #8CA771;
}
.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;
}

.reveal#modalChildren {
  max-width: 375px;
  min-height: 300px;
}

#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: #413c39;
}

#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: hsl(201, 47%, 43%);
  animation: spin 1s infinite linear;
  text-align: center;
  margin: 0 auto;
}

.lbl_season {
  color: #8CA771;
  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) {
  #modalChildren {
    width: 90%;
    height: 70%;
    height: 70vh;
    min-height: 70vh;
    margin-top: 5%;
    margin-left: auto;
  }
  #modalChildren .button-group {
    margin-top: 1rem;
    position: absolute;
    bottom: 0;
  }
}

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

.btn-disable {
  display: none;
}

/* ------------------------- Social Form ------------------------- */
#social-form {
  /* Individual styles */
  /* Ichiro */
  /* ------------------------- Default tab style ------------------------- */
  /* Nav */
  /* Content */
  /* Fallback */
  /* Individual tab styles */
  /*****************************/
  /* Bar */
  /*****************************/
}
#social-form .showForm {
  display: inline;
}
#social-form .hideForm {
  display: none;
}
#social-form .input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 1.4em;
  max-width: 300px;
  width: calc(100% - 2em);
  vertical-align: top;
  font-size: 1em;
}
#social-form .input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.3em 0.8em !important;
  border: none !important;
  border-radius: 0;
  background: #f0f0f0;
  color: #aaa;
  font-weight: bold;
  -webkit-appearance: none; /* for box shadows to show on iOS */
  box-shadow: 0 2px 2px #9d9d9d;
}
#social-form .input__field:focus {
  outline: none;
}
#social-form .input__label {
  display: inline-block;
  padding: 0 0.4em;
  color: #A08A6A;
  font-weight: bold;
  font-size: 0.8em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#social-form .input__label-content {
  position: relative;
  display: block;
  padding: 1.5em 0;
  width: 100%;
}
#social-form .input--ichiro {
  margin-top: 2em;
}
#social-form .input__field--ichiro {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 100;
  display: block;
  padding: 0.4em;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #f0f0f0;
  color: #ededed;
  opacity: 0;
  transform: scale3d(1, 0, 1);
  transform-origin: 50% 100%;
  transition: opacity 0.3s, transform 0.3s;
}
#social-form .input__label--ichiro {
  width: 100%;
  text-align: left;
  cursor: text;
}
#social-form .input__label--ichiro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.8em 0.3em 0 0;
  background: #E0E0E0;
  transform-origin: 50% 100%;
  transition: transform 0.3s;
}
#social-form .input__label-content--ichiro {
  transform-origin: 0% 50%;
  transition: transform 0.3s;
}
#social-form .input__field--ichiro:focus,
#social-form .input--filled .input__field--ichiro {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  background: #D8CEB5;
}
#social-form .input__field--ichiro:focus + .input__label--ichiro,
#social-form .input--filled .input__label--ichiro {
  cursor: default;
  pointer-events: none;
}
#social-form .input__field--ichiro:focus + .input__label--ichiro::before,
#social-form .input--filled .input__label--ichiro::before {
  transform: scale3d(1, 1.5, 1);
}
#social-form .input__field--ichiro:focus + .input__label--ichiro .input__label-content--ichiro,
#social-form .input--filled .input__label-content--ichiro {
  transform: translate3d(0, -3.15em, 0) scale3d(0.8, 0.8, 1) translateZ(1px);
}
#social-form .tabs {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}
#social-form .tabs nav {
  text-align: center;
}
#social-form .tabs nav ul {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  list-style: none;
  -ms-box-orient: horizontal;
  -ms-box-pack: center;
  flex-flow: row wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#social-form .tabs nav ul li {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-align: center;
  -moz-flex: 1;
  flex: 1;
}
#social-form .tabs nav a {
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 2.5;
}
#social-form .tabs nav a span {
  vertical-align: middle;
  font-size: 0.75em;
}
#social-form .tabs nav li.tab-current a {
  color: #74777b;
}
#social-form .tabs nav a:focus {
  outline: none;
}
#social-form .content-wrap {
  position: relative;
}
#social-form .content-wrap section {
  display: none;
  margin: 0 auto;
  padding: 1em;
  max-width: 1200px;
  text-align: center;
}
#social-form .content-wrap section.content-current {
  display: block;
}
#social-form .content-wrap section p {
  margin: 0;
  padding: 0.75em 0;
  color: rgba(40, 44, 42, 0.8);
  font-weight: normal;
  font-size: 1em;
  line-height: 1;
}
#social-form .no-js .content-wrap section {
  display: block;
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
#social-form .no-flexbox nav ul {
  display: block;
}
#social-form .no-flexbox nav ul li {
  min-width: 15%;
  display: inline-block;
}
@media screen and (max-width: 58em) {
  #social-form .tabs nav a.icon span {
    display: none;
  }
  #social-form .tabs nav a:before {
    margin-right: 0;
  }
}
#social-form .tabs-style-bar nav {
  background: rgba(40, 44, 42, 0.05);
}
#social-form .tabs-style-bar nav ul {
  border: 2px solid transparent;
}
#social-form .tabs-style-bar nav ul li a {
  margin: 0 2px;
  background-color: #f7f7f7;
  color: #74777b;
  transition: background-color 0.2s, color 0.2s;
}
#social-form .tabs-style-bar nav ul li a:hover,
#social-form .tabs-style-bar nav ul li a:focus {
  color: #0d204b;
}
#social-form .tabs-style-bar nav ul li a span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: bold;
}
#social-form .tabs-style-bar nav ul li.tab-current a {
  background: #A08A6A;
  color: #fff;
}

.bottom-bar {
  flex-wrap: nowrap;
  background: hsl(44, 15%, 100%);
  bottom: 0;
  font-size: 0.875rem;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.bottom-bar .book-now {
  background-color: #8CA771;
}
.bottom-bar .book-now strong {
  color: hsl(44, 15%, 100%);
}
.bottom-bar .book-now use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}
.bottom-bar li {
  margin: 0;
}
.bottom-bar a,
.bottom-bar button {
  color: #413c39;
  padding: 0.5rem 1rem;
}
@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: #413c39;
  fill: #413c39;
}
.bottom-bar .callus {
  background-color: #589CAF;
  color: hsl(44, 15%, 100%);
}
.bottom-bar .callus use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}
.bottom-bar .callus strong {
  color: hsl(44, 15%, 100%);
}

.cookiesbar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 4rem;
  color: #413c39;
  text-align: center;
  width: 100%;
  z-index: 11;
}
.cookiesbar a {
  color: #413c39;
}
.cookiesbar p {
  border-radius: 15px;
  margin: 0;
  padding: 0.5rem 0.785rem;
  width: auto;
  background-color: rgba(243, 240, 237, 0.92);
  display: inline-block;
}
@media screen and (min-width: 75em) {
  .cookiesbar {
    bottom: 7.5rem;
  }
}

.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 #b5a89b;
  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: #b5a89b;
  transform-origin: 0 -150%;
  transition: transform 300ms ease;
  pointer-events: none;
}
.frm_access .input-group label b, .frm .input-group label b {
  font-weight: 400;
  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 #b5a89b;
}
.frm_access .input-group-field, .frm .input-group-field {
  border-color: #b5a89b;
}
.frm_access .help-text, .frm .help-text {
  display: none;
  opacity: 0;
}
.frm_access .material-icons, .frm .material-icons {
  color: #b5a89b;
  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 #413c39;
  color: #413c39;
}

.login-opt {
  padding-left: 0;
}

.social-btn {
  border-width: 1px !important;
  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;
}

.personalized_web_cta {
  padding: 1rem 0;
}

.personalized_web {
  color: #413c39;
  border-top: 8px solid #86754d;
}
.personalized_web #registerContainer, .personalized_web #loginContainer {
  margin: 0 auto;
  max-width: 340px;
}
.personalized_web input.button {
  background-color: #86754d;
}
.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;
  }
}

.find-my-reservation-modal {
  overflow: hidden;
  position: relative;
}
.find-my-reservation-modal-bg {
  display: none;
}
@media screen and (min-width: 75em) {
  .find-my-reservation-modal-bg {
    display: block;
  }
}
.find-my-reservation-modal-bg img {
  position: absolute;
  top: 0;
  height: 100%;
}

.js-off-canvas-overlay {
  z-index: 15;
  background: rgba(85, 81, 81, 0.48);
}

.members .reset {
  background: #f5f9fa;
  border-top: 1px solid #e0d9d1;
}
.members .details {
  padding: 3rem 0;
  margin-bottom: 1rem;
}
.members .input-group {
  margin-bottom: 1.2rem;
}
.members .accept-terms {
  display: inline-block;
}
.members .accept-terms label {
  display: inline-block;
}
.members .widgetRegistration {
  background: hsl(44, 15%, 100%);
  padding: 1rem;
  border: 1px solid #b5a89b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}
.members .widgetRegistration h4 {
  margin: 1.5rem 0;
}
.members .user {
  font-size: 10rem !important;
  color: #e8e8e8;
  margin-top: 4rem;
}
.members .benefits {
  background: hsl(44, 15%, 100%);
}
.members .section-title {
  text-align: left;
}
.members #benefits .media-object-section .thumbnail {
  padding: 0.5rem;
}
.members #benefits .media-object-section:first-child {
  padding-right: 1rem;
}
.members #benefits .media-object-section {
  display: table-cell;
}
@media screen and (max-width: 74.9375em) {
  .members #container-tables {
    margin: 3rem 1rem;
  }
  .members .container_benefits {
    background: #00a3a5;
    color: #fff;
    padding: 0 1.5rem;
  }
  .members .container_benefits tbody th, .members .container_benefits tbody td {
    border: 1px solid #e0d9d1;
  }
}
@media screen and (max-width: 960px) {
  .members .account-mobile {
    background: rgba(255, 255, 255, 0.85);
    text-align: right;
    padding: 0.87rem 1.2rem;
    position: absolute;
    width: 100%;
  }
  .members .account-mobile .content {
    width: 90%;
  }
  .members .account-mobile a {
    margin-left: 1rem;
  }
}
.members #login-options {
  text-align: center;
}
.members #login-options a {
  padding-right: 1rem;
  font-size: 0.8125rem;
}
.members .login-member .help-text {
  font-style: italic;
  color: #a08a6a;
  font-size: 0.85rem;
}
.members .login-member input[type=text], .members .login-member input[type=email], .members .login-member input[type=email], .members .login-member input[type=password] {
  width: 90% !important;
}

/* 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;
}
.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: #589CAF;
}
.mbsc-mobiscroll .mbsc-fr-btn.mbsc-active, .mbsc-mobiscroll.mbsc-no-touch .mbsc-fr-btn-e:not(.mbsc-disabled):hover {
  background: rgba(88, 156, 175, 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: #589CAF;
}
.mbsc-mobiscroll .mbsc-sc-whl-l {
  border-top: 1px solid #589CAF;
  border-bottom: 1px solid #589CAF;
}
.mbsc-mobiscroll .mbsc-sc-btn {
  color: #589CAF;
  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(88, 156, 175, 0.3);
}
.mbsc-mobiscroll .mbsc-sc-whl-multi .mbsc-sc-itm-sel:before {
  color: #589CAF;
}

/* 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: 0;
}
.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 #589CAF;
  color: #589CAF;
}
.mbsc-mobiscroll .mbsc-cal-today {
  color: #589CAF;
}
.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(88, 156, 175, 0.3);
}
.mbsc-mobiscroll .mbsc-cal-c .mbsc-cal .mbsc-cal-body .mbsc-cal-row .mbsc-selected .mbsc-cal-cell-txt {
  background: #589CAF;
  color: #f7f7f7;
}
.mbsc-mobiscroll .mbsc-cal-day-colored.mbsc-selected .mbsc-cal-day-date {
  border-color: #589CAF;
}
.mbsc-mobiscroll .mbsc-cal-week-nr {
  color: #589CAF;
}
.mbsc-mobiscroll .mbsc-cal-tab {
  border: 1px solid #589CAF;
  color: #454545;
}
.mbsc-mobiscroll .mbsc-fr-w .mbsc-cal-tabs-c .mbsc-cal-tabs .mbsc-cal-tab.mbsc-selected {
  background: #589CAF;
  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 #589CAF;
}
.mbsc-mobiscroll.mbsc-range .mbsc-range-btn-t .mbsc-range-btn.mbsc-selected {
  background: #589CAF;
  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: #589CAF;
  border-color: #589CAF;
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-range .mbsc-cal-day.mbsc-selected:after {
  background: rgba(88, 156, 175, 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: #589CAF;
}

@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: #589CAF;
}
.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: #589CAF;
}
.mbsc-mobiscroll.mbsc-input-outline.mbsc-input textarea:focus {
  border-color: #589CAF;
}
.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: #589CAF;
}

.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: #589CAF;
}
.mbsc-mobiscroll .mbsc-slider-tooltip {
  color: #ededed;
  background-color: #589CAF;
}

.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: #589CAF;
}

.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: #589CAF;
}
.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: #589CAF;
}
.mbsc-mobiscroll .mbsc-divider,
.mbsc-mobiscroll .mbsc-form-group-title {
  background: #f7f7f7;
  color: #589CAF;
}
.mbsc-mobiscroll .mbsc-err-msg,
.mbsc-mobiscroll .mbsc-err .mbsc-label {
  color: #de3226;
}
.mbsc-mobiscroll .mbsc-checkbox-box {
  background: #589CAF;
}
.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 #589CAF;
}
.mbsc-mobiscroll .mbsc-radio-box:after {
  background: #589CAF;
}
.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: #589CAF;
  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: #589CAF;
  border-color: transparent;
}
.mbsc-mobiscroll.mbsc-btn-flat.mbsc-btn.mbsc-active {
  background: rgba(88, 156, 175, 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 #589CAF;
  color: #589CAF;
}
.mbsc-mobiscroll.mbsc-btn-outline.mbsc-btn.mbsc-active {
  background: #589CAF;
  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: #b2cdd5;
}
.mbsc-mobiscroll.mbsc-switch input:checked + .mbsc-switch-track .mbsc-switch-handle {
  background: #589CAF;
}
.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 #589CAF;
  color: #589CAF;
}
.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: #589CAF;
  color: #f7f7f7;
}
.mbsc-mobiscroll.mbsc-segmented .mbsc-segmented-item input.mbsc-active + .mbsc-segmented-content {
  background: rgba(88, 156, 175, 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(88, 156, 175, 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);
}

.youmax-showing {
  font-weight: normal;
  text-shadow: none;
}

.youmax-stat {
  float: right;
  margin: 10px;
  font: 10px Arial;
  color: #ccc;
  margin-top: 25px;
  text-align: center;
}

.youmax-stat-count {
  font-size: 18px;
}

#youmax-channel-desc {
  text-align: left;
}

#youmax {
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
  font-family: Calibri;
  font-size: 14px;
  text-align: center;
  overflow-x: hidden;
}
#youmax #youmax-header {
  background: #fff;
  font-size: 1.8em;
  color: #8CA771;
  line-height: 25px;
  height: 90px;
  text-align: left;
  position: relative;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 2px 2px 0 0;
  text-shadow: 0px -1px 1px #E7E7E7;
}
@media screen and (max-width: 640px) {
  #youmax #youmax-header {
    font-size: 1em !important;
  }
}
#youmax #youmax-header #youmax-stat-holder {
  float: right;
  height: 100%;
}
#youmax #youmax-header #youmax-header-logo {
  vertical-align: middle;
  height: 60px;
  margin: 15px;
  display: inline-block;
  margin-left: 32px;
}
#youmax #youmax-header .youmax-subscribe {
  display: inline-block;
  width: 150px;
  height: 25px;
  overflow: hidden;
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  right: 0;
}
#youmax #youmax-header .youmax-subscribe div {
  position: static !important;
  vertical-align: top !important;
}
#youmax #youmax-header .youmax-subscribe iframe {
  position: static !important;
}
#youmax #youmax-tabs {
  display: block;
  text-align: left;
  margin-left: 2em;
}
#youmax #youmax-tabs .youmax-tab {
  background-color: rgb(230, 230, 230);
  color: #666;
  text-shadow: 0 1px 0 #fff;
  display: inline-block;
  margin: 5px;
  margin-top: 10px;
  padding: 5px;
  cursor: pointer;
  cursor: hand;
}
#youmax #youmax-tabs .youmax-tab-hover {
  color: #eee;
  background-color: #999;
  text-shadow: 0 0;
}
#youmax #youmax-encloser {
  padding-top: 20px;
}
#youmax #youmax-encloser iframe#youmax-video {
  margin-bottom: 20px !important;
}
#youmax #youmax-encloser #youmax-video-list-div {
  width: 100%;
  text-align: left;
  display: inline-block;
  padding: 0px 15px;
  box-sizing: border-box;
}
#youmax #youmax-encloser #youmax-video-list-div .youmax-video-tnail {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
  position: relative;
}
#youmax #youmax-encloser #youmax-video-list-div .youmax-video-tnail .youmax-duration {
  background-color: hsl(39, 10%, 6%);
  padding: 2px 3px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  color: hsl(44, 15%, 100%);
}
#youmax #youmax-encloser #youmax-video-list-div .youmax-video-tnail-box {
  margin: 2%;
  float: left;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  cursor: hand;
  background-color: hsl(44, 15%, 100%);
}
@media screen and (max-width: 800px) {
  #youmax #youmax-encloser #youmax-video-list-div .youmax-video-tnail-box {
    width: 280px !important;
    clear: none !important;
  }
}
#youmax #youmax-encloser #youmax-video-list-div .youmax-video-list-title {
  display: inline-block;
  padding: 0 10px;
  padding-bottom: 0px;
  font-weight: bold;
  max-width: 250px;
  max-height: 18px;
  overflow: hidden;
}
#youmax #youmax-encloser #youmax-video-list-div .youmax-video-list-views {
  color: #555;
  padding: 1% 10px;
  padding-bottom: 3%;
  display: inline-block;
  font-size: 12px;
  font-family: Arial;
}
#youmax #youmax-encloser div#youmax-load-more-div {
  padding: 10px;
  margin: 15px 30px;
  font-size: 18px;
  border: 1px solid #E1E1E1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
}
#youmax #youmax-encloser div#youmax-load-more-div:hover {
  background: #e0d9d1;
}
#youmax #youmax-lightbox {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#youmax #youmax-lightbox #youmax-video-lightbox {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  #youmax #youmax-header {
    font-size: 1em !important;
  }
  #youmax .youmax-subscribe {
    top: 4.3em !important;
    left: 2.2em !important;
  }
}

.youmax-playlist-sidebar {
  background-color: rgba(0, 0, 0, 0.8);
  float: right;
  max-width: 50%;
  height: 100%;
  color: white;
  text-align: center;
  width: 70px;
}

.youmax-playlist-video-count {
  display: inline-block;
  margin: 3%;
  margin-top: 5%;
  height: 20%;
  margin-top: 55px;
}

.youmax-playlist-sidebar-video {
  opacity: 1;
  width: 64px;
  height: 20%;
  background-color: rgb(114, 114, 114);
  display: inline-block;
  margin: 2% auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.youmax-showing-title {
  font-size: 18px;
  padding: 10px;
  margin-left: 20px;
  margin-bottom: 15px;
  display: inline-block;
}

.youmax-load-more-div-click {
  color: white;
}

/* Rates */
.rates {
  text-align: left;
}
.rates--header {
  background: #f3f0ed;
  border-bottom: 1px solid #e0d9d1;
  padding: 1rem;
}
.rates--btn {
  border-left: 1px solid #e0d9d1;
}
.rates--btn:first-child {
  border-left: 0;
}
.rates .button-group {
  justify-content: center;
}
.rates .button-group > div {
  text-align: center;
  display: inline-grid;
  padding: 0 1rem;
}
.rates label {
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  display: inline-block;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.8;
  transition: all 0.15s ease-in-out;
}
.rates label:hover, .rates label:focus, .rates label:active {
  border-bottom-color: #413c39;
}
.rates [type=checkbox] + label,
.rates [type=radio] + label {
  margin-left: 0;
  margin-right: 0;
}
.rates input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.rates input[type=radio]:active ~ label {
  opacity: 1;
}
.rates input[type=radio]:checked ~ label {
  opacity: 1;
  border-bottom-color: hsl(39, 10%, 6%);
  font-weight: 700;
}
.rates .button.hollow.tafer {
  color: #86754d;
}
.rates .button.hollow.tafer:hover, .rates .button.hollow.tafer:focus {
  color: hsl(44, 15%, 100%);
  background: #86754d;
}
.rates .tafer-logo-gold {
  display: block;
  width: 100%;
}
.rates button.unlock-rewards {
  padding: 0;
  border-top: none;
}
.rates button.unlock-rewards div {
  padding: 0.3rem;
}
.rates button.unlock-rewards svg use {
  fill: #85764d;
  stroke: none;
}
.rates button.unlock-rewards:hover svg use {
  fill: hsl(44, 15%, 100%);
}

.rates__rewards {
  position: relative;
  margin-bottom: 1rem;
}
.rates__rewards:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  display: block;
  width: 70%;
  border-bottom: 1px solid #e0d9d1;
}

.manual-rates {
  position: relative;
  z-index: 0;
}
.manual-rates .tabs-content {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}
.manual-rates .tabs#rate-tabs {
  border: none;
}
.manual-rates .tabs .tabs-title a {
  font-size: 0.875rem;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  display: block;
  z-index: 1;
  color: rgba(17, 16, 14, 0.8);
  opacity: 0.5;
  background: unset;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  transition: all 0.2s;
  font-weight: 600;
}
.manual-rates .tabs .tabs-title a:hover {
  border-bottom-color: #11100e;
}
.manual-rates .tabs li {
  margin: 0 1.5rem;
}
.manual-rates .tabs .tabs-title a[aria-selected=true] {
  opacity: 1;
  font-weight: 600;
  text-shadow: none;
  background: transparent;
  border-bottom-color: #11100e;
}

.related-content .rel-image {
  overflow: hidden;
}
.related-content .rel-image img {
  transition: transform 0.5s;
}
.related-content .rel-image:hover img {
  transform: scale(1.2);
}

.tafer-rewards {
  text-align: center;
  width: 100%;
  max-width: 550px;
  margin: 1rem auto;
}
.tafer-rewards-logo img {
  max-width: 130px;
}
.tafer-rewards-icons {
  margin-top: 1.5rem;
}
.tafer-rewards-icon span {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
}
.tafer-rewards-icon:first-child span {
  width: 30px;
}
@media print, screen and (min-width: 40em) {
  .tafer-rewards-icon:first-child span {
    width: 40px;
  }
}
@media print, screen and (min-width: 40em) {
  .tafer-rewards-icon span {
    margin-right: 2px;
    width: 24px;
  }
}
.tafer-rewards-title {
  font-size: 0.93rem;
  display: inline-block;
  line-height: 1;
  text-align: left;
  vertical-align: middle;
  width: auto;
  color: #AA9767;
  font-weight: 600;
}
.tafer-rewards-title span {
  display: block;
}
.tafer-rewards-title:last-child {
  margin-right: 0;
}
@media print, screen and (min-width: 40em) {
  .tafer-rewards-title {
    margin-right: 10px;
  }
}

h1,
h2,
h3 {
  font-family: "ivypresto-display", serif;
  line-height: 1.6;
  font-weight: 400 !important;
}
h1 span,
h2 span,
h3 span {
  color: inherit;
  display: block;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400 !important;
  letter-spacing: 3px;
  line-height: 3.5;
  text-transform: uppercase;
  position: relative;
}
h1 span:before,
h2 span:before,
h3 span:before {
  background: #BFDBAA;
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  height: 1px;
  width: 55px;
}
@media print, screen and (min-width: 64em) {
  h1 span,
  h2 span,
  h3 span {
    font-size: 1rem;
  }
}
h1.text-center span:before,
h2.text-center span:before,
h3.text-center span:before {
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.text-center h1 span:before,
.text-center h2 span:before,
.text-center h3 span:before, .image--divider--content h1 span:before,
.image--divider--content h2 span:before,
.image--divider--content h3 span:before {
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

@media print, screen and (min-width: 64em) {
  .image--divider--content h1 span:before,
  .image--divider--content h2 span:before,
  .image--divider--content h3 span:before {
    margin: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .hero h1 span:before,
  .hero h2 span:before,
  .hero h3 span:before {
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
}
h5,
h6 {
  font-weight: bold;
}

.small-text {
  font-size: 0.875rem;
}
@media print, screen and (min-width: 64em) {
  .small-text {
    font-size: 1rem;
  }
}

.caption {
  font-style: italic;
  font-size: 0.75rem;
}

.overline {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media print, screen and (min-width: 64em) {
  .overline {
    font-size: 1.25rem;
  }
}

a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
  color: #413c39;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: inherit;
  opacity: 0.97;
}

.allinclusive {
  background: #f3f0ed;
}
@media print, screen and (min-width: 40em) {
  .allinclusive .card-section {
    padding: 2rem;
  }
  .allinclusive ul {
    -moz-column-count: 2;
    column-count: 2;
    column-gap: 40px;
    -moz-column-gap: 40px;
  }
}

.why-us {
  background-color: #f3f0ed;
  box-shadow: inset 0 0 3px rgba(73, 108, 64, 0.25);
  overflow: hidden;
  position: relative;
}
.why-us__list {
  border-left: 1px solid #e0d9d1;
  margin-left: 1rem;
  padding: 0.5625rem 0 0 1.1875rem;
}
.why-us__list li {
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-bottom: 0.875rem;
}
.why-us__list li::last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .why-us__list {
    border-left: 0;
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    margin: 1rem auto;
  }
  .why-us__list li {
    margin-right: 1rem;
  }
}
.why-us--circle {
  border-radius: 50%;
  background: #e0d9d1;
  margin-right: 0.5rem;
  padding: 0.688rem;
}
.why-us--circle svg use {
  stroke: #413c39;
  fill: none;
}
.why-us--label {
  font-weight: bold;
}
.why-us--label span {
  display: block;
  font-weight: normal;
}
.why-us__cta {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.why-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/lib/dist/img/logos/vdpc-brown-logo.svg");
  background-size: auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 0.15;
  transform: translateX(55%);
}
@media print, screen and (min-width: 40em) {
  .why-us::after {
    height: 60%;
    transform: translateX(-25%);
  }
}
@media print, screen and (min-width: 64em) {
  .why-us::after {
    height: 140%;
    top: 0;
    transform: translateX(-10%);
  }
}

.intro-img {
  display: none;
}

.wbwu__list .wbwu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wbwu__list .wbwu_card {
  padding-top: 200px;
  position: relative;
  margin: 0 10px;
}
.wbwu__list .wbwu_card .wbwu-img {
  position: absolute;
  top: 0;
  width: 100%;
}
.wbwu__list .wbwu_card .card-section {
  position: relative;
  width: 100%;
  padding: 5rem 1.5rem;
}
.wbwu__list .wbwu_card .card-section .circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #8CA771;
  background-position: center;
  background-size: 80%;
  background-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(50%);
}
.wbwu__list .wbwu_card .card-section .img-hover {
  display: none;
}
.wbwu__list .wbwu_card .card-section .info {
  border: 1px solid #8CA771;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background-color: #fff;
  height: 500px;
}
.wbwu__list .wbwu_card .card-section .info h2 {
  font-size: 22px;
}

@media screen and (min-width: 1200px) {
  .intro-img {
    display: flex;
    width: 320px;
    height: 400px;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
  }
  .wbwu__list .wbwu_card {
    padding: 4rem 0;
    position: relative;
    display: flex;
    height: 800px;
    margin: 0 10px;
    transition: all 0.4s ease-in-out;
  }
  .wbwu__list .wbwu_card .wbwu-img {
    display: none;
  }
  .wbwu__list .wbwu_card .img-hover {
    display: none;
  }
  .wbwu__list .wbwu_card .info {
    transition: all 0.4s ease-in-out;
  }
  .wbwu__list .wbwu_card .info button {
    opacity: 0;
  }
  .wbwu__list .wbwu_card:nth-child(1) .card-section, .wbwu__list .wbwu_card:nth-child(4) .card-section, .wbwu__list .wbwu_card:nth-child(7) .card-section {
    top: -8rem;
  }
  .wbwu__list .wbwu_card:nth-child(3) .card-section, .wbwu__list .wbwu_card:nth-child(6) .card-section {
    top: 8rem;
  }
  .wbwu__list .wbwu_card:hover {
    transform: scale(1.05);
  }
  .wbwu__list .wbwu_card:hover .icon-hover {
    display: none;
  }
  .wbwu__list .wbwu_card:hover .img-hover {
    display: block;
    background-size: cover;
  }
  .wbwu__list .wbwu_card:hover .info {
    color: #fff;
    background-color: #8CA771;
  }
  .wbwu__list .wbwu_card:hover .info h2 {
    color: #fff;
    font-weight: 900;
  }
  .wbwu__list .wbwu_card:hover .info a {
    color: #fff;
  }
  .wbwu__list .wbwu_card:hover .info .primary {
    background-color: #fff;
    color: #8CA771;
  }
  .wbwu__list .wbwu_card:hover .info button {
    opacity: 1;
  }
}
.youtube__thumbnail {
  background-color: hsl(39, 10%, 6%);
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.youtube__thumbnail img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: 0.7;
  position: absolute;
}
.youtube__thumbnail iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.youtube__play {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(17, 16, 14, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.youtube__play:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent hsl(44, 15%, 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.callout-global {
  font-size: 0.875rem;
  width: 100%;
  padding: 0.5rem;
  position: relative;
  z-index: 20;
  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;
}
.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);
}
.callout-global.meses {
  text-align: center;
  background: transparent;
  background-image: url("/lib/dist/img/assets/background-meses-l.jpg"), linear-gradient(to right, #843a47 35%, #7b008f 40%, #7b008f 100%);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.callout-global.meses img {
  width: 50px;
}
.callout-global.meses .title {
  margin: 0;
  color: hsl(44, 15%, 100%);
  font-size: 1.1rem;
  font-weight: 500;
}
.callout-global.meses .button {
  border: 0;
  text-decoration: underline;
  color: hsl(44, 15%, 100%) !important;
  margin: 0 1rem;
  width: 80px;
  padding: 0.3rem 0;
}
@media screen and (max-width: 640px) {
  .callout-global.meses {
    padding: 0.2rem 0;
    text-align: left;
    background-image: url("/lib/dist/img/assets/background-meses-s.jpg"), linear-gradient(to right, #843a47 35%, #7b008f 40%, #7b008f 100%) !important;
  }
  .callout-global.meses > .row {
    background-image: none !important;
  }
  .callout-global.meses .title {
    font-size: 0.95rem !important;
  }
  .callout-global.meses .button {
    margin-top: 0.3rem;
  }
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}

.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.tns-controls [disabled] {
  color: #999999;
  background: #B3B3B3;
  cursor: not-allowed !important;
}

.tns-nav {
  text-align: center;
  margin: 10px 0;
}

.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  border: 0;
}

.tns-nav > .tns-nav-active {
  background: #999;
}


.tns-controls {
  text-align: right;
  margin-top: 15px;
}

.tns-controls:focus {
  outline: 0;
}

.tns-controls button {
  line-height: 1;
  border: 1px solid #989286;
  padding: 5px 10px;
  overflow: hidden;
}

.tns-controls button:first-child {
  margin-right: 15px;
}

.tns-controls .next,
.tns-controls .prev {
  font-size: 40px;
  line-height: 0.5;
  box-sizing: content-box;
}

#reviews .tiny-carousel-reviews {
  padding-top: 1rem;
}
#reviews .orbit-bullets {
  text-align: center;
  margin-top: 1rem;
}
#reviews .card {
  max-width: 398px;
  padding: 2.5rem 1rem !important;
  color: hsl(39, 10%, 6%);
}
#reviews .card b {
  color: #492712;
}
#reviews .ylc__reviews .orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
#reviews .video_box--testimonial {
  padding-bottom: 59%;
}
@media screen and (min-width: 1400px) {
  #reviews .content__reviews {
    max-width: 1400px;
    margin: 0 auto;
  }
}

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

#hero {
  position: relative;
}
#hero .swiper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 100vw;
  max-height: 100vh;
  z-index: 0;
  /* &-button {
  	&-prev,
  	&-next {
  		display: none;
  		padding: 2rem;
  		@include breakpoint(large) {
  			display: flex;
  		}
  	}
  } */
}
@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 - 41px - 91px);
  }
}
#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 - 91px);
  }
}
#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 {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#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;
}
@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: #7B9462;
  opacity: 0.5;
}
#hero .swiper-pagination-bullet-active {
  background-color: hsl(44, 15%, 100%);
  opacity: 1;
}

/**
 * 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-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper {
  z-index: 0;
}

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

.swiper-theme-primary .swiper-pagination-bullet {
  background: #6A8153;
}
.swiper-theme-primary .swiper-button-next, .swiper-theme-primary .swiper-button-prev {
  color: #6A8153;
}
.swiper-theme-primary .swiper-button-next.border::after, .swiper-theme-primary .swiper-button-prev.border::after {
  padding: 0.3125rem 0.5rem;
  border: solid 1px #6A8153;
}

.swiper-theme-secondary .swiper-pagination-bullet {
  background: #589CAF;
}
.swiper-theme-secondary .swiper-button-next, .swiper-theme-secondary .swiper-button-prev {
  color: #589CAF;
}
.swiper-theme-secondary .swiper-button-next.border::after, .swiper-theme-secondary .swiper-button-prev.border::after {
  padding: 0.3125rem 0.5rem;
  border: solid 1px #589CAF;
}

.swiper-theme-orange .swiper-pagination-bullet {
  background: #8CA771;
}
.swiper-theme-orange .swiper-button-next, .swiper-theme-orange .swiper-button-prev {
  color: #8CA771;
}
.swiper-theme-orange .swiper-button-next.border::after, .swiper-theme-orange .swiper-button-prev.border::after {
  padding: 0.3125rem 0.5rem;
  border: solid 1px #8CA771;
}

.swiper-theme-gray .swiper-pagination-bullet {
  background: #9b8e82;
}
.swiper-theme-gray .swiper-button-next, .swiper-theme-gray .swiper-button-prev {
  color: #9b8e82;
}
.swiper-theme-gray .swiper-button-next.border::after, .swiper-theme-gray .swiper-button-prev.border::after {
  padding: 0.3125rem 0.5rem;
  border: solid 1px #9b8e82;
}

.swiper-theme-white .swiper-pagination-bullet {
  background: hsl(44, 15%, 100%);
}
.swiper-theme-white .swiper-button-next, .swiper-theme-white .swiper-button-prev {
  color: hsl(44, 15%, 100%);
}
.swiper-theme-white .swiper-button-next.border::after, .swiper-theme-white .swiper-button-prev.border::after {
  padding: 0.3125rem 0.5rem;
  border: solid 1px hsl(44, 15%, 100%);
}

.swiper-pagination.under {
  position: relative;
  margin-top: 1rem;
}
.swiper-pagination.orange .swiper-pagination-bullet {
  background-color: #cabfb4;
}
.swiper-pagination.orange .swiper-pagination-bullet-active {
  background-color: #8CA771;
}

.swiper-button-next.gray,
.swiper-button-prev.gray {
  color: #9b8e82;
}
.swiper-button-next.arrow-small:after,
.swiper-button-prev.arrow-small:after {
  font-size: 20px;
}
.swiper-button-next.arrow-medium:after,
.swiper-button-prev.arrow-medium:after {
  font-size: 30px;
}

.swiper-navigation {
  width: 100%;
  position: absolute;
}
.swiper-navigation.top {
  top: -2rem;
}
.swiper-navigation.bottom {
  bottom: -1.5rem;
}
.swiper-navigation.right {
  right: 0;
}
.swiper-navigation.left {
  left: 0;
}
.swiper-navigation.combined {
  width: 6rem;
}

@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;
}

/*! MIX IT UP | https://mixitup.kunkalabs.com/docs/ */
div#controls {
  background: #f3f0ed;
  padding: 1rem;
}
div#controls button.active {
  background: #8CA771;
  color: hsl(44, 15%, 100%);
}
div#controls button:focus {
  outline: 0 none;
}

ul.box {
  margin: 0;
  text-align: justify;
  -webkit-backface-visibility: hidden;
}
ul.box:after {
  content: "";
  display: inline-block;
  width: 100%;
}
ul.box.no-filter .mix, ul.box.no-filter .gap {
  display: inline-block;
}
ul.box .mix, ul.box .gap {
  display: inline-block;
  width: 45%;
}
ul.box .mix {
  text-align: left;
  vertical-align: top;
  display: none;
}
@media all and (min-width: 850px) {
  ul.box .mix, ul.box .gap {
    width: 30%;
  }
}
@media all and (min-width: 1120px) {
  ul.box .mix, ul.box .gap {
    width: 23.5%;
  }
}

.mix_filter {
  background: #f3f0ed;
  margin: 1rem 0;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.mix_filter .button {
  margin-bottom: 0;
}
.mix_filter .button:not(.clear) {
  color: hsl(44, 15%, 100%);
}
@media print, screen and (min-width: 64em) {
  .mix_filter {
    margin-top: 0;
  }
}

.mix_controls {
  display: block;
  overflow-x: scroll;
  padding: 0.875rem;
  width: 100%;
  white-space: nowrap;
}

.overview .rate {
  font-size: 0.8em;
  padding: 0 2em;
  margin-top: -7px;
  text-align: center;
  border: 0 !important;
}
.overview .rate .rate-plan {
  color: #8CA771;
  font-size: 0.95em;
}
.overview .rate .rate-meta {
  font-size: 60%;
  display: block;
}
.overview .price {
  font-size: 1.5em !important;
  font-weight: 600em !important;
  color: #333;
}
.overview .rate-header {
  text-align: right;
}

.toll-free-cta {
  padding: 1rem;
  text-align: center;
  background: hsl(44, 15%, 100%);
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 40em) {
  .toll-free-cta {
    margin-top: 4rem;
  }
}
.toll-free-cta h4 span {
  display: block;
}
.toll-free-cta img {
  margin: 1rem 0;
}
.toll-free-cta .phone-number {
  display: block;
  color: #8CA771;
  font-size: 1.5rem;
}

#package #description p.intro {
  font-style: italic;
  font-size: 1.125em;
  border-left: 1px solid #589CAF;
  color: rgba(17, 16, 14, 0.54);
}
#package #description #features {
  margin-bottom: 0.63em;
}
#package #description #features p {
  font-size: 0.95em;
}
#package #description #features ul {
  list-style: none;
}
#package #description #features ul li {
  margin-bottom: 12px;
  padding: 0 1.5em 0 0;
  font-size: 0.95em;
}
#package #description .wedding_rate h2 {
  margin-bottom: 0.5em;
  font-size: 1.3em;
  margin-top: 1.15em;
}
#package #description .wedding_rate h2 em {
  font-size: 0.8em;
  font-style: italic;
  text-transform: none;
}
#package #description .wedding_rate h2 span {
  display: block;
  font-size: 0.75em;
  font-weight: 300;
  text-transform: none;
}
#package #features {
  margin-top: 3em;
}

#wedding-coordinator-contact-form .description {
  margin-top: 1rem;
}
#wedding-coordinator-contact-form .description p {
  font-size: 0.8125rem;
}
#wedding-coordinator-contact-form h2 {
  font-weight: 400;
  font-style: italic;
}
#wedding-coordinator-contact-form .contact-form {
  background: hsl(44, 15%, 100%);
}
@media print, screen and (min-width: 64em) {
  #wedding-coordinator-contact-form .contact-form {
    padding: 4rem;
  }
}
@media print, screen and (min-width: 40em) {
  #wedding-coordinator-contact-form .button {
    float: right;
  }
}

#packages.page.weddings .social .menu-bar {
  margin-left: 0;
}
#packages.page.weddings .social .menu-bar li {
  display: inline-block;
  list-style: none;
  padding: 0.5rem;
}
#packages.page.weddings .social .menu-bar i {
  font-size: 200%;
  font-style: normal;
  line-height: 1;
  color: rgba(73, 108, 64, 0.8);
}
#packages.page.weddings .social .menu-bar i.hashtag {
  font-weight: 300;
  text-transform: none;
}
#packages.page.weddings .social svg use {
  stroke: none;
  fill: rgba(73, 108, 64, 0.8);
}
#packages.page.weddings .social svg use:hover {
  fill: #496C40;
}

/*! browse happy prompt for IE */
#browsehappy {
  text-align: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
}
#browsehappy #message {
  padding: 1.5em 0;
  margin: 0 0 1em;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1) inset;
  background: #f2efe8;
}
#browsehappy #message h3 {
  text-transform: uppercase;
}
#browsehappy #browsers-list {
  margin-bottom: 1.5em;
  width: 100%;
}
#browsehappy #browsers-list .icon {
  cursor: pointer;
  width: 125px;
  height: 135px;
  margin: 0 auto;
  background-image: url("../img/logos/browsehappy.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
}
#browsehappy #browsers-list li {
  float: left;
  width: 20%;
}
#browsehappy #browsers-list li#ff .icon {
  background-position: -125px 0;
}
#browsehappy #browsers-list li#opera .icon {
  background-position: -250px 0;
}
#browsehappy #browsers-list li#safari .icon {
  background-position: -375px 0;
}
#browsehappy #browsers-list li#ie .icon {
  background-position: -500px 0;
}

.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, #9b8e82);
}
.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: uppercase;
  letter-spacing: 1px;
}
.button.primary, .button.secondary {
  border: 2px solid rgba(17, 16, 14, 0.06);
}
.button.white.hollow {
  border-color: hsl(44, 15%, 100%);
  color: hsl(44, 15%, 100%);
}
.button.tafer.hollow {
  border-color: #86754d;
  color: #86754d;
}
.button.white.clear {
  color: hsl(44, 15%, 100%);
}
.button.no--padding {
  margin: 0;
}
.button.no--padding {
  padding: 0 !important;
}

.media-object img {
  max-width: 100%;
}

.reveal {
  box-shadow: 0 0 14px rgba(17, 16, 14, 0.25);
  outline: 0;
}

#virtualtour {
  overflow: hidden;
}
#virtualtour .responsive-embed {
  margin-top: 2em;
}
#virtualtour iframe {
  top: -134px;
  min-height: 450px;
}

button.clear.primary.small {
  text-align: left;
  box-shadow: none;
}

.reveal.howit-works .close-video {
  background: #8CA771;
  z-index: 2;
  line-height: 0;
  color: #fff;
  top: 15px;
}

@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, .off-canvas {
  -webkit-overflow-scrolling: touch;
}

.scrolling {
  overflow: hidden;
}

.call-center {
  width: 310px;
  margin-bottom: 0;
}
.call-center .card {
  border: 8px double hsl(44, 15%, 100%);
  min-height: 350px;
  padding: 2.5rem 0;
  background: #cabfb4;
  color: hsl(44, 15%, 100%);
}
.call-center .card-divider {
  background: transparent;
  display: block;
}
.call-center .title {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(44, 15%, 100%);
}
.call-center .title span {
  display: block;
  font-size: 1.15rem;
}
.call-center img {
  width: 150px;
  border-radius: 100%;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.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;
  }
}

.share-links {
  padding: 15px 0;
  margin-top: 2rem;
  max-width: 290px;
  position: relative;
  border: 1px solid #f3f0ed;
}
.share-links .title {
  position: absolute;
  top: -0.75em;
  left: 0.5rem;
  margin: 0;
  padding: 0 0.5rem;
  background: hsl(44, 15%, 100%);
}

@media screen and (max-width: 700px) {
  .b24-widget-button-inner-container {
    display: none !important;
  }
}

.chat-card {
  cursor: pointer;
}
.chat-card img {
  border-radius: 100%;
}
.chat-card .info-chat {
  padding: 0 0.5rem;
}
.chat-card .title {
  font-size: 1.12rem;
  margin-top: 1rem;
}
.chat-card p {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}
.chat-card .button {
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 320px) {
  .chat-card {
    padding: 1rem 0.8rem;
  }
  .chat-card .title {
    margin-top: 0.5rem;
  }
}

.card {
  transition: transform 0.15s ease-in-out;
}
.card:hover {
  transform: translateY(-0.35rem);
}
.card .button.clear {
  padding-left: 0;
}
.card hr {
  border-bottom: 1px solid #b5a89b;
  margin: 1rem auto;
}
.card h4 {
  margin-bottom: 0.5rem !important;
}
.card--default, .card--custom {
  margin: 0 auto;
  max-width: 290px;
}
.card b {
  font-size: 1.125rem;
}

footer {
  border-top: 1px solid #e0d9d1;
}

.is-accordion-submenu-parent > a::after {
  border-color: #8CA771 transparent transparent;
}

.tooltip {
  max-width: 13rem;
  font-size: 0.75rem;
}

#modalNesletter {
  padding: 0;
  box-shadow: none;
  border: none;
}
#modalNesletter .close-button {
  color: #9b8e82;
  font-size: 1.5em;
  z-index: 9999999999;
}
#modalNesletter .title {
  font-size: 3.2rem;
  color: #9b8e82;
}
#modalNesletter .subtitle {
  font-size: 1.35rem;
  margin-bottom: 0;
  margin-top: 2rem;
}
#modalNesletter .newsletter-signup {
  margin-top: 2rem;
}
#modalNesletter .newsletter-content {
  padding: 1rem 3.5rem;
}
#modalNesletter .button {
  background: #86754d;
}
@media screen and (min-width: 1000px) {
  #modalNesletter {
    width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  #modalNesletter {
    width: 97%;
  }
  #modalNesletter .title {
    font-size: 2.6rem;
  }
  #modalNesletter .newsletter-signup {
    margin-top: 1rem;
  }
  #modalNesletter .newsletter-content {
    padding: 0.75rem 2rem;
  }
  #modalNesletter .subtitle {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  #modalNesletter {
    width: 100%;
  }
  #modalNesletter .title {
    font-size: 2rem;
  }
  #modalNesletter .subtitle {
    font-size: 1.15rem;
  }
  #modalNesletter .newsletter-content {
    padding: 0.75rem 1.25rem;
  }
  #modalNesletter .newsletter-content img {
    width: 50px;
  }
  #modalNesletter .close-button {
    padding: 5px;
    font-size: 2rem;
  }
}

#testimonialModal {
  padding: 0 !important;
}
#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;
  }
}

#countdownOffer {
  display: inline-block;
  padding: 0 1rem;
}
#countdownOffer span {
  font-size: 0.8rem;
}
#countdownOffer span b {
  font-size: 1.1rem;
}
@media screen and (max-width: 900px) {
  #countdownOffer .cta_happy_hour {
    display: inline-block;
  }
}
@media screen and (max-width: 640px) {
  #countdownOffer {
    padding: 0;
  }
  #countdownOffer span {
    font-size: 0.75rem;
  }
  #countdownOffer span b {
    font-size: 0.8rem !important;
  }
  #countdownOffer #closeCallout {
    top: -2px;
    right: 0.3rem;
  }
}

.card hr {
  border-bottom: 1px solid #b5a89b;
  margin: 1rem auto;
}
.card h4 {
  font-size: 1.25rem;
}
.card--default, .card--custom {
  margin: 0 auto;
  max-width: 290px;
}
.card b {
  font-size: 1.125rem;
}

.card-divider {
  border-bottom: 1px solid #b5a89b;
}

.card--custom {
  border: 0;
  position: relative;
}
.card--custom .card-section {
  background: linear-gradient(to top, rgba(17, 15, 14, 0.7) 0%, rgba(17, 15, 14, 0.5) 25%, rgba(17, 15, 14, 0.3) 50%, rgba(17, 15, 14, 0) 100%);
  bottom: 0;
  padding: 3rem 0;
  position: absolute;
  text-align: center;
  width: 100%;
  transition-timing-function: ease-in;
  transition: 0.1s;
}
@media print, screen and (min-width: 64em) {
  .card--custom .card-section {
    padding: 1rem 0;
  }
}
.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;
}

.featured--content-copy {
  margin: 0 auto;
  max-width: 480px;
  padding: 2rem 2rem 1rem;
}
@media print, screen and (min-width: 40em) {
  .featured--content:first-child + .featured--content {
    border-top: 1px solid #e0d9d1;
    padding-top: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .featured--content:first-child + .featured--content {
    border-left: 1px solid #e0d9d1;
    border-top: 0;
    padding-top: 0;
  }
}

.divider {
  position: relative;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.divider p {
  color: #413c39;
}
.divider--content {
  position: relative;
}
.divider--content:after {
  content: "";
  height: 200px;
  width: 260px;
  position: absolute;
  background-image: url(https://www.villapalmarcancun.com/lib/dist/img/logos/vdpc-brown-logo.svg);
  opacity: 0.15;
  left: -90px;
  right: 0;
  top: -60px;
}
@media print, screen and (min-width: 64em) {
  .divider--content:after {
    left: -130px;
    right: 0;
    bottom: -100px;
    top: auto;
  }
}
.divider--img {
  position: relative;
}
@media screen and (max-width: 63.9375em) {
  .divider p {
    display: none;
  }
}
@media print, screen and (min-width: 40em) {
  .divider {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

.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%);
  }
}

.light--bg {
  background: rgba(183, 158, 121, 0.1);
}

.bg--dark {
  background: #413c39;
}

.color--white {
  color: hsl(44, 15%, 100%);
}
.color--black {
  color: hsl(39, 10%, 6%);
}
.color--gold {
  color: #86754d;
}

svg {
  vertical-align: middle;
}
svg use {
  stroke: #6A8153;
  fill: #6A8153;
}
svg.white use {
  stroke: hsl(44, 15%, 100%);
  fill: hsl(44, 15%, 100%);
}
svg.gray use {
  stroke: #413c39;
  fill: #413c39;
}
svg.black use {
  stroke: hsl(39, 10%, 6%);
  fill: hsl(39, 10%, 6%);
}
svg.tafer use {
  stroke: #86754d;
  fill: #86754d;
}

.two-columns {
  -moz-column-count: 1;
  column-count: 1;
  column-gap: 30px;
  -moz-column-gap: 30px;
}
@media print, screen and (min-width: 40em) {
  .two-columns {
    -moz-column-count: 2;
    column-count: 2;
  }
}

.three-columns {
  -moz-column-count: 1;
  column-count: 1;
  column-gap: 50px;
  -moz-column-gap: 50px;
}
@media print, screen and (min-width: 40em) {
  .three-columns {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media print, screen and (min-width: 40em) {
  .three-columns {
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media screen and (max-width: 63.9375em) {
  .LPMcontainer {
    right: 100% !important;
  }
}

.hero .lead {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 40em) {
  .hero {
    text-align: center;
  }
}
.hero--highlights ul li {
  margin: 1rem 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .hero--highlights ul {
    justify-content: center;
  }
  .hero--highlights ul li {
    margin: 1rem 0.5rem;
  }
}
.hero--banner h1 {
  margin-top: 1rem;
}

@media print, screen and (min-width: 64em) {
  .header--main-menu .dropdown.menu a {
    padding: 0.7rem 0.5rem;
  }
}
@media screen and (min-width: 90em) {
  .header--main-menu .dropdown.menu a {
    padding: 0.7rem 0.7rem;
  }
}

@media screen and (max-width: 1599px) {
  html[lang=es] .header--main-menu .dropdown.menu a {
    padding: 0.7rem 0.5rem;
  }
}

.floorplan--responsive {
  display: block;
  margin: auto;
  max-height: 90vh;
}

.bg--texture {
  position: relative;
  text-align: center;
}
.bg--texture img {
  position: relative;
}
.bg--texture:before {
  content: "";
  height: 302px;
  width: 122px;
  opacity: 0.2;
  position: absolute;
  background-image: url(/lib/dist/img/bg/bg--texture.svg);
  right: -25px;
  bottom: -25px;
  top: 0;
  margin: auto;
}
.bg--texture-btn {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.awards_showcase {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: -30px;
}
@media print, screen and (min-width: 64em) {
  .awards_showcase {
    margin-top: -40px;
  }
}

#frm_roiback .has-tip {
  font-weight: 400;
}

.header .header--container {
  max-width: 1600px !important;
}

.gradient--secondary {
  background: #589CAF;
  background: linear-gradient(to right, #61d7e0 0%, #298089 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 75em) {
  .gradient--secondary {
    -webkit-text-fill-color: inherit;
    background: none;
  }
}

.navigation {
  background: hsl(44, 15%, 100%);
  border-bottom: 1px solid #b5a89b;
  top: 0;
  font-size: 0.875rem;
  left: 0;
  position: absolute;
  width: 100%;
}

/*

  // List Suites TAFER REWARDS CTA

*/
.tafer-font {
  font-size: 16px !important;
  font-weight: 900 !important;
}

@media print, screen and (min-width: 64em) {
  .tafer-font {
    font-size: 22px !important;
  }
}
.rate__plan {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.instant__discount .button {
  border-radius: 4px;
  display: flex;
  margin-bottom: 0;
  margin-left: auto;
  font-weight: 500;
}

.instant__discount small {
  display: block;
  line-height: 1.2;
  text-transform: initial;
}

.instant__discount + small.black {
  color: #121317;
}

.instant__discount svg use {
  fill: #7B9462;
}

.instant__discount_best_rate {
  border-top: 1px solid #7B9462;
  border-bottom: 1px solid #7B9462;
  margin-top: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.currency__rates {
  font-weight: normal;
}

a.color--gold:hover {
  color: #7B9462;
}

.instant__discount_benefits {
  background: #7B9462;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 39.9375em) {
  #callout_top {
    position: absolute !important;
    padding: 0.6rem 0 !important;
  }
}

.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 #e0d9d1;
}

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

.section-heading *:first-child {
  margin-bottom: 0;
  position: relative;
}
.section-heading *:first-child::after {
  content: "";
  border-top: solid 1px #B79E79;
  width: 55px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-heading *:last-child {
  color: inherit;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400 !important;
  letter-spacing: 3px;
  margin: 10px 0 1rem 0;
  text-transform: uppercase;
}
.section-heading.text-center *:first-child::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0;
  margin: 0 auto;
}

@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: hsl(44, 15%, 100%);
  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: hsl(44, 15%, 100%);
  color: #597044;
  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;
}

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