@charset "UTF-8";
/*!
 *  カンバス KANBASU
 *  Distributed under the MIT License
 *  Copyright (c) 2015 Liip AG
 */
/**
 * Settings
 */
/*----------------------------------------*\
  GLOBAL SETTINGS
\*----------------------------------------*/
/**
 * Colors
 */
/**
 * Typography
 */
@import 'https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800';
/**
 * Spacings
 */
/**
 * Responsiveness
 */
/**
 * Miscellaneous
 */
/*----------------------------------------*\
  COMPONENTS
\*----------------------------------------*/
/**
 * Buttons
 */
/**
 * Forms
 */
/**
 * Lists
 */
/**
 * Box
 */
/**
 * Widths
 */
/**
 * Media
 */
/**
 * Media responsive
 */
/**
 * Mosaic responsive
 */
/**
 * Grid
 */
/**
 * Tools
 */
/*----------------------------------------*\
  FUNCTIONS
\*----------------------------------------*/
/**
 * Calculate REM value based on the default font-size
 */
/**
 * Return a value divided by a ratio
 * It uses the golden ratio by default
 *
 * Useful to create "visually equal" spacings
 * As mathematically equal spacings never "visually" look equal around text
 */
/**
 * Return a unitless value
 */
/**
 * Addition top and bottom padding
 */
/*----------------------------------------*\
  MIXINS
\*----------------------------------------*/
/*----------------------------------------*\
  MIXINS
\*----------------------------------------*/
/**
 * Responsive
 */
/**
 * Third-party libraries
 */
/**
 * Vendors
 */
/*!
 * normalize.css v3.0.2 | MIT License | git.io/normalize
 * CUSTOMIZED
 */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after 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/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 when focused and also mouse hovered in all browsers.
 */
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 {
  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
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

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

/**
 * Defaults
 */
/*----------------------------------------*\
  BOX MODEL
\*----------------------------------------*/
/**
 * Use the "smart" box model globally.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box; }

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

/*----------------------------------------*\
  ELEMENT DEFAULT BEHAVIOR
\*----------------------------------------*/
img,
iframe,
embed,
object {
  display: block; }

/*----------------------------------------*\
  TABLE
\*----------------------------------------*/
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse; }

caption {
  text-align: left;
  font-style: italic; }

th {
  text-align: left;
  font-weight: bold; }

th,
td {
  padding: 6px; }

/*----------------------------------------*\
  BOX MODEL
\*----------------------------------------*/
/**
 * Use the "smart" box model globally.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
.container__inner {
  padding: 12px 20px; }
  @media (min-width: 40em) {
    .container__inner {
      width: 640px;
      margin: 0 auto; } }
  @media (min-width: 64em) {
    .container__inner {
      width: 1024px; } }

/*----------------------------------------*\
  TYPOGRAPHY SCAFFOLDING
\*----------------------------------------*/
html {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.45;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/**
 * Links
 */
a {
  color: #188932;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none; }
  h2 a {
    color: black; }

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 1.414em 0 0.5em;
  font-weight: 700;
  line-height: 1.2; }

h1,
.h1 {
  margin-top: 0;
  font-size: 26px; }

h2,
.h2 {
  font-size: 1.4em; }

h3,
.h3 {
  font-size: 1.5em; }

h4,
.h4 {
  font-size: 1.25em; }

h5,
.h5 {
  font-size: 1em; }

h6,
.h6 {
  font-size: 0.8em; }

/**
 * Paragraphs
 */
p {
  margin-top: 1em;
  margin-bottom: 1.3em; }

/**
 * Preformatted text
 */
pre,
code {
  font-family: 'Monaco', monospace;
  font-weight: normal;
  tab-size: 4;
  background-color: #f5f5f5; }

pre {
  padding: 20px;
  margin: 0 0 2em;
  font-size: 0.875rem;
  border-radius: 4px; }

code {
  display: inline-block;
  padding: 1px 5px; }
  pre code {
    display: block;
    padding: 0; }

/**
 * Lists
 */
ul,
ol {
  padding-left: 20px;
  margin: 1em 0; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin: 0; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0;
  margin-bottom: 0.5em; }

.dl--inline dt {
  float: left;
  width: 100px; }

.dl--inline dd {
  margin-left: -webkit-calc(100px + 12px);
  margin-left: calc(100px + 12px); }

/**
 * Miscellaenous
 */
abbr {
  cursor: help; }

/*----------------------------------------*\
  FORMS
\*----------------------------------------*/
/**
 * Basic form elements
 */
fieldset {
  padding: 0;
  margin: 0;
  border: 0; }

input[type='text'],
input[type='search'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='password'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'],
input[type='file'],
input[type='submit'],
select,
textarea {
  width: 100%;
  padding: 7px 12px;
  margin-bottom: 20px;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.45;
  border: 1px solid #dcdcdc;
  background-color: white;
  border-radius: 4px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }
  input[type='text']:focus,
  input[type='search']:focus,
  input[type='email']:focus,
  input[type='tel']:focus,
  input[type='url']:focus,
  input[type='password']:focus,
  input[type='date']:focus,
  input[type='datetime']:focus,
  input[type='datetime-local']:focus,
  input[type='month']:focus,
  input[type='week']:focus,
  input[type='time']:focus,
  input[type='number']:focus,
  input[type='file']:focus,
  input[type='submit']:focus,
  select:focus,
  textarea:focus {
    border-color: #333;
    outline: none; }
  input[type='text'][disabled],
  input[type='search'][disabled],
  input[type='email'][disabled],
  input[type='tel'][disabled],
  input[type='url'][disabled],
  input[type='password'][disabled],
  input[type='date'][disabled],
  input[type='datetime'][disabled],
  input[type='datetime-local'][disabled],
  input[type='month'][disabled],
  input[type='week'][disabled],
  input[type='time'][disabled],
  input[type='number'][disabled],
  input[type='file'][disabled],
  input[type='submit'][disabled],
  select[disabled],
  textarea[disabled] {
    color: #777;
    background-color: #eee;
    cursor: not-allowed; }

select {
  height: 39px;
  padding-top: 0;
  padding-bottom: 0; }

textarea {
  resize: vertical; }

input[type="checkbox"],
input[type="radio"] {
  display: inline-block; }
  label input[type='checkbox'], label
  input[type='radio'] {
    margin-right: 6px; }

input[type='submit'] {
  width: initial;
  min-width: 25%;
  background-color: #188932;
  color: white;
  font-weight: 600; }

label {
  display: block;
  padding-bottom: 6px;
  font-weight: 600;
  cursor: pointer; }

.label--inline {
  display: inline-block;
  padding-top: 7px;
  padding-bottom: 7px; }
  .label--inline:not(:last-child) {
    margin-right: 20px; }

/**
 * Forms layout
 */
.form-group ~ .form-group {
  margin-top: 12px; }

.field-label {
  font-weight: bold;
  padding: 7px 0; }

.field-help {
  margin-top: 6px;
  margin-bottom: 0;
  color: #dcdcdc; }

/**
 * Sizes
 */
.input--small,
.select--small {
  font-size: 0.75rem !important;
  border-radius: 2px !important; }

.input--small {
  padding: 3px 6px !important; }

.select--small {
  height: 25px !important;
  padding-left: 6px !important;
  padding-right: 6px !important; }

.input--large,
.select--large {
  font-size: 1.5rem !important;
  border-radius: 6px !important; }

.input--large {
  padding: 12px 20px !important; }

.select--large {
  height: 60px !important;
  padding-left: 20px !important;
  padding-right: 20px !important; }

/**
 * Helpers
 */
/*----------------------------------------*\
  TEXT
\*----------------------------------------*/
/**
 * Alignment
 */
.text-left {
  text-align: left; }

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

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

/**
 * Case
 */
.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

/**
 * Styling
 */
.text-italic {
  font-style: italic; }

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

/**
 * Size
 */
.text-small {
  font-size: 0.75rem; }

.text-large {
  font-size: 1.5rem; }

/**
 * Colors
 */
.text-muted {
  color: rgba(0, 0, 0, 0.6); }

/*----------------------------------------*\
  FLOAT
\*----------------------------------------*/
.pull-left {
  float: left; }

.pull-right {
  float: right; }

.clearfix:after,
dl:after,
.dl--inline dd:after,
.media:after {
  content: '';
  display: table;
  clear: both; }

/*----------------------------------------*\
  SPACINGS
\*----------------------------------------*/
/**
 * MARGINS
 * Generate margin classes based on spacing units
 *
 * mrg(|t|r|b|l|h|v)0   => no margin
 * mrg(|t|r|b|l|h|v)--  => 1/4
 * mrg(|t|r|b|l|h|v)-   => 1/2
 * mrg(|t|r|b|l|h|v)    => 1x
 * mrg(|t|r|b|l|h|v)+   => 2x
 * mrg(|t|r|b|l|h|v)++  => 4x
 *
 * {nothing}  => all
 * t          => top
 * r          => right
 * b          => bottom
 * l          => left
 * h          => horizontal (left + right)
 * v          => vertical (top + bottom)
 */
.mrg0 {
  margin: 0 !important; }

.mrgt0 {
  margin-top: 0 !important; }

.mrgr0 {
  margin-right: 0 !important; }

.mrgb0 {
  margin-bottom: 0 !important; }

.mrgl0 {
  margin-left: 0 !important; }

.mrgh0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.mrgv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.mrg {
  margin: 20px !important; }

.mrgt {
  margin-top: 20px !important; }

.mrgr {
  margin-right: 20px !important; }

.mrgb {
  margin-bottom: 20px !important; }

.mrgl {
  margin-left: 20px !important; }

.mrgh {
  margin-right: 20px !important;
  margin-left: 20px !important; }

.mrgv {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.mrg-- {
  margin: 6px !important; }

.mrgt-- {
  margin-top: 6px !important; }

.mrgr-- {
  margin-right: 6px !important; }

.mrgb-- {
  margin-bottom: 6px !important; }

.mrgl-- {
  margin-left: 6px !important; }

.mrgh-- {
  margin-right: 6px !important;
  margin-left: 6px !important; }

.mrgv-- {
  margin-top: 6px !important;
  margin-bottom: 6px !important; }

.mrg- {
  margin: 12px !important; }

.mrgt- {
  margin-top: 12px !important; }

.mrgr- {
  margin-right: 12px !important; }

.mrgb- {
  margin-bottom: 12px !important; }

.mrgl- {
  margin-left: 12px !important; }

.mrgh- {
  margin-right: 12px !important;
  margin-left: 12px !important; }

.mrgv- {
  margin-top: 12px !important;
  margin-bottom: 12px !important; }

.mrg\+ {
  margin: 32px !important; }

.mrgt\+ {
  margin-top: 32px !important; }

.mrgr\+ {
  margin-right: 32px !important; }

.mrgb\+ {
  margin-bottom: 32px !important; }

.mrgl\+ {
  margin-left: 32px !important; }

.mrgh\+ {
  margin-right: 32px !important;
  margin-left: 32px !important; }

.mrgv\+ {
  margin-top: 32px !important;
  margin-bottom: 32px !important; }

.mrg\+\+ {
  margin: 64px !important; }

.mrgt\+\+ {
  margin-top: 64px !important; }

.mrgr\+\+ {
  margin-right: 64px !important; }

.mrgb\+\+ {
  margin-bottom: 64px !important; }

.mrgl\+\+ {
  margin-left: 64px !important; }

.mrgh\+\+ {
  margin-right: 64px !important;
  margin-left: 64px !important; }

.mrgv\+\+ {
  margin-top: 64px !important;
  margin-bottom: 64px !important; }

/**
 * PADDINGS
 * Generate padding classes based on spacing units
 *
 * pdg(|t|r|b|l|h|v)0   => no margin
 * pdg(|t|r|b|l|h|v)--  => 1/4
 * pdg(|t|r|b|l|h|v)-   => 1/2
 * pdg(|t|r|b|l|h|v)    => 1x
 * pdg(|t|r|b|l|h|v)+   => 2x
 * pdg(|t|r|b|l|h|v)++  => 4x
 *
 * {nothing}  => all
 * t          => top
 * r          => right
 * b          => bottom
 * l          => left
 * h          => horizontal (left + right)
 * v          => vertical (top + bottom)
 */
.pdg0 {
  padding: 0 !important; }

.pdgt0 {
  padding-top: 0 !important; }

.pdgr0 {
  padding-right: 0 !important; }

.pdgb0 {
  padding-bottom: 0 !important; }

.pdgl0 {
  padding-left: 0 !important; }

.pdgh0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.pdgv0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.pdg {
  padding: 20px !important; }

.pdgt {
  padding-top: 20px !important; }

.pdgr {
  padding-right: 20px !important; }

.pdgb {
  padding-bottom: 20px !important; }

.pdgl {
  padding-left: 20px !important; }

.pdgh {
  padding-right: 20px !important;
  padding-left: 20px !important; }

.pdgv {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.pdg-- {
  padding: 6px !important; }

.pdgt-- {
  padding-top: 6px !important; }

.pdgr-- {
  padding-right: 6px !important; }

.pdgb-- {
  padding-bottom: 6px !important; }

.pdgl-- {
  padding-left: 6px !important; }

.pdgh-- {
  padding-right: 6px !important;
  padding-left: 6px !important; }

.pdgv-- {
  padding-top: 6px !important;
  padding-bottom: 6px !important; }

.pdg- {
  padding: 12px !important; }

.pdgt- {
  padding-top: 12px !important; }

.pdgr- {
  padding-right: 12px !important; }

.pdgb- {
  padding-bottom: 12px !important; }

.pdgl- {
  padding-left: 12px !important; }

.pdgh- {
  padding-right: 12px !important;
  padding-left: 12px !important; }

.pdgv- {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.pdg\+ {
  padding: 32px !important; }

.pdgt\+ {
  padding-top: 32px !important; }

.pdgr\+ {
  padding-right: 32px !important; }

.pdgb\+ {
  padding-bottom: 32px !important; }

.pdgl\+ {
  padding-left: 32px !important; }

.pdgh\+ {
  padding-right: 32px !important;
  padding-left: 32px !important; }

.pdgv\+ {
  padding-top: 32px !important;
  padding-bottom: 32px !important; }

.pdg\+\+ {
  padding: 64px !important; }

.pdgt\+\+ {
  padding-top: 64px !important; }

.pdgr\+\+ {
  padding-right: 64px !important; }

.pdgb\+\+ {
  padding-bottom: 64px !important; }

.pdgl\+\+ {
  padding-left: 64px !important; }

.pdgh\+\+ {
  padding-right: 64px !important;
  padding-left: 64px !important; }

.pdgv\+\+ {
  padding-top: 64px !important;
  padding-bottom: 64px !important; }

/*----------------------------------------*\
  SPACINGS RESPONSIVE
\*----------------------------------------*/
/**
 * Margins
 */
@media (min-width: 40.0625em) {
  .sm-mrg0 {
    margin: 0 !important; }
  .sm-mrgt0 {
    margin-top: 0 !important; }
  .sm-mrgr0 {
    margin-right: 0 !important; }
  .sm-mrgb0 {
    margin-bottom: 0 !important; }
  .sm-mrgl0 {
    margin-left: 0 !important; }
  .sm-mrgh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .sm-mrgv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .sm-mrg {
    margin: 20px !important; }
  .sm-mrgt {
    margin-top: 20px !important; }
  .sm-mrgr {
    margin-right: 20px !important; }
  .sm-mrgb {
    margin-bottom: 20px !important; }
  .sm-mrgl {
    margin-left: 20px !important; }
  .sm-mrgh {
    margin-right: 20px !important;
    margin-left: 20px !important; }
  .sm-mrgv {
    margin-top: 20px !important;
    margin-bottom: 20px !important; }
  .sm-mrg-- {
    margin: 6px !important; }
  .sm-mrgt-- {
    margin-top: 6px !important; }
  .sm-mrgr-- {
    margin-right: 6px !important; }
  .sm-mrgb-- {
    margin-bottom: 6px !important; }
  .sm-mrgl-- {
    margin-left: 6px !important; }
  .sm-mrgh-- {
    margin-right: 6px !important;
    margin-left: 6px !important; }
  .sm-mrgv-- {
    margin-top: 6px !important;
    margin-bottom: 6px !important; }
  .sm-mrg- {
    margin: 12px !important; }
  .sm-mrgt- {
    margin-top: 12px !important; }
  .sm-mrgr- {
    margin-right: 12px !important; }
  .sm-mrgb- {
    margin-bottom: 12px !important; }
  .sm-mrgl- {
    margin-left: 12px !important; }
  .sm-mrgh- {
    margin-right: 12px !important;
    margin-left: 12px !important; }
  .sm-mrgv- {
    margin-top: 12px !important;
    margin-bottom: 12px !important; }
  .sm-mrg\+ {
    margin: 32px !important; }
  .sm-mrgt\+ {
    margin-top: 32px !important; }
  .sm-mrgr\+ {
    margin-right: 32px !important; }
  .sm-mrgb\+ {
    margin-bottom: 32px !important; }
  .sm-mrgl\+ {
    margin-left: 32px !important; }
  .sm-mrgh\+ {
    margin-right: 32px !important;
    margin-left: 32px !important; }
  .sm-mrgv\+ {
    margin-top: 32px !important;
    margin-bottom: 32px !important; }
  .sm-mrg\+\+ {
    margin: 64px !important; }
  .sm-mrgt\+\+ {
    margin-top: 64px !important; }
  .sm-mrgr\+\+ {
    margin-right: 64px !important; }
  .sm-mrgb\+\+ {
    margin-bottom: 64px !important; }
  .sm-mrgl\+\+ {
    margin-left: 64px !important; }
  .sm-mrgh\+\+ {
    margin-right: 64px !important;
    margin-left: 64px !important; }
  .sm-mrgv\+\+ {
    margin-top: 64px !important;
    margin-bottom: 64px !important; } }

@media (min-width: 48.0625em) {
  .md-mrg0 {
    margin: 0 !important; }
  .md-mrgt0 {
    margin-top: 0 !important; }
  .md-mrgr0 {
    margin-right: 0 !important; }
  .md-mrgb0 {
    margin-bottom: 0 !important; }
  .md-mrgl0 {
    margin-left: 0 !important; }
  .md-mrgh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .md-mrgv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .md-mrg {
    margin: 20px !important; }
  .md-mrgt {
    margin-top: 20px !important; }
  .md-mrgr {
    margin-right: 20px !important; }
  .md-mrgb {
    margin-bottom: 20px !important; }
  .md-mrgl {
    margin-left: 20px !important; }
  .md-mrgh {
    margin-right: 20px !important;
    margin-left: 20px !important; }
  .md-mrgv {
    margin-top: 20px !important;
    margin-bottom: 20px !important; }
  .md-mrg-- {
    margin: 6px !important; }
  .md-mrgt-- {
    margin-top: 6px !important; }
  .md-mrgr-- {
    margin-right: 6px !important; }
  .md-mrgb-- {
    margin-bottom: 6px !important; }
  .md-mrgl-- {
    margin-left: 6px !important; }
  .md-mrgh-- {
    margin-right: 6px !important;
    margin-left: 6px !important; }
  .md-mrgv-- {
    margin-top: 6px !important;
    margin-bottom: 6px !important; }
  .md-mrg- {
    margin: 12px !important; }
  .md-mrgt- {
    margin-top: 12px !important; }
  .md-mrgr- {
    margin-right: 12px !important; }
  .md-mrgb- {
    margin-bottom: 12px !important; }
  .md-mrgl- {
    margin-left: 12px !important; }
  .md-mrgh- {
    margin-right: 12px !important;
    margin-left: 12px !important; }
  .md-mrgv- {
    margin-top: 12px !important;
    margin-bottom: 12px !important; }
  .md-mrg\+ {
    margin: 32px !important; }
  .md-mrgt\+ {
    margin-top: 32px !important; }
  .md-mrgr\+ {
    margin-right: 32px !important; }
  .md-mrgb\+ {
    margin-bottom: 32px !important; }
  .md-mrgl\+ {
    margin-left: 32px !important; }
  .md-mrgh\+ {
    margin-right: 32px !important;
    margin-left: 32px !important; }
  .md-mrgv\+ {
    margin-top: 32px !important;
    margin-bottom: 32px !important; }
  .md-mrg\+\+ {
    margin: 64px !important; }
  .md-mrgt\+\+ {
    margin-top: 64px !important; }
  .md-mrgr\+\+ {
    margin-right: 64px !important; }
  .md-mrgb\+\+ {
    margin-bottom: 64px !important; }
  .md-mrgl\+\+ {
    margin-left: 64px !important; }
  .md-mrgh\+\+ {
    margin-right: 64px !important;
    margin-left: 64px !important; }
  .md-mrgv\+\+ {
    margin-top: 64px !important;
    margin-bottom: 64px !important; } }

@media (min-width: 64.0625em) {
  .lg-mrg0 {
    margin: 0 !important; }
  .lg-mrgt0 {
    margin-top: 0 !important; }
  .lg-mrgr0 {
    margin-right: 0 !important; }
  .lg-mrgb0 {
    margin-bottom: 0 !important; }
  .lg-mrgl0 {
    margin-left: 0 !important; }
  .lg-mrgh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .lg-mrgv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .lg-mrg {
    margin: 20px !important; }
  .lg-mrgt {
    margin-top: 20px !important; }
  .lg-mrgr {
    margin-right: 20px !important; }
  .lg-mrgb {
    margin-bottom: 20px !important; }
  .lg-mrgl {
    margin-left: 20px !important; }
  .lg-mrgh {
    margin-right: 20px !important;
    margin-left: 20px !important; }
  .lg-mrgv {
    margin-top: 20px !important;
    margin-bottom: 20px !important; }
  .lg-mrg-- {
    margin: 6px !important; }
  .lg-mrgt-- {
    margin-top: 6px !important; }
  .lg-mrgr-- {
    margin-right: 6px !important; }
  .lg-mrgb-- {
    margin-bottom: 6px !important; }
  .lg-mrgl-- {
    margin-left: 6px !important; }
  .lg-mrgh-- {
    margin-right: 6px !important;
    margin-left: 6px !important; }
  .lg-mrgv-- {
    margin-top: 6px !important;
    margin-bottom: 6px !important; }
  .lg-mrg- {
    margin: 12px !important; }
  .lg-mrgt- {
    margin-top: 12px !important; }
  .lg-mrgr- {
    margin-right: 12px !important; }
  .lg-mrgb- {
    margin-bottom: 12px !important; }
  .lg-mrgl- {
    margin-left: 12px !important; }
  .lg-mrgh- {
    margin-right: 12px !important;
    margin-left: 12px !important; }
  .lg-mrgv- {
    margin-top: 12px !important;
    margin-bottom: 12px !important; }
  .lg-mrg\+ {
    margin: 32px !important; }
  .lg-mrgt\+ {
    margin-top: 32px !important; }
  .lg-mrgr\+ {
    margin-right: 32px !important; }
  .lg-mrgb\+ {
    margin-bottom: 32px !important; }
  .lg-mrgl\+ {
    margin-left: 32px !important; }
  .lg-mrgh\+ {
    margin-right: 32px !important;
    margin-left: 32px !important; }
  .lg-mrgv\+ {
    margin-top: 32px !important;
    margin-bottom: 32px !important; }
  .lg-mrg\+\+ {
    margin: 64px !important; }
  .lg-mrgt\+\+ {
    margin-top: 64px !important; }
  .lg-mrgr\+\+ {
    margin-right: 64px !important; }
  .lg-mrgb\+\+ {
    margin-bottom: 64px !important; }
  .lg-mrgl\+\+ {
    margin-left: 64px !important; }
  .lg-mrgh\+\+ {
    margin-right: 64px !important;
    margin-left: 64px !important; }
  .lg-mrgv\+\+ {
    margin-top: 64px !important;
    margin-bottom: 64px !important; } }

/**
 * Paddings
 */
@media (min-width: 40.0625em) {
  .sm-pdg0 {
    padding: 0 !important; }
  .sm-pdgt0 {
    padding-top: 0 !important; }
  .sm-pdgr0 {
    padding-right: 0 !important; }
  .sm-pdgb0 {
    padding-bottom: 0 !important; }
  .sm-pdgl0 {
    padding-left: 0 !important; }
  .sm-pdgh0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .sm-pdgv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .sm-pdg {
    padding: 20px !important; }
  .sm-pdgt {
    padding-top: 20px !important; }
  .sm-pdgr {
    padding-right: 20px !important; }
  .sm-pdgb {
    padding-bottom: 20px !important; }
  .sm-pdgl {
    padding-left: 20px !important; }
  .sm-pdgh {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .sm-pdgv {
    padding-top: 20px !important;
    padding-bottom: 20px !important; }
  .sm-pdg-- {
    padding: 6px !important; }
  .sm-pdgt-- {
    padding-top: 6px !important; }
  .sm-pdgr-- {
    padding-right: 6px !important; }
  .sm-pdgb-- {
    padding-bottom: 6px !important; }
  .sm-pdgl-- {
    padding-left: 6px !important; }
  .sm-pdgh-- {
    padding-right: 6px !important;
    padding-left: 6px !important; }
  .sm-pdgv-- {
    padding-top: 6px !important;
    padding-bottom: 6px !important; }
  .sm-pdg- {
    padding: 12px !important; }
  .sm-pdgt- {
    padding-top: 12px !important; }
  .sm-pdgr- {
    padding-right: 12px !important; }
  .sm-pdgb- {
    padding-bottom: 12px !important; }
  .sm-pdgl- {
    padding-left: 12px !important; }
  .sm-pdgh- {
    padding-right: 12px !important;
    padding-left: 12px !important; }
  .sm-pdgv- {
    padding-top: 12px !important;
    padding-bottom: 12px !important; }
  .sm-pdg\+ {
    padding: 32px !important; }
  .sm-pdgt\+ {
    padding-top: 32px !important; }
  .sm-pdgr\+ {
    padding-right: 32px !important; }
  .sm-pdgb\+ {
    padding-bottom: 32px !important; }
  .sm-pdgl\+ {
    padding-left: 32px !important; }
  .sm-pdgh\+ {
    padding-right: 32px !important;
    padding-left: 32px !important; }
  .sm-pdgv\+ {
    padding-top: 32px !important;
    padding-bottom: 32px !important; }
  .sm-pdg\+\+ {
    padding: 64px !important; }
  .sm-pdgt\+\+ {
    padding-top: 64px !important; }
  .sm-pdgr\+\+ {
    padding-right: 64px !important; }
  .sm-pdgb\+\+ {
    padding-bottom: 64px !important; }
  .sm-pdgl\+\+ {
    padding-left: 64px !important; }
  .sm-pdgh\+\+ {
    padding-right: 64px !important;
    padding-left: 64px !important; }
  .sm-pdgv\+\+ {
    padding-top: 64px !important;
    padding-bottom: 64px !important; } }

@media (min-width: 48.0625em) {
  .md-pdg0 {
    padding: 0 !important; }
  .md-pdgt0 {
    padding-top: 0 !important; }
  .md-pdgr0 {
    padding-right: 0 !important; }
  .md-pdgb0 {
    padding-bottom: 0 !important; }
  .md-pdgl0 {
    padding-left: 0 !important; }
  .md-pdgh0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .md-pdgv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .md-pdg {
    padding: 20px !important; }
  .md-pdgt {
    padding-top: 20px !important; }
  .md-pdgr {
    padding-right: 20px !important; }
  .md-pdgb {
    padding-bottom: 20px !important; }
  .md-pdgl {
    padding-left: 20px !important; }
  .md-pdgh {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .md-pdgv {
    padding-top: 20px !important;
    padding-bottom: 20px !important; }
  .md-pdg-- {
    padding: 6px !important; }
  .md-pdgt-- {
    padding-top: 6px !important; }
  .md-pdgr-- {
    padding-right: 6px !important; }
  .md-pdgb-- {
    padding-bottom: 6px !important; }
  .md-pdgl-- {
    padding-left: 6px !important; }
  .md-pdgh-- {
    padding-right: 6px !important;
    padding-left: 6px !important; }
  .md-pdgv-- {
    padding-top: 6px !important;
    padding-bottom: 6px !important; }
  .md-pdg- {
    padding: 12px !important; }
  .md-pdgt- {
    padding-top: 12px !important; }
  .md-pdgr- {
    padding-right: 12px !important; }
  .md-pdgb- {
    padding-bottom: 12px !important; }
  .md-pdgl- {
    padding-left: 12px !important; }
  .md-pdgh- {
    padding-right: 12px !important;
    padding-left: 12px !important; }
  .md-pdgv- {
    padding-top: 12px !important;
    padding-bottom: 12px !important; }
  .md-pdg\+ {
    padding: 32px !important; }
  .md-pdgt\+ {
    padding-top: 32px !important; }
  .md-pdgr\+ {
    padding-right: 32px !important; }
  .md-pdgb\+ {
    padding-bottom: 32px !important; }
  .md-pdgl\+ {
    padding-left: 32px !important; }
  .md-pdgh\+ {
    padding-right: 32px !important;
    padding-left: 32px !important; }
  .md-pdgv\+ {
    padding-top: 32px !important;
    padding-bottom: 32px !important; }
  .md-pdg\+\+ {
    padding: 64px !important; }
  .md-pdgt\+\+ {
    padding-top: 64px !important; }
  .md-pdgr\+\+ {
    padding-right: 64px !important; }
  .md-pdgb\+\+ {
    padding-bottom: 64px !important; }
  .md-pdgl\+\+ {
    padding-left: 64px !important; }
  .md-pdgh\+\+ {
    padding-right: 64px !important;
    padding-left: 64px !important; }
  .md-pdgv\+\+ {
    padding-top: 64px !important;
    padding-bottom: 64px !important; } }

@media (min-width: 64.0625em) {
  .lg-pdg0 {
    padding: 0 !important; }
  .lg-pdgt0 {
    padding-top: 0 !important; }
  .lg-pdgr0 {
    padding-right: 0 !important; }
  .lg-pdgb0 {
    padding-bottom: 0 !important; }
  .lg-pdgl0 {
    padding-left: 0 !important; }
  .lg-pdgh0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .lg-pdgv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .lg-pdg {
    padding: 20px !important; }
  .lg-pdgt {
    padding-top: 20px !important; }
  .lg-pdgr {
    padding-right: 20px !important; }
  .lg-pdgb {
    padding-bottom: 20px !important; }
  .lg-pdgl {
    padding-left: 20px !important; }
  .lg-pdgh {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .lg-pdgv {
    padding-top: 20px !important;
    padding-bottom: 20px !important; }
  .lg-pdg-- {
    padding: 6px !important; }
  .lg-pdgt-- {
    padding-top: 6px !important; }
  .lg-pdgr-- {
    padding-right: 6px !important; }
  .lg-pdgb-- {
    padding-bottom: 6px !important; }
  .lg-pdgl-- {
    padding-left: 6px !important; }
  .lg-pdgh-- {
    padding-right: 6px !important;
    padding-left: 6px !important; }
  .lg-pdgv-- {
    padding-top: 6px !important;
    padding-bottom: 6px !important; }
  .lg-pdg- {
    padding: 12px !important; }
  .lg-pdgt- {
    padding-top: 12px !important; }
  .lg-pdgr- {
    padding-right: 12px !important; }
  .lg-pdgb- {
    padding-bottom: 12px !important; }
  .lg-pdgl- {
    padding-left: 12px !important; }
  .lg-pdgh- {
    padding-right: 12px !important;
    padding-left: 12px !important; }
  .lg-pdgv- {
    padding-top: 12px !important;
    padding-bottom: 12px !important; }
  .lg-pdg\+ {
    padding: 32px !important; }
  .lg-pdgt\+ {
    padding-top: 32px !important; }
  .lg-pdgr\+ {
    padding-right: 32px !important; }
  .lg-pdgb\+ {
    padding-bottom: 32px !important; }
  .lg-pdgl\+ {
    padding-left: 32px !important; }
  .lg-pdgh\+ {
    padding-right: 32px !important;
    padding-left: 32px !important; }
  .lg-pdgv\+ {
    padding-top: 32px !important;
    padding-bottom: 32px !important; }
  .lg-pdg\+\+ {
    padding: 64px !important; }
  .lg-pdgt\+\+ {
    padding-top: 64px !important; }
  .lg-pdgr\+\+ {
    padding-right: 64px !important; }
  .lg-pdgb\+\+ {
    padding-bottom: 64px !important; }
  .lg-pdgl\+\+ {
    padding-left: 64px !important; }
  .lg-pdgh\+\+ {
    padding-right: 64px !important;
    padding-left: 64px !important; }
  .lg-pdgv\+\+ {
    padding-top: 64px !important;
    padding-bottom: 64px !important; } }

/*----------------------------------------*\
  IMAGES
\*----------------------------------------*/
.img-responsive {
  max-width: 100%;
  height: auto; }

.img-block {
  width: 100%;
  height: auto; }

/*----------------------------------------*\
  VERTICAL & HORIZONTAL ALIGN
\*----------------------------------------*/
.h-align {
  margin-left: auto;
  margin-right: auto; }

.v-align {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.vh-align {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.relative-parent {
  position: relative; }

/*----------------------------------------*\
  DISPLAY
\*----------------------------------------*/
.hidden {
  display: none !important; }

.invisible {
  visibility: hidden !important; }

@media (min-width: 40.0625em) {
  .hidden-sm-up {
    display: none !important; } }

@media (min-width: 48.0625em) {
  .hidden-md-up {
    display: none !important; } }

@media (min-width: 64.0625em) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 40em) {
  .hidden-xs-down {
    display: none !important; } }

@media (max-width: 48em) {
  .hidden-sm-down {
    display: none !important; } }

@media (max-width: 64em) {
  .hidden-md-down {
    display: none !important; } }

@media print {
  .hidden-print {
    display: none !important; }
  .invisible-print {
    visibility: hidden !important; } }

@media not print {
  .visible-print {
    display: none !important; } }

.visible-sr, .frontpage .layout-content h1 {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important; }

/**
 * Components
 */
/*----------------------------------------*\
  GRID
  Modern grid using flexbox
\*----------------------------------------*/
.grid {
  display: block;
  margin-left: -20px;
  font-size: 0; }

.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 20px;
  font-size: 16px;
  vertical-align: top; }

/**
   * Alignment
   */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
   * Order
   */
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left; }

/*----------------------------------------*\
  Same for both old and new Grid
\*----------------------------------------*/
/**
 * Gutters size
 */
.grid--tight {
  margin-left: -0; }
  .grid--tight > .grid__item {
    padding-left: 0; }

.grid--tiny {
  margin-left: -6px; }
  .grid--tiny > .grid__item {
    padding-left: 6px; }

.grid--small {
  margin-left: -12px; }
  .grid--small > .grid__item {
    padding-left: 12px; }

.grid--large {
  margin-left: -32px; }
  .grid--large > .grid__item {
    padding-left: 32px; }

.grid--huge {
  margin-left: -64px; }
  .grid--huge > .grid__item {
    padding-left: 64px; }

/**
 * Add spacing between rows
 */
.grid--multiline {
  margin-top: -20px; }
  .grid--multiline > .grid__item {
    padding-top: 20px; }
  .grid--multiline.grid--tight {
    margin-top: -0; }
    .grid--multiline.grid--tight > .grid__item {
      padding-top: 0; }
  .grid--multiline.grid--tiny {
    margin-top: -6px; }
    .grid--multiline.grid--tiny > .grid__item {
      padding-top: 6px; }
  .grid--multiline.grid--small {
    margin-top: -12px; }
    .grid--multiline.grid--small > .grid__item {
      padding-top: 12px; }
  .grid--multiline.grid--large {
    margin-top: -32px; }
    .grid--multiline.grid--large > .grid__item {
      padding-top: 32px; }
  .grid--multiline.grid--huge {
    margin-top: -64px; }
    .grid--multiline.grid--huge > .grid__item {
      padding-top: 64px; }

/*----------------------------------------*\
  WIDTHS
\*----------------------------------------*/
.w-1\/6 {
  width: 16.66667% !important; }

.w-1\/3 {
  width: 33.33333% !important; }

.w-1\/2 {
  width: 50% !important; }

.w-2\/3 {
  width: 66.66667% !important; }

.w-5\/6 {
  width: 83.33333% !important; }

.w-1\/1 {
  width: 100% !important; }

.w-1\/5 {
  width: 20% !important; }

.w-2\/5 {
  width: 40% !important; }

.w-3\/5 {
  width: 60% !important; }

.w-4\/5 {
  width: 80% !important; }

.w-1\/4 {
  width: 25% !important; }

.w-3\/4 {
  width: 75% !important; }

/*----------------------------------------*\
  WIDTHS RESPONSIVE
\*----------------------------------------*/
@media (min-width: 40.0625em) {
  .sm-w-1\/6 {
    width: 16.66667% !important; }
  .sm-w-1\/3 {
    width: 33.33333% !important; }
  .sm-w-1\/2 {
    width: 50% !important; }
  .sm-w-2\/3 {
    width: 66.66667% !important; }
  .sm-w-5\/6 {
    width: 83.33333% !important; }
  .sm-w-1\/1 {
    width: 100% !important; }
  .sm-w-1\/5 {
    width: 20% !important; }
  .sm-w-2\/5 {
    width: 40% !important; }
  .sm-w-3\/5 {
    width: 60% !important; }
  .sm-w-4\/5 {
    width: 80% !important; }
  .sm-w-1\/4 {
    width: 25% !important; }
  .sm-w-3\/4 {
    width: 75% !important; } }

@media (min-width: 48.0625em) {
  .md-w-1\/6 {
    width: 16.66667% !important; }
  .md-w-1\/3 {
    width: 33.33333% !important; }
  .md-w-1\/2 {
    width: 50% !important; }
  .md-w-2\/3 {
    width: 66.66667% !important; }
  .md-w-5\/6 {
    width: 83.33333% !important; }
  .md-w-1\/1 {
    width: 100% !important; }
  .md-w-1\/5 {
    width: 20% !important; }
  .md-w-2\/5 {
    width: 40% !important; }
  .md-w-3\/5 {
    width: 60% !important; }
  .md-w-4\/5 {
    width: 80% !important; }
  .md-w-1\/4 {
    width: 25% !important; }
  .md-w-3\/4 {
    width: 75% !important; } }

@media (min-width: 64.0625em) {
  .lg-w-1\/6 {
    width: 16.66667% !important; }
  .lg-w-1\/3 {
    width: 33.33333% !important; }
  .lg-w-1\/2 {
    width: 50% !important; }
  .lg-w-2\/3 {
    width: 66.66667% !important; }
  .lg-w-5\/6 {
    width: 83.33333% !important; }
  .lg-w-1\/1 {
    width: 100% !important; }
  .lg-w-1\/5 {
    width: 20% !important; }
  .lg-w-2\/5 {
    width: 40% !important; }
  .lg-w-3\/5 {
    width: 60% !important; }
  .lg-w-4\/5 {
    width: 80% !important; }
  .lg-w-1\/4 {
    width: 25% !important; }
  .lg-w-3\/4 {
    width: 75% !important; } }

/*----------------------------------------*\
  BUTTON
\*----------------------------------------*/
.btn {
  display: inline-block;
  overflow: hidden;
  padding: 7px 12px;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
  line-height: inherit;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }
  .btn:hover, .btn:focus, .btn:active {
    text-decoration: none; }
  .btn:focus {
    outline: none; }

/**
 * Variants
 */
.btn--block {
  display: block;
  width: 100%; }

.btn--bare {
  padding: 0;
  border-radius: 0; }

/**
 * Styles
 */
.btn--default {
  color: black;
  background-color: #eee; }
  .btn--default:hover, .btn--default:focus {
    background-color: #f6f6f6; }
  .btn--default:active {
    background-color: #e1e1e1; }

.btn--primary {
  color: white;
  background-color: #188932; }
  .btn--primary:hover, .btn--primary:focus {
    background-color: #1eac3f; }
  .btn--primary:active {
    background-color: #14732a; }

/**
 * States
 */
.btn--disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed; }

/**
 * Sizes
 */
.btn--small {
  padding: 3px 6px;
  font-size: 0.75rem;
  border-radius: 2px; }

.btn--large {
  padding: 12px 20px;
  font-size: 1.5rem;
  border-radius: 6px; }

/*----------------------------------------*\
  BOX
\*----------------------------------------*/
.box {
  padding: 20px; }

/**
 * Spacings
 */
.box--tight {
  padding: 0; }

.box--tiny {
  padding: 6px; }

.box--small {
  padding: 12px; }

.box--large {
  padding: 32px; }

.box--huge {
  padding: 64px; }

/**
 * Styles
 */
.box--default {
  color: inherit;
  background-color: #eee; }

.box--primary {
  color: white;
  background-color: #188932; }

/*----------------------------------------*\
  THE MEDIA OBJECT
\*----------------------------------------*/
.media {
  display: block; }

.media__left {
  float: left;
  margin-right: 20px; }

.media__right {
  float: right;
  margin-left: 20px; }

.media__image {
  display: block; }

.media__body {
  overflow: hidden;
  display: block; }

/*----------------------------------------*\
  MEDIA RESPONSIVE
\*----------------------------------------*/
@media (max-width: 48em) {
  .media--responsive .media__left,
  .media--responsive .media__right {
    float: none;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    width: 100%; }
  .media--responsive .media__image {
    max-width: 100%;
    height: auto;
    margin: 0 auto; } }

/*----------------------------------------*\
  MOSAIC
\*----------------------------------------*/
.mosaic {
  display: table;
  width: 100%; }

.mosaic--fixed {
  table-layout: fixed; }

.mosaic__row {
  display: table-row; }

.mosaic__cell {
  display: table-cell;
  vertical-align: middle; }
  .mosaic--top .mosaic__cell {
    vertical-align: top; }
  .mosaic--bottom .mosaic__cell {
    vertical-align: bottom; }

.mosaic__cell--fit {
  width: 1px;
  white-space: nowrap; }

/*----------------------------------------*\
  MOSAIC RESPONSIVE
\*----------------------------------------*/
@media (max-width: 48em) {
  .mosaic--responsive,
  .mosaic--responsive > .mosaic__row,
  .mosaic--responsive > .mosaic__cell {
    display: block; }
  .mosaic--responsive > .mosaic__cell--fit {
    width: auto; } }

/*----------------------------------------*\
  LIST
\*----------------------------------------*/
.list,
.list-inline,
.list-stacked {
  margin: 0;
  padding: 0;
  list-style: none; }

/*----------------------------------------*\
  LIST STACKED
\*----------------------------------------*/
.list-inline > li {
  display: inline-block;
  padding: 0 10px;
  vertical-align: middle; }
  .list-inline > li:first-child {
    padding-left: 0; }
  .list-inline > li:last-child {
    padding-right: 0; }

.list-inline--divided > li + li {
  border-left: 1px solid #eee; }

/**
   * Sizes
   */
.list-inline--tight > li {
  padding-left: 0;
  padding-right: 0; }

.list-inline--tiny > li {
  padding-left: 3px;
  padding-right: 3px; }

.list-inline--small > li {
  padding-left: 6px;
  padding-right: 6px; }

.list-inline--large > li {
  padding-left: 16px;
  padding-right: 16px; }

.list-inline--huge > li {
  padding-left: 32px;
  padding-right: 32px; }

/*----------------------------------------*\
  LIST STACKED
\*----------------------------------------*/
.list-stacked > li {
  padding: 10px 0; }
  .list-stacked > li:first-child {
    padding-top: 0; }
  .list-stacked > li:last-child {
    padding-bottom: 0; }

.list-stacked--divided > li + li {
  border-top: 1px solid #eee; }

/**
   * Sizes
   */
.list-stacked--tight > li {
  padding-top: 0;
  padding-bottom: 0; }

.list-stacked--tiny > li {
  padding-top: 3px;
  padding-bottom: 3px; }

.list-stacked--small > li {
  padding-top: 6px;
  padding-bottom: 6px; }

.list-stacked--large > li {
  padding-top: 16px;
  padding-bottom: 16px; }

.list-stacked--huge > li {
  padding-top: 32px;
  padding-bottom: 32px; }

/*----------------------------------------*\
  EMBED RESPONSIVE
\*----------------------------------------*/
.embed-responsive {
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  position: relative; }

.embed-responsive__item,
.embed-responsive > iframe,
.embed-responsive > object,
.embed-responsive > embed {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border: 0; }

.embed-responsive--16\/9 {
  padding-bottom: 56.25%; }

.embed-responsive--4\/3 {
  padding-bottom: 75%; }

/*----------------------------------------*\
  ABLE PLAYER
\*----------------------------------------*/
/*
* Style resets
*/
.rbp-audiofield__stream .able .able-offscreen,
.rbp-audiofield__stream .able .able-button-handler-restart,
.rbp-audiofield__stream .able .able-button-handler-rewind,
.rbp-audiofield__stream .able .able-button-handler-forward,
.rbp-audiofield__stream .able .able-button-handler-slower,
.rbp-audiofield__stream .able .able-button-handler-faster,
.rbp-audiofield__stream .able .able-duration,
.rbp-audiofield__stream .able .able-speed,
.rbp-audiofield__stream .able .able-status,
.rbp-audiofield__stream .able .able-button-handler-preferences,
.rbp-audiofield__stream .able .able-popup,
.rbp-audiofield__stream .able .able-volume-help,
.rbp-audiofield__stream .able .able-seekbar-wrapper {
  display: none !important; }

.rbp-audiofield__stream .able .able-tooltip,
.rbp-audiofield__stream .able .able-prefs-form {
  display: none !important; }

.rbp-audiofield__stream .able .able-volume-track {
  display: block !important; }

.rbp-audiofield__stream .able button {
  border: none;
  background-color: transparent;
  padding: 0; }

.rbp-audiofield__stream .able .able-button-handler-play .able-clipped, .rbp-audiofield__stream .able .able-button-handler-volume .able-clipped {
  visibility: hidden; }

/*
* stream
*/
.rbp-audiofield__stream * {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.rbp-audiofield__stream .able {
  margin: 22px auto; }
  .rbp-audiofield__stream .able .able-controller {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .rbp-audiofield__stream .able .able-controller .able-left-controls {
      width: 175px; }
      .rbp-audiofield__stream .able .able-controller .able-left-controls .able-button-handler-play {
        width: 75px; }
      @media (max-width: 40em) {
        .rbp-audiofield__stream .able .able-controller .able-left-controls {
          width: 100px; } }
    .rbp-audiofield__stream .able .able-controller .able-right-controls {
      width: 100px;
      margin-top: -11px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media (max-width: 40em) {
        .rbp-audiofield__stream .able .able-controller .able-right-controls {
          margin-left: -40px; } }
      .rbp-audiofield__stream .able .able-controller .able-right-controls .able-button-handler-volume {
        width: 40px;
        margin: 15px 0 0 23px; }
      .rbp-audiofield__stream .able .able-controller .able-right-controls .able-volume-slider {
        height: 100px;
        width: 8px;
        padding-right: 8px;
        margin-left: 54px;
        background-color: #000000;
        position: relative;
        border-radius: 6.5px;
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg); }
        .rbp-audiofield__stream .able .able-controller .able-right-controls .able-volume-slider .able-volume-track-on {
          background-color: #333333; }
        .rbp-audiofield__stream .able .able-controller .able-right-controls .able-volume-slider .able-volume-head {
          display: inline-block;
          background-color: #fdfdfd;
          outline: 1px solid #333;
          position: absolute;
          height: 7px;
          width: 15px;
          left: -5px;
          top: 23px;
          z-index: 9175;
          cursor: pointer;
          border-radius: 5px; }
  .rbp-audiofield__stream .able .able-status-bar {
    margin: -71px 0 0 94px;
    font-size: 120%; }
    @media (max-width: 40em) {
      .rbp-audiofield__stream .able .able-status-bar {
        margin-left: 87px;
        margin-top: -90px; } }

.rbp-audiofield__ctc {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  bottom: 6px;
  right: -19px; }
  .rbp-audiofield__ctc .ctc {
    display: inline;
    color: black; }
  .rbp-audiofield__ctc .ctc__info {
    position: absolute;
    top: 40px;
    left: 0;
    text-align: center;
    width: 100%; }
    .rbp-audiofield__ctc .ctc__info .ctc__info-inner {
      display: inline;
      padding: 6px 12px;
      border-radius: 4px;
      border: 1px solid #188932;
      background-color: white; }
  @media (max-width: 40em) {
    .rbp-audiofield__ctc {
      bottom: 10px;
      width: 120%;
      left: -10px;
      margin-bottom: 25px; } }

/*
* copy to clipboard link
*/
.darktheme .rbp-audiofield__stream .able .able-controller .able-right-controls .able-volume-slider {
  background-color: #ffffff; }
  .darktheme .rbp-audiofield__stream .able .able-controller .able-right-controls .able-volume-slider .able-volume-track-on {
    background-color: #bbbbbb; }

/*----------------------------------------*\
  PLAYABLE ITEM
\*----------------------------------------*/
.playable-item {
  margin-bottom: 35px;
  padding-left: 60px;
  padding-right: 30px; }
  .playable-item p {
    font-size: 17px;
    margin: 0;
    line-height: 1.3; }
  .playable-item h3 {
    position: relative;
    margin-top: 0.414em;
    font-size: 1.4em; }
    .playable-item h3:before {
      content: "";
      background-size: contain;
      position: absolute;
      left: -42px;
      width: 32px;
      height: 32px; }
  .playable-item.kultur h3:before {
    background: url("../images/culture-black.svg") no-repeat left top; }
  .playable-item.sport h3:before,
  .playable-item.raiffeisen_super_league h3:before {
    background: url("../images/football-black.svg") no-repeat left top; }
  .playable-item.playable-item--live {
    background: white;
    border-radius: 8px; }

.darktheme .playable-item.kultur h3:before {
  background: url("../images/culture-white.svg") no-repeat left top; }

.darktheme .playable-item.sport h3:before,
.darktheme .playable-item.raiffeisen_super_league h3:before {
  background: url("../images/football-white.svg") no-repeat left top; }

.darktheme .playable-item--live {
  background: #313131; }

/*----------------------------------------*\
  NEXT EVENTS
\*----------------------------------------*/
.next-events > div > div {
  padding-left: 40px; }

.next-events h2 {
  margin-bottom: 27px; }

.next-events p {
  font-size: 16px;
  margin: 0 0 5px;
  line-height: 1.3; }

.next-events a {
  position: relative; }
  .next-events a:before {
    content: "";
    background-size: contain;
    position: absolute;
    top: -3px;
    left: -35px;
    width: 32px;
    height: 32px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7); }

.next-events .next-events-item {
  margin-bottom: 18px; }
  .next-events .next-events-item.kultur a:before {
    background: url("../images/culture-black.svg") no-repeat left top; }
  .next-events .next-events-item.sport a:before,
  .next-events .next-events-item.raiffeisen_super_league a:before {
    background: url("../images/football-black.svg") no-repeat left top; }
  .next-events .next-events-item.reportagen a:before {
    background: url("../images/mic-black.svg") no-repeat left top; }

.next-events .next-events__empty {
  margin-left: -40px; }

.darktheme .next-events .next-events-item.kultur a:before {
  background: url("../images/culture-white.svg") no-repeat left top; }

.darktheme .next-events .next-events-item.sport a:before,
.darktheme .next-events .next-events-item.raiffeisen_super_league a:before {
  background: url("../images/football-white.svg") no-repeat left top; }

.darktheme .next-events .next-events-item.reportagen a:before {
  background: url("../images/mic-white.svg") no-repeat left top; }

/*----------------------------------------*\
  CONTACT US
\*----------------------------------------*/
.contact-us {
  text-align: center; }
  .contact-us > div {
    margin-top: 20px;
    padding: 15px 20px;
    background: #e5f4eb;
    border-radius: 8px; }
  .contact-us h2 {
    margin-top: 10px;
    margin-bottom: 30px; }
  .contact-us p {
    margin-bottom: 1.8em; }

.darktheme .contact-us > div {
  background: #313131; }

/*----------------------------------------*\
   LATEST NEWS
\*----------------------------------------*/
.latest-news {
  padding-top: 10px;
  margin: 70px 0 30px;
  border-top: 1px solid #dcdcdc; }
  .latest-news h2 {
    font-size: 22px;
    margin-bottom: 40px; }
  .latest-news .latest-news-item {
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dcdcdc; }
    @media (min-width: 40em) {
      .latest-news .latest-news-item {
        border: 0; } }
    .latest-news .latest-news-item img {
      max-width: 100%;
      height: auto;
      margin-bottom: 12px;
      border-radius: 8px; }
      @media (min-width: 48em) {
        .latest-news .latest-news-item img {
          margin-bottom: 12px; } }
    .latest-news .latest-news-item .views-field-field-news-date {
      font-size: 14px;
      margin-bottom: 5px; }
    .latest-news .latest-news-item h3 {
      margin: 0 0 6px;
      font-size: 20px; }
    .latest-news .latest-news-item .views-field-body {
      word-wrap: break-word; }
      .latest-news .latest-news-item .views-field-body p {
        margin: 0;
        font-size: 15px; }

/*----------------------------------------*\
  PODCASTS
\*----------------------------------------*/
.podcast .podcast__item {
  padding: 25px 20px 25px 30px;
  margin-bottom: 32px;
  border: 1px solid #dcdcdc;
  border-radius: 8px; }
  .podcast .podcast__item audio {
    width: 100%; }
  .podcast .podcast__item h2 {
    position: relative; }
    .podcast .podcast__item h2:before {
      content: "";
      background-size: contain;
      position: absolute;
      left: -42px;
      width: 32px;
      height: 32px; }
  .podcast .podcast__item.kultur h2:before {
    background: url("../images/culture-black.svg") no-repeat left top; }
  .podcast .podcast__item.sport h2:before,
  .podcast .podcast__item.raiffeisen_super_league h2:before {
    background: url("../images/football-black.svg") no-repeat left top; }
  .podcast .podcast__item.reportagen h2:before {
    background: url("../images/mic-black.svg") no-repeat left top;
    width: 23px;
    height: 25px; }

.podcast .podcast__date,
.podcast .podcast__title,
.podcast .podcast__player,
.podcast .podcast__link,
.podcast .views-field-field-se-description {
  margin-left: 32px; }

.podcast .podcast__title {
  margin-top: 0.3em;
  font-size: 1.5rem; }

.podcast .podcast__link {
  color: #188932;
  padding-left: 32px;
  content: "";
  background: url("../images/download-green.svg") no-repeat left center;
  background-size: 20px; }

.podcast nav {
  width: 100%; }
  .podcast nav .js-pager__items {
    list-style: none;
    text-align: center;
    padding: 0; }
    .podcast nav .js-pager__items li {
      display: block;
      margin-bottom: 20px;
      padding: 12px 32px;
      border-radius: 4px;
      border: 1px solid #188932; }
      @media (min-width: 40em) {
        .podcast nav .js-pager__items li {
          display: inline-block; }
          .podcast nav .js-pager__items li:first-child {
            margin: 0 20px 0 -53px; }
          .podcast nav .js-pager__items li:last-child {
            margin-right: -20px; } }

.darktheme .podcast .podcast__item {
  background: #313131;
  border-color: #313131; }
  .darktheme .podcast .podcast__item.kultur h2:before {
    background: url("../images/culture-white.svg") no-repeat left top; }
  .darktheme .podcast .podcast__item.sport h2:before,
  .darktheme .podcast .podcast__item.raiffeisen_super_league h2:before {
    background: url("../images/football-white.svg") no-repeat left top; }
  .darktheme .podcast .podcast__item.reportagen h2:before {
    background: url("../images/mic-white.svg") no-repeat left top; }

/*----------------------------------------*\
   REPORTS
\*----------------------------------------*/
.reports {
  margin: 40px 0 30px; }
  .reports h2 {
    font-size: 22px;
    margin: 5px 0 8px; }
  .reports p {
    margin: 5px 0; }
  .reports .views-row {
    padding: 0 0 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dcdcdc; }
    .reports .views-row:last-child {
      border: none; }

.reports-item audio {
  margin-top: 20px; }

/*----------------------------------------*\
  BUTTON
\*----------------------------------------*/
.btn {
  display: inline-block;
  overflow: hidden;
  padding: 7px 12px;
  color: inherit;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
  line-height: inherit;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }
  .btn:hover, .btn:focus, .btn:active {
    text-decoration: none; }
  .btn:focus {
    outline: none; }

/**
 * Variants
 */
.btn--block {
  display: block;
  width: 100%; }

.btn--bare {
  padding: 0;
  border-radius: 0; }

/**
 * Styles
 */
.btn--default {
  color: black;
  background-color: #eee; }
  .btn--default:hover, .btn--default:focus {
    background-color: #f6f6f6; }
  .btn--default:active {
    background-color: #e1e1e1; }

.btn--primary {
  color: white;
  background-color: #188932; }
  .btn--primary:hover, .btn--primary:focus {
    background-color: #1eac3f; }
  .btn--primary:active {
    background-color: #14732a; }

.btn--call-to-action {
  padding-left: 30px;
  padding-right: 30px;
  color: white;
  background-color: #e5007d;
  padding: 10px 30px;
  color: white;
  background-color: #e5007d;
  border-radius: 8px;
  font-weight: normal; }
  .btn--call-to-action:hover, .btn--call-to-action:focus {
    background-color: #e5007d; }
  .btn--call-to-action:active {
    background-color: #e5007d; }

/**
 * States
 */
.btn--disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed; }

/**
 * Sizes
 */
.btn--small {
  padding: 3px 6px;
  font-size: 0.75rem;
  border-radius: 2px; }

.btn--large {
  padding: 12px 20px;
  font-size: 1.5rem;
  border-radius: 6px; }

/*----------------------------------------*\
  AUDIO DESCRIPTION
\*----------------------------------------*/
.audio-description header {
  margin-bottom: 40px; }

.audio-description .views-row {
  padding: 0 0 25px 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcdcdc; }
  .audio-description .views-row:last-child {
    border: none; }
  .audio-description .views-row.kultur h2:before {
    background: url("../images/culture-black.svg") no-repeat left top; }
  .audio-description .views-row.sport h2:before,
  .audio-description .views-row.raiffeisen_super_league h2:before {
    background: url("../images/football-black.svg") no-repeat left top; }
  .audio-description .views-row.reportagen h2:before {
    background: url("../images/mic-black.svg") no-repeat left top; }

.audio-description h2 {
  position: relative;
  margin: 5px 0 8px; }
  .audio-description h2:before {
    content: "";
    background-size: contain;
    position: absolute;
    left: -42px;
    width: 32px;
    height: 32px; }

.audio-description p {
  margin: 0 0 10px; }

.darktheme .audio-description .views-row.kultur h2:before {
  background: url("../images/culture-white.svg") no-repeat left top; }

.darktheme .audio-description .views-row.sport h2:before,
.darktheme .audio-description .views-row.raiffeisen_super_league h2:before {
  background: url("../images/football-white.svg") no-repeat left top; }

.darktheme .audio-description .views-row.reportagen h2:before {
  background: url("../images/mic-white.svg") no-repeat left top; }

/*----------------------------------------*\
  EXPOSED FILTERS
\*----------------------------------------*/
.views-exposed-form {
  width: 100%;
  margin-bottom: 50px; }
  .views-exposed-form label {
    margin-bottom: 10px;
    font-weight: normal; }
  .views-exposed-form select {
    border: 1px solid black; }
  @media (min-width: 40em) {
    .views-exposed-form label,
    .views-exposed-form select,
    .views-exposed-form .form-item,
    .views-exposed-form .form-actions,
    .views-exposed-form input[type='submit'] {
      display: inline-block;
      width: auto; }
    .views-exposed-form .form-item {
      margin-right: 10px; }
    .views-exposed-form label {
      margin-right: 50px; } }

/*----------------------------------------*\
  COLORBOX GALLERY
\*----------------------------------------*/
.colorbox-gallery a {
  display: block;
  margin-bottom: 20px; }

.colorbox-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px; }
  @media (min-width: 48em) {
    .colorbox-gallery img {
      width: 250px; } }

/*----------------------------------------*\
  LINK
\*----------------------------------------*/
.link-icon {
  width: 24px;
  height: 24px;
  display: inline-block; }

.link-icon--rss {
  background: url("../images/rss.svg") no-repeat left top; }

.link-icon--in-heading {
  margin-top: 2px; }

/**
 * Layouts
 * radiobp theme related
 */
/*----------------------------------------*\
  TOPBAR
\*----------------------------------------*/
.l-topbar {
  background-color: #e5f4eb;
  font-weight: 600; }
  .l-topbar .accessibility-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 40em) {
      .l-topbar .accessibility-tools {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
    .l-topbar .accessibility-tools a {
      cursor: pointer;
      margin-left: 4px;
      color: black; }
    .l-topbar .accessibility-tools .accessibility-tools__left-item .accessibility-tools__smaller {
      font-size: 0.75rem; }
    @media (min-width: 40em) {
      .l-topbar .accessibility-tools .accessibility-tools__left-item {
        margin-right: 20px; } }
    .l-topbar .accessibility-tools .accessibility-tools__right-item a {
      display: inline-block;
      width: 24px;
      height: 24px;
      text-align: center; }
    .l-topbar .accessibility-tools .accessibility-tools__right-item .accessibility-tools__dark {
      background-color: #333;
      color: #eee; }
    .l-topbar .accessibility-tools .accessibility-tools__right-item .accessibility-tools__light {
      background-color: white;
      color: #333; }

/*----------------------------------------*\
  HEADER
\*----------------------------------------*/
@media (min-width: 40em) {
  .l-header .l-header__inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.l-header .l-header__logo {
  width: 100%; }
  .l-header .l-header__logo img {
    width: 100%;
    height: auto; }
  @media (min-width: 40em) {
    .l-header .l-header__logo {
      display: block;
      width: 50%;
      margin-top: 20px; } }
  @media (min-width: 64em) {
    .l-header .l-header__logo {
      width: 40%;
      margin-top: 5px; } }

.l-header .l-header__site-slogan {
  display: block;
  width: 100%;
  padding-left: 32.5%; }
  @media (min-width: 40em) {
    .l-header .l-header__site-slogan {
      width: 45%;
      padding-left: 0;
      padding-right: 5%; } }
  @media (min-width: 64em) {
    .l-header .l-header__site-slogan {
      width: 55%;
      line-height: 1.2;
      padding-right: 30%; } }

/*----------------------------------------*\
  NAVIGATION
\*----------------------------------------*/
@media (min-width: 40em) {
  .l-navigation {
    border-top: 1px solid #dcdcdc; }
    .l-navigation .container__inner {
      padding-top: 0;
      padding-bottom: 0; } }

.l-navigation nav {
  position: relative; }
  .l-navigation nav.closed {
    background: url("../images/dropdown.svg") no-repeat 95% center;
    background-size: 13px 10px; }
  .l-navigation nav:not(.closed) .menu-item--active-trail a {
    background: url("../images/marker.svg") no-repeat 95% center;
    background-size: 13px 10px; }
    @media (min-width: 40em) {
      .l-navigation nav:not(.closed) .menu-item--active-trail a {
        background-image: none;
        background-color: #e5f4eb; } }
  .l-navigation nav ul {
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
    border-top: 1px solid black; }
    @media (min-width: 40em) {
      .l-navigation nav ul {
        border: none; } }
    .l-navigation nav ul li {
      display: block; }
      @media (min-width: 40em) {
        .l-navigation nav ul li {
          width: 25%;
          display: inline-block;
          margin-right: 0;
          text-align: center; } }
      @media (min-width: 64em) {
        .l-navigation nav ul li {
          width: 16.3%; } }
      @media (min-width: 40em) {
        .l-navigation nav ul li:last-child {
          text-align: right; }
          .l-navigation nav ul li:last-child a,
          .l-navigation nav ul li:last-child .is-active {
            padding: 10px 30px;
            color: white;
            background-color: #e5007d;
            border-radius: 8px;
            font-weight: normal;
            display: inline-block;
            padding: 10px 20px;
            margin: 8px 0;
            font-weight: bold; } }
      .l-navigation nav ul li a {
        display: block;
        padding: 20px 12px;
        border-left: 1px solid black;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        color: black;
        text-decoration: none;
        font-weight: 600;
        border-top: none; }
        @media (min-width: 40em) {
          .l-navigation nav ul li a {
            border: none; } }

/*----------------------------------------*\
  LIVE EVENTS
\*----------------------------------------*/
.l-live-events {
  border-top: 1px solid #dcdcdc;
  background: #e5f4eb; }
  .l-live-events h2 {
    font-weight: normal;
    font-size: 1.25em;
    margin-bottom: 1em; }

/*----------------------------------------*\
  CONTENT
\*----------------------------------------*/
.l-content {
  padding: 20px 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc; }

/*----------------------------------------*\
  BOTTOM CONTENT
\*----------------------------------------*/
.l-bottom-content {
  padding: 43px 0;
  background-color: #e5f4eb;
  border-bottom: 1px solid #dcdcdc; }
  .l-bottom-content .container__inner .become-member h2 {
    margin: 0 0 20px;
    text-align: center; }
  .l-bottom-content .container__inner .become-member .btn {
    display: block;
    width: 190px;
    margin: 0 auto; }
  .l-bottom-content .container__inner .become-member p {
    text-align: center; }
  @media (min-width: 64em) {
    .l-bottom-content .container__inner {
      padding-top: 0;
      padding-bottom: 0; } }

/*----------------------------------------*\
  BANNERS
\*----------------------------------------*/
.l-banners {
  padding: 20px 0; }
  .l-banners img {
    width: auto !important;
    max-height: 120px; }
  .l-banners img[src*="darktheme"] {
    display: none; }
  .l-banners .banner-item {
    text-align: center; }
    @media (max-width: 64em) {
      .l-banners .banner-item {
        text-align: center;
        margin-bottom: 25px; }
        .l-banners .banner-item a {
          display: inline-block; } }

/*----------------------------------------*\
  FOOTER
\*----------------------------------------*/
.l-footer {
  background-color: #e5f4eb;
  border-top: 1px solid #dcdcdc; }
  @media (min-width: 64em) {
    .l-footer .container__inner {
      padding-top: 0;
      padding-bottom: 0; } }
  .l-footer .block-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 64em) {
      .l-footer .block-footer {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    @media (max-width: 64em) {
      .l-footer .block-footer .block-footer__info, .l-footer .block-footer .block-footer__copyright {
        width: 100%;
        text-align: center; } }
    .l-footer .block-footer .block-footer__yt, .l-footer .block-footer .block-footer__fb {
      width: 100px; }
      .l-footer .block-footer .block-footer__yt img, .l-footer .block-footer .block-footer__fb img {
        width: 100%;
        height: auto; }
    .l-footer .block-footer .block-footer__copyright {
      margin-top: 20px; }
      @media (min-width: 48.0625em) {
        .l-footer .block-footer .block-footer__copyright {
          margin-top: 0;
          margin-left: auto; } }

/*----------------------------------------*\
  NAVIGATION
\*----------------------------------------*/
.darktheme {
  background-color: black; }
  .darktheme .container {
    background-color: black; }
    .darktheme .container *, .darktheme .container .l-header__site-name {
      color: white; }
    .darktheme .container .accessibility-tools__left-item a {
      color: white; }
    .darktheme .container a.is-active {
      background-color: white;
      color: black; }
    .darktheme .container .l-navigation nav ul {
      border-top-color: white; }
    .darktheme .container select {
      color: black; }
  .darktheme .l-banners img {
    display: none; }
  .darktheme .l-banners img[src*="darktheme"] {
    display: inline-block; }

/**
 * pages
 * radiobp single page
 */
/*----------------------------------------*\
  ABLE PLAYER
\*----------------------------------------*/
