foundation / foundation-sites

The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device.
https://get.foundation
MIT License
29.66k stars 5.49k forks source link

safari flex bug fix #9805

Closed dbelieves closed 7 years ago

dbelieves commented 7 years ago

.row:after, .row:before {content: " ";} does not work for safari .row:after, .row:before {content: normal;} works

http://stackoverflow.com/questions/34250282/flexbox-safari-bug-flex-wrap

dbelieves commented 7 years ago

please incorporate them in new fixes. thanks.

drmzio commented 7 years ago

I had the exact same issue and it was because I was including both normal grid and flex grid within the styles.scss file. If you're using sass, try commenting out the normal grid, so that you're only using one or the other, not both.

"The standard grid and flex grid use some of the same classes, namely .row and .column, and don't play nice together. If you want to use both in the same project, we recommend using the Sass mixins for each grid, instead of the default CSS."

http://foundation.zurb.com/sites/docs/flex-grid.html

dbelieves commented 7 years ago

I am fetching both foundation and foundation-flex from cdnjs. so there is nothing i can do. i used the fix by overriding it.

IamManchanda commented 7 years ago

@dbelieves You should only fetch one file b/w these two

css/foundation.css css/foundation-flex.css

joeldavuk commented 7 years ago

I experienced this I am using Sass and have the following setup: //@include foundation-grid; @include foundation-flex-grid;

If the above is correct this problem is still in the latest version (6.3.0) @dbelieves fixes the issue

kball commented 7 years ago

@joeldavuk Can you show more of your scss setup and maybe upload the css you're generating? I've just dug through this again and am not seeing any obvious ways other than including both grids to run into this...

For more context, these after properties are being applied by the clearfix mixin, which is only applied to rows in the float grid, not in the flex grid

joeldavuk commented 7 years ago

Here's the scss and css output.

@import "fonts";
@import "settings";
@import 'motion-ui';
@import 'foundation';

//some global styles
body {
  overflow-x: hidden;
}
img,a,* {
  //Removes the focus ring around an element when a mouse input is detected.
  @include disable-mouse-outline;
}
body .reveal-fixed {
  position:fixed;
  top:50%!important; /* override inline style injected from JS */
  left:50%;
  transform:translate(-50%, -50%);
}

//motion ui
@include motion-ui-transitions;
@include motion-ui-animations;

@include foundation-global-styles;
//@include foundation-grid;
@include foundation-flex-grid;
@include foundation-flex-classes;
@include foundation-typography;
@include foundation-forms;
@include foundation-button;
@include foundation-accordion;
@include foundation-accordion-menu;
//@include foundation-badge;
@include foundation-breadcrumbs;
@include foundation-button-group;
//@include foundation-callout;
//@include foundation-card;
@include foundation-close-button;
@include foundation-menu;
@include foundation-menu-icon;
@include foundation-drilldown-menu;
@include foundation-dropdown;
@include foundation-dropdown-menu;
@include foundation-responsive-embed;
//@include foundation-label;
@include foundation-media-object;
@include foundation-off-canvas;
@include foundation-orbit;
//@include foundation-pagination;
//@include foundation-progress-bar;
//@include foundation-slider;
//@include foundation-sticky;
@include foundation-reveal;
//@include foundation-switch;
@include foundation-table;
@include foundation-tabs;
//@include foundation-thumbnail;
//@include foundation-title-bar;
//@include foundation-tooltip;
@include foundation-top-bar;
@include foundation-visibility-classes;
@include foundation-float-classes;

//safari fix
.row:after, .row:before {content: normal;}

@import 'typography';
@import "utility/utility";
@import "components";

output css


body {
    overflow-x: hidden
}

[data-whatinput='mouse'] img, [data-whatinput='mouse'] a, [data-whatinput='mouse'] * {
    outline: 0
}

body .reveal-fixed {
    position: fixed;
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%)
}

.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(.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(.5);
    opacity: 0
}

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-.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(.75turn);
    opacity: 0
}

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(.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(-.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 */
html {
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, footer, header, nav, section {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

figcaption, figure {
    display: block
}

figure {
    margin: 1em 40px
}

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

main {
    display: block
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

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

a:active, a:hover {
    outline-width: 0
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b, strong {
    font-weight: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

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

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

audio, video {
    display: inline-block
}

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

img {
    border-style: none
}

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

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

button {
    overflow: visible
}

button, select {
    text-transform: none
}

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

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
}

input {
    overflow: visible
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

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

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    box-sizing: border-box;
    display: table;
    max-width: 100%;
    padding: 0;
    color: inherit;
    white-space: normal
}

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

textarea {
    overflow: auto
}

details {
    display: block
}

summary {
    display: list-item
}

menu {
    display: block
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

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

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

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

body {
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: daxWideLight, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #494949;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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

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

select {
    width: 100%;
    border-radius: 0
}

.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;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1
}

[data-whatinput='mouse'] button {
    outline: 0
}

.is-visible {
    display: block !important
}

.is-hidden {
    display: none !important
}

.row {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-flow: row wrap
}

.row .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem
}

@media print, screen and (min-width: 40em) {
    .row .row {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

@media print, screen and (min-width: 62em) {
    .row .row {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.row.expanded {
    max-width: none
}

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

.row.is-collapse-child, .row.collapse > .column > .row, .row.collapse > .columns > .row, .lt-ie10 .row.collapse > .columns > .row {
    margin-right: 0;
    margin-left: 0
}

.column, .columns, .lt-ie10 .columns {
    flex: 1 1 0px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    min-width: initial
}

@media print, screen and (min-width: 40em) {
    .column, .columns, .lt-ie10 .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.column.row.row, .row.row.columns {
    display: flex
}

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

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

.small-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

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

.small-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.small-offset-1 {
    margin-left: 8.33333%
}

.small-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.small-offset-2 {
    margin-left: 16.66667%
}

.small-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

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

.small-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.small-offset-4 {
    margin-left: 33.33333%
}

.small-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.small-offset-5 {
    margin-left: 41.66667%
}

.small-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

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

.small-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.small-offset-7 {
    margin-left: 58.33333%
}

.small-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.small-offset-8 {
    margin-left: 66.66667%
}

.small-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

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

.small-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.small-offset-10 {
    margin-left: 83.33333%
}

.small-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.small-offset-11 {
    margin-left: 91.66667%
}

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

.small-up-1 {
    flex-wrap: wrap
}

.small-up-1 > .column, .small-up-1 > .columns, .lt-ie10 .small-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%
}

.small-up-2 {
    flex-wrap: wrap
}

.small-up-2 > .column, .small-up-2 > .columns, .lt-ie10 .small-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%
}

.small-up-3 {
    flex-wrap: wrap
}

.small-up-3 > .column, .small-up-3 > .columns, .lt-ie10 .small-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.small-up-4 {
    flex-wrap: wrap
}

.small-up-4 > .column, .small-up-4 > .columns, .lt-ie10 .small-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%
}

.small-up-5 {
    flex-wrap: wrap
}

.small-up-5 > .column, .small-up-5 > .columns, .lt-ie10 .small-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%
}

.small-up-6 {
    flex-wrap: wrap
}

.small-up-6 > .column, .small-up-6 > .columns, .lt-ie10 .small-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.small-up-7 {
    flex-wrap: wrap
}

.small-up-7 > .column, .small-up-7 > .columns, .lt-ie10 .small-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%
}

.small-up-8 {
    flex-wrap: wrap
}

.small-up-8 > .column, .small-up-8 > .columns, .lt-ie10 .small-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%
}

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

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

@media print, screen and (min-width: 40em) {
    .medium-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .medium-offset-0 {
        margin-left: 0%
    }

    .medium-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .medium-offset-1 {
        margin-left: 8.33333%
    }

    .medium-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .medium-offset-2 {
        margin-left: 16.66667%
    }

    .medium-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .medium-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .medium-offset-4 {
        margin-left: 33.33333%
    }

    .medium-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .medium-offset-5 {
        margin-left: 41.66667%
    }

    .medium-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .medium-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .medium-offset-7 {
        margin-left: 58.33333%
    }

    .medium-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .medium-offset-8 {
        margin-left: 66.66667%
    }

    .medium-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .medium-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .medium-offset-10 {
        margin-left: 83.33333%
    }

    .medium-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .medium-offset-11 {
        margin-left: 91.66667%
    }

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

    .medium-up-1 {
        flex-wrap: wrap
    }

    .medium-up-1 > .column, .medium-up-1 > .columns, .lt-ie10 .medium-up-1 > .columns {
        flex: 0 0 100%;
        max-width: 100%
    }

    .medium-up-2 {
        flex-wrap: wrap
    }

    .medium-up-2 > .column, .medium-up-2 > .columns, .lt-ie10 .medium-up-2 > .columns {
        flex: 0 0 50%;
        max-width: 50%
    }

    .medium-up-3 {
        flex-wrap: wrap
    }

    .medium-up-3 > .column, .medium-up-3 > .columns, .lt-ie10 .medium-up-3 > .columns {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .medium-up-4 {
        flex-wrap: wrap
    }

    .medium-up-4 > .column, .medium-up-4 > .columns, .lt-ie10 .medium-up-4 > .columns {
        flex: 0 0 25%;
        max-width: 25%
    }

    .medium-up-5 {
        flex-wrap: wrap
    }

    .medium-up-5 > .column, .medium-up-5 > .columns, .lt-ie10 .medium-up-5 > .columns {
        flex: 0 0 20%;
        max-width: 20%
    }

    .medium-up-6 {
        flex-wrap: wrap
    }

    .medium-up-6 > .column, .medium-up-6 > .columns, .lt-ie10 .medium-up-6 > .columns {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .medium-up-7 {
        flex-wrap: wrap
    }

    .medium-up-7 > .column, .medium-up-7 > .columns, .lt-ie10 .medium-up-7 > .columns {
        flex: 0 0 14.28571%;
        max-width: 14.28571%
    }

    .medium-up-8 {
        flex-wrap: wrap
    }

    .medium-up-8 > .column, .medium-up-8 > .columns, .lt-ie10 .medium-up-8 > .columns {
        flex: 0 0 12.5%;
        max-width: 12.5%
    }
}

@media print, screen and (min-width: 40em) and (min-width: 40em) {
    .medium-expand {
        flex: 1 1 0px
    }
}

@media print, screen and (min-width: 40em) {
    .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
    }

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

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

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

.row.medium-unstack > .column, .row.medium-unstack > .columns, .lt-ie10 .row.medium-unstack > .columns {
    flex: 0 0 100%
}

@media print, screen and (min-width: 40em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns, .lt-ie10 .row.medium-unstack > .columns {
        flex: 1 1 0px
    }
}

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

    .medium-uncollapse > .column, .medium-uncollapse > .columns, .lt-ie10 .medium-uncollapse > .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

@media print, screen and (min-width: 62em) {
    .large-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .large-offset-0 {
        margin-left: 0%
    }

    .large-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .large-offset-1 {
        margin-left: 8.33333%
    }

    .large-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .large-offset-2 {
        margin-left: 16.66667%
    }

    .large-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .large-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .large-offset-4 {
        margin-left: 33.33333%
    }

    .large-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .large-offset-5 {
        margin-left: 41.66667%
    }

    .large-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .large-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .large-offset-7 {
        margin-left: 58.33333%
    }

    .large-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .large-offset-8 {
        margin-left: 66.66667%
    }

    .large-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .large-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .large-offset-10 {
        margin-left: 83.33333%
    }

    .large-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .large-offset-11 {
        margin-left: 91.66667%
    }

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

    .large-up-1 {
        flex-wrap: wrap
    }

    .large-up-1 > .column, .large-up-1 > .columns, .lt-ie10 .large-up-1 > .columns {
        flex: 0 0 100%;
        max-width: 100%
    }

    .large-up-2 {
        flex-wrap: wrap
    }

    .large-up-2 > .column, .large-up-2 > .columns, .lt-ie10 .large-up-2 > .columns {
        flex: 0 0 50%;
        max-width: 50%
    }

    .large-up-3 {
        flex-wrap: wrap
    }

    .large-up-3 > .column, .large-up-3 > .columns, .lt-ie10 .large-up-3 > .columns {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .large-up-4 {
        flex-wrap: wrap
    }

    .large-up-4 > .column, .large-up-4 > .columns, .lt-ie10 .large-up-4 > .columns {
        flex: 0 0 25%;
        max-width: 25%
    }

    .large-up-5 {
        flex-wrap: wrap
    }

    .large-up-5 > .column, .large-up-5 > .columns, .lt-ie10 .large-up-5 > .columns {
        flex: 0 0 20%;
        max-width: 20%
    }

    .large-up-6 {
        flex-wrap: wrap
    }

    .large-up-6 > .column, .large-up-6 > .columns, .lt-ie10 .large-up-6 > .columns {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .large-up-7 {
        flex-wrap: wrap
    }

    .large-up-7 > .column, .large-up-7 > .columns, .lt-ie10 .large-up-7 > .columns {
        flex: 0 0 14.28571%;
        max-width: 14.28571%
    }

    .large-up-8 {
        flex-wrap: wrap
    }

    .large-up-8 > .column, .large-up-8 > .columns, .lt-ie10 .large-up-8 > .columns {
        flex: 0 0 12.5%;
        max-width: 12.5%
    }
}

@media print, screen and (min-width: 62em) and (min-width: 62em) {
    .large-expand {
        flex: 1 1 0px
    }
}

@media print, screen and (min-width: 62em) {
    .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
    }

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

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

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

.row.large-unstack > .column, .row.large-unstack > .columns, .lt-ie10 .row.large-unstack > .columns {
    flex: 0 0 100%
}

@media print, screen and (min-width: 62em) {
    .row.large-unstack > .column, .row.large-unstack > .columns, .lt-ie10 .row.large-unstack > .columns {
        flex: 1 1 0px
    }
}

@media print, screen and (min-width: 62em) {
    .large-collapse > .column, .large-collapse > .columns, .lt-ie10 .large-collapse > .columns {
        padding-right: 0;
        padding-left: 0
    }

    .large-uncollapse > .column, .large-uncollapse > .columns, .lt-ie10 .large-uncollapse > .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.shrink {
    flex: 0 0 auto;
    max-width: 100%
}

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

.align-center {
    justify-content: center
}

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

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

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

.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: 62em) {
    .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
    }
}

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: .5rem;
    font-size: inherit;
    line-height: 1.6;
    text-rendering: optimizeLegibility
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: daxWideLight, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    color: inherit;
    text-rendering: optimizeLegibility
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    line-height: 0;
    color: #8c8c8c
}

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
    h1 {
        font-size: 3rem
    }

    h2 {
        font-size: 1.75rem
    }

    h3 {
        font-size: 2.5rem
    }

    h4 {
        font-size: 1.5625rem
    }

    h5 {
        font-size: 1.25rem
    }

    h6 {
        font-size: 1rem
    }
}

a {
    line-height: inherit;
    color: #494949;
    text-decoration: none;
    cursor: pointer
}

a:hover, a:focus {
    color: #0a0a0a
}

a img {
    border: 0
}

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

ul, ol, dl {
    margin-bottom: .5rem;
    list-style-position: outside;
    line-height: 1.6
}

li {
    font-size: inherit
}

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

ol {
    margin-left: 1.25rem
}

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

dl {
    margin-bottom: 1rem
}

dl dt {
    margin-bottom: .3rem;
    font-weight: bold
}

blockquote {
    margin: 0 0 .5rem;
    padding: .5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #8c8c8c
}

blockquote, blockquote p {
    line-height: 1.6;
    color: #494949
}

cite {
    display: block;
    font-size: .8125rem;
    color: #494949
}

cite:before {
    content: "— "
}

abbr {
    border-bottom: 1px dotted #0a0a0a;
    color: #494949;
    cursor: help
}

figure {
    margin: 0
}

code {
    padding: .125rem .3125rem .0625rem;
    border: 1px solid #8c8c8c;
    background-color: #f2f2f2;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #0a0a0a
}

kbd {
    margin: 0;
    padding: .125rem .25rem 0;
    background-color: #f2f2f2;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #0a0a0a
}

.subheader {
    margin-top: .2rem;
    margin-bottom: .5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #494949
}

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

.stat {
    font-size: 2.5rem;
    line-height: 1
}

p + .stat {
    margin-top: -1rem
}

.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: 62em) {
    .large-text-left {
        text-align: left
    }

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

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

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

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: .5rem;
    border: 1px solid #8c8c8c;
    border-radius: 0;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    color: #0a0a0a;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    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 #494949;
    background-color: #fefefe;
    box-shadow: 0 0 5px #8c8c8c;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out
}

textarea {
    max-width: 100%
}

textarea[rows] {
    height: auto
}

input::placeholder, textarea::placeholder {
    color: #8c8c8c
}

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

[type='submit'], [type='button'] {
    appearance: none;
    border-radius: 0
}

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: .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: .5rem
}

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

label {
    display: block;
    margin: 0;
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #0a0a0a
}

label.middle {
    margin: 0 0 1rem;
    padding: .5625rem 0
}

.help-text {
    margin-top: -.5rem;
    font-size: .8125rem;
    font-style: italic;
    color: #0a0a0a
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem
}

.input-group > :first-child {
    border-radius: 0 0 0 0
}

.input-group > :last-child > * {
    border-radius: 0 0 0 0
}

.input-group-label, .input-group-field, .input-group-button, .input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #8c8c8c;
    background: #f2f2f2;
    color: #0a0a0a;
    text-align: center;
    white-space: nowrap;
    width: 1%;
    height: 100%
}

.input-group-label:first-child {
    border-right: 0
}

.input-group-label:last-child {
    border-left: 0
}

.input-group-field {
    border-radius: 0;
    height: 2.5rem
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%;
    height: 100%
}

.input-group-button a, .input-group-button input, .input-group-button button, .input-group-button label {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem
}

.input-group .input-group-button {
    display: table-cell
}

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

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

.fieldset {
    margin: 1.125rem 0;
    padding: 1.25rem;
    border: 1px solid #8c8c8c
}

.fieldset legend {
    margin: 0;
    margin-left: -.1875rem;
    padding: 0 .1875rem;
    background: #fefefe
}

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: .5rem;
    appearance: none;
    border: 1px solid #8c8c8c;
    border-radius: 0;
    background-color: #fefefe;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    color: #0a0a0a;
    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%2873, 73, 73%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 #494949;
    background-color: #fefefe;
    box-shadow: 0 0 5px #8c8c8c;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out
}

select:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed
}

select::-ms-expand {
    display: none
}

select[multiple] {
    height: auto;
    background-image: none
}

.is-invalid-input:not(:focus) {
    border-color: red;
    background-color: #fee5e5
}

.is-invalid-input:not(:focus)::placeholder {
    color: red
}

.is-invalid-label {
    color: red
}

.form-error {
    display: none;
    margin-top: -.5rem;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: bold;
    color: red
}

.form-error.is-visible {
    display: block
}

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 1.15rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #b1d6e2;
    color: #fefefe
}

[data-whatinput='mouse'] .button {
    outline: 0
}

.button:hover, .button:focus {
    background-color: #85bfd2;
    color: #fefefe
}

.button.tiny {
    font-size: .6rem
}

.button.small {
    font-size: .75rem
}

.button.large {
    font-size: 1.25rem
}

.button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0
}

.button.primary {
    background-color: #b1d6e2;
    color: #0a0a0a
}

.button.primary:hover, .button.primary:focus {
    background-color: #76b7cc;
    color: #0a0a0a
}

.button.blue {
    background-color: #b1d6e2;
    color: #0a0a0a
}

.button.blue:hover, .button.blue:focus {
    background-color: #76b7cc;
    color: #0a0a0a
}

.button.dblue {
    background-color: #96c0ce;
    color: #0a0a0a
}

.button.dblue:hover, .button.dblue:focus {
    background-color: #65a3b7;
    color: #0a0a0a
}

.button.secondary {
    background-color: #f2f2f2;
    color: #0a0a0a
}

.button.secondary:hover, .button.secondary:focus {
    background-color: #c2c2c2;
    color: #0a0a0a
}

.button.success {
    background-color: #3adb76;
    color: #0a0a0a
}

.button.success:hover, .button.success:focus {
    background-color: #22bb5b;
    color: #0a0a0a
}

.button.warning {
    background-color: #ffae00;
    color: #0a0a0a
}

.button.warning:hover, .button.warning:focus {
    background-color: #cc8b00;
    color: #0a0a0a
}

.button.alert {
    background-color: red;
    color: #0a0a0a
}

.button.alert:hover, .button.alert:focus {
    background-color: #c00;
    color: #0a0a0a
}

.button.salmon {
    background-color: #f6ae98;
    color: #0a0a0a
}

.button.salmon:hover, .button.salmon:focus {
    background-color: #f0744f;
    color: #0a0a0a
}

.button.green {
    background-color: #84bfb0;
    color: #0a0a0a
}

.button.green:hover, .button.green:focus {
    background-color: #5aa995;
    color: #0a0a0a
}

.button.purple {
    background-color: #d4c6c6;
    color: #0a0a0a
}

.button.purple:hover, .button.purple:focus {
    background-color: #b19797;
    color: #0a0a0a
}

.button.almond {
    background-color: #fcd5b7;
    color: #0a0a0a
}

.button.almond:hover, .button.almond:focus {
    background-color: #f9a463;
    color: #0a0a0a
}

.button.vanilla {
    background-color: #fefefe;
    color: #0a0a0a
}

.button.vanilla:hover, .button.vanilla:focus {
    background-color: #cbcbcb;
    color: #0a0a0a
}

.button.grey {
    background-color: #8c8c8c;
    color: #0a0a0a
}

.button.grey:hover, .button.grey:focus {
    background-color: #707070;
    color: #0a0a0a
}

.button.dgrey {
    background-color: #494949;
    color: #fefefe
}

.button.dgrey:hover, .button.dgrey:focus {
    background-color: #3a3a3a;
    color: #fefefe
}

.button.lgrey {
    background-color: #f2f2f2;
    color: #0a0a0a
}

.button.lgrey:hover, .button.lgrey:focus {
    background-color: #c2c2c2;
    color: #0a0a0a
}

.button.xlgrey {
    background-color: #f8f8f8;
    color: #0a0a0a
}

.button.xlgrey:hover, .button.xlgrey:focus {
    background-color: #c6c6c6;
    color: #0a0a0a
}

.button.hollow {
    border: 1px solid #b1d6e2;
    color: #b1d6e2
}

.button.hollow, .button.hollow:hover, .button.hollow:focus {
    background-color: transparent
}

.button.hollow:hover, .button.hollow:focus {
    border-color: #377c93;
    color: #377c93
}

.button.hollow.primary {
    border: 1px solid #b1d6e2;
    color: #b1d6e2
}

.button.hollow.primary:hover, .button.hollow.primary:focus {
    border-color: #377c93;
    color: #377c93
}

.button.hollow.blue {
    border: 1px solid #b1d6e2;
    color: #b1d6e2
}

.button.hollow.blue:hover, .button.hollow.blue:focus {
    border-color: #377c93;
    color: #377c93
}

.button.hollow.dblue {
    border: 1px solid #96c0ce;
    color: #96c0ce
}

.button.hollow.dblue:hover, .button.hollow.dblue:focus {
    border-color: #396979;
    color: #396979
}

.button.hollow.secondary {
    border: 1px solid #f2f2f2;
    color: #f2f2f2
}

.button.hollow.secondary:hover, .button.hollow.secondary:focus {
    border-color: #797979;
    color: #797979
}

.button.hollow.success {
    border: 1px solid #3adb76;
    color: #3adb76
}

.button.hollow.success:hover, .button.hollow.success:focus {
    border-color: #157539;
    color: #157539
}

.button.hollow.warning {
    border: 1px solid #ffae00;
    color: #ffae00
}

.button.hollow.warning:hover, .button.hollow.warning:focus {
    border-color: #805700;
    color: #805700
}

.button.hollow.alert {
    border: 1px solid red;
    color: red
}

.button.hollow.alert:hover, .button.hollow.alert:focus {
    border-color: maroon;
    color: maroon
}

.button.hollow.salmon {
    border: 1px solid #f6ae98;
    color: #f6ae98
}

.button.hollow.salmon:hover, .button.hollow.salmon:focus {
    border-color: #b73710;
    color: #b73710
}

.button.hollow.green {
    border: 1px solid #84bfb0;
    color: #84bfb0
}

.button.hollow.green:hover, .button.hollow.green:focus {
    border-color: #376a5d;
    color: #376a5d
}

.button.hollow.purple {
    border: 1px solid #d4c6c6;
    color: #d4c6c6
}

.button.hollow.purple:hover, .button.hollow.purple:focus {
    border-color: #755858;
    color: #755858
}

.button.hollow.almond {
    border: 1px solid #fcd5b7;
    color: #fcd5b7
}

.button.hollow.almond:hover, .button.hollow.almond:focus {
    border-color: #d16009;
    color: #d16009
}

.button.hollow.vanilla {
    border: 1px solid #fefefe;
    color: #fefefe
}

.button.hollow.vanilla:hover, .button.hollow.vanilla:focus {
    border-color: #7f7f7f;
    color: #7f7f7f
}

.button.hollow.grey {
    border: 1px solid #8c8c8c;
    color: #8c8c8c
}

.button.hollow.grey:hover, .button.hollow.grey:focus {
    border-color: #464646;
    color: #464646
}

.button.hollow.dgrey {
    border: 1px solid #494949;
    color: #494949
}

.button.hollow.dgrey:hover, .button.hollow.dgrey:focus {
    border-color: #252525;
    color: #252525
}

.button.hollow.lgrey {
    border: 1px solid #f2f2f2;
    color: #f2f2f2
}

.button.hollow.lgrey:hover, .button.hollow.lgrey:focus {
    border-color: #797979;
    color: #797979
}

.button.hollow.xlgrey {
    border: 1px solid #f8f8f8;
    color: #f8f8f8
}

.button.hollow.xlgrey:hover, .button.hollow.xlgrey:focus {
    border-color: #7c7c7c;
    color: #7c7c7c
}

.button.disabled, .button[disabled] {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
    background-color: #b1d6e2;
    color: #fefefe
}

.button.disabled.primary, .button[disabled].primary {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
    background-color: #b1d6e2;
    color: #fefefe
}

.button.disabled.blue, .button[disabled].blue {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.blue:hover, .button.disabled.blue:focus, .button[disabled].blue:hover, .button[disabled].blue:focus {
    background-color: #b1d6e2;
    color: #fefefe
}

.button.disabled.dblue, .button[disabled].dblue {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.dblue:hover, .button.disabled.dblue:focus, .button[disabled].dblue:hover, .button[disabled].dblue:focus {
    background-color: #96c0ce;
    color: #fefefe
}

.button.disabled.secondary, .button[disabled].secondary {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
    background-color: #f2f2f2;
    color: #fefefe
}

.button.disabled.success, .button[disabled].success {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
    background-color: #3adb76;
    color: #fefefe
}

.button.disabled.warning, .button[disabled].warning {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
    background-color: #ffae00;
    color: #fefefe
}

.button.disabled.alert, .button[disabled].alert {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
    background-color: red;
    color: #fefefe
}

.button.disabled.salmon, .button[disabled].salmon {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.salmon:hover, .button.disabled.salmon:focus, .button[disabled].salmon:hover, .button[disabled].salmon:focus {
    background-color: #f6ae98;
    color: #fefefe
}

.button.disabled.green, .button[disabled].green {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.green:hover, .button.disabled.green:focus, .button[disabled].green:hover, .button[disabled].green:focus {
    background-color: #84bfb0;
    color: #fefefe
}

.button.disabled.purple, .button[disabled].purple {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.purple:hover, .button.disabled.purple:focus, .button[disabled].purple:hover, .button[disabled].purple:focus {
    background-color: #d4c6c6;
    color: #fefefe
}

.button.disabled.almond, .button[disabled].almond {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.almond:hover, .button.disabled.almond:focus, .button[disabled].almond:hover, .button[disabled].almond:focus {
    background-color: #fcd5b7;
    color: #fefefe
}

.button.disabled.vanilla, .button[disabled].vanilla {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.vanilla:hover, .button.disabled.vanilla:focus, .button[disabled].vanilla:hover, .button[disabled].vanilla:focus {
    background-color: #fefefe;
    color: #fefefe
}

.button.disabled.grey, .button[disabled].grey {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.grey:hover, .button.disabled.grey:focus, .button[disabled].grey:hover, .button[disabled].grey:focus {
    background-color: #8c8c8c;
    color: #fefefe
}

.button.disabled.dgrey, .button[disabled].dgrey {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.dgrey:hover, .button.disabled.dgrey:focus, .button[disabled].dgrey:hover, .button[disabled].dgrey:focus {
    background-color: #494949;
    color: #fefefe
}

.button.disabled.lgrey, .button[disabled].lgrey {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.lgrey:hover, .button.disabled.lgrey:focus, .button[disabled].lgrey:hover, .button[disabled].lgrey:focus {
    background-color: #f2f2f2;
    color: #fefefe
}

.button.disabled.xlgrey, .button[disabled].xlgrey {
    opacity: .25;
    cursor: not-allowed
}

.button.disabled.xlgrey:hover, .button.disabled.xlgrey:focus, .button[disabled].xlgrey:hover, .button[disabled].xlgrey:focus {
    background-color: #f8f8f8;
    color: #fefefe
}

.button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset .4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em
}

.button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0
}

.accordion {
    margin-left: 0;
    background: #fefefe;
    list-style-type: none
}

.accordion-item:first-child > :first-child {
    border-radius: 0 0 0 0
}

.accordion-item:last-child > :last-child {
    border-radius: 0 0 0 0
}

.accordion-title {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #f2f2f2;
    border-bottom: 0;
    font-size: .75rem;
    line-height: 1;
    color: #b1d6e2
}

:last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0 0 0 0
}

.accordion-title:hover, .accordion-title:focus {
    background-color: #f2f2f2
}

.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 #f2f2f2;
    border-bottom: 0;
    background-color: #fefefe;
    color: #494949
}

:last-child > .accordion-content:last-child {
    border-bottom: 1px solid #f2f2f2
}

.is-accordion-submenu-parent > a {
    position: relative
}

.is-accordion-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #b1d6e2 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%
}

.breadcrumbs {
    margin: 0 0 1rem 0;
    list-style: none
}

.breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '
}

.breadcrumbs::after {
    clear: both
}

.breadcrumbs li {
    float: left;
    font-size: .6875rem;
    color: #0a0a0a;
    cursor: default;
    text-transform: uppercase
}

.breadcrumbs li:not(:last-child)::after {
    position: relative;
    top: 1px;
    margin: 0 .75rem;
    opacity: 1;
    content: "/";
    color: #8c8c8c
}

.breadcrumbs a {
    color: #b1d6e2
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs .disabled {
    color: #8c8c8c;
    cursor: not-allowed
}

.button-group {
    margin-bottom: 1rem;
    font-size: 0
}

.button-group::before, .button-group::after {
    display: table;
    content: ' '
}

.button-group::after {
    clear: both
}

.button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 1.15rem
}

.button-group .button:last-child {
    margin-right: 0
}

.button-group.tiny .button {
    font-size: .6rem
}

.button-group.small .button {
    font-size: .75rem
}

.button-group.large .button {
    font-size: 1.25rem
}

.button-group.expanded {
    margin-right: -1px
}

.button-group.expanded::before, .button-group.expanded::after {
    display: none
}

.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
    display: inline-block;
    width: calc(50% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
    display: inline-block;
    width: calc(33.33333% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
    display: inline-block;
    width: calc(25% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
    display: inline-block;
    width: calc(20% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
    margin-right: -6px
}

.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
    display: inline-block;
    width: calc(16.66667% - 1px);
    margin-right: 1px
}

.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
    margin-right: -6px
}

.button-group.primary .button {
    background-color: #b1d6e2;
    color: #0a0a0a
}

.button-group.primary .button:hover, .button-group.primary .button:focus {
    background-color: #76b7cc;
    color: #0a0a0a
}

.button-group.blue .button {
    background-color: #b1d6e2;
    color: #0a0a0a
}

.button-group.blue .button:hover, .button-group.blue .button:focus {
    background-color: #76b7cc;
    color: #0a0a0a
}

.button-group.dblue .button {
    background-color: #96c0ce;
    color: #0a0a0a
}

.button-group.dblue .button:hover, .button-group.dblue .button:focus {
    background-color: #65a3b7;
    color: #0a0a0a
}

.button-group.secondary .button {
    background-color: #f2f2f2;
    color: #0a0a0a
}

.button-group.secondary .button:hover, .button-group.secondary .button:focus {
    background-color: #c2c2c2;
    color: #0a0a0a
}

.button-group.success .button {
    background-color: #3adb76;
    color: #0a0a0a
}

.button-group.success .button:hover, .button-group.success .button:focus {
    background-color: #22bb5b;
    color: #0a0a0a
}

.button-group.warning .button {
    background-color: #ffae00;
    color: #0a0a0a
}

.button-group.warning .button:hover, .button-group.warning .button:focus {
    background-color: #cc8b00;
    color: #0a0a0a
}

.button-group.alert .button {
    background-color: red;
    color: #0a0a0a
}

.button-group.alert .button:hover, .button-group.alert .button:focus {
    background-color: #c00;
    color: #0a0a0a
}

.button-group.salmon .button {
    background-color: #f6ae98;
    color: #0a0a0a
}

.button-group.salmon .button:hover, .button-group.salmon .button:focus {
    background-color: #f0744f;
    color: #0a0a0a
}

.button-group.green .button {
    background-color: #84bfb0;
    color: #0a0a0a
}

.button-group.green .button:hover, .button-group.green .button:focus {
    background-color: #5aa995;
    color: #0a0a0a
}

.button-group.purple .button {
    background-color: #d4c6c6;
    color: #0a0a0a
}

.button-group.purple .button:hover, .button-group.purple .button:focus {
    background-color: #b19797;
    color: #0a0a0a
}

.button-group.almond .button {
    background-color: #fcd5b7;
    color: #0a0a0a
}

.button-group.almond .button:hover, .button-group.almond .button:focus {
    background-color: #f9a463;
    color: #0a0a0a
}

.button-group.vanilla .button {
    background-color: #fefefe;
    color: #0a0a0a
}

.button-group.vanilla .button:hover, .button-group.vanilla .button:focus {
    background-color: #cbcbcb;
    color: #0a0a0a
}

.button-group.grey .button {
    background-color: #8c8c8c;
    color: #0a0a0a
}

.button-group.grey .button:hover, .button-group.grey .button:focus {
    background-color: #707070;
    color: #0a0a0a
}

.button-group.dgrey .button {
    background-color: #494949;
    color: #fefefe
}

.button-group.dgrey .button:hover, .button-group.dgrey .button:focus {
    background-color: #3a3a3a;
    color: #fefefe
}

.button-group.lgrey .button {
    background-color: #f2f2f2;
    color: #0a0a0a
}

.button-group.lgrey .button:hover, .button-group.lgrey .button:focus {
    background-color: #c2c2c2;
    color: #0a0a0a
}

.button-group.xlgrey .button {
    background-color: #f8f8f8;
    color: #0a0a0a
}

.button-group.xlgrey .button:hover, .button-group.xlgrey .button:focus {
    background-color: #c6c6c6;
    color: #0a0a0a
}

.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 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 {
        width: auto;
        margin-bottom: 0
    }
}

@media print, screen and (min-width: 62em) {
    .button-group.stacked-for-medium .button {
        width: auto;
        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
    }
}

.close-button {
    position: absolute;
    color: #494949;
    cursor: pointer
}

[data-whatinput='mouse'] .close-button {
    outline: 0
}

.close-button:hover, .close-button:focus {
    color: #0a0a0a
}

.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 {
    margin: 0;
    list-style-type: none
}

.menu > li {
    display: table-cell;
    vertical-align: middle
}

[data-whatinput='mouse'] .menu > li {
    outline: 0
}

.menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    line-height: 1
}

.menu input, .menu select, .menu a, .menu button {
    margin-bottom: 0
}

.menu > li > a img, .menu > li > a i, .menu > li > a svg {
    vertical-align: middle
}

.menu > li > a img + span, .menu > li > a i + span, .menu > li > a svg + span {
    vertical-align: middle
}

.menu > li > a img, .menu > li > a i, .menu > li > a svg {
    margin-right: .25rem;
    display: inline-block
}

.menu > li, .menu.horizontal > li {
    display: table-cell
}

.menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed
}

.menu.expanded > li:first-child:last-child {
    width: 100%
}

.menu.vertical > li {
    display: block
}

@media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
        display: table-cell
    }

    .menu.medium-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }

    .menu.medium-expanded > li:first-child:last-child {
        width: 100%
    }

    .menu.medium-vertical > li {
        display: block
    }
}

@media print, screen and (min-width: 62em) {
    .menu.large-horizontal > li {
        display: table-cell
    }

    .menu.large-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }

    .menu.large-expanded > li:first-child:last-child {
        width: 100%
    }

    .menu.large-vertical > li {
        display: block
    }
}

.menu.simple li {
    display: inline-block;
    margin-right: 1rem;
    line-height: 1
}

.menu.simple a {
    padding: 0
}

.menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '
}

.menu.align-right::after {
    clear: both
}

.menu.align-right > li {
    float: right
}

.menu.icon-top > li > a {
    text-align: center
}

.menu.icon-top > li > a img, .menu.icon-top > li > a i, .menu.icon-top > li > a svg {
    display: block;
    margin: 0 auto .25rem
}

.menu.icon-top.vertical a > span {
    margin: auto
}

.menu.nested {
    margin-left: 1rem
}

.menu .active > a {
    background: #b1d6e2;
    color: #fefefe
}

.menu.menu-bordered li {
    border: 1px solid #f2f2f2
}

.menu.menu-bordered li:not(:first-child) {
    border-top: 0
}

.menu.menu-hover li:hover {
    background-color: #f2f2f2
}

.menu-text {
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.5rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit
}

.menu-centered {
    text-align: center
}

.menu-centered > .menu {
    display: inline-block
}

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

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
    content: ''
}

.menu-icon:hover::after {
    background: #8c8c8c;
    box-shadow: 0 7px 0 #8c8c8c, 0 14px 0 #8c8c8c
}

.menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''
}

.menu-icon.dark:hover::after {
    background: #494949;
    box-shadow: 0 7px 0 #494949, 0 14px 0 #494949
}

.is-drilldown {
    position: relative;
    overflow: hidden
}

.is-drilldown li {
    display: block
}

.is-drilldown.animate-height {
    transition: height 0.5s
}

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fefefe;
    transition: transform 0.15s linear
}

.is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%)
}

.is-drilldown-submenu.is-closing {
    transform: translateX(100%)
}

.drilldown-submenu-cover-previous {
    min-height: 100%
}

.is-drilldown-submenu-parent > a {
    position: relative
}

.is-drilldown-submenu-parent > 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 #b1d6e2;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem
}

.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 #b1d6e2 transparent transparent;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    border-left-width: 0
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    display: block;
    width: 300px;
    padding: 1rem;
    visibility: hidden;
    border: 1px solid #8c8c8c;
    border-radius: 0;
    background-color: #fefefe;
    font-size: 1rem
}

.dropdown-pane.is-open {
    visibility: visible
}

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #494949 transparent transparent;
    right: 5px;
    margin-top: -3px
}

[data-whatinput='mouse'] .dropdown.menu a {
    outline: 0
}

.no-js .dropdown.menu ul {
    display: none
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 0
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto
}

.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 {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #494949 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 #494949
}

@media print, screen and (min-width: 40em) {
    .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }

    .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #494949 transparent transparent;
        right: 5px;
        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
    }

    .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 {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #494949 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 #494949
    }
}

@media print, screen and (min-width: 62em) {
    .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }

    .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #494949 transparent transparent;
        right: 5px;
        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
    }

    .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 {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #494949 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 #494949
    }
}

.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;
    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 #8c8c8c;
    background: #fefefe
}

.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #494949 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 #494949
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px
}

.is-dropdown-submenu > li {
    width: 100%
}

.is-dropdown-submenu.js-dropdown-active {
    display: block
}

.responsive-embed, .flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 75%;
    overflow: hidden
}

.responsive-embed iframe, .responsive-embed object, .responsive-embed embed, .responsive-embed video, .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.responsive-embed.widescreen, .flex-video.widescreen {
    padding-bottom: 56.25%
}

.media-object {
    display: block;
    margin-bottom: 1rem
}

.media-object img {
    max-width: none
}

@media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block
    }

    .media-object.stack-for-small .media-object-section img {
        width: 100%
    }
}

.media-object-section {
    display: table-cell;
    vertical-align: top
}

.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.middle {
    vertical-align: middle
}

.media-object-section.bottom {
    vertical-align: bottom
}

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

.js-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .5s ease, visibility .5s ease;
    background: rgba(254, 254, 254, 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: 1;
    transition: transform .5s ease;
    backface-visibility: hidden;
    background: #f2f2f2
}

[data-whatinput='mouse'] .off-canvas {
    outline: 0
}

.off-canvas.is-transition-overlap {
    z-index: 10
}

.off-canvas.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7)
}

.off-canvas.is-open {
    transform: translate(0, 0)
}

.off-canvas-absolute {
    position: absolute;
    z-index: 1;
    transition: transform .5s ease;
    backface-visibility: hidden;
    background: #f2f2f2
}

[data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0
}

.off-canvas-absolute.is-transition-overlap {
    z-index: 10
}

.off-canvas-absolute.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7)
}

.off-canvas-absolute.is-open {
    transform: translate(0, 0)
}

.position-left {
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    transform: translateX(-250px);
    overflow-y: auto
}

.position-left.is-open ~ .off-canvas-content {
    transform: translateX(250px)
}

.position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-right {
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    transform: translateX(250px);
    overflow-y: auto
}

.position-right.is-open ~ .off-canvas-content {
    transform: translateX(-250px)
}

.position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(-250px);
    overflow-x: auto
}

.position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px)
}

.position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.position-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(250px);
    overflow-x: auto
}

.position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px)
}

.position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
    content: " "
}

.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none
}

.off-canvas-content {
    transition: transform .5s ease;
    backface-visibility: hidden
}

@media print, screen and (min-width: 40em) {
    .position-left.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-left.reveal-for-medium ~ .off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-right.reveal-for-medium ~ .off-canvas-content {
        margin-right: 250px
    }

    .position-top.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-top.reveal-for-medium ~ .off-canvas-content {
        margin-top: 250px
    }

    .position-bottom.reveal-for-medium {
        transform: none;
        z-index: 1
    }

    .position-bottom.reveal-for-medium ~ .off-canvas-content {
        margin-bottom: 250px
    }
}

@media print, screen and (min-width: 62em) {
    .position-left.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-left.reveal-for-large ~ .off-canvas-content {
        margin-left: 250px
    }

    .position-right.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-right.reveal-for-large ~ .off-canvas-content {
        margin-right: 250px
    }

    .position-top.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-top.reveal-for-large ~ .off-canvas-content {
        margin-top: 250px
    }

    .position-bottom.reveal-for-large {
        transform: none;
        z-index: 1
    }

    .position-bottom.reveal-for-large ~ .off-canvas-content {
        margin-bottom: 250px
    }
}

.orbit {
    position: relative
}

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

.orbit-slide {
    width: 100%
}

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

.orbit-figure {
    margin: 0
}

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

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.5);
    color: #fefefe
}

.orbit-previous, .orbit-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #fefefe
}

[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0
}

.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5)
}

.orbit-previous {
    left: 0
}

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

.orbit-bullets {
    position: relative;
    margin-top: .8rem;
    margin-bottom: .8rem;
    text-align: center
}

[data-whatinput='mouse'] .orbit-bullets {
    outline: 0
}

.orbit-bullets button {
    width: .6rem;
    height: .6rem;
    margin: .1rem;
    border-radius: 50%;
    background-color: transparent
}

.orbit-bullets button:hover {
    background-color: #fefefe
}

.orbit-bullets button.is-active {
    background-color: #fefefe
}

body.is-reveal-open {
    overflow: hidden
}

html.is-reveal-open, html.is-reveal-open body {
    min-height: 100%;
    overflow: hidden;
    user-select: none
}

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

.reveal {
    z-index: 1006;
    backface-visibility: hidden;
    display: none;
    padding: 1rem;
    border: 1px solid #8c8c8c;
    border-radius: 0;
    background-color: #fefefe;
    position: relative;
    top: 100px;
    margin-right: auto;
    margin-left: auto;
    overflow-y: auto
}

[data-whatinput='mouse'] .reveal {
    outline: 0
}

@media print, screen and (min-width: 40em) {
    .reveal {
        min-height: 0
    }
}

.reveal .column, .reveal .columns, .reveal .columns {
    min-width: 0
}

.reveal > :last-child {
    margin-bottom: 0
}

@media print, screen and (min-width: 40em) {
    .reveal {
        width: 600px;
        max-width: 80rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal .reveal {
        right: auto;
        left: auto;
        margin: 0 auto
    }
}

.reveal.collapse {
    padding: 0
}

@media print, screen and (min-width: 40em) {
    .reveal.tiny {
        width: 30%;
        max-width: 80rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.small {
        width: 50%;
        max-width: 80rem
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.large {
        width: 90%;
        max-width: 80rem
    }
}

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

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0
}

thead, tbody, tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe
}

caption {
    padding: .5rem .625rem .625rem;
    font-weight: bold
}

thead {
    background: #f8f8f8;
    color: #494949
}

tfoot {
    background: #f1f1f1;
    color: #494949
}

thead tr, tfoot tr {
    background: transparent
}

thead th, thead td, tfoot th, tfoot td {
    padding: .5rem .625rem .625rem;
    font-weight: bold;
    text-align: left
}

tbody th, tbody td {
    padding: .5rem .625rem .625rem
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1
}

table.unstriped tbody {
    background-color: #fefefe
}

table.unstriped tbody tr {
    border-bottom: 0;
    border-bottom: 1px solid #f1f1f1;
    background-color: #fefefe
}

@media screen and (max-width: 61.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: #f3f3f3
}

table.hover tfoot tr:hover {
    background-color: #ececec
}

table.hover tbody tr:hover {
    background-color: #f9f9f9
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
    background-color: #ececec
}

.table-scroll {
    overflow-x: auto
}

.table-scroll table {
    width: auto
}

.tabs {
    margin: 0;
    border: 1px solid #f2f2f2;
    background: #fefefe;
    list-style-type: none
}

.tabs::before, .tabs::after {
    display: table;
    content: ' '
}

.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: #b1d6e2
}

.tabs.primary > li > a {
    color: #0a0a0a
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
    background: #a2cedd
}

.tabs-title {
    float: left
}

.tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: .75rem;
    line-height: 1;
    color: #b1d6e2
}

.tabs-title > a:hover {
    background: #fefefe;
    color: #88c0d3
}

.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
    background: #f2f2f2;
    color: #b1d6e2
}

.tabs-content {
    border: 1px solid #f2f2f2;
    border-top: 0;
    background: #fefefe;
    color: #494949;
    transition: all 0.5s ease
}

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

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

.tabs-panel[aria-hidden="false"] {
    display: block
}

.top-bar {
    padding: 0rem
}

.top-bar::before, .top-bar::after {
    display: table;
    content: ' '
}

.top-bar::after {
    clear: both
}

.top-bar, .top-bar ul {
    background-color: #fefefe
}

.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 {
    width: 100%
}

@media print, screen and (min-width: 62em) {
    .top-bar .top-bar-left, .top-bar .top-bar-right {
        width: auto
    }
}

@media screen and (max-width: 61.9375em) {
    .top-bar.stacked-for-medium .top-bar-left, .top-bar.stacked-for-medium .top-bar-right {
        width: 100%
    }
}

@media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left, .top-bar.stacked-for-large .top-bar-right {
        width: 100%
    }
}

.top-bar-title {
    display: inline-block;
    float: left;
    padding: 0.5rem 1rem 0.5rem 0
}

.top-bar-title .menu-icon {
    bottom: 2px
}

.top-bar-left {
    float: left
}

.top-bar-right {
    float: right
}

.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: 61.9375em) {
    .hide-for-medium-only {
        display: none !important
    }
}

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

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

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

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

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

.show-for-sr, .show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

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

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

.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: ' '
}

.clearfix::after {
    clear: both
}

.row:after, .row:before {
    content: normal
}

.font-black {
    font-family: daxWideBlack, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.font-bold, .title-sm {
    font-family: daxWideBold, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.font-ex-bold {
    font-family: daxWideExtraBold, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.font-light, .title-xl, .title-lg, .title-md {
    font-family: daxWideLight, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.font-medium {
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.font-regular {
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.title-margin {
    margin: 20px 0
}

.title-uppercase, .uppercase {
    text-transform: uppercase
}

.font-sm, .title-sm, .mt-tempur .breadcrumb-component ul li {
    font-size: 12px
}

.font-md, .title-md {
    font-size: 14px
}

@media screen and (max-width: 61.9375em) {
    .font-md, .title-md {
        font-size: 12px
    }
}

.font-lg, .title-lg {
    font-size: 24px
}

@media screen and (max-width: 61.9375em) {
    .font-lg, .title-lg {
        font-size: 14px
    }
}

.font-xl, .title-xl {
    font-size: 40px
}

@media screen and (max-width: 61.9375em) {
    .font-xl, .title-xl {
        font-size: 24px
    }
}

p, li, a {
    font-size: 14px;
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

@media screen and (max-width: 61.9375em) {
    p, li, a {
        font-size: 12px
    }
}

a {
    color: #b1d6e2;
    text-decoration: underline
}

.bullets-middle li {
    list-style: none
}

.bullets-middle li:after {
    content: '•';
    display: block;
    text-align: center
}

.line-break {
    border: 1px solid #f2f2f2;
    transform: scaleY(0.5);
    margin: 50px 0px;
    width: 100%
}

small {
    font-size: 12px
}

.lt-ie10 .row {
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto
}

.lt-ie10 .row::before, .lt-ie10 .row::after {
    display: table;
    content: ' '
}

.lt-ie10 .row::after {
    clear: both
}

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

.lt-ie10 .row .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem
}

@media print, screen and (min-width: 40em) {
    .lt-ie10 .row .row {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

@media print, screen and (min-width: 62em) {
    .lt-ie10 .row .row {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.lt-ie10 .row .row.collapse {
    margin-right: 0;
    margin-left: 0
}

.lt-ie10 .row.expanded {
    max-width: none
}

.lt-ie10 .row.expanded .row {
    margin-right: auto;
    margin-left: auto
}

.lt-ie10 .row.gutter-small > .column, .lt-ie10 .row.gutter-small > .columns {
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

.lt-ie10 .row.gutter-medium > .column, .lt-ie10 .row.gutter-medium > .columns {
    padding-right: .9375rem;
    padding-left: .9375rem
}

.lt-ie10 .column, .lt-ie10 .columns {
    width: 100%;
    float: left;
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

@media print, screen and (min-width: 40em) {
    .lt-ie10 .column, .lt-ie10 .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.lt-ie10 .column:last-child:not(:first-child), .lt-ie10 .columns:last-child:not(:first-child) {
    float: right
}

.lt-ie10 .column.end:last-child:last-child, .lt-ie10 .end.columns:last-child:last-child {
    float: left
}

.lt-ie10 .column.row.row, .lt-ie10 .row.row.columns {
    float: none
}

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

.lt-ie10 .small-1 {
    width: 8.33333%
}

.lt-ie10 .small-push-1 {
    position: relative;
    left: 8.33333%
}

.lt-ie10 .small-pull-1 {
    position: relative;
    left: -8.33333%
}

.lt-ie10 .small-offset-0 {
    margin-left: 0%
}

.lt-ie10 .small-2 {
    width: 16.66667%
}

.lt-ie10 .small-push-2 {
    position: relative;
    left: 16.66667%
}

.lt-ie10 .small-pull-2 {
    position: relative;
    left: -16.66667%
}

.lt-ie10 .small-offset-1 {
    margin-left: 8.33333%
}

.lt-ie10 .small-3 {
    width: 25%
}

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

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

.lt-ie10 .small-offset-2 {
    margin-left: 16.66667%
}

.lt-ie10 .small-4 {
    width: 33.33333%
}

.lt-ie10 .small-push-4 {
    position: relative;
    left: 33.33333%
}

.lt-ie10 .small-pull-4 {
    position: relative;
    left: -33.33333%
}

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

.lt-ie10 .small-5 {
    width: 41.66667%
}

.lt-ie10 .small-push-5 {
    position: relative;
    left: 41.66667%
}

.lt-ie10 .small-pull-5 {
    position: relative;
    left: -41.66667%
}

.lt-ie10 .small-offset-4 {
    margin-left: 33.33333%
}

.lt-ie10 .small-6 {
    width: 50%
}

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

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

.lt-ie10 .small-offset-5 {
    margin-left: 41.66667%
}

.lt-ie10 .small-7 {
    width: 58.33333%
}

.lt-ie10 .small-push-7 {
    position: relative;
    left: 58.33333%
}

.lt-ie10 .small-pull-7 {
    position: relative;
    left: -58.33333%
}

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

.lt-ie10 .small-8 {
    width: 66.66667%
}

.lt-ie10 .small-push-8 {
    position: relative;
    left: 66.66667%
}

.lt-ie10 .small-pull-8 {
    position: relative;
    left: -66.66667%
}

.lt-ie10 .small-offset-7 {
    margin-left: 58.33333%
}

.lt-ie10 .small-9 {
    width: 75%
}

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

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

.lt-ie10 .small-offset-8 {
    margin-left: 66.66667%
}

.lt-ie10 .small-10 {
    width: 83.33333%
}

.lt-ie10 .small-push-10 {
    position: relative;
    left: 83.33333%
}

.lt-ie10 .small-pull-10 {
    position: relative;
    left: -83.33333%
}

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

.lt-ie10 .small-11 {
    width: 91.66667%
}

.lt-ie10 .small-push-11 {
    position: relative;
    left: 91.66667%
}

.lt-ie10 .small-pull-11 {
    position: relative;
    left: -91.66667%
}

.lt-ie10 .small-offset-10 {
    margin-left: 83.33333%
}

.lt-ie10 .small-12 {
    width: 100%
}

.lt-ie10 .small-offset-11 {
    margin-left: 91.66667%
}

.lt-ie10 .small-up-1 > .column, .lt-ie10 .small-up-1 > .columns {
    float: left;
    width: 100%
}

.lt-ie10 .small-up-1 > .column:nth-of-type(1n), .lt-ie10 .small-up-1 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-1 > .column:nth-of-type(1n+1), .lt-ie10 .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both
}

.lt-ie10 .small-up-1 > .column:last-child, .lt-ie10 .small-up-1 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-2 > .column, .lt-ie10 .small-up-2 > .columns {
    float: left;
    width: 50%
}

.lt-ie10 .small-up-2 > .column:nth-of-type(1n), .lt-ie10 .small-up-2 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-2 > .column:nth-of-type(2n+1), .lt-ie10 .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both
}

.lt-ie10 .small-up-2 > .column:last-child, .lt-ie10 .small-up-2 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-3 > .column, .lt-ie10 .small-up-3 > .columns {
    float: left;
    width: 33.33333%
}

.lt-ie10 .small-up-3 > .column:nth-of-type(1n), .lt-ie10 .small-up-3 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-3 > .column:nth-of-type(3n+1), .lt-ie10 .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both
}

.lt-ie10 .small-up-3 > .column:last-child, .lt-ie10 .small-up-3 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-4 > .column, .lt-ie10 .small-up-4 > .columns {
    float: left;
    width: 25%
}

.lt-ie10 .small-up-4 > .column:nth-of-type(1n), .lt-ie10 .small-up-4 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-4 > .column:nth-of-type(4n+1), .lt-ie10 .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both
}

.lt-ie10 .small-up-4 > .column:last-child, .lt-ie10 .small-up-4 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-5 > .column, .lt-ie10 .small-up-5 > .columns {
    float: left;
    width: 20%
}

.lt-ie10 .small-up-5 > .column:nth-of-type(1n), .lt-ie10 .small-up-5 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-5 > .column:nth-of-type(5n+1), .lt-ie10 .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both
}

.lt-ie10 .small-up-5 > .column:last-child, .lt-ie10 .small-up-5 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-6 > .column, .lt-ie10 .small-up-6 > .columns {
    float: left;
    width: 16.66667%
}

.lt-ie10 .small-up-6 > .column:nth-of-type(1n), .lt-ie10 .small-up-6 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-6 > .column:nth-of-type(6n+1), .lt-ie10 .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both
}

.lt-ie10 .small-up-6 > .column:last-child, .lt-ie10 .small-up-6 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-7 > .column, .lt-ie10 .small-up-7 > .columns {
    float: left;
    width: 14.28571%
}

.lt-ie10 .small-up-7 > .column:nth-of-type(1n), .lt-ie10 .small-up-7 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-7 > .column:nth-of-type(7n+1), .lt-ie10 .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both
}

.lt-ie10 .small-up-7 > .column:last-child, .lt-ie10 .small-up-7 > .columns:last-child {
    float: left
}

.lt-ie10 .small-up-8 > .column, .lt-ie10 .small-up-8 > .columns {
    float: left;
    width: 12.5%
}

.lt-ie10 .small-up-8 > .column:nth-of-type(1n), .lt-ie10 .small-up-8 > .columns:nth-of-type(1n) {
    clear: none
}

.lt-ie10 .small-up-8 > .column:nth-of-type(8n+1), .lt-ie10 .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both
}

.lt-ie10 .small-up-8 > .column:last-child, .lt-ie10 .small-up-8 > .columns:last-child {
    float: left
}

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

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

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

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

.lt-ie10 .small-centered {
    margin-right: auto;
    margin-left: auto
}

.lt-ie10 .small-centered, .lt-ie10 .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both
}

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

@media print, screen and (min-width: 40em) {
    .lt-ie10 .medium-1 {
        width: 8.33333%
    }

    .lt-ie10 .medium-push-1 {
        position: relative;
        left: 8.33333%
    }

    .lt-ie10 .medium-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .lt-ie10 .medium-offset-0 {
        margin-left: 0%
    }

    .lt-ie10 .medium-2 {
        width: 16.66667%
    }

    .lt-ie10 .medium-push-2 {
        position: relative;
        left: 16.66667%
    }

    .lt-ie10 .medium-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .lt-ie10 .medium-offset-1 {
        margin-left: 8.33333%
    }

    .lt-ie10 .medium-3 {
        width: 25%
    }

    .lt-ie10 .medium-push-3 {
        position: relative;
        left: 25%
    }

    .lt-ie10 .medium-pull-3 {
        position: relative;
        left: -25%
    }

    .lt-ie10 .medium-offset-2 {
        margin-left: 16.66667%
    }

    .lt-ie10 .medium-4 {
        width: 33.33333%
    }

    .lt-ie10 .medium-push-4 {
        position: relative;
        left: 33.33333%
    }

    .lt-ie10 .medium-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .lt-ie10 .medium-offset-3 {
        margin-left: 25%
    }

    .lt-ie10 .medium-5 {
        width: 41.66667%
    }

    .lt-ie10 .medium-push-5 {
        position: relative;
        left: 41.66667%
    }

    .lt-ie10 .medium-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .lt-ie10 .medium-offset-4 {
        margin-left: 33.33333%
    }

    .lt-ie10 .medium-6 {
        width: 50%
    }

    .lt-ie10 .medium-push-6 {
        position: relative;
        left: 50%
    }

    .lt-ie10 .medium-pull-6 {
        position: relative;
        left: -50%
    }

    .lt-ie10 .medium-offset-5 {
        margin-left: 41.66667%
    }

    .lt-ie10 .medium-7 {
        width: 58.33333%
    }

    .lt-ie10 .medium-push-7 {
        position: relative;
        left: 58.33333%
    }

    .lt-ie10 .medium-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .lt-ie10 .medium-offset-6 {
        margin-left: 50%
    }

    .lt-ie10 .medium-8 {
        width: 66.66667%
    }

    .lt-ie10 .medium-push-8 {
        position: relative;
        left: 66.66667%
    }

    .lt-ie10 .medium-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .lt-ie10 .medium-offset-7 {
        margin-left: 58.33333%
    }

    .lt-ie10 .medium-9 {
        width: 75%
    }

    .lt-ie10 .medium-push-9 {
        position: relative;
        left: 75%
    }

    .lt-ie10 .medium-pull-9 {
        position: relative;
        left: -75%
    }

    .lt-ie10 .medium-offset-8 {
        margin-left: 66.66667%
    }

    .lt-ie10 .medium-10 {
        width: 83.33333%
    }

    .lt-ie10 .medium-push-10 {
        position: relative;
        left: 83.33333%
    }

    .lt-ie10 .medium-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .lt-ie10 .medium-offset-9 {
        margin-left: 75%
    }

    .lt-ie10 .medium-11 {
        width: 91.66667%
    }

    .lt-ie10 .medium-push-11 {
        position: relative;
        left: 91.66667%
    }

    .lt-ie10 .medium-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .lt-ie10 .medium-offset-10 {
        margin-left: 83.33333%
    }

    .lt-ie10 .medium-12 {
        width: 100%
    }

    .lt-ie10 .medium-offset-11 {
        margin-left: 91.66667%
    }

    .lt-ie10 .medium-up-1 > .column, .lt-ie10 .medium-up-1 > .columns {
        float: left;
        width: 100%
    }

    .lt-ie10 .medium-up-1 > .column:nth-of-type(1n), .lt-ie10 .medium-up-1 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-1 > .column:nth-of-type(1n+1), .lt-ie10 .medium-up-1 > .columns:nth-of-type(1n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-1 > .column:last-child, .lt-ie10 .medium-up-1 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-2 > .column, .lt-ie10 .medium-up-2 > .columns {
        float: left;
        width: 50%
    }

    .lt-ie10 .medium-up-2 > .column:nth-of-type(1n), .lt-ie10 .medium-up-2 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-2 > .column:nth-of-type(2n+1), .lt-ie10 .medium-up-2 > .columns:nth-of-type(2n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-2 > .column:last-child, .lt-ie10 .medium-up-2 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-3 > .column, .lt-ie10 .medium-up-3 > .columns {
        float: left;
        width: 33.33333%
    }

    .lt-ie10 .medium-up-3 > .column:nth-of-type(1n), .lt-ie10 .medium-up-3 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-3 > .column:nth-of-type(3n+1), .lt-ie10 .medium-up-3 > .columns:nth-of-type(3n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-3 > .column:last-child, .lt-ie10 .medium-up-3 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-4 > .column, .lt-ie10 .medium-up-4 > .columns {
        float: left;
        width: 25%
    }

    .lt-ie10 .medium-up-4 > .column:nth-of-type(1n), .lt-ie10 .medium-up-4 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-4 > .column:nth-of-type(4n+1), .lt-ie10 .medium-up-4 > .columns:nth-of-type(4n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-4 > .column:last-child, .lt-ie10 .medium-up-4 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-5 > .column, .lt-ie10 .medium-up-5 > .columns {
        float: left;
        width: 20%
    }

    .lt-ie10 .medium-up-5 > .column:nth-of-type(1n), .lt-ie10 .medium-up-5 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-5 > .column:nth-of-type(5n+1), .lt-ie10 .medium-up-5 > .columns:nth-of-type(5n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-5 > .column:last-child, .lt-ie10 .medium-up-5 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-6 > .column, .lt-ie10 .medium-up-6 > .columns {
        float: left;
        width: 16.66667%
    }

    .lt-ie10 .medium-up-6 > .column:nth-of-type(1n), .lt-ie10 .medium-up-6 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-6 > .column:nth-of-type(6n+1), .lt-ie10 .medium-up-6 > .columns:nth-of-type(6n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-6 > .column:last-child, .lt-ie10 .medium-up-6 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-7 > .column, .lt-ie10 .medium-up-7 > .columns {
        float: left;
        width: 14.28571%
    }

    .lt-ie10 .medium-up-7 > .column:nth-of-type(1n), .lt-ie10 .medium-up-7 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-7 > .column:nth-of-type(7n+1), .lt-ie10 .medium-up-7 > .columns:nth-of-type(7n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-7 > .column:last-child, .lt-ie10 .medium-up-7 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-up-8 > .column, .lt-ie10 .medium-up-8 > .columns {
        float: left;
        width: 12.5%
    }

    .lt-ie10 .medium-up-8 > .column:nth-of-type(1n), .lt-ie10 .medium-up-8 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .medium-up-8 > .column:nth-of-type(8n+1), .lt-ie10 .medium-up-8 > .columns:nth-of-type(8n+1) {
        clear: both
    }

    .lt-ie10 .medium-up-8 > .column:last-child, .lt-ie10 .medium-up-8 > .columns:last-child {
        float: left
    }

    .lt-ie10 .medium-collapse > .column, .lt-ie10 .medium-collapse > .columns {
        padding-right: 0;
        padding-left: 0
    }

    .lt-ie10 .medium-collapse .row {
        margin-right: 0;
        margin-left: 0
    }

    .lt-ie10 .expanded.row .medium-collapse.row {
        margin-right: 0;
        margin-left: 0
    }

    .lt-ie10 .medium-uncollapse > .column, .lt-ie10 .medium-uncollapse > .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }

    .lt-ie10 .medium-centered {
        margin-right: auto;
        margin-left: auto
    }

    .lt-ie10 .medium-centered, .lt-ie10 .medium-centered:last-child:not(:first-child) {
        float: none;
        clear: both
    }

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

@media print, screen and (min-width: 62em) {
    .lt-ie10 .large-1 {
        width: 8.33333%
    }

    .lt-ie10 .large-push-1 {
        position: relative;
        left: 8.33333%
    }

    .lt-ie10 .large-pull-1 {
        position: relative;
        left: -8.33333%
    }

    .lt-ie10 .large-offset-0 {
        margin-left: 0%
    }

    .lt-ie10 .large-2 {
        width: 16.66667%
    }

    .lt-ie10 .large-push-2 {
        position: relative;
        left: 16.66667%
    }

    .lt-ie10 .large-pull-2 {
        position: relative;
        left: -16.66667%
    }

    .lt-ie10 .large-offset-1 {
        margin-left: 8.33333%
    }

    .lt-ie10 .large-3 {
        width: 25%
    }

    .lt-ie10 .large-push-3 {
        position: relative;
        left: 25%
    }

    .lt-ie10 .large-pull-3 {
        position: relative;
        left: -25%
    }

    .lt-ie10 .large-offset-2 {
        margin-left: 16.66667%
    }

    .lt-ie10 .large-4 {
        width: 33.33333%
    }

    .lt-ie10 .large-push-4 {
        position: relative;
        left: 33.33333%
    }

    .lt-ie10 .large-pull-4 {
        position: relative;
        left: -33.33333%
    }

    .lt-ie10 .large-offset-3 {
        margin-left: 25%
    }

    .lt-ie10 .large-5 {
        width: 41.66667%
    }

    .lt-ie10 .large-push-5 {
        position: relative;
        left: 41.66667%
    }

    .lt-ie10 .large-pull-5 {
        position: relative;
        left: -41.66667%
    }

    .lt-ie10 .large-offset-4 {
        margin-left: 33.33333%
    }

    .lt-ie10 .large-6 {
        width: 50%
    }

    .lt-ie10 .large-push-6 {
        position: relative;
        left: 50%
    }

    .lt-ie10 .large-pull-6 {
        position: relative;
        left: -50%
    }

    .lt-ie10 .large-offset-5 {
        margin-left: 41.66667%
    }

    .lt-ie10 .large-7 {
        width: 58.33333%
    }

    .lt-ie10 .large-push-7 {
        position: relative;
        left: 58.33333%
    }

    .lt-ie10 .large-pull-7 {
        position: relative;
        left: -58.33333%
    }

    .lt-ie10 .large-offset-6 {
        margin-left: 50%
    }

    .lt-ie10 .large-8 {
        width: 66.66667%
    }

    .lt-ie10 .large-push-8 {
        position: relative;
        left: 66.66667%
    }

    .lt-ie10 .large-pull-8 {
        position: relative;
        left: -66.66667%
    }

    .lt-ie10 .large-offset-7 {
        margin-left: 58.33333%
    }

    .lt-ie10 .large-9 {
        width: 75%
    }

    .lt-ie10 .large-push-9 {
        position: relative;
        left: 75%
    }

    .lt-ie10 .large-pull-9 {
        position: relative;
        left: -75%
    }

    .lt-ie10 .large-offset-8 {
        margin-left: 66.66667%
    }

    .lt-ie10 .large-10 {
        width: 83.33333%
    }

    .lt-ie10 .large-push-10 {
        position: relative;
        left: 83.33333%
    }

    .lt-ie10 .large-pull-10 {
        position: relative;
        left: -83.33333%
    }

    .lt-ie10 .large-offset-9 {
        margin-left: 75%
    }

    .lt-ie10 .large-11 {
        width: 91.66667%
    }

    .lt-ie10 .large-push-11 {
        position: relative;
        left: 91.66667%
    }

    .lt-ie10 .large-pull-11 {
        position: relative;
        left: -91.66667%
    }

    .lt-ie10 .large-offset-10 {
        margin-left: 83.33333%
    }

    .lt-ie10 .large-12 {
        width: 100%
    }

    .lt-ie10 .large-offset-11 {
        margin-left: 91.66667%
    }

    .lt-ie10 .large-up-1 > .column, .lt-ie10 .large-up-1 > .columns {
        float: left;
        width: 100%
    }

    .lt-ie10 .large-up-1 > .column:nth-of-type(1n), .lt-ie10 .large-up-1 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-1 > .column:nth-of-type(1n+1), .lt-ie10 .large-up-1 > .columns:nth-of-type(1n+1) {
        clear: both
    }

    .lt-ie10 .large-up-1 > .column:last-child, .lt-ie10 .large-up-1 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-2 > .column, .lt-ie10 .large-up-2 > .columns {
        float: left;
        width: 50%
    }

    .lt-ie10 .large-up-2 > .column:nth-of-type(1n), .lt-ie10 .large-up-2 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-2 > .column:nth-of-type(2n+1), .lt-ie10 .large-up-2 > .columns:nth-of-type(2n+1) {
        clear: both
    }

    .lt-ie10 .large-up-2 > .column:last-child, .lt-ie10 .large-up-2 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-3 > .column, .lt-ie10 .large-up-3 > .columns {
        float: left;
        width: 33.33333%
    }

    .lt-ie10 .large-up-3 > .column:nth-of-type(1n), .lt-ie10 .large-up-3 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-3 > .column:nth-of-type(3n+1), .lt-ie10 .large-up-3 > .columns:nth-of-type(3n+1) {
        clear: both
    }

    .lt-ie10 .large-up-3 > .column:last-child, .lt-ie10 .large-up-3 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-4 > .column, .lt-ie10 .large-up-4 > .columns {
        float: left;
        width: 25%
    }

    .lt-ie10 .large-up-4 > .column:nth-of-type(1n), .lt-ie10 .large-up-4 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-4 > .column:nth-of-type(4n+1), .lt-ie10 .large-up-4 > .columns:nth-of-type(4n+1) {
        clear: both
    }

    .lt-ie10 .large-up-4 > .column:last-child, .lt-ie10 .large-up-4 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-5 > .column, .lt-ie10 .large-up-5 > .columns {
        float: left;
        width: 20%
    }

    .lt-ie10 .large-up-5 > .column:nth-of-type(1n), .lt-ie10 .large-up-5 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-5 > .column:nth-of-type(5n+1), .lt-ie10 .large-up-5 > .columns:nth-of-type(5n+1) {
        clear: both
    }

    .lt-ie10 .large-up-5 > .column:last-child, .lt-ie10 .large-up-5 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-6 > .column, .lt-ie10 .large-up-6 > .columns {
        float: left;
        width: 16.66667%
    }

    .lt-ie10 .large-up-6 > .column:nth-of-type(1n), .lt-ie10 .large-up-6 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-6 > .column:nth-of-type(6n+1), .lt-ie10 .large-up-6 > .columns:nth-of-type(6n+1) {
        clear: both
    }

    .lt-ie10 .large-up-6 > .column:last-child, .lt-ie10 .large-up-6 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-7 > .column, .lt-ie10 .large-up-7 > .columns {
        float: left;
        width: 14.28571%
    }

    .lt-ie10 .large-up-7 > .column:nth-of-type(1n), .lt-ie10 .large-up-7 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-7 > .column:nth-of-type(7n+1), .lt-ie10 .large-up-7 > .columns:nth-of-type(7n+1) {
        clear: both
    }

    .lt-ie10 .large-up-7 > .column:last-child, .lt-ie10 .large-up-7 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-up-8 > .column, .lt-ie10 .large-up-8 > .columns {
        float: left;
        width: 12.5%
    }

    .lt-ie10 .large-up-8 > .column:nth-of-type(1n), .lt-ie10 .large-up-8 > .columns:nth-of-type(1n) {
        clear: none
    }

    .lt-ie10 .large-up-8 > .column:nth-of-type(8n+1), .lt-ie10 .large-up-8 > .columns:nth-of-type(8n+1) {
        clear: both
    }

    .lt-ie10 .large-up-8 > .column:last-child, .lt-ie10 .large-up-8 > .columns:last-child {
        float: left
    }

    .lt-ie10 .large-collapse > .column, .lt-ie10 .large-collapse > .columns {
        padding-right: 0;
        padding-left: 0
    }

    .lt-ie10 .large-collapse .row {
        margin-right: 0;
        margin-left: 0
    }

    .lt-ie10 .expanded.row .large-collapse.row {
        margin-right: 0;
        margin-left: 0
    }

    .lt-ie10 .large-uncollapse > .column, .lt-ie10 .large-uncollapse > .columns {
        padding-right: .9375rem;
        padding-left: .9375rem
    }

    .lt-ie10 .large-centered {
        margin-right: auto;
        margin-left: auto
    }

    .lt-ie10 .large-centered, .lt-ie10 .large-centered:last-child:not(:first-child) {
        float: none;
        clear: both
    }

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

.lt-ie10 .column-block {
    margin-bottom: 2.5rem
}

.lt-ie10 .column-block > :last-child {
    margin-bottom: 0
}

@media print, screen and (min-width: 40em) {
    .lt-ie10 .column-block {
        margin-bottom: 1.875rem
    }

    .lt-ie10 .column-block > :last-child {
        margin-bottom: 0
    }
}

.lt-ie10 .tbl-display {
    display: table
}

.lt-ie10 .tbl-display .tbl-cell {
    display: table-cell
}

[data-color="primary"] {
    color: #b1d6e2 !important
}

[data-bg-color="primary"] {
    background: #b1d6e2 !important
}

[data-border-color="primary"] {
    border: 1px solid #b1d6e2
}

[data-color="blue"] {
    color: #b1d6e2 !important
}

[data-bg-color="blue"] {
    background: #b1d6e2 !important
}

[data-border-color="blue"] {
    border: 1px solid #b1d6e2
}

[data-color="dblue"] {
    color: #96c0ce !important
}

[data-bg-color="dblue"] {
    background: #96c0ce !important
}

[data-border-color="dblue"] {
    border: 1px solid #96c0ce
}

[data-color="secondary"] {
    color: #f2f2f2 !important
}

[data-bg-color="secondary"] {
    background: #f2f2f2 !important
}

[data-border-color="secondary"] {
    border: 1px solid #f2f2f2
}

[data-color="success"] {
    color: #3adb76 !important
}

[data-bg-color="success"] {
    background: #3adb76 !important
}

[data-border-color="success"] {
    border: 1px solid #3adb76
}

[data-color="warning"] {
    color: #ffae00 !important
}

[data-bg-color="warning"] {
    background: #ffae00 !important
}

[data-border-color="warning"] {
    border: 1px solid #ffae00
}

[data-color="alert"] {
    color: red !important
}

[data-bg-color="alert"] {
    background: red !important
}

[data-border-color="alert"] {
    border: 1px solid red
}

[data-color="salmon"] {
    color: #f6ae98 !important
}

[data-bg-color="salmon"] {
    background: #f6ae98 !important
}

[data-border-color="salmon"] {
    border: 1px solid #f6ae98
}

[data-color="green"] {
    color: #84bfb0 !important
}

[data-bg-color="green"] {
    background: #84bfb0 !important
}

[data-border-color="green"] {
    border: 1px solid #84bfb0
}

[data-color="purple"] {
    color: #d4c6c6 !important
}

[data-bg-color="purple"] {
    background: #d4c6c6 !important
}

[data-border-color="purple"] {
    border: 1px solid #d4c6c6
}

[data-color="almond"] {
    color: #fcd5b7 !important
}

[data-bg-color="almond"] {
    background: #fcd5b7 !important
}

[data-border-color="almond"] {
    border: 1px solid #fcd5b7
}

[data-color="vanilla"] {
    color: #fefefe !important
}

[data-bg-color="vanilla"] {
    background: #fefefe !important
}

[data-border-color="vanilla"] {
    border: 1px solid #fefefe
}

[data-color="grey"] {
    color: #8c8c8c !important
}

[data-bg-color="grey"] {
    background: #8c8c8c !important
}

[data-border-color="grey"] {
    border: 1px solid #8c8c8c
}

[data-color="dgrey"] {
    color: #494949 !important
}

[data-bg-color="dgrey"] {
    background: #494949 !important
}

[data-border-color="dgrey"] {
    border: 1px solid #494949
}

[data-color="lgrey"] {
    color: #f2f2f2 !important
}

[data-bg-color="lgrey"] {
    background: #f2f2f2 !important
}

[data-border-color="lgrey"] {
    border: 1px solid #f2f2f2
}

[data-color="xlgrey"] {
    color: #f8f8f8 !important
}

[data-bg-color="xlgrey"] {
    background: #f8f8f8 !important
}

[data-border-color="xlgrey"] {
    border: 1px solid #f8f8f8
}

@media screen and (max-width: 61.9375em) {
    .section-height, .mt-tempur .mattress-component {
        min-height: 478px
    }
}

@media screen and (min-width: 40em) {
    .section-height, .mt-tempur .mattress-component {
        min-height: 478px
    }
}

.button-transparent {
    outline: none;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-right: 25px;
    background: none;
    border: none;
    text-decoration: none
}

.button-transparent:hover {
    background: none;
    border: none
}

@media screen and (max-width: 61.9375em) {
    .button-transparent {
        color: #494949;
        background: #fefefe
    }

    .button-transparent:hover {
        color: #494949;
        background: #fefefe
    }
}

.button-transparent:after {
    content: '';
    display: block;
    background: url("../assets/img/arrow-chunky-white.png") right 50% no-repeat;
    background-size: 14px 22px;
    position: absolute;
    width: 14px;
    height: 22px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

@media screen and (max-width: 61.9375em) {
    .button-transparent:after {
        background: url("../assets/img/arrow-chunky-grey.png") right 50% no-repeat;
        color: #494949
    }
}

.button-full {
    width: 100%;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    outline: none;
    text-decoration: none
}

.button-full:hover, .button-full:active {
    text-decoration: none
}

.button-white {
    color: #494949;
    background: #fefefe;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-right: 45px;
    outline: none;
    text-decoration: none
}

.button-white:hover {
    color: #494949;
    background: #fefefe
}

.button-white:after {
    content: '';
    display: block;
    background-image: url("../assets/img/arrow-chunky-grey.png");
    background-position: right 50%;
    background-repeat: no-repeat;
    background-size: 14px 22px;
    position: absolute;
    width: 14px;
    height: 22px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.button-down {
    text-transform: uppercase;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    display: block;
    margin-top: 40px
}

.button-down:after {
    content: '';
    display: block;
    background-image: url("../assets/img/arrow-chunky-grey-down.png");
    background-position: 50% bottom;
    background-repeat: no-repeat;
    background-size: 22px 14px;
    position: absolute;
    width: 22px;
    height: 14px;
    right: 20px;
    left: 50%;
    margin-left: -11px;
    bottom: -30px;
    cursor: pointer
}

.button-blue {
    color: #494949;
    background: #b1d6e2;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: relative;
    padding: 0 30px;
    outline: none;
    line-height: 40px;
    display: inline-block
}

.button-blue img {
    padding-left: 10px
}

@media screen and (max-width: 61.9375em) {
    .button-blue {
        padding: 0 10px;
        font-size: 14px
    }
}

.button-blue:hover {
    color: #494949;
    background: #b1d6e2;
    text-decoration: none
}

.link-txt {
    color: #494949;
    text-decoration: none
}

.link-txt:hover {
    color: #b1d6e2
}

@media screen and (min-width: 40em) {
    .button {
        font-size: 14px
    }
}

@media screen and (max-width: 61.9375em) {
    .button {
        font-size: 14px
    }
}

@media screen and (max-width: 39.9375em) {
    .button {
        font-size: 12px
    }
}

[bg-pic="earth"] {
    background-image: url("../assets/img/earth.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%
}

.icon-map {
    background: url("../assets/img/map.svg") 50% 50% no-repeat;
    display: inline-block;
    width: 47px;
    height: 83px;
    vertical-align: middle
}

@media screen and (max-width: 39.9375em) {
    .icon-map {
        width: 27px;
        height: 43px
    }
}

.icon-mattress {
    background: url("../assets/img/icons-mattress.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 140px;
    width: 100px;
    vertical-align: middle
}

.icon-noflip {
    background-position: -22px 0
}

.icon-danish {
    background-position: -127px 0
}

.icon-pocket {
    background-position: -238px 0
}

.icon-washable {
    background-position: -349px 0
}

.icon-authentic {
    background-position: -449px 0
}

.icon-7year {
    background-position: -549px 0
}

.icon-memory {
    background-position: -649px 0
}

.icon-plane {
    background: url("../assets/img/icon-plane.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 23px;
    width: 32px;
    vertical-align: middle
}

.icon-shield {
    background: url("../assets/img/icon-shield.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 25px;
    width: 26px;
    vertical-align: middle
}

.icon-phone {
    background: url("../assets/img/icon-phone.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 25px;
    width: 25px;
    vertical-align: middle
}

.icon-firm {
    background: url("../assets/img/icon-firm.jpg");
    height: 49px;
    width: 39px;
    display: inline-block;
    vertical-align: middle
}

.icon-zoom {
    background: url("../assets/img/icon-zoom.png");
    height: 26px;
    width: 26px;
    display: inline-block;
    vertical-align: middle
}

.close-button {
    padding: 20px;
    background: rgba(255, 255, 255, 0.5)
}

.mt-tempur header.mt-header .row-relative {
    position: relative
}

.mt-tempur header.mt-header .mobile-menu .menu-icon {
    float: right
}

.mt-tempur header.mt-header .visit-tempur {
    color: #494949;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
    text-decoration: none
}

.mt-tempur header.mt-header .top-padding {
    transition: all .3s
}

@media screen and (min-width: 74em) {
    .mt-tempur header.mt-header .top-padding {
        padding-left: 76px
    }

    .mt-tempur header.mt-header .top-padding-nav {
        padding-left: 36px
    }
}

.mt-tempur header.mt-header .logo {
    width: 100%;
    max-width: 290px;
    margin: 40px 0
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur header.mt-header .logo {
        margin: 10px 0 10px 10px
    }
}

@media screen and (min-width: 40em) and (max-width: 61.9375em) {
    .mt-tempur header.mt-header .logo {
        z-index: 100;
        position: relative
    }
}

.mt-tempur header.mt-header .top-bar, .mt-tempur header.mt-header .top-bar ul {
    background: none
}

.mt-tempur header.mt-header #main-menu {
    padding: 0;
    transition: .3s all
}

.mt-tempur header.mt-header #main-menu .r {
    font-size: 10px;
    vertical-align: top
}

.mt-tempur header.mt-header #main-menu li a {
    text-transform: uppercase;
    text-decoration: none;
    transition: all .5s;
    color: #494949;
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur header.mt-header #main-menu li a {
        color: #fefefe
    }
}

.mt-tempur header.mt-header #main-menu li a:hover, .mt-tempur header.mt-header #main-menu li a.hover {
    color: #f6ae98
}

.mt-tempur header.mt-header #main-menu li:not(.active) a:hover, .mt-tempur header.mt-header #main-menu li:not(.active) a.hover {
    background: #fefefe
}

.mt-tempur header.mt-header #main-menu .active a {
    text-transform: uppercase;
    text-decoration: none;
    color: #fefefe
}

.mt-tempur header.mt-header #main-menu .active a:hover {
    color: #fefefe
}

.mt-tempur header.mt-header #main-menu .top-bar-icons a {
    padding: 0
}

.mt-tempur header.mt-header #main-menu .top-bar-icons a:hover {
    background: none
}

.mt-tempur header.mt-header #main-menu .top-bar-icons .menu-icon {
    width: 30px;
    height: 30px
}

.mt-tempur header.mt-header #main-menu .top-bar-icons .menu-icon-burger, .mt-tempur header.mt-header #main-menu .top-bar-icons .menu-icon-checkout, .mt-tempur header.mt-header #main-menu .top-bar-icons .menu-icon-map {
    background-size: 30px 30px
}

.mt-tempur header.mt-header #main-menu .top-bar-icons .menu-item-store {
    margin-right: 20px
}

.mt-tempur header.mt-header #main-menu {
    background: #f2f2f2
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur header.mt-header #main-menu .small-12 {
        padding: 0
    }

    .mt-tempur header.mt-header #main-menu .top-bar-icons {
        display: none
    }

    .mt-tempur header.mt-header #main-menu .menu {
        background: #494949;
        padding: 20px
    }

    .mt-tempur header.mt-header #main-menu .menu li {
        display: block
    }

    .mt-tempur header.mt-header #main-menu .menu li.active a {
        background: url("../assets/img/arrow-r.png") right 50% no-repeat !important;
        background-size: 10px 18px !important
    }

    .mt-tempur header.mt-header #main-menu .menu li a {
        display: block;
        color: #fefefe;
        background: url("../assets/img/arrow-r.png") right 50% no-repeat !important;
        background-size: 10px 18px !important
    }
}

.mt-tempur header.mt-header .menu-icon-burger {
    width: 50px;
    height: 50px;
    background: url("../assets/img/icon-burger.png") 50% 50% no-repeat;
    background-size: 40px 40px
}

.mt-tempur header.mt-header .menu-icon-map {
    width: 50px;
    height: 50px;
    background: url("../assets/img/icon-map.png") 50% 50% no-repeat;
    background-size: 40px 40px
}

.mt-tempur header.mt-header .menu-icon-checkout {
    width: 50px;
    height: 50px;
    background: url("../assets/img/icon-checkout.png") 50% 50% no-repeat;
    background-size: 40px 40px
}

.mt-tempur header.mt-header .menu-icon-checkout:after, .mt-tempur header.mt-header .menu-icon-map:after, .mt-tempur header.mt-header .menu-icon-burger:after {
    display: none
}

.mt-tempur header.mt-header .title-bar .menu-icon {
    float: right
}

.mt-tempur header.mt-header .submenu a {
    padding-left: 15px
}

.mt-tempur header.mt-header .line {
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: scaleY(0.5);
    width: 100%;
    margin: 20px 0
}

.mt-tempur header.mt-header #mattress-menu {
    left: 0;
    top: 0;
    width: 100%
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur header.mt-header #mattress-menu {
        display: none
    }
}

.mt-tempur header.mt-header #mattress-menu a {
    text-decoration: none
}

.mt-tempur header.mt-header .dropdown-container {
    position: relative
}

.mt-tempur header.mt-header .dropdown-container .link, .mt-tempur header.mt-header .dropdown-container .split-component .link-vs, .mt-tempur .split-component header.mt-header .dropdown-container .link-vs {
    padding: 10px;
    text-align: center;
    margin-bottom: 0px
}

.mt-tempur header.mt-header .mattress-menu .dropdown-pane {
    padding: 40px;
    border: none;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important
}

.mt-tempur header.mt-header .mattress-menu .dropdown-pane .thumbnail {
    width: 100%
}

.mt-tempur header.mt-header .no-hover.hover, .mt-tempur header.mt-header .no-hover:hover, .mt-tempur header.mt-header .no-hover:active, .mt-tempur header.mt-header .no-hover:focus, .mt-tempur header.mt-header .no-hover {
    background: none !important
}

.mt-tempur header.mt-header #mini-cart {
    width: 100%;
    max-width: 380px !important;
    box-shadow: 0px 3px 1px 1px rgba(102, 102, 102, 0.39)
}

.mt-tempur header.mt-header #mini-cart {
    width: 100% !important;
    max-width: 100% !important
}

.mt-tempur header.mt-header #mini-cart .items {
    margin-bottom: 20px
}

.mt-tempur header.mt-header #mini-cart .summaryproduct {
    clear: both;
    width: 100%
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .image {
    float: left;
    border-right: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: 20px
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .name {
    font-family: daxWideLight, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 17px
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .value {
    font-size: 14px
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .price {
    font-size: 14px;
    color: #96c0ce;
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .qty {
    background: #96c0ce;
    padding: 3px 4px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-left: 10px
}

.mt-tempur header.mt-header #mini-cart .summaryproduct .attributes .label {
    display: none
}

.mt-tempur header.mt-header .mini-cart-container {
    z-index: 15;
    max-width: 380px;
    width: 100%;
    right: 0;
    position: absolute
}

.mt-tempur header.mt-header .mini-cart-container .dropdown-pane {
    padding: 12px;
    border: none;
    left: 0 !important;
    right: 0 !important;
    padding-bottom: 55px
}

@media screen and (min-width: 62em) {
    .mt-tempur header.mt-header .mini-cart-container .dropdown-pane {
        top: 0 !important
    }
}

.mt-tempur header.mt-header .mini-cart-container .title {
    font-size: 24px
}

.mt-tempur header.mt-header .mini-cart-container .line {
    border-bottom: 1px solid #f2f2f2;
    transform: scaleY(0.5)
}

.mt-tempur header.mt-header .mini-cart-container .subtotal {
    background: #f2f2f2;
    padding: 5px 10px
}

.mt-tempur header.mt-header .mini-cart-container .subtotal:after {
    content: '';
    display: block;
    clear: both
}

.mt-tempur header.mt-header .mini-cart-container .subtotal-txt {
    float: left
}

.mt-tempur header.mt-header .mini-cart-container .subtotal-value {
    float: right;
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.mt-tempur header.mt-header .mini-cart-container .button-checkout {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 0
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur header.mt-header .mini-cart-container {
        width: 100% !important;
        max-width: 100% !important
    }
}

.mt-tempur footer.mt-footer {
    background: #494949;
    padding: 45px 0
}

.mt-tempur footer.mt-footer a {
    color: #fefefe;
    font-size: 14px;
    line-height: 16px;
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    padding: 0.3rem 0;
    text-decoration: none
}

.mt-tempur footer.mt-footer a:hover {
    color: #b1d6e2
}

.mt-tempur footer.mt-footer .title {
    text-transform: uppercase;
    font-weight: 700;
    color: #fefefe;
    font-size: 15px;
    margin-bottom: 5px
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur footer.mt-footer .title {
        margin-top: 30px
    }
}

.mt-tempur footer.mt-footer .tempur-logo {
    max-width: 126px;
    text-align: center;
    float: right
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur footer.mt-footer .tempur-logo {
        float: left;
        margin-top: 50px
    }
}

.mt-tempur footer.mt-footer .tempur-logo img {
    max-width: 76px;
    margin-bottom: 10px
}

.mt-tempur footer.mt-footer .tempur-logo p {
    color: #fefefe;
    font-size: 12px
}

@media screen and (min-width: 40em) {
    .mt-tempur footer.mt-footer .column-fixed {
        min-width: 280px
    }
}

.mt-tempur .follows-orbit {
    padding-top: 150px !important
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .follows-orbit-margin {
        margin-top: -150px
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .follows-orbit-margin {
        padding-top: 200px
    }
}

.mt-tempur .mt-orbit .orbit-bullets {
    position: absolute;
    top: 0;
    right: 28px
}

.mt-tempur .mt-orbit .orbit-bullets button {
    border: 2px solid #fefefe
}

.mt-tempur .mt-orbit .orbit-next img, .mt-tempur .mt-orbit .orbit-previous img {
    max-width: 15px
}

@media screen and (min-width: 62em) {
    .mt-tempur .mt-orbit .orbit-container {
        max-height: 478px
    }
}

.mt-tempur .mt-orbit .orbit-overflow-visible {
    overflow: visible
}

.mt-tempur .mt-orbit .hand-bg {
    background-repeat: no-repeat;
    background-size: cover
}

@media screen and (min-width: 40em) {
    .mt-tempur .mt-orbit .hand-bg {
        background-image: url("../assets/img/slide-4.png")
    }
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .mt-orbit .hand-bg {
        background-image: url("../assets/img/slide-4-small.png");
        padding-bottom: 150px
    }
}

.mt-tempur .mt-orbit .hand-bg .slide-content {
    color: #494949 !important
}

@media screen and (min-width: 62em) {
    .mt-tempur .mt-orbit .orbit-slide {
        min-height: 478px
    }

    .mt-tempur .mt-orbit .orbit-slide .img-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        max-width: 80rem
    }

    .mt-tempur .mt-orbit .orbit-slide .full-width {
        max-width: 100%
    }
}

.mt-tempur .mt-orbit .orbit-slide .overlap-img {
    transition: .5s all;
    display: block;
    max-width: inherit;
    margin-bottom: -150px
}

@media screen and (min-width: 40em) and (max-width: 74.9375em) {
    .mt-tempur .mt-orbit .orbit-slide .overlap-img {
        right: -200px !important
    }
}

@media screen and (min-width: 62em) {
    .mt-tempur .mt-orbit .orbit-slide .overlap-img {
        position: absolute;
        top: 0;
        right: 0px
    }
}

.mt-tempur .mt-orbit .orbit-slide .overlap-img-small {
    width: 100%
}

.mt-tempur .mt-orbit .orbit-slide .slide-content {
    background: none;
    max-width: 600px;
    padding: 50px;
    color: #fefefe;
    z-index: 2;
    position: relative
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .mt-orbit .orbit-slide .slide-content {
        padding: 50px
    }

    .mt-tempur .mt-orbit .orbit-slide .slide-content .info {
        font-size: 14px;
        line-height: 20px
    }
}

.mt-tempur .mt-orbit .orbit-slide .slide-content span {
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.mt-tempur .mt-orbit .orbit-slide .slide-content-full-width {
    max-width: 740px;
    margin: 0 auto
}

.mt-tempur .mt-orbit-single .orbit-previous, .mt-tempur .mt-orbit-single .orbit-next {
    display: none
}

.mt-tempur .mattress-component {
    background: url("../assets/img/mattress-texture.png") no-repeat;
    background-size: cover
}

.mt-tempur .mattress-component .inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px
}

.mt-tempur .mattress-component a, .mt-tempur .mattress-component a:hover {
    text-decoration: none
}

.mt-tempur .mattress-component-margin-bottom {
    margin-bottom: 20px
}

.mt-tempur .split-component {
    min-height: 900px;
    position: relative
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .split-component .scrollable {
        width: 100%;
        overflow-x: scroll;
        position: relative
    }

    .mt-tempur .split-component .scrollable .section {
        width: calc(100% * 2)
    }

    .mt-tempur .split-component .scrollable .middle-img {
        width: calc(100% * 2)
    }
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .split-component .scrollable .headline {
        margin-top: 50px;
        font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
    }

    .mt-tempur .split-component .scrollable .info {
        color: #fefefe;
        padding: 20px;
        text-align: center;
        font-size: 14px
    }
}

.mt-tempur .split-component .img-container {
    display: flex;
    position: absolute;
    align-content: center;
    align-items: baseline;
    text-align: center;
    width: 100%;
    bottom: 0;
    pointer-events: none;
    z-index: 1
}

.mt-tempur .split-component .inner {
    max-width: 40rem;
    margin: 0 auto;
    position: relative;
    padding-bottom: 80px
}

.mt-tempur .split-component .middle-img {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto
}

.mt-tempur .split-component .headline {
    color: #fefefe;
    text-align: center;
    margin-top: 100px
}

.mt-tempur .split-component .line-short {
    border: 1px solid #fefefe;
    transform: scaleY(0.5);
    max-width: 320px;
    margin: 20px auto 0 auto
}

.mt-tempur .split-component .line-long {
    border: 1px solid #fefefe;
    transform: scaleY(0.5);
    max-width: 430px;
    margin: 20px auto 0 auto
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .split-component .line-long {
        display: none
    }
}

.mt-tempur .split-component .link, .mt-tempur .split-component .link-vs {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 260px;
    transform: translateX(-50%)
}

.mt-tempur .split-component .link-vs {
    max-width: 70%
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .split-component .link-vs {
        max-width: 90%
    }
}

.mt-tempur .split-component .columns {
    min-height: 900px
}

@media only screen and (min-width: 1280px) {
    .mt-tempur .split-component .columns {
        min-height: 703px
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .split-component .columns {
        min-height: 770px
    }
}

@media only screen and (min-width: 1280px) {
    .mt-tempur .split-component-vs {
        min-height: 997px
    }
}

.mt-tempur .split-component-vs .inner {
    position: relative;
    padding-bottom: 80px
}

.mt-tempur .split-component-vs .link-vs {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 250px;
    transform: translateX(-50%)
}

.mt-tempur .split-component-vs .vs {
    width: 85px;
    height: 85px;
    display: block;
    position: absolute;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    line-height: 90px;
    font-size: 40px;
    left: 50%;
    margin-left: -42px;
    top: 150px
}

.mt-tempur .split-component-vs .columns {
    min-height: 1000px
}

@media only screen and (min-width: 1280px) {
    .mt-tempur .split-component-vs .columns {
        min-height: 900px !important
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .split-component-vs .columns {
        min-height: 900px !important
    }
}

.mt-tempur .split-component-vs .info, .mt-tempur .split-component-vs .scrollable .info {
    color: #fefefe;
    padding: 0px 50px
}

.mt-tempur .split-component-vs .mini-links {
    padding-top: 20px;
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

.mt-tempur .split-component-vs .mini-links a {
    text-decoration: none
}

.mt-tempur .split-over {
    width: 50%
}

.mt-tempur .split-over .inner {
    z-index: 3
}

@media screen and (min-width: 40em) {
    .mt-tempur .split-over .info {
        margin-top: 90px
    }
}

@media screen and (min-width: 40em) {
    .mt-tempur .info-home {
        height: 0;
        overflow: hidden;
        transition: all 2s;
        color: #fff;
        max-width: 370px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        opacity: 0
    }

    .mt-tempur .info-in {
        color: #fff;
        height: auto;
        opacity: 1
    }

    .mt-tempur .split-over.split-left {
        transition: all 2s
    }

    .mt-tempur .split-over.split-right {
        transition: all .5s
    }

    .mt-tempur .split-border-active-left {
        position: absolute;
        width: calc(50% + 10px);
        border: 20px solid #fff;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
        display: none;
        background: rgba(177, 214, 226, 0.8) !important
    }

    .mt-tempur .bg-border {
        z-index: 2
    }

    .mt-tempur .split-border-active-right {
        position: absolute;
        width: calc(50% + 10px);
        border: 20px solid #fff;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
        display: none;
        background: rgba(132, 191, 176, 0.8) !important
    }
}

.mt-tempur .categories .row {
    overflow: hidden
}

.mt-tempur .categories .scrollable {
    width: 100%;
    overflow-x: scroll
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .categories .scrollable .row {
        width: calc(50% * 4)
    }

    .mt-tempur .categories .scrollable .category {
        padding: 0 !important;
        max-width: 50%;
        flex: 1
    }

    .mt-tempur .categories .scrollable .category:nth-child(1) {
        padding: 0 10px 0 0 !important
    }

    .mt-tempur .categories .scrollable .category:nth-child(3n) {
        padding: 0 0 0 10px !important
    }
}

@media screen and (min-width: 40em) {
    .mt-tempur .categories .category .image img {
        transition: all 1.5s
    }

    .mt-tempur .categories .category .text {
        transition: all 1.5s;
        opacity: 0
    }

    .mt-tempur .categories .category-over .text {
        position: absolute;
        top: 20%;
        padding: 20px;
        color: #fff;
        text-align: center;
        max-width: 700px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1
    }

    .mt-tempur .categories .category-over .image img {
        opacity: 0
    }

    .mt-tempur .categories .category-over .text.show-for-small-only, .mt-tempur .categories .category-over .text.hide-for-large {
        display: block !important
    }

    .mt-tempur .categories .category-over .button:before {
        content: '';
        width: 80%;
        max-width: 350px;
        display: block;
        border: 1px solid #fff;
        margin: 0 auto;
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: scaleY(0.5) translateX(-50%)
    }
}

.mt-tempur .categories .category {
    position: relative
}

.mt-tempur .categories .category .headline {
    font-size: 30px;
    font-family: daxWideLight, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .categories .category .headline {
        color: #b1d6e2 !important
    }
}

@media screen and (min-width: 62em) {
    .mt-tempur .categories .category .headline {
        margin-top: 20px;
        position: absolute;
        top: 0;
        text-align: center;
        width: 100%;
        font-size: 60px
    }
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .categories .category .inner {
        padding: 20px
    }
}

.mt-tempur .categories .category .button-full:hover {
    text-decoration: none
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .categories .category .button-full {
        background: none !important;
        text-transform: none;
        color: #8c8c8c !important;
        text-align: left;
        padding: 0
    }
}

.mt-tempur .categories .category:nth-child(odd) {
    padding-right: 10px
}

.mt-tempur .categories .category:nth-child(even) {
    padding-left: 10px
}

.mt-tempur .categories .category .image img {
    width: 100%
}

@media screen and (min-width: 40em) {
    .mt-tempur .categories .small-up-3 .headline {
        font-size: 40px
    }
}

@media screen and (min-width: 62em) {
    .mt-tempur .categories .scrollable .row {
        max-width: 100%;
        padding: 20px 0
    }

    .mt-tempur .categories .small-up-3 .category {
        padding: 0;
        flex: 1
    }

    .mt-tempur .categories .small-up-3 .category:nth-child(2) {
        margin: 0 20px
    }

    .mt-tempur .categories .small-up-3 .button {
        margin: 0
    }
}

.mt-tempur .centered-text-component {
    padding: 20px 0
}

.mt-tempur .centered-text-component .hoverable {
    cursor: pointer
}

.mt-tempur .centered-text-component .hovered .img {
    display: none
}

.mt-tempur .centered-text-component .hovered .info {
    display: block !important;
    color: #96c0ce;
    text-align: center
}

.mt-tempur .centered-text-component .hovered .info h3 {
    display: none
}

.mt-tempur .centered-text-component .logos {
    margin: 50px 0
}

.mt-tempur .centered-text-component .inner {
    padding: 100px 0
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .centered-text-component .inner {
        padding: 50px 0
    }
}

.mt-tempur .centered-text-component .logo-grid .img {
    text-align: center
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .centered-text-component .logo-grid .img {
        float: left;
        width: 120px;
        height: 160px;
        padding: 0 50px 0 0
    }
}

.mt-tempur .centered-text-component.image-text .image-bg, .mt-tempur .centered-text-component.generic-text .image-bg {
    background-size: cover
}

@media screen and (min-width: 40em) {
    .mt-tempur .centered-text-component.image-text .image-bg, .mt-tempur .centered-text-component.image-text .text, .mt-tempur .centered-text-component.generic-text .image-bg, .mt-tempur .centered-text-component.generic-text .text {
        min-height: 400px
    }
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .centered-text-component.image-text .image-bg, .mt-tempur .centered-text-component.generic-text .image-bg {
        min-height: 400px
    }
}

.mt-tempur .centered-text-component.image-text .inner, .mt-tempur .centered-text-component.generic-text .inner {
    padding: 50px;
    margin: 0
}

.mt-tempur .parallax-component [bg-pic] {
    background-attachment: fixed
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .parallax-component [bg-pic] {
        background-attachment: inherit
    }
}

.mt-tempur .breadcrumb-component {
    border-bottom: 1px solid #f2f2f2
}

.mt-tempur .breadcrumb-component ul {
    margin: 0;
    list-style: none;
    padding-left: 20px
}

@media screen and (min-width: 74em) {
    .mt-tempur .breadcrumb-component ul {
        padding-left: 76px
    }
}

.mt-tempur .breadcrumb-component ul li {
    float: left;
    line-height: 40px
}

.mt-tempur .breadcrumb-component ul li:after {
    content: '/';
    padding: 0 10px
}

.mt-tempur .breadcrumb-component ul li a {
    text-decoration: none;
    color: #494949
}

.mt-tempur .breadcrumb-component ul li:last-child:after {
    display: none
}

.mt-tempur .banner-component .row {
    min-height: 125px
}

.mt-tempur .banner-component span {
    padding: 0 20px
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .banner-component span {
        display: none
    }
}

.mt-tempur .banner-component p {
    display: inline;
    margin: 0;
    padding: 0
}

@media screen and (min-width: 62em) {
    .mt-tempur .banner-component p {
        font-size: 24px
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .banner-component p {
        clear: both;
        display: inline-block;
        width: 100%;
        margin: 5px 0
    }
}

.mt-tempur .product-component {
    padding: 50px 0
}

@media screen and (min-width: 62em) {
    .mt-tempur .product-component .product-detail {
        padding-left: 50px
    }
}

@media screen and (min-width: 62em) {
    .mt-tempur .product-component .gallery-left {
        border-right: 1px solid #494949;
        padding-right: 0
    }
}

.mt-tempur .product-component .product-title {
    margin-bottom: 0;
    margin-top: 20px
}

.mt-tempur .product-component .was {
    color: red;
    text-decoration: line-through;
    margin-bottom: 0;
    margin-top: 20px
}

.mt-tempur .product-component .firm {
    font-size: 35px;
    color: #b1d6e2
}

.mt-tempur .product-component .price {
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 24px;
    margin-bottom: 10px
}

.mt-tempur .product-component .product-text {
    font-family: daxWideRegular, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    padding-top: 20px
}

.mt-tempur .product-component .product-text .list {
    margin: 0
}

.mt-tempur .product-component .product-text .list li {
    list-style: none
}

.mt-tempur .product-component .line {
    border: 1px solid #494949;
    transform: scaleY(0.5);
    width: 100%
}

.mt-tempur .product-component .productCartMsg {
    transition: all .3s;
    display: block;
    visibility: hidden;
    padding: 0
}

.mt-tempur .product-component .productCartMsgVisible {
    visibility: visible;
    padding: 20px;
    background: #f2f2f2;
    margin: 20px 0
}

.mt-tempur .product-component .size-selector {
    margin: 20px 0
}

.mt-tempur .product-component .size-selector ul {
    display: flex;
    margin: 0;
    padding: 0
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .product-component .size-selector ul {
        font-size: 12px
    }
}

.mt-tempur .product-component .size-selector .heading {
    flex-grow: 0;
    width: auto;
    text-transform: capitalize
}

.mt-tempur .product-component .size-selector .size-name {
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    cursor: pointer
}

.mt-tempur .product-component .size-selector li {
    list-style: none;
    padding: 20px 10px;
    width: calc(100% * (1 / 4) - 10px - 1px)
}

.mt-tempur .product-component .size-selector li.active {
    background: #b1d6e2
}

.mt-tempur .product-component .gallery .orbit-navigation {
    height: 65px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.mt-tempur .product-component .gallery .orbit-navigation button:hover, .mt-tempur .product-component .gallery .orbit-navigation button:active, .mt-tempur .product-component .gallery .orbit-navigation button:focus {
    background: none;
    cursor: pointer
}

.mt-tempur .product-component .gallery .orbit-navigation img {
    width: 14px
}

.mt-tempur .product-component .gallery .orbit-bullets button {
    width: 65px;
    height: 65px;
    border: 1px solid #b1d6e2;
    border-radius: 0;
    margin-right: 20px;
    position: relative
}

.mt-tempur .product-component .gallery .orbit-bullets .is-active:after {
    content: '';
    background: rgba(149, 192, 208, 0.3);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0
}

.mt-tempur .product-rating .title {
    float: right
}

.mt-tempur .product-rating .star {
    background: url(/assets/img/stars.png) left 50%;
    background-size: 100px 20px;
    width: 100px;
    height: 20px;
    float: right;
    margin-left: 10px
}

.mt-tempur .product-rating .star-4 {
    width: 80px
}

.mt-tempur .product-rating .star-3 {
    width: 60px
}

.mt-tempur .product-rating .star-2 {
    width: 40px
}

.mt-tempur .product-rating .star-1 {
    width: 20px
}

.mt-tempur .comm-table th {
    background: #f2f2f2;
    font-family: daxWideBold, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 13px
}

.mt-tempur .comm-table th a, .mt-tempur .comm-table td a, .mt-tempur .comm-table td {
    font-family: daxWideMedium, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    text-decoration: none;
    color: #494949;
    font-size: 12px
}

.mt-tempur .comm-table .feefo_date {
    min-width: 120px
}

.mt-tempur .comm-table .feefo_product {
    display: none
}

.mt-tempur .collection-component {
    margin-top: -120px;
    position: relative;
    padding-bottom: 120px
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .collection-component {
        margin-top: -30px;
        padding-bottom: 30px
    }
}

@media screen and (min-width: 40em) {
    .mt-tempur .collection-component .collection-item .text {
        position: relative;
        padding-bottom: 20px
    }

    .mt-tempur .collection-component .collection-item .link, .mt-tempur .collection-component .collection-item .split-component .link-vs, .mt-tempur .split-component .collection-component .collection-item .link-vs {
        position: absolute;
        bottom: 0
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .collection-component {
        margin-top: 0px;
        padding: 20px 0
    }

    .mt-tempur .collection-component .collection-item {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .collection-component .image {
        width: 50%
    }

    .mt-tempur .collection-component .image img {
        width: 100%
    }
}

@media screen and (min-width: 40em) {
    .mt-tempur .collection-component .text {
        padding-top: 20px
    }
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .collection-component .text {
        width: 50%;
        padding-left: 20px
    }
}

.mt-tempur .collection-component .link, .mt-tempur .collection-component .split-component .link-vs, .mt-tempur .split-component .collection-component .link-vs {
    text-decoration: none
}

.mt-tempur .hoverable-component .link, .mt-tempur .hoverable-component .split-component .link-vs, .mt-tempur .split-component .hoverable-component .link-vs, .mt-tempur .hoverable-component .title {
    transition: all 1.5s
}

.mt-tempur .hoverable-component .link, .mt-tempur .hoverable-component .split-component .link-vs, .mt-tempur .split-component .hoverable-component .link-vs {
    position: absolute;
    bottom: 0
}

.mt-tempur .hoverable-component .column, .mt-tempur .hoverable-component .columns {
    cursor: pointer
}

.mt-tempur .hoverable-component .column img, .mt-tempur .hoverable-component .columns img {
    max-width: 260px;
    width: 100%
}

.mt-tempur .hoverable-component .img-container {
    position: relative
}

.mt-tempur .hoverable-component .img-container .img-over {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 1.5s
}

.mt-tempur .hoverable-component .img-container .img-up {
    display: block
}

.mt-tempur .hoverable-component .hovered .link, .mt-tempur .hoverable-component .hovered .split-component .link-vs, .mt-tempur .split-component .hoverable-component .hovered .link-vs, .mt-tempur .hoverable-component .hovered .title {
    color: #b1d6e2
}

.mt-tempur .hoverable-component .hovered .img-over {
    opacity: 1
}

@media screen and (max-width: 39.9375em) {
    .mt-tempur .hoverable-component .img-container .img-over {
        opacity: 1;
        position: relative
    }
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .hoverable-component .link, .mt-tempur .hoverable-component .split-component .link-vs, .mt-tempur .split-component .hoverable-component .link-vs, .mt-tempur .hoverable-component .title {
        color: #b1d6e2
    }
}

.mt-tempur .hoverable-component .inner-col {
    padding: 20px 20px 40px 20px;
    position: relative
}

@media screen and (max-width: 61.9375em) {
    .mt-tempur .hoverable-component .col-rows {
        padding: 0 20px
    }
}

.mt-tempur .video-close-button {
    z-index: 10
}

.mt-tempur .video-js .vjs-big-play-button:before, .mt-tempur .video-js .vjs-control:before, .mt-tempur .video-js .vjs-modal-dialog, .mt-tempur .vjs-modal-dialog .vjs-modal-dialog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mt-tempur .video-js .vjs-big-play-button:before, .mt-tempur .video-js .vjs-control:before {
    text-align: center
}

.mt-tempur .vjs-icon-play, .mt-tempur .video-js .vjs-big-play-button, .mt-tempur .video-js .vjs-play-control {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-play:before, .mt-tempur .video-js .vjs-big-play-button:before, .mt-tempur .video-js .vjs-play-control:before {
    content: "\f101"
}

.mt-tempur .vjs-icon-play-circle {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-play-circle:before {
    content: "\f102"
}

.mt-tempur .vjs-icon-pause, .mt-tempur .video-js .vjs-play-control.vjs-playing {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-pause:before, .mt-tempur .video-js .vjs-play-control.vjs-playing:before {
    content: "\f103"
}

.mt-tempur .vjs-icon-volume-mute, .mt-tempur .video-js .vjs-mute-control.vjs-vol-0, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-0 {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-volume-mute:before, .mt-tempur .video-js .vjs-mute-control.vjs-vol-0:before, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-0:before {
    content: "\f104"
}

.mt-tempur .vjs-icon-volume-low, .mt-tempur .video-js .vjs-mute-control.vjs-vol-1, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-1 {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-volume-low:before, .mt-tempur .video-js .vjs-mute-control.vjs-vol-1:before, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-1:before {
    content: "\f105"
}

.mt-tempur .vjs-icon-volume-mid, .mt-tempur .video-js .vjs-mute-control.vjs-vol-2, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-2 {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-volume-mid:before, .mt-tempur .video-js .vjs-mute-control.vjs-vol-2:before, .mt-tempur .video-js .vjs-volume-menu-button.vjs-vol-2:before {
    content: "\f106"
}

.mt-tempur .vjs-icon-volume-high, .mt-tempur .video-js .vjs-mute-control, .mt-tempur .video-js .vjs-volume-menu-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-volume-high:before, .mt-tempur .video-js .vjs-mute-control:before, .mt-tempur .video-js .vjs-volume-menu-button:before {
    content: "\f107"
}

.mt-tempur .vjs-icon-fullscreen-enter, .mt-tempur .video-js .vjs-fullscreen-control {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-fullscreen-enter:before, .mt-tempur .video-js .vjs-fullscreen-control:before {
    content: "\f108"
}

.mt-tempur .vjs-icon-fullscreen-exit, .mt-tempur .video-js.vjs-fullscreen .vjs-fullscreen-control {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-fullscreen-exit:before, .mt-tempur .video-js.vjs-fullscreen .vjs-fullscreen-control:before {
    content: "\f109"
}

.mt-tempur .vjs-icon-square {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-square:before {
    content: "\f10a"
}

.mt-tempur .vjs-icon-spinner {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-spinner:before {
    content: "\f10b"
}

.mt-tempur .vjs-icon-subtitles, .mt-tempur .video-js .vjs-subtitles-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-subtitles:before, .mt-tempur .video-js .vjs-subtitles-button:before {
    content: "\f10c"
}

.mt-tempur .vjs-icon-captions, .mt-tempur .video-js .vjs-captions-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-captions:before, .mt-tempur .video-js .vjs-captions-button:before {
    content: "\f10d"
}

.mt-tempur .vjs-icon-chapters, .mt-tempur .video-js .vjs-chapters-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-chapters:before, .mt-tempur .video-js .vjs-chapters-button:before {
    content: "\f10e"
}

.mt-tempur .vjs-icon-share {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-share:before {
    content: "\f10f"
}

.mt-tempur .vjs-icon-cog {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-cog:before {
    content: "\f110"
}

.mt-tempur .vjs-icon-circle, .mt-tempur .video-js .vjs-mouse-display, .mt-tempur .video-js .vjs-play-progress, .mt-tempur .video-js .vjs-volume-level {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-circle:before, .mt-tempur .video-js .vjs-mouse-display:before, .mt-tempur .video-js .vjs-play-progress:before, .mt-tempur .video-js .vjs-volume-level:before {
    content: "\f111"
}

.mt-tempur .vjs-icon-circle-outline {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-circle-outline:before {
    content: "\f112"
}

.mt-tempur .vjs-icon-circle-inner-circle {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-circle-inner-circle:before {
    content: "\f113"
}

.mt-tempur .vjs-icon-hd {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-hd:before {
    content: "\f114"
}

.mt-tempur .vjs-icon-cancel, .mt-tempur .video-js .vjs-control.vjs-close-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-cancel:before, .mt-tempur .video-js .vjs-control.vjs-close-button:before {
    content: "\f115"
}

.mt-tempur .vjs-icon-replay {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-replay:before {
    content: "\f116"
}

.mt-tempur .vjs-icon-facebook {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-facebook:before {
    content: "\f117"
}

.mt-tempur .vjs-icon-gplus {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-gplus:before {
    content: "\f118"
}

.mt-tempur .vjs-icon-linkedin {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-linkedin:before {
    content: "\f119"
}

.mt-tempur .vjs-icon-twitter {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-twitter:before {
    content: "\f11a"
}

.mt-tempur .vjs-icon-tumblr {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-tumblr:before {
    content: "\f11b"
}

.mt-tempur .vjs-icon-pinterest {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-pinterest:before {
    content: "\f11c"
}

.mt-tempur .vjs-icon-audio-description, .mt-tempur .video-js .vjs-descriptions-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-audio-description:before, .mt-tempur .video-js .vjs-descriptions-button:before {
    content: "\f11d"
}

.mt-tempur .vjs-icon-audio, .mt-tempur .video-js .vjs-audio-button {
    font-family: VideoJS;
    font-weight: normal;
    font-style: normal
}

.mt-tempur .vjs-icon-audio:before, .mt-tempur .video-js .vjs-audio-button:before {
    content: "\f11e"
}

.mt-tempur .video-js {
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff;
    background-color: #000;
    position: relative;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mt-tempur .video-js:-moz-full-screen {
    position: absolute
}

.mt-tempur .video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important
}

.mt-tempur .video-js *, .mt-tempur .video-js *:before, .mt-tempur .video-js *:after {
    box-sizing: inherit
}

.mt-tempur .video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0
}

.mt-tempur .video-js.vjs-fluid, .mt-tempur .video-js.vjs-16-9, .mt-tempur .video-js.vjs-4-3 {
    width: 100%;
    max-width: 100%;
    height: 0
}

.mt-tempur .video-js.vjs-16-9 {
    padding-top: 56.25%
}

.mt-tempur .video-js.vjs-4-3 {
    padding-top: 75%
}

.mt-tempur .video-js.vjs-fill {
    width: 100%;
    height: 100%
}

.mt-tempur .video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mt-tempur body.vjs-full-window {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow-y: auto
}

.mt-tempur .vjs-full-window .video-js.vjs-fullscreen {
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

.mt-tempur .video-js.vjs-fullscreen {
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important
}

.mt-tempur .video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none
}

.mt-tempur .vjs-hidden {
    display: none !important
}

.mt-tempur .vjs-disabled {
    opacity: 0.5;
    cursor: default
}

.mt-tempur .video-js .vjs-offscreen {
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px
}

.mt-tempur .vjs-lock-showing {
    display: block !important;
    opacity: 1;
    visibility: visible
}

.mt-tempur .vjs-no-js {
    padding: 20px;
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    width: 300px;
    height: 150px;
    margin: 0px auto
}

.mt-tempur .vjs-no-js a, .mt-tempur .vjs-no-js a:visited {
    color: #66A8CC
}

.mt-tempur .video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.5em;
    width: 3em;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: 0.06666em solid #fff;
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.7);
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    border-radius: 0.3em;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s
}

.mt-tempur .vjs-big-play-centered .vjs-big-play-button {
    top: 50%;
    left: 50%;
    margin-top: -0.75em;
    margin-left: -1.5em
}

.mt-tempur .video-js:hover .vjs-big-play-button, .mt-tempur .video-js .vjs-big-play-button:focus {
    outline: 0;
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5);
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s
}

.mt-tempur .vjs-controls-disabled .vjs-big-play-button, .mt-tempur .vjs-has-started .vjs-big-play-button, .mt-tempur .vjs-using-native-controls .vjs-big-play-button, .mt-tempur .vjs-error .vjs-big-play-button {
    display: none
}

.mt-tempur .vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
    display: block
}

.mt-tempur .video-js button {
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    overflow: visible;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.mt-tempur .video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: 0.5em;
    z-index: 2
}

.mt-tempur .vjs-menu-button {
    cursor: pointer
}

.mt-tempur .vjs-menu-button.vjs-disabled {
    cursor: default
}

.mt-tempur .vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none
}

.mt-tempur .vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    overflow: auto;
    font-family: Arial, Helvetica, sans-serif
}

.mt-tempur .vjs-scrubbing .vjs-menu-button:hover .vjs-menu {
    display: none
}

.mt-tempur .vjs-menu li {
    list-style: none;
    margin: 0;
    padding: 0.2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase
}

.mt-tempur .vjs-menu li.vjs-menu-item:focus, .mt-tempur .vjs-menu li.vjs-menu-item:hover {
    outline: 0;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5)
}

.mt-tempur .vjs-menu li.vjs-selected, .mt-tempur .vjs-menu li.vjs-selected:focus, .mt-tempur .vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2B333F
}

.mt-tempur .vjs-menu li.vjs-menu-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 0.3em 0;
    font-weight: bold;
    cursor: default
}

.mt-tempur .vjs-menu-button-popup .vjs-menu {
    display: none;
    position: absolute;
    bottom: 0;
    width: 10em;
    left: -3em;
    height: 0em;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, 0.7)
}

.mt-tempur .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.7);
    position: absolute;
    width: 100%;
    bottom: 1.5em;
    max-height: 15em
}

.mt-tempur .vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu, .mt-tempur .vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
    display: block
}

.mt-tempur .video-js .vjs-menu-button-inline {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    overflow: hidden
}

.mt-tempur .video-js .vjs-menu-button-inline:before {
    width: 2.222222222em
}

.mt-tempur .video-js .vjs-menu-button-inline:hover, .mt-tempur .video-js .vjs-menu-button-inline:focus, .mt-tempur .video-js .vjs-menu-button-inline.vjs-slider-active, .mt-tempur .video-js.vjs-no-flex .vjs-menu-button-inline {
    width: 12em
}

.mt-tempur .video-js .vjs-menu-button-inline.vjs-slider-active {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none
}

.mt-tempur .vjs-menu-button-inline .vjs-menu {
    opacity: 0;
    height: 100%;
    width: auto;
    position: absolute;
    left: 4em;
    top: 0;
    padding: 0;
    margin: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s
}

.mt-tempur .vjs-menu-button-inline:hover .vjs-menu, .mt-tempur .vjs-menu-button-inline:focus .vjs-menu, .mt-tempur .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
    display: block;
    opacity: 1
}

.mt-tempur .vjs-no-flex .vjs-menu-button-inline .vjs-menu {
    display: block;
    opacity: 1;
    position: relative;
    width: auto
}

.mt-tempur .vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu, .mt-tempur .vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu, .mt-tempur .vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
    width: auto
}

.mt-tempur .vjs-menu-button-inline .vjs-menu-content {
    width: auto;
    height: 100%;
    margin: 0;
    overflow: hidden
}

.mt-tempur .video-js .vjs-control-bar {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.0em;
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.7)
}

.mt-tempur .vjs-has-started .vjs-control-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0.1s, opacity 0.1s;
    -moz-transition: visibility 0.1s, opacity 0.1s;
    -o-transition: visibility 0.1s, opacity 0.1s;
    transition: visibility 0.1s, opacity 0.1s
}

.mt-tempur .vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    visibility: visible;
    opacity: 0;
    -webkit-transition: visibility 1s, opacity 1s;
    -moz-transition: visibility 1s, opacity 1s;
    -o-transition: visibility 1s, opacity 1s;
    transition: visibility 1s, opacity 1s
}

.mt-tempur .vjs-controls-disabled .vjs-control-bar, .mt-tempur .vjs-using-native-controls .vjs-control-bar, .mt-tempur .vjs-error .vjs-control-bar {
    display: none !important
}

.mt-tempur .vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible
}

.mt-tempur .vjs-has-started.vjs-no-flex .vjs-control-bar {
    display: table
}

.mt-tempur .video-js .vjs-control {
    outline: none;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 4em;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.mt-tempur .video-js .vjs-control:before {
    font-size: 1.8em;
    line-height: 1.67
}

.mt-tempur .video-js .vjs-control:focus:before, .mt-tempur .video-js .vjs-control:hover:before, .mt-tempur .video-js .vjs-control:focus {
    text-shadow: 0em 0em 1em white
}

.mt-tempur .video-js .vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.mt-tempur .vjs-no-flex .vjs-control {
    display: table-cell;
    vertical-align: middle
}

.mt-tempur .video-js .vjs-custom-control-spacer {
    display: none
}

.mt-tempur .video-js .vjs-progress-control {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 4em
}

.mt-tempur .vjs-live .vjs-progress-control {
    display: none
}

.mt-tempur .video-js .vjs-progress-holder {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    height: 0.3em
}

.mt-tempur .video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.666666666666666666em
}

.mt-tempur .video-js .vjs-progress-control:hover .vjs-time-tooltip, .mt-tempur .video-js .vjs-progress-control:hover .vjs-mouse-display:after, .mt-tempur .video-js .vjs-progress-control:hover .vjs-play-progress:after {
    font-family: Arial, Helvetica, sans-serif;
    visibility: visible;
    font-size: 0.6em
}

.mt-tempur .video-js .vjs-progress-holder .vjs-play-progress, .mt-tempur .video-js .vjs-progress-holder .vjs-load-progress, .mt-tempur .video-js .vjs-progress-holder .vjs-tooltip-progress-bar, .mt-tempur .video-js .vjs-progress-holder .vjs-load-progress div {
    position: absolute;
    display: block;
    height: 0.3em;
    margin: 0;
    padding: 0;
    width: 0;
    left: 0;
    top: 0
}

.mt-tempur .video-js .vjs-mouse-display:before {
    display: none
}

.mt-tempur .video-js .vjs-play-progress {
    background-color: #fff
}

.mt-tempur .video-js .vjs-play-progress:before {
    position: absolute;
    top: -0.333333333333333em;
    right: -0.5em;
    font-size: 0.9em
}

.mt-tempur .video-js .vjs-time-tooltip, .mt-tempur .video-js .vjs-mouse-display:after, .mt-tempur .video-js .vjs-play-progress:after {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    right: -1.9em;
    font-size: 0.9em;
    color: #000;
    content: attr(data-current-time);
    padding: 6px 8px 8px 8px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    border-radius: 0.3em
}

.mt-tempur .video-js .vjs-time-tooltip, .mt-tempur .video-js .vjs-play-progress:before, .mt-tempur .video-js .vjs-play-progress:after {
    z-index: 1
}

.mt-tempur .video-js .vjs-progress-control .vjs-keep-tooltips-inside:after {
    display: none
}

.mt-tempur .video-js .vjs-load-progress {
    background: #bfc7d3;
    background: rgba(115, 133, 159, 0.5)
}

.mt-tempur .video-js .vjs-load-progress div {
    background: white;
    background: rgba(115, 133, 159, 0.75)
}

.mt-tempur .video-js.vjs-no-flex .vjs-progress-control {
    width: auto
}

.mt-tempur .video-js .vjs-time-tooltip {
    display: inline-block;
    height: 2.4em;
    position: relative;
    float: right;
    right: -1.9em
}

.mt-tempur .vjs-tooltip-progress-bar {
    visibility: hidden
}

.mt-tempur .video-js .vjs-progress-control .vjs-mouse-display {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 1
}

.mt-tempur .vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    z-index: 0
}

.mt-tempur .video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block
}

.mt-tempur .video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display, .mt-tempur .video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display:after {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 1s, opacity 1s;
    -moz-transition: visibility 1s, opacity 1s;
    -o-transition: visibility 1s, opacity 1s;
    transition: visibility 1s, opacity 1s
}

.mt-tempur .video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display, .mt-tempur .video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display:after {
    display: none
}

.mt-tempur .vjs-mouse-display .vjs-time-tooltip, .mt-tempur .video-js .vjs-progress-control .vjs-mouse-display:after {
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8)
}

.mt-tempur .video-js .vjs-slider {
    outline: 0;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 0.45em 0 0.45em;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5)
}

.mt-tempur .video-js .vjs-slider:focus {
    text-shadow: 0em 0em 1em white;
    -webkit-box-shadow: 0 0 1em #fff;
    -moz-box-shadow: 0 0 1em #fff;
    box-shadow: 0 0 1em #fff
}

.mt-tempur .video-js .vjs-mute-control, .mt-tempur .video-js .vjs-volume-menu-button {
    cursor: pointer;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.mt-tempur .video-js .vjs-volume-control {
    width: 5em;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.mt-tempur .video-js .vjs-volume-bar {
    margin: 1.35em 0.45em
}

.mt-tempur .vjs-volume-bar.vjs-slider-horizontal {
    width: 5em;
    height: 0.3em
}

.mt-tempur .vjs-volume-bar.vjs-slider-vertical {
    width: 0.3em;
    height: 5em;
    margin: 1.35em auto
}

.mt-tempur .video-js .vjs-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff
}

.mt-tempur .video-js .vjs-volume-level:before {
    position: absolute;
    font-size: 0.9em
}

.mt-tempur .vjs-slider-vertical .vjs-volume-level {
    width: 0.3em
}

.mt-tempur .vjs-slider-vertical .vjs-volume-level:before {
    top: -0.5em;
    left: -0.3em
}

.mt-tempur .vjs-slider-horizontal .vjs-volume-level {
    height: 0.3em
}

.mt-tempur .vjs-slider-horizontal .vjs-volume-level:before {
    top: -0.3em;
    right: -0.5em
}

.mt-tempur .vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
    height: 100%
}

.mt-tempur .vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    width: 100%
}

.mt-tempur .vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu {
    display: block;
    width: 0;
    height: 0;
    border-top-color: transparent
}

.mt-tempur .vjs-menu-button-popup.vjs-volume-menu-button-vertical .vjs-menu {
    left: 0.5em;
    height: 8em
}

.mt-tempur .vjs-menu-button-popup.vjs-volume-menu-button-horizontal .vjs-menu {
    left: -2em
}

.mt-tempur .vjs-menu-button-popup.vjs-volume-menu-button .vjs-menu-content {
    height: 0;
    width: 0;
    overflow-x: hidden;
    overflow-y: hidden
}

.mt-tempur .vjs-volume-menu-button-vertical:hover .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-vertical:focus .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-vertical.vjs-slider-active .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-vertical .vjs-lock-showing .vjs-menu-content {
    height: 8em;
    width: 2.9em
}

.mt-tempur .vjs-volume-menu-button-horizontal:hover .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-horizontal:focus .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-horizontal .vjs-slider-active .vjs-menu-content, .mt-tempur .vjs-volume-menu-button-horizontal .vjs-lock-showing .vjs-menu-content {
    height: 2.9em;
    width: 8em
}

.mt-tempur .vjs-volume-menu-button.vjs-menu-button-inline .vjs-menu-content {
    background-color: transparent !important
}

.mt-tempur .vjs-poster {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-color: #000000;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%
}

.mt-tempur .vjs-poster img {
    display: block;
    vertical-align: middle;
    margin: 0 auto;
    max-height: 100%;
    padding: 0;
    width: 100%
}

.mt-tempur .vjs-has-started .vjs-poster {
    display: none
}

.mt-tempur .vjs-audio.vjs-has-started .vjs-poster {
    display: block
}

.mt-tempur .vjs-using-native-controls .vjs-poster {
    display: none
}

.mt-tempur .video-js .vjs-live-control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    font-size: 1em;
    line-height: 3em
}

.mt-tempur .vjs-no-flex .vjs-live-control {
    display: table-cell;
    width: auto;
    text-align: left
}

.mt-tempur .video-js .vjs-time-control {
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    width: auto;
    padding-left: 1em;
    padding-right: 1em
}

.mt-tempur .vjs-live .vjs-time-control {
    display: none
}

.mt-tempur .video-js .vjs-current-time, .mt-tempur .vjs-no-flex .vjs-current-time {
    display: none
}

.mt-tempur .video-js .vjs-duration, .mt-tempur .vjs-no-flex .vjs-duration {
    display: none
}

.mt-tempur .vjs-time-divider {
    display: none;
    line-height: 3em
}

.mt-tempur .vjs-live .vjs-time-divider {
    display: none
}

.mt-tempur .video-js .vjs-play-control {
    cursor: pointer;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.mt-tempur .vjs-text-track-display {
    position: absolute;
    bottom: 3em;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none
}

.mt-tempur .video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 1em
}

.mt-tempur .video-js .vjs-text-track {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 0.1em;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5)
}

.mt-tempur .vjs-subtitles {
    color: #fff
}

.mt-tempur .vjs-captions {
    color: #fc6
}

.mt-tempur .vjs-tt-cue {
    display: block
}

.mt-tempur video::-webkit-media-text-track-display {
    -moz-transform: translateY(-3em);
    -ms-transform: translateY(-3em);
    -o-transform: translateY(-3em);
    -webkit-transform: translateY(-3em);
    transform: translateY(-3em)
}

.mt-tempur .video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
    -moz-transform: translateY(-1.5em);
    -ms-transform: translateY(-1.5em);
    -o-transform: translateY(-1.5em);
    -webkit-transform: translateY(-1.5em);
    transform: translateY(-1.5em)
}

.mt-tempur .video-js .vjs-fullscreen-control {
    cursor: pointer;
    -webkit-box-flex: none;
    -moz-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none
}

.mt-tempur .vjs-playback-rate .vjs-playback-rate-value {
    font-size: 1.5em;
    line-height: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center
}

.mt-tempur .vjs-playback-rate .vjs-menu {
    width: 4em;
    left: 0em
}

.mt-tempur .vjs-error .vjs-error-display .vjs-modal-dialog-content {
    font-size: 1.4em;
    text-align: center
}

.mt-tempur .vjs-error .vjs-error-display:before {
    color: #fff;
    content: 'X';
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -0.5em;
    position: absolute;
    text-shadow: 0.05em 0.05em 0.1em #000;
    text-align: center;
    top: 50%;
    vertical-align: middle;
    width: 100%
}

.mt-tempur .vjs-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, 0.7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px
}

.mt-tempur .vjs-seeking .vjs-loading-spinner, .mt-tempur .vjs-waiting .vjs-loading-spinner {
    display: block
}

.mt-tempur .vjs-loading-spinner:before, .mt-tempur .vjs-loading-spinner:after {
    content: "";
    position: absolute;
    margin: -6px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: transparent;
    border-top-color: white
}

.mt-tempur .vjs-seeking .vjs-loading-spinner:before, .mt-tempur .vjs-seeking .vjs-loading-spinner:after, .mt-tempur .vjs-waiting .vjs-loading-spinner:before, .mt-tempur .vjs-waiting .vjs-loading-spinner:after {
    -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
    animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite
}

.mt-tempur .vjs-seeking .vjs-loading-spinner:before, .mt-tempur .vjs-waiting .vjs-loading-spinner:before {
    border-top-color: white
}

.mt-tempur .vjs-seeking .vjs-loading-spinner:after, .mt-tempur .vjs-waiting .vjs-loading-spinner:after {
    border-top-color: white;
    -webkit-animation-delay: 0.44s;
    animation-delay: 0.44s
}

@keyframes vjs-spinner-spin {
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes vjs-spinner-spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }
    20% {
        border-top-color: #73859f
    }
    35% {
        border-top-color: white
    }
    60% {
        border-top-color: #73859f
    }
    100% {
        border-top-color: #73859f
    }
}

@-webkit-keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }
    20% {
        border-top-color: #73859f
    }
    35% {
        border-top-color: white
    }
    60% {
        border-top-color: #73859f
    }
    100% {
        border-top-color: #73859f
    }
}

.mt-tempur .vjs-chapters-button .vjs-menu ul {
    width: 24em
}

.mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
    -webkit-box-flex: auto;
    -moz-box-flex: auto;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto
}

.mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex .vjs-custom-control-spacer {
    width: auto
}

.mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-menu-button, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button, .mt-tempur .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button {
    display: none
}

.mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-menu-button, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button, .mt-tempur .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button {
    display: none
}

.mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button, .mt-tempur .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button .vjs-audio-button {
    display: none
}

.mt-tempur .vjs-caption-settings {
    position: relative;
    top: 1em;
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.75);
    color: #fff;
    margin: 0 auto;
    padding: 0.5em;
    height: 16em;
    font-size: 12px;
    width: 40em
}

.mt-tempur .vjs-caption-settings .vjs-tracksettings {
    top: 0;
    bottom: 1em;
    left: 0;
    right: 0;
    position: absolute;
    overflow: auto
}

.mt-tempur .vjs-caption-settings .vjs-tracksettings-colors, .mt-tempur .vjs-caption-settings .vjs-tracksettings-font {
    float: left
}

.mt-tempur .vjs-caption-settings .vjs-tracksettings-colors:after, .mt-tempur .vjs-caption-settings .vjs-tracksettings-font:after, .mt-tempur .vjs-caption-settings .vjs-tracksettings-controls:after {
    clear: both
}

.mt-tempur .vjs-caption-settings .vjs-tracksettings-controls {
    position: absolute;
    bottom: 1em;
    right: 1em
}

.mt-tempur .vjs-caption-settings .vjs-tracksetting {
    margin: 5px;
    padding: 3px;
    min-height: 40px;
    border: none
}

.mt-tempur .vjs-caption-settings .vjs-tracksetting label, .mt-tempur .vjs-caption-settings .vjs-tracksetting legend {
    display: block;
    width: 100px;
    margin-bottom: 5px
}

.mt-tempur .vjs-caption-settings .vjs-tracksetting span {
    display: inline;
    margin-left: 5px;
    vertical-align: top;
    float: right
}

.mt-tempur .vjs-caption-settings .vjs-tracksetting > div {
    margin-bottom: 5px;
    min-height: 20px
}

.mt-tempur .vjs-caption-settings .vjs-tracksetting > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 0
}

.mt-tempur .vjs-caption-settings label > input {
    margin-right: 10px
}

.mt-tempur .vjs-caption-settings fieldset {
    margin-top: 1em;
    margin-left: .5em
}

.mt-tempur .vjs-caption-settings fieldset .vjs-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.mt-tempur .vjs-caption-settings input[type="button"] {
    width: 40px;
    height: 40px
}

.mt-tempur .video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, 0.8);
    background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0))
}

.mt-tempur .vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1
}

@media print {
    .mt-tempur .video-js > *:not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden
    }
}

@media \0screen {
    .mt-tempur .vjs-user-inactive.vjs-playing .vjs-control-bar :before {
        content: ""
    }
}

@media \0screen {
    .mt-tempur .vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
        visibility: hidden
    }
}