@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* 0, 640px */
/* 641px, 1024px */
/* 1025px, 1440px */
/* 1441px, 1920px */
/* 1921px, ... */
/**
 * Foundation for Sites by ZURB
 * Version 6.2.0
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.spin-out-ccw.mui-leave, .spin-in-ccw.mui-enter, .spin-out.mui-leave, .spin-in.mui-enter, .scale-out-down.mui-leave, .scale-out-up.mui-leave, .scale-in-down.mui-enter, .scale-in-up.mui-enter, .hinge-out-from-middle-y.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-top.mui-leave, .hinge-in-from-middle-y.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-top.mui-enter, .fade-out.mui-leave, .fade-in.mui-enter, .slide-out-left.mui-leave, .slide-out-up.mui-leave, .slide-out-right.mui-leave, .slide-out-down.mui-leave, .slide-in-right.mui-enter, .slide-in-up.mui-enter, .slide-in-left.mui-enter, .slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
}

.slide-in-down.mui-enter {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  opacity: 0;
  transition-property: opacity;
}

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

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity;
}

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

.hinge-in-from-top.mui-enter {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.scale-in-down.mui-enter {
  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 {
  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 {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

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

.spin-in.mui-enter {
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.spin-out.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

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

.spin-in-ccw.mui-enter {
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

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

.spin-out-ccw.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@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%);
  }
}
.shake {
  animation-name: shake-7;
}

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

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

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

.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.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1,
.h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
 */
/* fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
} */
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

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

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

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

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

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

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

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

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1;
}

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

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

.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.row::before, .row::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media screen and (min-width: 40em) {
  .row .row {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.row .row.collapse {
  margin-left: 0;
  margin-right: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-left: auto;
  margin-right: auto;
}

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

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

.small-1 {
  width: 8.3333333333%;
}

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

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

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

.small-2 {
  width: 16.6666666667%;
}

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

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

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

.small-3 {
  width: 25%;
}

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

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

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

.small-4 {
  width: 33.3333333333%;
}

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

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

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

.small-5 {
  width: 41.6666666667%;
}

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

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

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

.small-6 {
  width: 50%;
}

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

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

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

.small-7 {
  width: 58.3333333333%;
}

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

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

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

.small-8 {
  width: 66.6666666667%;
}

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

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

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

.small-9 {
  width: 75%;
}

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

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

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

.small-10 {
  width: 83.3333333333%;
}

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

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

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

.small-11 {
  width: 91.6666666667%;
}

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

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

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

.small-12 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

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

@media screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
.h1,
h2,
.h2,
h3,
.h6,
.h5,
.h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

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

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

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

h1,
.h1,
h2,
.h2,
h3,
.h6,
.h5,
.h3,
h4,
h5,
h6 {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h6 small,
.h5 small,
.h3 small,
h4 small,
h5 small,
h6 small {
  color: #9a9a9a;
  line-height: 0;
}

h1,
.h1 {
  font-size: 1.5rem;
}

h2,
.h2 {
  font-size: 1.25rem;
}

h3, h6,
.h6, h5,
.h5,
.h3 {
  font-size: 1.1875rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1.0625rem;
}

h6 {
  font-size: 1rem;
}

@media screen and (min-width: 40em) {
  h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .h2 {
    font-size: 2.5rem;
  }
  h3, h6,
  .h6, h5,
  .h5,
  .h3 {
    font-size: 1.9375rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
}
a {
  color: #b0b0b0;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(151.36, 151.36, 151.36);
}
a img {
  border: 0;
}

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

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #9a9a9a;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #2c2c2c;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #2c2c2c;
}
cite:before {
  content: "— ";
}

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

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #b0b0b0;
  border: 1px solid #9a9a9a;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #b0b0b0;
  color: #0a0a0a;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
}

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

.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 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 screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !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 #2c2c2c;
    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,
  .h2,
  h3,
  h6,
  .h6,
  h5,
  .h5,
  .h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  .h2,
  h3,
  h6,
  .h6,
  h5,
  .h5,
  .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;
  padding: 0.5rem;
  border: 1px solid #9a9a9a;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #ffffff;
  box-shadow: none;
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[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 {
  border: 1px solid #2c2c2c;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[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 {
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

input::placeholder,
textarea::placeholder {
  color: #9a9a9a;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #b0b0b0;
  cursor: default;
}

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

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;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.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-button, .input-group-field, .input-group-label {
  margin: 0;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #b0b0b0;
  color: #0a0a0a;
  border: 1px solid #9a9a9a;
  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;
  height: 100%;
  width: 1%;
}
.input-group-button a,
.input-group-button input,
.input-group-button button {
  margin: 0;
}

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

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

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

.fieldset {
  border: 1px solid #9a9a9a;
  padding: 1.25rem;
  margin: 1.125rem 0;
}
.fieldset legend {
  background: #f8f8f8;
  padding: 0 0.1875rem;
  margin: 0;
  margin-left: -0.1875rem;
}

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #9a9a9a;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  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%2844, 44, 44%29"></polygon></svg>');
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select {
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat;
}
select:disabled {
  background-color: #b0b0b0;
  cursor: default;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
}

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840;
}

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

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

[data-whatinput=mouse] .button {
  outline: 0;
}
.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 0.9875em 0;
  font-size: 0.9rem;
  background-color: #b0b0b0;
  color: #ffffff;
}
.button:hover, .button:focus {
  background-color: rgb(149.6, 149.6, 149.6);
  color: #ffffff;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.button.primary {
  background-color: #b0b0b0;
  color: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(140.8, 140.8, 140.8);
  color: #ffffff;
}
.button.secondary {
  background-color: #777;
  color: #ffffff;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(95.2, 95.2, 95.2);
  color: #ffffff;
}
.button.success {
  background-color: #3adb76;
  color: #ffffff;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #ffffff;
}
.button.warning {
  background-color: #ffae00;
  color: #ffffff;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #ffffff;
}
.button.alert {
  background-color: #ec5840;
  color: #ffffff;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(218.2857142857, 49.1428571429, 21.7142857143);
  color: #ffffff;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow {
  border: 1px solid #b0b0b0;
  color: #b0b0b0;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #585858;
  color: #585858;
}
.button.hollow.primary {
  border: 1px solid #b0b0b0;
  color: #b0b0b0;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #585858;
  color: #585858;
}
.button.hollow.secondary {
  border: 1px solid #777;
  color: #777;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: rgb(59.5, 59.5, 59.5);
  color: rgb(59.5, 59.5, 59.5);
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert {
  border: 1px solid #ec5840;
  color: #ec5840;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(136.4285714286, 30.7142857143, 13.5714285714);
  color: rgb(136.4285714286, 30.7142857143, 13.5714285714);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.button.dropdown::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  border-color: #ffffff transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: relative;
  top: 0.4em;
  float: right;
  margin-left: 1em;
  display: inline-block;
}
.button.arrow-only::after {
  margin-left: 0;
  float: none;
  top: -0.1em;
}

.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 screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

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

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

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

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

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

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

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

.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;
  height: auto;
  width: 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-left: auto;
  margin-right: auto;
}

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

.accordion {
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #b0b0b0;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0;
}

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #b0b0b0;
  position: relative;
  border-bottom: 1px solid #b0b0b0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #b0b0b0;
}
.accordion-title::before {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #b0b0b0;
  background-color: #ffffff;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: #b0b0b0 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 1rem;
}

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

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #b0b0b0;
  color: #0a0a0a;
}
.badge.secondary {
  background: #777;
  color: #ffffff;
}
.badge.success {
  background: #3adb76;
  color: #ffffff;
}
.badge.warning {
  background: #ffae00;
  color: #ffffff;
}
.badge.alert {
  background: #ec5840;
  color: #ffffff;
}

.breadcrumbs::before, .breadcrumbs::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs {
  list-style: none;
  margin: 0 0 0.9875em 0;
}
.breadcrumbs li {
  float: left;
  color: #0a0a0a;
  font-size: 0.6875rem;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  color: #9a9a9a;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
  opacity: 1;
}
.breadcrumbs a {
  color: #b0b0b0;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #9a9a9a;
}

.button-group::before, .button-group::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group .button {
  margin: 0;
  font-size: 0.9rem;
  float: left;
}
.button-group .button:not(:last-child) {
  border-right: 1px solid #f8f8f8;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.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(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.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(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(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.primary .button {
  background-color: #b0b0b0;
  color: #0a0a0a;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: rgb(140.8, 140.8, 140.8);
  color: #0a0a0a;
}
.button-group.secondary .button {
  background-color: #777;
  color: #ffffff;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(95.2, 95.2, 95.2);
  color: #ffffff;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #ffffff;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #ffffff;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #ffffff;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: #ffffff;
}
.button-group.alert .button {
  background-color: #ec5840;
  color: #ffffff;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(218.2857142857, 49.1428571429, 21.7142857143);
  color: #ffffff;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
}
.button-group.stacked .button:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child) {
  margin-right: 0;
}
@media screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    width: auto;
  }
  .button-group.stacked-for-small .button:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    width: auto;
  }
  .button-group.stacked-for-medium .button:not(:last-child) {
    margin-right: 1px;
  }
}
@media screen and (max-width: 39.9375em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  position: relative;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout {
  background-color: white;
}
.callout.primary {
  background-color: rgb(243.15, 243.15, 243.15);
}
.callout.secondary {
  background-color: rgb(234.6, 234.6, 234.6);
}
.callout.success {
  background-color: rgb(225.45, 249.6, 234.45);
}
.callout.warning {
  background-color: rgb(255, 242.85, 216.75);
}
.callout.alert {
  background-color: rgb(252.15, 229.95, 226.35);
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button {
  position: absolute;
  color: #2c2c2c;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block !important;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #ffffff;
  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%);
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent transparent #b0b0b0;
  border-left-style: solid;
  border-right-width: 0;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #b0b0b0 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  background-color: #f8f8f8;
  border: 1px solid #9a9a9a;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10;
}
.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 {
  left: auto;
  right: 0;
  top: 100%;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #b0b0b0 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px;
}
[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 {
  left: auto;
  right: 100%;
}
.dropdown.menu.vertical > li.opens-right .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #b0b0b0 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #b0b0b0;
  border-left-style: solid;
  border-right-width: 0;
}
@media screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #b0b0b0 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.medium-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #b0b0b0 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #b0b0b0;
    border-left-style: solid;
    border-right-width: 0;
  }
}
@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #b0b0b0 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%;
  }
  .dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #b0b0b0 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #b0b0b0;
    border-left-style: solid;
    border-right-width: 0;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

.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: -2px;
}
.is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
  top: 100%;
}
.is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%;
}

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #9a9a9a;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
  margin-top: -3px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #b0b0b0 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #b0b0b0;
  border-left-style: solid;
  border-right-width: 0;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #b0b0b0;
  color: #0a0a0a;
}
.label.secondary {
  background: #777;
  color: #ffffff;
}
.label.success {
  background: #3adb76;
  color: #ffffff;
}
.label.warning {
  background: #ffae00;
  color: #ffffff;
}
.label.alert {
  background: #ec5840;
  color: #ffffff;
}

.media-object {
  margin-bottom: 0.9875em;
  display: block;
}
.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: 0.9875em;
    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: 0.9875em;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 0.9875em;
}
.media-object-section.middle {
  vertical-align: middle;
}
.media-object-section.bottom {
  vertical-align: bottom;
}

.menu {
  margin: 0;
  list-style-type: none;
}
[data-whatinput=mouse] .menu > li {
  outline: 0;
}
.menu > li {
  display: table-cell;
  vertical-align: middle;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a img,
.menu > li > a i {
  vertical-align: middle;
}
.menu > li > a i + span,
.menu > li > a img + span {
  vertical-align: middle;
}
.menu > li > a img,
.menu > li > a i {
  margin-right: 0.25rem;
  display: inline-block;
}
.menu > li {
  display: table-cell;
}
.menu.vertical > li {
  display: block;
}
@media screen and (min-width: 40em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }
  .menu.medium-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 64em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }
  .menu.large-vertical > li {
    display: block;
  }
}
.menu.simple li {
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
}
.menu.simple a {
  padding: 0;
}
.menu.align-right::before, .menu.align-right::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.menu.align-right::after {
  clear: both;
}
.menu.align-right > li {
  float: right;
}
.menu.expanded {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.icon-top > li > a {
  text-align: center;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i {
  display: block;
  margin: 0 auto 0.25rem;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  color: #ffffff;
  background: #b0b0b0;
}

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

.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;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
}
.menu-icon:hover::after {
  background: #9a9a9a;
  box-shadow: 0 7px 0 #9a9a9a, 0 14px 0 #9a9a9a;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon.dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
}
.menu-icon.dark:hover::after {
  background: #2c2c2c;
  box-shadow: 0 7px 0 #2c2c2c, 0 14px 0 #2c2c2c;
}

html,
body {
  height: 100%;
}

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto;
}

.off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.off-canvas-wrapper-inner::after {
  clear: both;
}
.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  transition: transform 0.5s ease;
}

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #f8f8f8;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5);
}

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.5s ease;
}

[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas {
  position: absolute;
  background: #b0b0b0;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0);
}
.off-canvas.position-left {
  left: -250px;
  top: 0;
  width: 250px;
}
.is-open-left {
  transform: translateX(250px);
}

.off-canvas.position-right {
  right: -250px;
  top: 0;
  width: 250px;
}
.is-open-right {
  transform: translateX(-250px);
}

@media screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
}
@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
}
.orbit {
  position: relative;
}

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

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

.orbit-figure {
  margin: 0;
}

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

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

[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(10, 10, 10, 0.5);
}

.orbit-previous {
  left: 0;
}

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

[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  background-color: #9a9a9a;
  border-radius: 50%;
}
.orbit-bullets button:hover {
  background-color: #2c2c2c;
}
.orbit-bullets button.is-active {
  background-color: #2c2c2c;
}

.pagination::before, .pagination::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination {
  margin-left: 0;
  margin-bottom: 0.9875em;
}
.pagination li {
  font-size: 0.875rem;
  margin-right: 0.0625rem;
  border-radius: 0;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  color: #0a0a0a;
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
}
.pagination a:hover,
.pagination button:hover {
  background: #b0b0b0;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #b0b0b0;
  color: #0a0a0a;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #9a9a9a;
  cursor: default;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  content: "…";
  padding: 0.1875rem 0.625rem;
  color: #0a0a0a;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: "«";
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination-next a::after,
.pagination-next.disabled::after {
  content: "»";
  display: inline-block;
  margin-left: 0.5rem;
}

.progress {
  background-color: #9a9a9a;
  height: 1rem;
  margin-bottom: 0.9875em;
  border-radius: 0;
}
.progress.primary .progress-meter {
  background-color: #b0b0b0;
}
.progress.secondary .progress-meter {
  background-color: #777;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #ec5840;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #b0b0b0;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #b0b0b0;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #9a9a9a;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #b0b0b0;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0;
}
.slider-handle:hover {
  background-color: rgb(149.6, 149.6, 149.6);
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

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

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

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

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

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

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

.switch {
  margin-bottom: 0.9875em;
  outline: 0;
  position: relative;
  user-select: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.875rem;
}

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

.switch-paddle {
  background: #9a9a9a;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  background: #ffffff;
  content: "";
  display: block;
  position: absolute;
  height: 1.5rem;
  left: 0.25rem;
  top: 0.25rem;
  width: 1.5rem;
  transition: all 0.25s ease-out;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
}
input:checked ~ .switch-paddle {
  background: #b0b0b0;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

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

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

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

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

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

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

table {
  width: 100%;
  margin-bottom: 0.9875em;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid rgb(242.25, 242.25, 242.25);
  background-color: #ffffff;
}

caption {
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

thead,
tfoot {
  background: rgb(248.625, 248.625, 248.625);
  color: #0a0a0a;
}
thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: rgb(242.25, 242.25, 242.25);
}
tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

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

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

table.hover tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover tr:nth-of-type(even):hover {
  background-color: rgb(237.15, 237.15, 237.15);
}

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

.tabs::before, .tabs::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}
.tabs {
  margin: 0;
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #b0b0b0;
}

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

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

.tabs.primary {
  background: #b0b0b0;
}
.tabs.primary > li > a {
  color: #0a0a0a;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: rgb(167.2, 167.2, 167.2);
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  line-height: 1;
  font-size: 0.75rem;
}
.tabs-title > a:hover {
  background: #ffffff;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #b0b0b0;
}

.tabs-content {
  background: #ffffff;
  transition: all 0.5s ease;
  border: 1px solid #b0b0b0;
  border-top: 0;
}

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

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

.thumbnail {
  border: solid 4px #ffffff;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 0.9875em;
}
.thumbnail:hover, .thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(176, 176, 176, 0.5);
}

.title-bar {
  background: #0a0a0a;
  color: #ffffff;
  padding: 0.5rem;
}
.title-bar::before, .title-bar::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.title-bar::after {
  clear: both;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.5rem;
}

.title-bar-left {
  float: left;
}

.title-bar-right {
  float: right;
  text-align: right;
}

.title-bar-title {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
}
.menu-icon.dark::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  top: 0;
  left: 0;
  box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
}
.menu-icon.dark:hover::after {
  background: #2c2c2c;
  box-shadow: 0 7px 0 #2c2c2c, 0 14px 0 #2c2c2c;
}

.has-tip {
  border-bottom: dotted 1px #2c2c2c;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip {
  background-color: #0a0a0a;
  color: #ffffff;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0;
}
.tooltip::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent #0a0a0a;
  border-bottom-style: solid;
  border-top-width: 0;
  bottom: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: #0a0a0a transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent transparent transparent #0a0a0a;
  border-left-style: solid;
  border-right-width: 0;
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  border-color: transparent #0a0a0a transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.top-bar::before, .top-bar::after {
  content: " ";
  display: table;
  flex-basis: 0;
  order: 1;
}
.top-bar::after {
  clear: both;
}
.top-bar {
  padding: 0.5rem;
}
.top-bar,
.top-bar ul {
  background-color: #b0b0b0;
}
.top-bar input {
  width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}

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

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

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

.top-bar-left,
.top-bar-right {
  width: 100%;
}

@media screen and (min-width: 64em) {
  .top-bar-left,
  .top-bar-right {
    width: auto;
  }
}
.top-bar-title {
  float: left;
  margin-right: 1rem;
}

.top-bar-left {
  float: left;
}

.top-bar-right {
  float: right;
}

/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-size: 12px;
}

*:focus {
  outline: 0;
  border: none;
}

.bg-fill {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bg-fit {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bg-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.animate {
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
}

.table {
  display: table;
}

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

.underline {
  text-decoration: underline;
}

.no-texttransform {
  text-transform: none;
}

.hidden {
  display: none !important;
}

/* Black is the new white */
body.black-theme {
  background-color: #2c2c2c;
}
body.black-theme .top-bar {
  background-color: #0a0a0a;
}
body.black-theme .top-bar .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo.png");
}
body.black-theme .top-bar .menu-toggle span {
  background-color: #ffffff;
}
body.black-theme .top-bar ul#menu-main-menu {
  background-color: #0a0a0a;
}
body.black-theme .top-bar ul#menu-main-menu li a {
  color: #ffffff;
}
body.black-theme .top-bar ul#menu-main-menu ul.submenu {
  background-color: #0a0a0a;
}
body.black-theme .button {
  color: #ffffff;
  border-color: #ffffff;
}
body.black-theme .button-black {
  color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
body.black-theme .entry-content .button {
  color: #0a0a0a;
  border-color: #0a0a0a;
}
body.black-theme #content {
  background-color: #0a0a0a;
}
body.black-theme #content .page-meta h5.search-toggle {
  color: #ffffff;
}
body.black-theme #content .page-meta .search {
  position: relative;
}
body.black-theme #content .page-meta input.search-field {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}
body.black-theme #content .article-header {
  background-color: black;
}
body.black-theme #content h1,
body.black-theme #content .h1 {
  color: white;
}
body.black-theme #content .entry-content {
  background-color: #0a0a0a;
  padding: 0.9875em;
  color: #ffffff;
}
body.black-theme #content .entry-content form .button {
  color: #ffffff;
  border-color: #ffffff;
}
body.black-theme #content .entry-content form label {
  color: white;
}
body.black-theme #content .entry-content table {
  color: #0a0a0a;
}
body.black-theme #content .tabs--premium {
  background-color: #0a0a0a;
  color: white;
}
body.black-theme #content .tabs--premium .tabs__menu-item button {
  color: white;
}
body.black-theme #content .tabs--premium .tabs__slider {
  background-color: white;
}
body.black-theme #content .tabs--premium a.docu__read-more {
  color: white;
}
body.black-theme #grid .grid-item.type-quote .grid-content {
  color: #0a0a0a;
  background-color: #ffffff;
}
body.black-theme #grid .grid-item.type-recent-posts h5,
body.black-theme #grid .grid-item.type-most-read h5,
body.black-theme #grid .grid-item.type-newsletter h5 {
  color: #ffffff;
}
body.black-theme #grid .grid-item.type-recent-posts ul.list,
body.black-theme #grid .grid-item.type-recent-posts ul.list a,
body.black-theme #grid .grid-item.type-most-read ul.list,
body.black-theme #grid .grid-item.type-most-read ul.list a,
body.black-theme #grid .grid-item.type-newsletter ul.list,
body.black-theme #grid .grid-item.type-newsletter ul.list a {
  color: #ffffff;
}
body.black-theme #grid .grid-item.type-recent-posts h6:before,
body.black-theme #grid .grid-item.type-most-read h6:before,
body.black-theme #grid .grid-item.type-newsletter h6:before {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
body.black-theme.single-post .article-header, body.black-theme.single-kronika .article-header {
  padding: 0.9875em;
  padding-bottom: 0;
}
body.black-theme.single-post .entry-content, body.black-theme.single-kronika .entry-content {
  padding: 0.9875em;
  padding-top: 0;
}
body.black-theme.single-post .layout-center .article-header, body.black-theme.single-kronika .layout-center .article-header {
  padding: 0;
}
body.black-theme.single-post .related-articles .title, body.black-theme.single-kronika .related-articles .title {
  color: #ffffff;
}
body.black-theme .footer {
  color: #0a0a0a;
  background-color: #ffffff;
}
body.black-theme .footer .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo.png");
}

.inlinesvg body.black-theme .top-bar .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo-inverted.svg");
}
.inlinesvg body.black-theme .footer .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo.svg");
}

small,
.small,
label {
  font-size: 11px;
  font-family: "Oswald";
  line-height: 1.6;
  text-transform: uppercase;
  display: inline-block;
}

label {
  margin-bottom: 0.49375em;
}

strong,
.strong {
  font-weight: 700;
}

/*********************
LINK STYLES
*********************/
a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1,
.h1,
h2,
.h2,
h3,
.h6,
.h5,
.h3,
h4,
.h4,
h5,
h6 {
  font-family: "Oswald";
  text-transform: uppercase;
  margin-bottom: 0.49375em;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
}

h1,
.h1 {
  font-weight: 700;
}

h2,
.h2 {
  font-weight: 700;
}

h3, h6,
.h6, h5,
.h5,
.h3 {
  font-weight: 700;
}

h4,
.h4 {
  font-weight: 400;
}

h5,
.h5 {
  font-weight: 400;
}

h6,
.h6 {
  font-weight: 400;
}

.text-thin {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

/*********************
LIST STYLES
*********************/
ul {
  margin-top: 0.9875em;
}

/*********************
INPUT STYLES
*********************/
input[type] {
  height: auto;
  padding: 0.9875em;
}

.button {
  color: #0a0a0a;
  font-size: 1.25em;
  font-family: "oswald";
  text-transform: uppercase;
  border: 1px solid #0a0a0a;
  background-color: transparent;
  padding: 0.9875em;
}
.button.full {
  width: 100%;
}
.button.half {
  width: 50%;
}
.button.filter-sector {
  text-align: left;
  margin: 0;
}
.button.filter-sector:after {
  content: "+";
  font-size: 3em;
  font-weight: 100;
  line-height: 0.05em;
  float: right;
}

/*********************
HEADER STYLES
*********************/
.top-bar {
  background-color: #ffffff;
  padding: 0.9875em 1.975em;
  border-bottom: 1px solid #9a9a9a;
}
.top-bar ul {
  background-color: transparent;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: auto;
}
.top-bar .top-bar-left .logo {
  width: 8em;
  height: 6.2em;
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo.png");
  display: block;
}

.inlinesvg .top-bar .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo.svg");
}

/*********************
NAVIGATION STYLES
*********************/
ul#menu-main-menu {
  width: 100%;
  background-color: #ffffff;
  padding: 0 1.975em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 95;
}
ul#menu-main-menu li {
  display: block;
  position: relative;
}
ul#menu-main-menu li a {
  color: #0a0a0a;
  font-family: "Oswald";
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.9875em;
  padding: 0.9875em 0;
  display: block;
}
ul#menu-main-menu li a.cta {
  color: #ffffff;
  background-color: #46e04f;
  font-size: 1.2em;
  border: none;
  display: block;
  border-radius: 3px;
  padding-left: 20px;
  padding-right: 20px;
}
ul#menu-main-menu li:first-child a {
  margin-top: 0.9875em;
}
ul#menu-main-menu ul.submenu li a {
  margin-top: 0.9875em;
}
ul#menu-main-menu li.login a,
ul#menu-main-menu li.logout a {
  color: #fc2d50 !important;
}
ul#menu-main-menu li.user {
  display: none;
}
ul#menu-main-menu li.is-accordion-submenu-parent > a {
  display: none;
}
ul#menu-main-menu li.is-accordion-submenu-parent ul.submenu {
  list-style: none;
  margin: 0;
}
ul#menu-main-menu li.is-accordion-submenu-parent ul.submenu li a {
  padding: 0 0 0.9875em;
}
ul#menu-main-menu li.search {
  padding-bottom: 0.9875em;
}

@media screen and (max-width: 1024px) {
  ul#menu-main-menu li.is-accordion-submenu-parent ul.submenu {
    display: block !important;
  }
}
.logged-in ul#menu-main-menu li.login,
.logged-in ul#menu-main-menu li.sign_up {
  display: none;
}
.logged-in ul#menu-main-menu li.user {
  display: table-cell;
}

.menu-toggle {
  width: 44px;
  margin: 0 -10px 0 0;
  padding: 10px;
  float: left;
  cursor: pointer;
  position: relative;
  z-index: 96;
}
.menu-toggle span {
  width: 100%;
  height: 4px;
  background-color: #0a0a0a;
  margin-top: 4px;
  display: block;
}
.menu-toggle span:first-child {
  margin-top: 0;
}
.menu-toggle span:nth-child(3) {
  margin-top: -4px;
}

.menu-expanded .menu-toggle span:nth-child(1),
.menu-expanded .menu-toggle span:nth-child(4) {
  opacity: 0;
}
.menu-expanded .menu-toggle span:nth-child(2) {
  background-color: #fc2d50;
  transform: rotate(-45deg);
}
.menu-expanded .menu-toggle span:nth-child(3) {
  background-color: #fc2d50;
  transform: rotate(45deg);
}

/*********************
NOTICES
*********************/
.notice {
  position: relative;
  background: rgba(176, 176, 176, 0.1);
  margin-bottom: 0.9875em;
  border-left: 4rem solid #3adb76;
  display: block;
}
.notice:before {
  width: 4em;
  height: 100%;
  color: #ffffff;
  content: "\f058";
  font-family: "FontAwesome";
  font-size: 1.4em;
  position: absolute;
  top: 50%;
  left: -4em;
  margin-top: -0.75em;
  display: inline-block;
  text-align: center;
}
.notice .message {
  padding: 0.9875em;
}
.notice.alert {
  border-left-color: #ec5840;
}
.notice.alert:before {
  content: "\f071";
}

/*********************
ARTICLE GRID
*********************/
#grid {
  margin: -5px;
  position: relative;
}
#grid .grid-item {
  width: 20%;
  height: 13.5em;
  padding: 5px;
  float: left;
}
#grid .grid-item.type-post .bg-fill {
  background-size: cover;
}
#grid .grid-item.type-chronicle .bg-fill {
  background-size: cover;
}
#grid .grid-item .grid-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
#grid .grid-item .grid-content {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}
#grid .grid-item .grid-content a {
  color: #ffffff;
}
#grid .grid-item .grid-content h6 {
  margin: 0;
}
#grid .grid-item .grid-content ul.list a {
  color: #0a0a0a;
}
#grid .grid-item .grid-content .excerpt {
  margin-bottom: 0.9875em;
}
#grid .grid-item .grid-item-meta {
  width: 100%;
  padding: 0.740625em 1.234375em;
  position: absolute;
  bottom: 0;
  left: 0;
}
#grid .grid-item .grid-item-meta .is_sponsered img {
  width: 5.9rem;
  margin-top: -5px;
}
#grid .grid-item .grid-item-meta .grid-item-meta-inner {
  border-top: 1px solid #ffffff;
  padding-top: 0.246875em;
}
#grid .grid-item {
  /* Grid articles */
}
#grid .grid-item.type-1 .grid-item-inner, #grid .grid-item.type-2 .grid-item-inner, #grid .grid-item.type-3 .grid-item-inner, #grid .grid-item.type-post .grid-item-inner, #grid .grid-item.type-chronicle .grid-item-inner {
  background-color: #f0f0f0;
  display: block;
}
#grid .grid-item.type-1 .grid-content, #grid .grid-item.type-2 .grid-content, #grid .grid-item.type-3 .grid-content, #grid .grid-item.type-post .grid-content, #grid .grid-item.type-chronicle .grid-content {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.9875em 1.234375em 2.46875em;
}
#grid .grid-item.type-1 .grid-content .title, #grid .grid-item.type-2 .grid-content .title, #grid .grid-item.type-3 .grid-content .title, #grid .grid-item.type-post .grid-content .title, #grid .grid-item.type-chronicle .grid-content .title {
  text-shadow: 1px 1px 0 rgba(10, 10, 10, 0.2);
  margin-bottom: 0.5rem;
}
#grid .grid-item.type-1 .grid-content h6, #grid .grid-item.type-2 .grid-content h6, #grid .grid-item.type-3 .grid-content h6, #grid .grid-item.type-post .grid-content h6, #grid .grid-item.type-chronicle .grid-content h6 {
  width: 100%;
}
#grid .grid-item.type-1.layout-bottom .grid-content, #grid .grid-item.type-2.layout-bottom .grid-content, #grid .grid-item.type-3.layout-bottom .grid-content, #grid .grid-item.type-post.layout-bottom .grid-content, #grid .grid-item.type-chronicle.layout-bottom .grid-content {
  height: auto;
}
#grid .grid-item {
  /* Grid quote */
}
#grid .grid-item.type-quote .grid-content {
  color: #ffffff;
  background-color: #0a0a0a;
  padding: 0.9875em 1.234375em;
}
#grid .grid-item.type-quote .grid-content .title {
  word-break: break-word;
}
#grid .grid-item {
  /* Grid most read */
}
#grid .grid-item.type-most-read .number {
  width: 0.4em;
  font-size: 2.6em;
  font-weight: 300;
  line-height: 1.2em;
  margin: 0 0.25em 0 -0.1em;
  text-align: center;
}
#grid .grid-item.type-number.number a {
  display: block;
  background-color: #f4f4f4;
}
#grid .grid-item.type-most-read h5.title, #grid .grid-item.type-recent-posts h5.title {
  margin-top: 0.246875em;
}
#grid .grid-item.type-most-read h6, #grid .grid-item.type-recent-posts h6 {
  max-width: 100%;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
#grid .grid-item.type-most-read h6:before, #grid .grid-item.type-recent-posts h6:before {
  content: "";
  width: 3em;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  position: absolute;
  right: 0;
}
#grid .grid-item.type-promo .grid-item-inner .overlay, #grid .grid-item.type-newsletter .grid-item-inner .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(10, 10, 10, 0.2);
}
#grid .grid-item.type-promo .grid-item-inner .grid-content, #grid .grid-item.type-newsletter .grid-item-inner .grid-content {
  display: table;
  padding: 0.9875em;
}
#grid .grid-item.type-promo .title {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(10, 10, 10, 0.75);
}
#grid .grid-item.type-newsletter .title {
  color: #0a0a0a;
  text-transform: none;
}
#grid .grid-item.type-newsletter .title .underline {
  text-transform: uppercase;
}
#grid .grid-item.type-newsletter .button {
  color: #ffffff;
  background-color: #46e04f;
  font-size: 1em;
  border: none;
  display: block;
  border-radius: 3px;
  margin: 1.975em 0;
  box-shadow: 0 2px 2px rgba(10, 10, 10, 0.2);
}
#grid .grid-item.sector-sak .grid-content {
  background-color: rgba(21.8, 123.4860465116, 255, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(83, 158, 255, 0.75)), to(rgba(21.8, 123.4860465116, 255, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(83, 158, 255, 0.75), rgba(21.8, 123.4860465116, 255, 0.75));
  background-image: -moz-linear-gradient(top, rgba(83, 158, 255, 0.75), rgba(21.8, 123.4860465116, 255, 0.75));
  background-image: -o-linear-gradient(top, rgba(83, 158, 255, 0.75), rgba(21.8, 123.4860465116, 255, 0.75));
  background-image: linear-gradient(to bottom, rgba(83, 158, 255, 0.75), rgba(21.8, 123.4860465116, 255, 0.75));
}
#grid .grid-item.sector-liv .grid-content {
  background-color: rgba(219.663255814, 86.9953488372, 14.136744186, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 120, 53, 0.75)), to(rgba(219.663255814, 86.9953488372, 14.136744186, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(242, 120, 53, 0.75), rgba(219.663255814, 86.9953488372, 14.136744186, 0.75));
  background-image: -moz-linear-gradient(top, rgba(242, 120, 53, 0.75), rgba(219.663255814, 86.9953488372, 14.136744186, 0.75));
  background-image: -o-linear-gradient(top, rgba(242, 120, 53, 0.75), rgba(219.663255814, 86.9953488372, 14.136744186, 0.75));
  background-image: linear-gradient(to bottom, rgba(242, 120, 53, 0.75), rgba(219.663255814, 86.9953488372, 14.136744186, 0.75));
}
#grid .grid-item.sector-allmant .grid-content {
  background-color: rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(252, 45, 80, 0.75)), to(rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(252, 45, 80, 0.75), rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75));
  background-image: -moz-linear-gradient(top, rgba(252, 45, 80, 0.75), rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75));
  background-image: -o-linear-gradient(top, rgba(252, 45, 80, 0.75), rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75));
  background-image: linear-gradient(to bottom, rgba(252, 45, 80, 0.75), rgba(232.4788732394, 3.3211267606, 42.0676056338, 0.75));
}
#grid .grid-item.sector-formedling .grid-content {
  background-color: rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(72, 209, 175, 0.75)), to(rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(72, 209, 175, 0.75), rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75));
  background-image: -moz-linear-gradient(top, rgba(72, 209, 175, 0.75), rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75));
  background-image: -o-linear-gradient(top, rgba(72, 209, 175, 0.75), rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75));
  background-image: linear-gradient(to bottom, rgba(72, 209, 175, 0.75), rgba(44.1519650655, 175.6480349345, 143.0139737991, 0.75));
}
#grid .grid-item.sector-pension .grid-content {
  background-color: rgba(134.3424, 94.1232, 229.6768, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(174, 147, 238, 0.75)), to(rgba(134.3424, 94.1232, 229.6768, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(174, 147, 238, 0.75), rgba(134.3424, 94.1232, 229.6768, 0.75));
  background-image: -moz-linear-gradient(top, rgba(174, 147, 238, 0.75), rgba(134.3424, 94.1232, 229.6768, 0.75));
  background-image: -o-linear-gradient(top, rgba(174, 147, 238, 0.75), rgba(134.3424, 94.1232, 229.6768, 0.75));
  background-image: linear-gradient(to bottom, rgba(174, 147, 238, 0.75), rgba(134.3424, 94.1232, 229.6768, 0.75));
}
#grid .grid-item.sector-annons .grid-content {
  background-color: rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(82, 41, 26, 0.75)), to(rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(82, 41, 26, 0.75), rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75));
  background-image: -moz-linear-gradient(top, rgba(82, 41, 26, 0.75), rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75));
  background-image: -o-linear-gradient(top, rgba(82, 41, 26, 0.75), rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75));
  background-image: linear-gradient(to bottom, rgba(82, 41, 26, 0.75), rgba(35.5333333333, 17.7666666667, 11.2666666667, 0.75));
}
#grid .grid-item.sector-chronicle .grid-content {
  background-color: #322d2b;
}
#grid .grid-item .corner-text {
  float: right;
  color: white;
  background-color: #322d2b;
}
#grid .grid-item .corner-text h6 {
  font-size: 0.8rem;
  padding: 0.4rem 1.3rem;
  margin: unset;
}
#grid .col-2,
#grid .col-3,
#grid .col-5 {
  width: 100%;
}
#grid .row-2 {
  height: 27em;
}
#grid .grid-item.layout-full .grid-content {
  height: 100%;
}

.load-more-articles,
.filter-subject-button {
  margin-top: 1.975em;
}

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  background-color: #ffffff;
  padding: 0 1.975em;
  min-height: 400px;
}
#content #inner-content {
  padding: 0.9875em 0 1.975em;
}
#content .page-meta {
  color: #9a9a9a;
  margin-bottom: 1.48125em;
}
#content .page-meta h5 {
  margin: 0;
  display: inline-block;
}
#content .page-meta h5:first-child {
  margin-right: 0.9875em;
}
#content .page-meta h5.search-toggle {
  color: #0a0a0a;
  cursor: pointer;
}
#content .page-meta h5.search-toggle i {
  margin-left: 0.246875em;
  position: relative;
  top: -0.1em;
}

.entry-content {
  margin-bottom: 1.975em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video,
.entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

.documents .document-item {
  padding-top: 0.49375em;
  padding-bottom: 0.49375em;
}
.documents .document-item .document-item-inner {
  position: relative;
  border-top: 1px solid #e0e0e0;
  padding-top: 0.9875em;
}
.documents .document-item .document-item-inner .document-image {
  width: 3em;
  height: 4.2em;
  background-color: rgba(176, 176, 176, 0.15);
  margin: 0 0.9875em 0.9875em 0;
  float: left;
}
.documents .document-item .document-item-inner .title {
  margin: 0;
}
.documents .document-item .document-item-inner .description {
  font-size: 12px;
  clear: both;
}

.document-category {
  margin-bottom: 1.975em;
}

ul.list {
  list-style: none;
  margin: 0;
}
ul.list li {
  padding: 0.49375em;
  padding-top: 2px;
  border-bottom: 1px solid #b0b0b0;
}
ul.list li.no-border {
  border-bottom: none;
  padding-bottom: 0;
}
ul.list li:first-child {
  border-top: 1px solid #b0b0b0;
}
ul.list li:first-child.no-border {
  padding-top: 20px;
}
ul.list li:last-child.no-border {
  padding-bottom: 20px;
}
ul.list a {
  color: #0a0a0a;
}

ul.filter-sector {
  list-style: none;
  margin: 1.975em 0 0;
}
ul.filter-sector li {
  margin-bottom: -1px;
}
ul.filter-sector a {
  margin-bottom: -1px;
}

.single-post .category-annons {
  background-color: rgba(255, 236, 179, 0.2);
}
.single-post .category-annons .article-meta {
  background-color: #ffecb3;
  position: absolute;
  padding: 15px 15px;
  left: 0;
  width: 100%;
  margin: 0 !important;
  border-top: 20px #FFF solid;
}
.single-post .category-annons .article-meta span.float-left > img {
  width: 5.9rem;
  margin-top: -5px;
}
.single-post .category-annons .entry-content {
  background: none;
}
.single-post .category-annons .entry-title {
  padding-top: 100px;
}

.single-post .vinjett,
.single-kronika .vinjett {
  background-color: #000;
  color: #fff;
  padding: 0.1875rem 0.625rem 0.1875rem 0.625rem;
  margin: 0.3125rem 0.3125rem 0 0;
  display: inline-block;
  text-align: center;
  font-weight: bold;
}
.single-post .article-header,
.single-kronika .article-header {
  background-color: #ffffff;
}
.single-post .featured-image,
.single-kronika .featured-image {
  width: 100%;
  position: relative;
  display: inline-block;
}
.single-post .featured-image img,
.single-kronika .featured-image img {
  width: 100%;
  height: auto;
}
.single-post .featured-image .image-caption,
.single-kronika .featured-image .image-caption {
  width: 99.8%;
  color: #ffffff;
  background-color: rgba(10, 10, 10, 0.7);
  font-style: italic;
  font-size: 12px;
  position: static;
  bottom: 0;
  left: 0;
  padding: 1.5rem 0.9875em;
}
.single-post .featured-image .image-caption p,
.single-kronika .featured-image .image-caption p {
  margin-bottom: 0;
}
.single-post .featured-image .byline,
.single-kronika .featured-image .byline {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 0.5rem;
  transform: rotate(90deg);
  transform-origin: right bottom 0;
  text-align: right;
  font-size: 0.7rem;
}
.single-post .article-meta,
.single-kronika .article-meta {
  margin: 0.9875em 0;
}
.single-post .entry-content,
.single-kronika .entry-content {
  background-color: #ffffff;
}
.single-post .layout-center .entry-content,
.single-kronika .layout-center .entry-content {
  border: 1px solid #b0b0b0;
  border-top: none;
  padding: 0 0.9875em 1.975em;
}
.single-post .publisher-info,
.single-kronika .publisher-info {
  border-left: 4px solid #fc2d50;
  display: inline-block;
  margin: 0.9875em 0;
  padding-left: 0.9875em;
}
.single-post .related-articles ul.list .published,
.single-kronika .related-articles ul.list .published {
  color: #9a9a9a;
}

.share a {
  width: 1.8em;
  height: 1.8em;
  color: #ffffff;
  background-color: #b0b0b0;
  text-align: center;
  padding: 0.42em;
  border-radius: 50%;
  display: inline-block;
}
.share a:before {
  font-size: 0.88em;
}

form#user-registration {
  margin-top: 1.975em;
}
form#user-registration input.organisation {
  display: none;
}
form#user-registration input[value=organisation]:checked > * {
  font-weight: bold;
}
form#user-registration input[value=organisation]:checked ~ input.organisation {
  display: block;
}

[data-whatinput=mouse] .post-password-form input[type=submit] {
  outline: 0;
}
.post-password-form input[type=submit] {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 0.9875em 0;
  font-size: 0.9rem;
  background-color: #b0b0b0;
  color: #ffffff;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: rgb(149.6, 149.6, 149.6);
  color: #ffffff;
}

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem;
}

/*********************
SEARCH FORM
*********************/
form.search-form {
  margin-top: 0.9875em;
  position: relative;
}
form.search-form .screen-reader-text,
form.search-form input.search-submit {
  display: none;
}
form.search-form .close {
  position: absolute;
  top: 0;
  right: 1.975em;
}
form.search-form .close:after {
  color: #0a0a0a;
  font-weight: bold;
  line-height: 2em;
  font-size: 1.7rem;
  content: "✕";
  cursor: pointer;
}
form.search-form input.search-field {
  width: 100%;
  margin: 0;
  text-transform: uppercase;
}

/*********************
SEARCH FORM YEAR END REPORTS
*********************/
.search-form-wrap {
  display: block;
  margin: 2rem auto 0 auto;
}
.search-form-wrap [type=submit] {
  height: 3.46rem;
  padding: 0;
}

/*********************
REVEAL MODAL
*********************/
.reveal-overlay {
  background-color: transparent;
  transition-duration: 0.15s;
}

.is-reveal-open .reveal-overlay {
  background-color: rgba(255, 255, 255, 0.75);
}

.black-theme.is-reveal-open .reveal-overlay {
  background-color: rgba(10, 10, 10, 0.75);
}

.reveal {
  padding: 1.975em;
  border: none;
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.5);
  position: relative;
  margin-top: 1em;
}

.is-reveal-open .reveal {
  margin-top: 0;
}

#login-modal .modal-title {
  margin-bottom: 0.49375em;
}
#login-modal .button-primary {
  margin: 0;
}
[data-whatinput=mouse] #login-modal .button-primary {
  outline: 0;
}
#login-modal .button-primary {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 0.9875em 0;
  font-size: 0.9rem;
  background-color: #b0b0b0;
  color: #ffffff;
}
#login-modal .button-primary:hover, #login-modal .button-primary:focus {
  background-color: rgb(149.6, 149.6, 149.6);
  color: #ffffff;
}

/*********************
ADS TOP
*********************/
.ads-top .desktop,
.ads-top .mobile {
  width: 100%;
}
.ads-top .desktop {
  object-fit: cover;
}
.ads-top .mobile {
  object-fit: cover;
}
.ads-top img {
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 3px solid lightgray;
}
.ads-top .ads-header {
  padding: 2px 0;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

/*********************
SIDEBARS & ASIDES
*********************/
.sub-border {
  position: relative;
}
.sub-border:before {
  content: "";
  position: absolute;
  top: 114%;
  width: 100%;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
}

.sidebar ul.list li:first-child {
  border-top: none;
}
.sidebar h3,
.sidebar .h3, .sidebar h5,
.sidebar .h5, .sidebar h6,
.sidebar .h6 {
  font-size: 1rem;
}
.sidebar h6 {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.sidebar .latest_jobs {
  background-color: #f0f0f0;
  padding: 0.9875em 1.234375em 2.46875em;
  margin: 2rem 0;
}
.sidebar .latest_jobs .job_item {
  display: flex;
}
.sidebar .latest_jobs .job_item .company_image_wrap {
  display: flex;
  margin-right: 1rem;
}
.sidebar .latest_jobs .job_item .company_image_wrap img {
  max-width: 3rem;
  margin: auto;
}
.sidebar .latest_jobs .job_item .fa-globe {
  font-size: 0.8rem;
}
.sidebar .latest_jobs .button {
  margin-top: 2rem;
}
.sidebar .job_filters .job_types {
  display: none;
}
.sidebar .dot-separator:before {
  content: "•";
  display: inline-block;
  margin: 0 0.25rem;
  color: #4a4a4a;
}
.sidebar .company_info {
  font-size: 12px;
}
.sidebar .job_listings .job_listing a {
  display: flex !important;
}
.widget ul {
  margin: 0;
}
.widget ul li {
  list-style: none;
}
/*********************
FOOTER STYLES
*********************/
.footer {
  color: #ffffff;
  background-color: #0a0a0a;
  padding: 1.975em;
  clear: both;
}
.footer .logo {
  width: 8em;
  height: 6.2em;
  margin-right: 0.9875em;
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo-inverted.png");
  display: block;
}
.footer .contact-info {
  font-size: 12px;
  margin-top: 0.9875em;
}
.footer .contact-info div {
  margin: 0.49375em 0;
}
.footer .app-links {
  font-size: 12px;
  margin-top: 0.9875em;
}
.footer .app-links a {
  width: 12em;
  height: 5em;
  display: inline-block;
}
.footer .app-links a.app-store {
  background-image: url("/wp-content/themes/sakochliv/assets/images/app-store.png");
}
.footer .app-links a.google-play {
  background-image: url("/wp-content/themes/sakochliv/assets/images/google-play.png");
  margin-left: 0.9875em;
}

.inlinesvg .footer .logo {
  background-image: url("/wp-content/themes/sakochliv/assets/images/sakochliv-logo-inverted.svg");
}

/*********************
FOUNDATION STYLES
*********************/
/*********************
RESPONSIVE
*********************/
@media screen {
  #grid .grid-item {
    /* border: 1px solid red;  DEBUG */
  }
  #grid .number .grid-content-inner {
    display: flex;
    flex-direction: row;
    gap: 5px;
    height: 100%;
    background-color: aliceblue;
    border: 1px solid #ececec;
  }
  #grid .number .grid-content-inner .len-1 {
    font-size: 100px !important;
  }
  #grid .number .grid-content-inner .len-2 {
    font-size: 73px !important;
  }
  #grid .number .grid-content-inner .len-3 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-4 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-5 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-6 {
    font-size: 45px !important;
  }
  #grid .number .grid-content-inner .len-7 {
    font-size: 40px !important;
  }
  #grid .number .grid-content-inner .len-8 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .len-9,
  #grid .number .grid-content-inner .len-10,
  #grid .number .grid-content-inner .len-11,
  #grid .number .grid-content-inner .len-12,
  #grid .number .grid-content-inner .len-13,
  #grid .number .grid-content-inner .len-14,
  #grid .number .grid-content-inner .len-15,
  #grid .number .grid-content-inner .len-16,
  #grid .number .grid-content-inner .len-17,
  #grid .number .grid-content-inner .len-18,
  #grid .number .grid-content-inner .len-19,
  #grid .number .grid-content-inner .len-20 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    color: #0a0a0a;
    font-size: 16px;
    font-family: "Oswald";
    display: block;
    width: 50%;
    margin: 0;
    padding: 0;
    padding-left: 5px;
  }
  #grid .number .grid-content-inner .left {
    font-size: 76px;
    font-weight: 700;
    text-align: center;
  }
  #grid .number .grid-content-inner .right {
    padding-right: 5px;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #grid .col-5-full {
    width: 100%;
  }
  #grid .row-1-item {
    height: 8em;
  }
  #grid .row-2-item {
    height: 12em;
  }
  #grid .row-3-item {
    height: 16em;
  }
  #grid .row-4-item {
    height: 20em;
  }
  #grid .row-5-item {
    height: 20em;
  }
}
@media screen and (min-width: 40em) {
  body {
    font-size: 14px;
  }
  #grid .grid-item {
    /* border: 1px solid blue; DEBUG */
    height: 12.5em;
  }
  #grid .number .grid-content-inner {
    display: flex;
    flex-direction: row;
    gap: 5px;
    height: 100%;
  }
  #grid .number .grid-content-inner .len-1 {
    font-size: 100px !important;
  }
  #grid .number .grid-content-inner .len-2 {
    font-size: 76px !important;
  }
  #grid .number .grid-content-inner .len-3 {
    font-size: 65px !important;
  }
  #grid .number .grid-content-inner .len-4 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-5 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-6 {
    font-size: 45px !important;
  }
  #grid .number .grid-content-inner .len-7 {
    font-size: 40px !important;
  }
  #grid .number .grid-content-inner .len-8 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .len-9,
  #grid .number .grid-content-inner .len-10,
  #grid .number .grid-content-inner .len-11,
  #grid .number .grid-content-inner .len-12,
  #grid .number .grid-content-inner .len-13,
  #grid .number .grid-content-inner .len-14,
  #grid .number .grid-content-inner .len-15,
  #grid .number .grid-content-inner .len-16,
  #grid .number .grid-content-inner .len-17,
  #grid .number .grid-content-inner .len-18,
  #grid .number .grid-content-inner .len-19,
  #grid .number .grid-content-inner .len-20 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    color: #0a0a0a;
    font-size: 16px;
    font-family: "Oswald";
    display: block;
    width: 50%;
    margin: 0;
    padding: 0;
    padding-left: 5px;
  }
  #grid .number .grid-content-inner .left {
    font-size: 76px;
    font-weight: 700;
    text-align: center;
  }
  #grid .number .grid-content-inner .right {
    padding-right: 5px;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #grid .number .grid-content-inner .text.smaller {
    /*color: red; debug */
    font-size: 14px;
  }
  #grid .one-third-h {
    height: 6em;
  }
  #grid .two-third-h {
    height: 18em;
  }
  #grid .col-2 {
    width: 40%;
  }
  #grid .col-3 {
    width: 60%;
  }
  #grid .col-5 {
    width: 100%;
  }
  #grid .row-2 {
    height: 25em;
  }
  #grid .col-5-full {
    width: 100%;
  }
  #grid .row-2 {
    height: 24em;
  }
  #grid .row-1-item {
    height: 8em;
  }
  #grid .row-2-item {
    height: 12em;
  }
  #grid .row-3-item {
    height: 16em;
  }
  #grid .row-4-item {
    height: 20em;
  }
  #grid .row-5-item {
    height: 20em;
  }
  .single-nummer .layout-left .featured-image,
  .single-nummer .layout-right .featured-image,
  .single-post .layout-left .featured-image,
  .single-post .layout-right .featured-image,
  .single-kronika .layout-left .featured-image,
  .single-kronika .layout-right .featured-image {
    width: 50%;
  }
  .footer .contact-info {
    margin-top: 0;
  }
  .footer .app-links {
    margin-top: 0;
    float: right;
  }
}
@media screen and (min-width: 64em) {
  body {
    font-size: 16px;
  }
  ul#menu-main-menu {
    width: auto;
    background-color: transparent;
    position: relative;
    margin-top: 1.3em;
    padding: 0;
    display: block !important;
    box-shadow: none;
  }
  ul#menu-main-menu li {
    display: block;
    float: left;
  }
  ul#menu-main-menu > li a,
  ul#menu-main-menu > li:first-child a {
    margin: 0 0 0 1.728125em;
  }
  ul#menu-main-menu > li:first-child a {
    margin-left: 0;
  }
  ul#menu-main-menu li a i {
    margin-top: -0.25em;
  }
  ul#menu-main-menu li.is-dropdown-submenu-parent > a {
    padding-right: 1em !important;
  }
  ul#menu-main-menu ul.is-dropdown-submenu > li {
    display: block;
  }
  ul#menu-main-menu ul {
    min-width: 10em;
    max-height: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: none;
    margin: 0;
    padding: 0 1.48125em;
    left: auto;
    right: -0.49375em;
    text-align: left;
    overflow: hidden;
  }
  ul#menu-main-menu ul li a {
    font-size: 1em;
    margin: 0.9875em;
    padding: 0;
    display: block;
  }
  ul#menu-main-menu ul.submenu.js-dropdown-active {
    padding: 0.49375em 0;
    max-height: 40em;
    left: 1.975em;
  }
  #grid {
    margin: -5px;
    position: relative;
  }
  #grid .grid-item {
    /* border: 1px solid violet; DEBUG */
    width: 20%;
    height: 12em;
    padding: 5px;
    float: left;
  }
  #grid .number .grid-content-inner {
    display: flex;
    flex-direction: row;
    gap: 5px;
    height: 100%;
  }
  #grid .number .grid-content-inner .len-1 {
    font-size: 100px !important;
  }
  #grid .number .grid-content-inner .len-2 {
    font-size: 76px !important;
  }
  #grid .number .grid-content-inner .len-3 {
    font-size: 65px !important;
  }
  #grid .number .grid-content-inner .len-4 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-5 {
    font-size: 55px !important;
  }
  #grid .number .grid-content-inner .len-6 {
    font-size: 45px !important;
  }
  #grid .number .grid-content-inner .len-7 {
    font-size: 40px !important;
  }
  #grid .number .grid-content-inner .len-8 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .len-9,
  #grid .number .grid-content-inner .len-10,
  #grid .number .grid-content-inner .len-11,
  #grid .number .grid-content-inner .len-12,
  #grid .number .grid-content-inner .len-13,
  #grid .number .grid-content-inner .len-14,
  #grid .number .grid-content-inner .len-15,
  #grid .number .grid-content-inner .len-16,
  #grid .number .grid-content-inner .len-17,
  #grid .number .grid-content-inner .len-18,
  #grid .number .grid-content-inner .len-19,
  #grid .number .grid-content-inner .len-20 {
    font-size: 30px !important;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    color: #0a0a0a;
    font-size: 16px;
    font-family: "Oswald";
    display: block;
    width: 50%;
    margin: 0;
    padding: 0;
    padding-left: 5px;
  }
  #grid .number .grid-content-inner .left {
    font-size: 76px;
    font-weight: 700;
    text-align: center;
  }
  #grid .number .grid-content-inner .right {
    padding-right: 5px;
  }
  #grid .number .grid-content-inner .left,
  #grid .number .grid-content-inner .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #grid .number .grid-content-inner .text.smaller {
    /*color: red; debug */
    font-size: 14px;
  }
  #grid .one-third-h {
    height: 6em;
    /* border: 1px solid green; DEBUG */
  }
  #grid .two-third-h {
    height: 18em;
    /* border: 1px solid black; DEBUG */
  }
  #grid .col-2 {
    width: 20%;
  }
  #grid .col-3 {
    width: 30%;
  }
  #grid .col-5 {
    width: 50%;
  }
  #grid .col-5-full {
    width: 100%;
  }
  #grid .row-2 {
    height: 24em;
  }
  #grid .row-1-item {
    height: 8em;
  }
  #grid .row-2-item {
    height: 12em;
  }
  #grid .row-3-item {
    height: 16em;
  }
  #grid .row-4-item {
    height: 20em;
  }
  #grid .row-5-item {
    height: 20em;
  }
}
/*********************
COOKIE DISCLAIMER
*********************/
.cookie-disclaimer-wrap {
  display: block;
  position: relative;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.cookie-disclaimer-wrap:before {
  content: "\f05a";
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 10px;
}
.cookie-disclaimer-wrap .close {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.4em;
}
.cookie-disclaimer-wrap .close:hover {
  cursor: pointer;
}

/*********************
CAMPAIGN POPUP
*********************/
#campaign-modal {
  padding-top: 40px;
}
#campaign-modal .close-button {
  top: 40px;
}
@media screen and (max-width: 39.9375em) {
  #campaign-modal {
    width: 80%;
    top: 50px;
    left: 10%;
    right: auto;
    bottom: auto;
  }
}

.social-links {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}
.social-links .facebook-button {
  background: #3b5998;
  flex: auto;
  text-align: center;
  padding: 20px;
  line-height: 1em;
  color: #fff;
}
.social-links .facebook-button:before {
  content: "\f09a";
  font-family: "FontAwesome";
}
.social-links .twitter-button {
  background: #55acee;
  flex: auto;
  text-align: center;
  padding: 20px;
  line-height: 1em;
  color: #fff;
}
.social-links .twitter-button:before {
  content: "\f099";
  font-family: "FontAwesome";
}
.social-links .instagram-button {
  background: #e95950;
  flex: auto;
  text-align: center;
  padding: 20px;
  line-height: 1em;
  color: #fff;
}
.social-links .instagram-button:before {
  content: "\f16d";
  font-family: "FontAwesome";
}
.social-links .linkedin-button {
  background: #007bb5;
  flex: auto;
  text-align: center;
  padding: 20px;
  line-height: 1em;
  color: #fff;
}
.social-links .linkedin-button:before {
  content: "\f0e1";
  font-family: "FontAwesome";
}

.error_input {
  border-color: #fc2d50 !important;
}

#error_area p {
  font-size: 0.7rem;
}

#sub_button {
  width: 100%;
}

.success_message {
  font-size: 0.7rem;
}

.article-table-header {
  float: left;
  clear: both;
}

/*******************
ANIMATIONZ
*****************/
.sak-loader {
  border: 16px solid green;
  border-radius: 50%;
  border-top: 16px solid white;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 1.5s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.demo_ticket {
  padding-top: 1rem;
}

.demo_ticket:nth-child(even) {
  background-color: #eee;
}

.deactivate-btn {
  background-color: #f93e3e;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  float: right;
  color: white;
}

/*******************
FOOTER MENU
*****************/
.footer_menu {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}
.footer_menu a {
  color: white;
  margin: 0.19375em 0;
}

footer a {
  color: white;
}

/*******************
PREMIUM PAGE
*****************/
.pictogram_wrappers h4 {
  margin-bottom: 0;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.7rem;
}
.pictogram_wrappers img {
  clip-path: circle(46% at center);
}

.signup_form_wrapper {
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}
.signup_form_wrapper .signup_form_top_section {
  padding: 1.3rem 0;
  height: 8em;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
  color: white;
}
.signup_form_wrapper .signup_form_top_section_basic {
  padding: 2.7rem 0;
  height: 8em;
  border-radius: 3px 3px 0 0;
  color: black;
  background-color: #eeeeee;
  background: linear-gradient(135deg, rgba(231, 231, 231, 0.94) 0%, rgba(191, 186, 186, 0.3) 48.22%, rgba(226, 226, 226, 0.29) 100%);
}
.signup_form_wrapper .premium_arguments {
  padding: 3em 3em;
  padding-bottom: 0;
}
.signup_form_wrapper .signup_form_button_alt {
  padding: 0.8rem 0;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 3px;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
  color: white;
  cursor: pointer;
}
.signup_form_wrapper .signup_form_button_alt h5 {
  margin: 0;
}
.signup_form_wrapper .signup_form_button_basic {
  max-width: 300px;
  padding: 0.8rem 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #9a9a9a;
  border-radius: 3px;
  cursor: pointer;
}
.signup_form_wrapper .signup_form_button_basic h5 {
  margin: 0;
}
.signup_form_wrapper .premium-footer {
  padding-bottom: 1rem;
  min-height: 3rem;
}
.signup_form_wrapper #user-registration-premium {
  padding: 3rem 1.4rem;
}

#premium_read_more_button {
  cursor: pointer;
}

.argument_wrapper {
  display: flex;
}
.argument_wrapper i {
  line-height: 1.3em;
  margin-right: 1rem;
  font-size: 1.4em;
}
.argument_wrapper p {
  font-size: 1.1em;
}

.grayed_out {
  color: lightgray;
}

.forms_wrapper {
  display: flex;
  justify-content: space-between;
}
.forms_wrapper .signup_form_wrapper {
  display: inline-block;
  width: 48%;
}

.inner_signup_form_wrapper_back.user-registration-wrapper-basic {
  padding: 2rem;
}

.signup_form_button {
  padding: 0.8rem 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 3px;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
  color: white;
  cursor: pointer;
  max-width: 300px;
  margin-right: auto;
}
.signup_form_button h5 {
  margin: 0;
}

.signup_form_button_new {
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 3px;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
  color: white;
  cursor: pointer;
  /* max-width: 300px; */
  /* margin-right: auto; */
  display: inline-block;
}
.signup_form_button_new h5 {
  margin: 0;
}
.signup_form_button_new a {
  text-decoration: none;
  color: white;
}

/*******************
HELPERS
*****************/
.m-top-medium {
  margin-top: 2rem;
}

.m-top-down-small {
  margin-top: 3rem;
}

.m-down-small {
  margin-bottom: 3rem;
}

article a {
  color: black;
  text-decoration: underline;
  font-weight: 600;
}

article p a {
  color: #0000ee;
}

header a {
  text-decoration: none;
}

footer a {
  text-decoration: none;
}

article.post {
  margin-bottom: 2rem;
}

#hidden_copy_text {
  max-width: 55rem;
}

@media only screen and (max-width: 922px) {
  #premium_wrapper {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .custom-grid {
    width: 135%;
  }
}
#consent-box-basic {
  margin-bottom: 0 !important;
}

#card_logos {
  max-width: 7rem;
  height: auto;
  image-rendering: auto;
}

.tabs__content-wrap .docu {
  cursor: pointer;
}

.button-wrapper {
  display: flex;
}

.chronicle_author_wrapper {
  display: flex;
  margin-bottom: 3rem;
}
.chronicle_author_wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.chronicle_author_wrapper p {
  border-left: 4px solid gray;
  margin-left: 1rem;
  padding-left: 1rem;
  margin-bottom: 0;
  width: 90%;
}

.front-page-chronicle {
  padding: 0 1.975em;
}
.front-page-chronicle .chronicle_author_wrapper {
  margin-bottom: 1rem;
}
.front-page-chronicle .chronicle_author_wrapper img {
  margin-left: 0.6rem;
}
.front-page-chronicle .chronicle_author_wrapper p {
  font-size: 1.1rem;
  margin-top: auto;
  margin-bottom: auto;
  border: none;
  color: black;
}

.single-kronika .single-title {
  font-weight: 500;
}
.single-kronika .chronicle_author_wrapper p {
  font-style: italic;
}

.bg-gray {
  background-color: gray;
  color: white;
}

.flip {
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  vertical-align: top;
  margin-left: 7px;
}

.flip-180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.type-promo > .grid-item-inner {
  height: 89% !important;
}

.relative {
  position: relative;
}

.sign_in_prompt {
  padding: 3rem 13%;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.prompt_wrapper {
  width: 100%;
  position: inherit;
  width: 100%;
  z-index: 1000;
  bottom: 0;
  padding: 0 5%;
}

.locked_overlay {
  width: 100%;
  height: 100%;
  /* background-color: white; */
  position: absolute;
  z-index: 999;
  background: linear-gradient(to bottom, rgba(2, 0, 36, 0) 0%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 100%);
}

p.disclaimer {
  line-height: 1.3;
  font-size: 0.8rem;
}

.d-flex {
  display: flex;
}

#sakochliv_desktop-panorama > div {
  display: flex;
}
#sakochliv_desktop-panorama > div iframe {
  margin-inline: auto;
}

#sakochliv_mobile-mobil > div {
  display: flex;
}
#sakochliv_mobile-mobil > div iframe {
  margin-inline: auto;
}

.icons_wrap {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.icons_wrap > i {
  margin-right: 0.2rem;
}
.icons_wrap img {
  height: 1.5rem;
  margin-left: auto;
  max-width: 3rem;
}

.company_content_wrap {
  display: flex;
  width: 100%;
}

/*********************
LIST & SEARCH STYLES
*********************/
.badge-premium,
.badge-premium-search {
  background-color: black;
  color: white;
  position: absolute;
  left: 0%;
  top: -27px;
  padding: 0px 0.5rem 2px 0.7rem;
  border-top-right-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Oswald";
  border: 1px solid #484848;
  border-left: none;
  border-bottom: none;
}
.badge-premium abbr,
.badge-premium-search abbr {
  border-bottom: none !important;
  text-decoration: none;
  color: white;
  cursor: default;
}

.badge-premium-search {
  position: inherit;
  border-radius: 4px;
}

.search-results .search-result .result-category.no-category {
  padding: 0;
}
.search-results .no-break {
  display: none;
}

/*********************
Plugins (Fixes)
*********************/
.post-views-count {
  display: none;
}

/*********************
ICON FONT
*********************/
@font-face {
  font-family: "sakochliv";
  src: url("/wp-content/themes/sakochliv/assets/fonts/sakochliv/sakochliv.eot?292h9e");
  src: url("/wp-content/themes/sakochliv/assets/fonts/sakochliv/sakochliv.eot?292h9e#iefix") format("embedded-opentype"), url("/wp-content/themes/sakochliv/assets/fonts/sakochliv/sakochliv.ttf?292h9e") format("truetype"), url("/wp-content/themes/sakochliv/assets/fonts/sakochliv/sakochliv.woff?292h9e") format("woff"), url("/wp-content/themes/sakochliv/assets/fonts/sakochliv/sakochliv.svg?292h9e#sakochliv") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "sakochliv" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-eye:before {
  content: "\e900";
}

.icon-general:before {
  content: "\e901";
}

.icon-graph:before {
  content: "\e902";
}

.icon-magnifier:before {
  content: "\e903";
}

.icon-section:before {
  content: "\e904";
}

.icon-portrait:before {
  content: "\e905";
}

/*********************
PAGE HEADER
*********************/
.page-header {
  padding: 0.5em 0;
}
@media screen and (min-width: 40em) {
  .page-header {
    padding: 1em 0 0.5em;
  }
}
@media screen and (min-width: 64em) {
  .page-header {
    padding: 2em 0 0.5em;
  }
}

.page-title {
  font-size: 2.85em;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
@media screen and (min-width: 40em) {
  .page-title {
    font-size: 3.25em;
  }
}
@media screen and (min-width: 64em) {
  .page-title {
    font-size: 3.375em;
  }
}

/*********************
CATEGORY SECTION
*********************/
.cat-item {
  position: relative;
  background-color: #eeeeee;
  color: #ffffff;
  margin-bottom: 1em;
  text-align: center;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  max-height: 115px;
}
.cat-item:after {
  content: "";
  display: block;
  padding-bottom: 30%;
}
@media screen and (min-width: 40em) {
  .cat-item {
    max-height: 125px;
  }
  .cat-item:after {
    padding-bottom: 40%;
  }
}
.cat-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #2c2c2c;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 64em) {
  .cat-item {
    max-height: none;
  }
  .cat-item:hover {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.4);
  }
  .cat-item:hover:before {
    opacity: 0.4;
  }
  .cat-item:hover .cat-item__title {
    display: none;
  }
  .cat-item:hover .cat-item__desc {
    display: block;
  }
}

/*
.cat-item--rapporter {
  / * Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3181f1+0,8a67df+100 * /
  background: #3181f1; / * Old browsers * /
  background: -moz-linear-gradient(left, #3181f1 0%, #8a67df 100%); / * FF3.6-15 * /
  background: -webkit-linear-gradient(left, #3181f1 0%, #8a67df 100%); / * Chrome10-25,Safari5.1-6 * /
  background: linear-gradient(to right, #3181f1 0%, #8a67df 100%); / * W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ * /
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3181f1', endColorstr='#8a67df', GradientType=1); / * IE6-9 * /

  .cat-item__inner:before {
    content: $icon-magnifier;
    font-size: 17em;
    transform: translateY(-50%) translateX(-50%) rotate(-25deg);
    left: 53%;
    top: 90%;

    @include breakpoint(medium up) {
      font-size: 14em;
      top: 70%;
    }

    @include breakpoint(large up) {
      font-size: 15em;
      top: 94%;
    }

    @include breakpoint(xlarge up) {
      font-size: 17em;
      top: 94%;
    }
  }
}
*/
.cat-item--analyser, .archive-header--analyser {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8b69df+0,8b69df+0,ef3249+100 */
  background: #297df2; /* Old browsers */
  background: -moz-linear-gradient(left, #297df2 0%, #8c6ae0 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #297df2 0%, #8c6ae0 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #297df2 0%, #8c6ae0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#297df2", endColorstr="#8c6ae0", GradientType=1); /* IE6-9 */
}
.cat-item--analyser .cat-item__inner:before, .archive-header--analyser .cat-item__inner:before {
  content: "\e900";
}

.cat-item--portratt, .archive-header--portratt {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8b69df+0,ee2e45+0,de6529+100 */
  background: #8b69df; /* Old browsers */
  background: -moz-linear-gradient(left, #8b69df 0%, #ee2e45 0%, #de6529 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #8b69df 0%, #ee2e45 0%, #de6529 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #8b69df 0%, #ee2e45 0%, #de6529 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8b69df", endColorstr="#de6529", GradientType=1); /* IE6-9 */
}
.cat-item--portratt .cat-item__inner:before, .archive-header--portratt .cat-item__inner:before {
  content: "\e905";
  font-size: 11em;
  top: 57%;
}

.cat-item--lagar-och-regler, .archive-header--lagar-och-regler {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#58a88e+0,417eeb+100 */
  background: #8b69df; /* Old browsers */
  background: -moz-linear-gradient(left, #8b69df 0%, #8b69df 0%, #ef3249 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #8b69df 0%, #8b69df 0%, #ef3249 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #8b69df 0%, #8b69df 0%, #ef3249 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8b69df", endColorstr="#ef3249", GradientType=1); /* IE6-9 */
}
.cat-item--lagar-och-regler .cat-item__inner:before, .archive-header--lagar-och-regler .cat-item__inner:before {
  content: "\e904";
}

.cat-item--rapporter, .archive-header--rapporter {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#297df2+0,8c6ae0+100 */
  background: #297df2; /* Old browsers */
  background: -moz-linear-gradient(left, #297df2 0%, #8c6ae0 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #297df2 0%, #8c6ae0 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #297df2 0%, #8c6ae0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#297df2", endColorstr="#8c6ae0", GradientType=1); /* IE6-9 */
}
.cat-item--rapporter .cat-item__inner:before, .archive-header--rapporter .cat-item__inner:before {
  content: "\e902";
}

.cat-item--allmant, .archive-header--allmant {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8a67df+0,ec2f49+100 */
  background: #8a67df; /* Old browsers */
  background: -moz-linear-gradient(left, #8a67df 0%, #ec2f49 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #8a67df 0%, #ec2f49 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #8a67df 0%, #ec2f49 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8a67df", endColorstr="#ec2f49", GradientType=1); /* IE6-9 */
}
.cat-item--allmant .cat-item__inner:before, .archive-header--allmant .cat-item__inner:before {
  content: "\e901";
  font-size: 8.5em;
}

.archive-header--arsredovisningar,
.cat-item--arsredovisningar {
  background-image: url("/wp-content/themes/sakochliv/assets/images/premium/blocks/rapporter.jpg");
  background-position: center;
  background-size: cover;
}
.archive-header--arsredovisningar .cat-item__inner::before,
.cat-item--arsredovisningar .cat-item__inner::before {
  content: "";
}

.archive-header--arsredovisningar {
  background-image: url("/wp-content/themes/sakochliv/assets/images/premium/blocks/rapporter_long.jpg");
}
.archive-header--arsredovisningar:before {
  content: "" !important;
}

.archive-header--dokument,
.cat-item--dokument {
  background-image: url("/wp-content/themes/sakochliv/assets/images/premium/blocks/rattsfall.jpg");
  background-position: center;
  background-size: cover;
}

.archive-header--dokument {
  background-image: url("/wp-content/themes/sakochliv/assets/images/premium/blocks/rattsfall_long.jpg");
}
.archive-header--dokument:before {
  content: "" !important;
}

.cat-item__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 1em;
  z-index: 2;
}
.cat-item__inner:before {
  position: absolute;
  font-family: "sakochliv";
  color: #000000;
  z-index: -1;
  font-size: 10em;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  opacity: 0.3;
  transform: translateY(-50%);
}

.cat-item__title {
  text-align: center;
  font-weight: 500;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.17);
}

.cat-item__desc {
  display: none;
}

/*********************
TABS SECTION
*********************/
.tabs--premium {
  border: none;
  overflow: hidden;
  padding: 2em 0;
}
.tabs--premium .docu > * {
  color: black !important;
}

.tabs--chronicle {
  border: none;
  overflow: hidden;
  padding: 2em 0;
}
.tabs--chronicle .docu > * {
  color: black !important;
}

.tabs__nav,
.tabs__content-wrap {
  width: 100%;
}

.tabs__nav {
  position: relative;
  border-bottom: 1px solid #9a9a9a;
}

.tabs__slider, .tabs__slider_chronicle {
  position: absolute;
  bottom: -4px;
  height: 4px;
  width: 1px;
  left: -100%;
  background-color: #000000;
  transition: left 0.5s ease, width 0.35s ease;
}

.tabs__menu {
  list-style-type: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
@media screen and (min-width: 40em) {
  .tabs__menu {
    display: block;
  }
}

.tabs__menu-item {
  flex: 0 0 auto;
  min-width: initial;
  max-width: 100%;
}
.tabs__menu-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 40em) {
  .tabs__menu-item {
    display: inline-block;
    margin-right: 2rem;
  }
}

.tabs__trigger, .tabs__trigger_chronicle {
  color: #9a9a9a;
  font-size: 0.75rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  transition: color 0.35s ease;
}
.tabs__trigger.is-active, .tabs__trigger_chronicle.is-active {
  color: #2c2c2c;
}
@media screen and (min-width: 23.125em) {
  .tabs__trigger, .tabs__trigger_chronicle {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 40em) {
  .tabs__trigger, .tabs__trigger_chronicle {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 64em) {
  .tabs__trigger, .tabs__trigger_chronicle {
    font-size: 1.5rem;
  }
}

.tabs__content, .tabs__content_chronicle {
  display: none;
  padding: 2em 0;
}
.tabs__content.is-active, .tabs__content_chronicle.is-active {
  display: block;
}

/*********************
DOCUMENT POSTS
*********************/
.docu {
  padding: 1.25em 0 2.25em;
  border-bottom: 2px solid #cdcdcd;
}
.docu:after {
  content: "";
  display: block;
  clear: both;
}

.documents--list .docu {
  padding-bottom: 1.25em;
}
.documents--list .docu .docu__heading {
  width: 60%;
  display: inline-block;
}
.documents--list .docu .docu__date {
  display: block;
}
.documents--list .docu .docu__title {
  display: block;
  margin-bottom: 0;
}
.documents--list .docu .docu__read-more {
  width: 40%;
  margin-left: -6px;
  display: inline-block;
  text-align: right;
}
.documents--list .docu .docu__text {
  display: none;
}

.docu__date {
  color: #9a9a9a;
}

.docu__date-text {
  font-family: "Oswald";
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 0.3em;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 40em) {
  .docu__date-text {
    font-size: 0.9375rem;
  }
}

.docu__text {
  padding-bottom: 1.15em;
}

.docu__title {
  overflow: hidden;
}
@media screen and (min-width: 40em) {
  .docu__title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 64em) {
  .docu__title {
    font-size: 1.375rem;
  }
}

.docu__image {
  width: 70px;
  height: 100px;
  background-color: #ffffff;
  margin: 0 0.9875em 0.9875em 0;
  float: left;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.docu__read-more {
  color: #858585;
}

.docu__read-more-text {
  border-bottom: 1px solid;
  line-height: 1.07;
  display: inline-block;
}

.analys-load-more,
.docu-load-more {
  color: #0a0a0a;
  display: inline-block;
  margin: 5.5em auto 3em;
  font-size: 0.9375rem;
  padding: 0.65em 1.15em;
  border: 3px solid;
}
@media screen and (min-width: 40em) {
  .analys-load-more,
  .docu-load-more {
    font-size: 1.25rem;
  }
}

.chron-load-more {
  color: #0a0a0a;
  display: inline-block;
  margin: 5.5em auto 3em;
  font-size: 0.9375rem;
  padding: 0.65em 1.15em;
  border: 3px solid;
}
@media screen and (min-width: 40em) {
  .chron-load-more {
    font-size: 1.25rem;
  }
}

/*********************
ARCHIVE PAGE
*********************/
#content {
  overflow: hidden;
}

.archive-header {
  position: relative;
  background-color: #eeeeee;
  overflow: hidden;
  margin-top: 3em;
  color: #ffffff;
  z-index: 1;
  margin-left: -1.1rem;
  margin-right: -1.1rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 40em) {
  .archive-header {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
.archive-header:before {
  position: absolute;
  font-family: "sakochliv";
  color: #ffffff;
  z-index: -1;
  font-size: 11em;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  opacity: 0.3;
  text-align: center;
  transform: translateY(-50%);
}

.archive-header--analyser:before {
  content: "\e900";
}

.archive-header--rapporter:before {
  content: "\e903";
}

.archive-header--portratt:before {
  content: "\e905";
  top: 60%;
}

.archive-header--lagar-och-regler:before {
  content: "\e904";
}

.archive-header--rapporter:before {
  content: "\e902";
}

.archive-header--allmant:before {
  content: "\e901";
  font-size: 8em;
}

.archive-title {
  padding: 2.5rem 0 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

/*********************
NEW STYLING
*********************/
div .type-newsletter .grid-item-inner {
  background: #343434; /* For browsers that do not support gradients */
  background: linear-gradient(#494949, #202020); /* Standard syntax (must be last) */
}
div .type-newsletter .button {
  margin: 0.775em 0 !important;
}
div .type-newsletter h5 strong, div .type-newsletter h6, div .type-newsletter p, div .type-newsletter i {
  color: white;
}
div .type-newsletter h5 strong {
  font-size: 1.6rem;
  line-height: 1.3rem;
}
div .type-newsletter i {
  text-align: center;
}
div .type-newsletter p i {
  font-size: 3rem;
  margin: 0.7rem 0;
}
div .type-newsletter p {
  margin-bottom: 0;
}
div .type-newsletter .grid-content {
  height: 100%;
  display: flex !important;
  flex-direction: column;
}
div .type-newsletter p.terms {
  font-size: 0.6rem;
  text-align: center;
}
div .type-newsletter .input-wrapper {
  border: 1px solid white;
  border-radius: 3px;
}
div .type-newsletter .input-wrapper .input-label {
  padding-left: 0.5rem;
  font-size: 0.5rem;
  color: grey;
}
div .type-newsletter .input-wrapper input {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 0.8rem;
  padding-left: 6px;
  color: white;
}
div .type-newsletter .input-wrapper input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}
div .type-newsletter .input-wrapper .inner-input-wrapper {
  display: flex;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
div .type-newsletter .input-wrapper .inner-input-wrapper i {
  margin-top: 5px;
  font-size: 0.8rem;
}
div .type-newsletter .try-premium-button {
  margin-top: auto;
}
div .type-newsletter .terms {
  margin-bottom: 1rem;
}
div .type-newsletter .premium-wrapper {
  padding: 0.6rem;
}
div .type-newsletter .premium-wrapper a {
  margin-top: auto;
}
div .type-newsletter .premium-wrapper a .button {
  margin-top: 0 !important;
}
div .type-newsletter .premium-header {
  border-bottom: 1px solid grey;
  padding-bottom: 0.3rem;
}
div .type-newsletter .premium-header strong {
  font-size: 1.4rem;
}
div .type-newsletter #premium-item-wrap {
  max-height: 15rem;
  overflow-y: scroll;
  overflow-x: hidden;
}
div .type-newsletter a#try_premium_button {
  margin-bottom: -0.5rem;
}
div .type-newsletter .small-doc-row {
  margin-bottom: 0.1rem;
}
div .type-newsletter .small-doc-row .doc-img {
  text-align: center;
}
div .type-newsletter .small-doc-row .doc-img img {
  max-height: 42px;
}
div .type-newsletter .small-doc-row .doc-text {
  padding-left: 0 !important;
}
div .type-newsletter .small-doc-row .doc-text h6 {
  font-size: 0.9rem;
}
div .type-newsletter .small-doc-row .doc-text span {
  font-size: 0.6rem;
  color: white;
  font-family: "Oswald";
}

.green {
  background-color: #3ec75e !important;
}

.button.green {
  color: white;
  border: none;
  border-radius: 4px;
}
.button.green h5 {
  margin-bottom: 0;
}

.down-arrow {
  width: 45px;
  height: 45px;
  background-image: url(/wp-content/themes/sakochliv/assets/images/pil.svg);
  background-repeat: no-repeat;
  margin: auto;
}

.page-template-page-login .button {
  background-color: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
.page-template-page-login .button:hover {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
  color: #ffffff;
}

.fieldset-logged_in, .fieldset-job_type {
  display: none;
}

.fieldset-company_tagline {
  display: none;
}

.fieldset-company_video {
  display: none;
}

.fieldset-company_twitter {
  display: none;
}

.fieldset-login_required {
  display: none;
}

input.save_draft {
  display: none;
}

.latest_jobs {
  background-color: #f0f0f0;
  padding: 2rem 1rem;
}
.latest_jobs .job_item {
  min-height: 100px;
  display: flex;
}
.latest_jobs .job_item h5 {
  margin-bottom: 0;
}
.latest_jobs .job_item .company_image_wrap {
  display: flex;
  margin-right: 1rem;
}
.latest_jobs .job_item .company_image_wrap img {
  max-width: 5rem;
  margin: auto;
}
.latest_jobs .button {
  margin-top: 2rem;
}

.job_filters {
  background: #f5f5f5 !important;
}
.job_filters .job_types {
  display: none;
}

.dot-separator:before {
  content: "•";
  display: inline-block;
  margin: 0 0.25rem;
  color: #4a4a4a;
}

.company_info {
  font-size: 12px;
}

.job_listings {
  border: 1px solid #dfdfdf;
}
.job_listings .job_listing {
  min-height: 125px;
}
.job_listings .job_listing {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.job_listings .job_listing a {
  width: 100;
  display: flex !important;
  color: black;
}
.job_listings .job_listing a .company_logo {
  height: unset !important;
  width: 100px !important;
  position: relative !important;
  margin-top: auto !important;
  margin-bottom: auto !important;
  left: 0;
  margin-right: 2rem !important;
  visibility: visible !important;
}

.job_position_featured a {
  background-color: unset !important;
}
.job_position_featured a:hover {
  background-color: white !important;
}

.title_section {
  display: flex;
}
.title_section h1,
.title_section .h1 {
  font-size: 2.2rem;
}
.title_section img {
  max-height: 7rem;
  margin-right: 1rem;
  align-self: center;
}
.title_section .icons_wrap {
  display: flex;
}
.title_section .icons_wrap .deadline_wrapper {
  margin-left: 0.5rem;
}

.single_job_listing .job-listing-meta, .single_job_listing .company {
  display: none;
}

.company_content_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search_jobs {
  display: flex;
  border-bottom: 1px solid #dfdfdf !important;
}
.search_jobs .search_keywords input, .search_jobs .search_location input {
  margin-bottom: 0;
}
.search_jobs .search_location {
  width: 40%;
  padding-right: 1rem;
}
.search_jobs .search_submit {
  padding-top: 0 !important;
  width: 13%;
}
.search_jobs .search_submit input {
  border: 1px solid #9a9a9a !important;
  border-left: none !important;
  background: linear-gradient(270deg, #846AD8 0%, #427FE9 100%);
  color: white;
}

.page-template-page-job-listings aside {
  border-left: 1px solid #dfdfdf;
}

.job_listing-template-default aside {
  display: flex;
  flex-direction: column;
}
.job_listing-template-default aside .company-logo {
  margin: 2rem auto;
  max-width: 10rem;
}
.job_listing-template-default aside p, .job_listing-template-default aside a {
  margin-bottom: 4px;
  font-size: 14px;
}

.job-manager-form {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
.job-manager-form h2,
.job-manager-form .h2 {
  font-size: 1.8em;
}
.job-manager-form fieldset {
  border-bottom: none;
}
.job-manager-form fieldset label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.job-manager-form fieldset div.field {
  width: 100%;
}

.page-template-page-controlpanel h1,
.page-template-page-controlpanel .h1 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}
.page-template-page-controlpanel #submit-job-form {
  margin-top: 2rem;
}
.page-template-page-controlpanel .file_wrapper {
  display: inline;
  margin-left: 1rem;
}
.page-template-page-controlpanel .file_wrapper #chosen_file_name {
  font-weight: 600;
}
.page-template-page-controlpanel .fieldset-job_deadline label > small {
  display: none;
}
.page-template-page-controlpanel .fieldset-job_deadline small.description {
  display: none;
}

.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: none;
}
.woocommerce-checkout form .form-row label {
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.woocommerce-checkout .cart_item .product-name .variation, .woocommerce-checkout .cart_item .product-name .product-quantity {
  display: none;
}
.woocommerce-checkout .shop_table thead .product-total {
  text-align: right;
}
.woocommerce-checkout .shop_table tbody .product-total {
  text-align: right;
}
.woocommerce-checkout .shop_table tfoot td {
  text-align: right;
}

.job-wrapper {
  display: flex;
  /* flex-direction: column; */
  flex-direction: column-reverse;
}

@media screen and (min-width: 1024px) {
  .job-wrapper {
    display: inline-block;
  }
}
.woocommerce-order-received .woocommerce-order-details {
  display: none;
}

.job_listing_preview aside {
  border-left: 1px solid #dfdfdf;
}

.job_listing_preview aside {
  display: flex;
  flex-direction: column;
}
.job_listing_preview aside .company-logo {
  margin: 2rem auto;
  max-width: 10rem;
}
.job_listing_preview aside p, .job_listing_preview aside a {
  margin-bottom: 4px;
  font-size: 14px;
}

.sticky-footer-click-area {
  display: none;
  cursor: pointer;
  background-color: #55bddc;
  width: 33px;
  height: 20px;
  position: fixed;
  z-index: 99999;
  right: 20px;
  opacity: 0.5;
}
.sticky-footer {
  display: flex;
  opacity: 0;
  display: none;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 6.875rem;
  opacity: 1;
  transition: height 0.5s ease-in-out;
}
@media screen and (min-width: 650px) and (max-width: 1400px) {
  .sticky-footer {
    height: 8.125rem;
  }
}
@media screen and (min-width: 0px) and (max-width: 650px) {
  .sticky-footer {
    flex-direction: column;
    height: 15.125rem;
  }
}
.sticky-footer {
  position: fixed;
  bottom: 0;
  z-index: 9999;
}
.sticky-footer.toggle-collapse {
  height: 1rem;
}
.sticky-footer.toggle-collapse .circle,
.sticky-footer.toggle-collapse .text,
.sticky-footer.toggle-collapse .cta {
  opacity: 0;
}
.sticky-footer .collapse {
  position: absolute;
  z-index: 99999;
  cursor: pointer;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.9);
  top: -20px;
  right: 20px;
  width: 33px;
  height: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.sticky-footer .collapse i {
  font-size: 10px;
  margin-top: 5px;
  margin-left: 11px;
}
.sticky-footer .circle {
  position: absolute;
  width: 9rem;
  height: 9rem;
  padding: 20px;
  color: #FFF;
  border-radius: 50%;
  top: -4.5rem;
  left: 3.125rem;
  background: linear-gradient(270deg, #846ad8 0%, #427fe9 100%);
  text-align: center;
  display: block;
  opacity: 1;
  transition: opacity 1s;
}
.sticky-footer .circle h5 {
  font-size: 1rem;
  margin-top: 5px;
}
@media screen and (min-width: 0px) and (max-width: 1024px) {
  .sticky-footer .circle {
    width: 7rem;
    height: 7rem;
    top: -3.5rem;
    left: 1rem;
  }
  .sticky-footer .circle h5 {
    font-size: 13px;
    margin-top: -5px;
  }
}
@media screen and (min-width: 0px) and (max-width: 650px) {
  .sticky-footer .circle {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 0px) and (max-width: 420px) {
  .sticky-footer .circle {
    width: 6.5rem;
    height: 6.5rem;
  }
  .sticky-footer .circle h5 {
    font-size: 12px;
    margin-top: -3px;
  }
}
.sticky-footer .text {
  width: 80%;
  display: inline-block;
  padding-top: 1.875rem;
  color: #FFF;
  padding: 30px 150px 0px 250px;
  opacity: 1;
  transition: opacity 1s;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .sticky-footer .text {
    padding: 30px 30px 0px 155px;
    font-size: 12px;
  }
}
@media screen and (min-width: 0px) and (max-width: 650px) {
  .sticky-footer .text {
    width: 100%;
    padding: 20px 35px 0 35px;
  }
}
@media screen and (min-width: 0px) and (max-width: 420px) {
  .sticky-footer .text p {
    margin: 0rem 0 0.25rem 0;
  }
}
.sticky-footer .cta {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .sticky-footer .cta {
    width: 30%;
  }
}
@media screen and (min-width: 0px) and (max-width: 650px) {
  .sticky-footer .cta {
    width: 100%;
    padding: 20px 35px;
  }
}
.sticky-footer .cta .button {
  color: #ffffff;
  background-color: #57dd59;
  font-size: 1.2rem;
  border: none;
  display: inline-block;
  border-radius: 0.188rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0;
}
.sticky-footer .cta .button:hover {
  background-color: rgba(87, 221, 89, 0.7);
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .sticky-footer .cta .button {
    font-size: 13px;
  }
}
@media screen and (min-width: 0px) and (max-width: 650px) {
  .sticky-footer .cta .button {
    width: 100%;
  }
}

/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    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,
  .h2, h3,
  .h3, h5,
  .h5, h6,
  .h6 {
    orphans: 3;
    widows: 3;
  }
  h2,
  .h2,
  h3,
  .h3,
  h5,
  .h5,
  h6,
  .h6 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}