@charset "UTF-8";
/**
 * Bourbon - A simple and lightweight mixin library for Sass.
 * @see http://bourbon.io/
*/
/**
 * Brics - A Starter Sass-Kit which embraces OOCSS, BEM and the Atomic Design-Approach.
 * @version 1.3.2
 * @see https://inkdpixels.github.io/Brics/
 */
/*
 * Clearfix for floated elements.
 */
/*
 * Break strings/text if it exceeds the boundaries of their container.
 */
/*
 * Removes all standard stylings for a list element and it's siblings.
 */
/**
 * Declarations which should be put at the top of the document e.g. @font-face declarations and CSS viewports.
 */
/*
 * Global border-box
 */
html {
  box-sizing: border-box;
  height: 100vh; }

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

/**
 * Normalize
 *
 * A cut-down version of normalize.css
 * @author Nicolas Gallagher
 * @link http://necolas.github.com/normalize.css/
 */
article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block; }

[hidden] {
  display: none; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-y: scroll;
  /* 2 */ }

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

optgroup {
  font-weight: bold; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  /* 3 */ }

button[disabled],
html input[disabled] {
  cursor: default; }

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

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

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Alert
*/
/**
 * Base and high-level wrapper elements
 */
body {
  margin: 0;
  font: 400 100%/1.5 "Myriad Pro", sans-serif;
  text-align: left;
  color: #333;
  background: #FFF; }

.siteWrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 1em;
  margin-left: auto;
  margin-right: auto; }
  @media all and (max-width: 768px) {
    .siteWrapper {
      padding: 0 0.5em; } }

.siteWrapper--medium {
  max-width: 58em; }

.site {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 1, 3 */ }

.siteHeader,
.siteFooter {
  flex: none;
  /* 2 */ }

.siteContent {
  flex: 1 0 auto;
  /* 2 */
  width: 100%; }

.siteContent::after {
  content: '\00a0';
  /* &nbsp; */
  display: block;
  margin-top: 1.5rem;
  height: 0px;
  visibility: hidden; }

@media (max-width: 768px) {
  .subpage.siteWrapper {
    display: flex;
    flex-direction: column; }
    .subpage.siteWrapper > article {
      order: 2; }
    .subpage.siteWrapper > aside {
      order: 1; } }

.search-results article {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0; }

.Site-content--full {
  padding: 0; }

.Site-content--full::after {
  content: none; }

.font-uppercase {
  text-transform: uppercase; }

/**
 * Buttons
*/
/*
 * The base class for all buttons.
 */
.button {
  display: inline-block;
  padding: .6em 1.2em;
  border: 1px solid #d1d1d1;
  background: #f0f0f0;
  border-radius: 2px;
  cursor: pointer;
  font-family: "Myriad Pro", sans-serif;
  font-size: .9em;
  font-weight: normal;
  line-height: 1;
  color: #333;
  vertical-align: top;
  transition: all 0.1s ease; }
  .button, .button:hover {
    text-decoration: none; }
  .button:hover {
    border-color: #333; }

.button--small {
  font-size: 13px;
  padding: 6px 12px; }

.button--primary {
  background-color: #0088cc;
  border: 1px solid #004466;
  color: #FFF; }
  .button--primary:hover {
    background-color: #00aaff;
    border: 1px solid #0088cc; }

.button--accent {
  background-color: #1bcc3c;
  color: #FFF;
  border-color: #1bcc3c; }

/*
 * Set the button width to the width of it's parent element.
 */
.button--full {
  display: block;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
  width: 100%; }

/*
 * Set the button width to the width of it's parent element.
 */
.button--invert {
  color: white; }
  .button--invert:hover {
    background: white;
    border-color: white;
    color: #A42C30; }

/*
 * Visualize the disabled state of the button.
 */
.button--disabled,
.button[disabled] {
  color: #333;
  pointer-events: none;
  opacity: .5; }

/*
 * Visualize the positive purpose/action of the button.
 */
.button--positive {
  color: #8CD700; }
  .button--positive:hover {
    background: #8CD700;
    border-color: #8CD700; }

/*
 * Visualize the negative purpose/action of the button.
 */
.button--negative {
  color: #D75200; }
  .button--negative:hover {
    background: #D75200;
    border-color: #D75200; }

.closeButton {
  color: #666;
  background-color: #f5f5f5;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  font-size: 22px;
  text-align: center;
  line-height: 30px;
  font-weight: normal !important; }
  .closeButton:hover {
    text-decoration: none;
    color: #000;
    background-color: #f0f0f0; }

.closeButton--absolute {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 500; }

.btn, .wpcf7-submit, .btn-small {
  display: inline-block;
  background: #A42C30;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0.8em 0;
  font-size: 1.2rem;
  text-transform: uppercase; }
  .btn:after, .wpcf7-submit:after, .btn-small:after {
    content: '\f105';
    font-family: FontAwesome;
    font-weight: bold;
    margin: 0 5px 0 10px; }
  .btn:hover, .wpcf7-submit:hover, .btn-small:hover {
    text-decoration: none; }

.read-more {
  font-size: 18px;
  margin-top: 20px; }

/**
 * Code & pre-formatted text elements
 */
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: .8em; }

code {
  background: #f2f2f2;
  padding: .3em .5em;
  border-radius: 2px; }
  pre code {
    padding: 0; }

pre {
  white-space: pre-wrap;
  margin: 0 0 1.5em; }

address {
  font-style: normal; }

/**
 * Form
 */
/*
 * Form wrapper elements
 */
form {
  margin: 0; }

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

.fieldset--restrictedHeight {
  border: 4px solid #ccc;
  margin: 0;
  position: relative; }
  .fieldset--restrictedHeight legend {
    background-color: #ccc;
    margin: 0;
    display: block;
    float: left;
    padding: 0.2em 0.5em;
    font-size: 1.1em;
    font-weight: 600; }
  @media all and (max-width: 768px) {
    .fieldset--restrictedHeight div {
      margin-bottom: 0.5em; } }

.fieldset__inputContent {
  padding: 1em;
  overflow-y: auto;
  max-height: 250px; }

a.fieldset__clear {
  position: absolute;
  top: 0.3em;
  right: 0.5em;
  z-index: 1;
  font-size: 0.875em; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  padding: 6px;
  max-width: 100%; }

/**
 * Headings
 */
/*
 * The base class for all headings.
 */
.h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: .4em;
  line-height: 1.2;
  text-rendering: optimizeLegibility; }

/*
 * Heading modifiers
 * Styles the heading without changing it's importance for SEO robots etc.
 */
h1, .h1 {
  font-size: 2.4rem;
  font-weight: 400; }

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 400; }
  @media all and (max-width: 550px) {
    h2, .h2 {
      font-size: 1.45rem; } }

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 400; }
  @media all and (max-width: 550px) {
    h3, .h3 {
      font-size: 1.15rem; } }

h4, .h4 {
  font-size: 1.05rem; }

h5, .h5 {
  font-size: 1rem;
  font-weight: 400; }

h6, .h6 {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase; }

.sectionHeading--secondary {
  color: #595959;
  font-size: 1.35rem; }

h1 a {
  color: #A42C30;
  font-weight: 400; }

/**
 * Form inputs
 */
/*
 * Base styling for form input fields.
 */
textarea {
  height: auto;
  min-height: 72px;
  resize: vertical;
  overflow: auto;
  vertical-align: top; }

input::-webkit-datetime-edit {
  margin-top: -.17em;
  margin-bottom: -.17em; }

input[type="checkbox"],
input[type="radio"] {
  margin-right: .35em;
  cursor: pointer; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font: 400 1em/1.4 "Myriad Pro", sans-serif; }

input:-moz-placeholder, textarea:-moz-placeholder {
  font: 400 1em/1.4 "Myriad Pro", sans-serif; }

input::-moz-placeholder, textarea::-moz-placeholder {
  font: 400 1em/1.4 "Myriad Pro", sans-serif; }

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font: 400 1em/1.4 "Myriad Pro", sans-serif; }

input:placeholder, textarea:placeholder {
  font: 400 1em/1.4 "Myriad Pro", sans-serif; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #666666; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #666666; }

/*
 * The base class for all textInputs.
 */
input[type="search"] {
  -webkit-appearance: none;
  box-sizing: border-box; }

input[type="checkbox"] + label, input[type="radio"] + label {
  display: inline;
  margin-right: 1em; }

.textInput {
  padding: .5em 0.75em;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 0.9em;
  color: #404040; }
  .textInput:focus {
    outline: none;
    border-color: #484848;
    box-shadow: 0px 0px 3px 0px rgba(34, 34, 34, 0.3); }

.required {
  color: #FA4659; }

/*
 * Disabled state for inputs.
 */
.textInput[disabled],
.textInput--disabled {
  opacity: .5;
  pointer-events: none; }

/*
 * Positive validated state for inputs.
 */
.textInput--success {
  border-color: #8CD700; }

/*
 * Negative validated state for inputs.
 */
.textInput--failure {
  border-color: #FA4659;
  background-color: white;
  background-image: url(assets/images/icons/icon-danger.svg);
  background-repeat: no-repeat;
  background-position: center right 0.75em;
  background-size: 20px auto; }

.inputAddOn {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.inputAddOn__field {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none; }

.inputAddOn__item.button {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 50px;
  -moz-flex: 0 0 50px;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.inputAddOn__appendix {
  padding: 0 1.2em;
  line-height: 2;
  background: #ececec;
  border: 1px solid #d9d9d9;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.restrictedInput__indicator {
  margin-bottom: 5px;
  float: right; }

.u-inputHelper {
  font-size: 0.85em;
  margin-top: 0.4em;
  color: #595959; }

label + .u-inputHelper {
  margin: 0 0 0.5em; }

input + .u-inputHelper, textarea + .u-inputHelper {
  margin: 0.5em 0 0 0; }

/**
 * Form elements
 */
/*
 * Base styling for all labels.
 */
label {
  display: block;
  font-weight: 400;
  font-size: 1rem; }
  label[for] {
    cursor: pointer; }

.label--large {
  font-size: 1.2em; }

/*
 * Base styling for all legends.
 */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0.75em;
  font-size: 1.25rem; }

/**
 * Anchors
 */
/*
 * Base styling for all anchors/links.
 */
a {
  color: #0088cc;
  text-decoration: none;
  cursor: pointer;
  background: transparent; }
  a:hover, a:active, a:focus {
    text-decoration: underline; }
  a:active, a:hover {
    outline: 0; }
  p a {
    margin: -.33em;
    padding: .33em;
    text-decoration: underline; }

.textButton {
  text-transform: uppercase;
  background: transparent;
  padding: 0.8em 0;
  font-weight: 400;
  color: #A42C30;
  font-size: 1.5rem;
  display: inline-block; }
  .textButton:after {
    content: "";
    background-image: url(assets/images/arrows/arrow-right-open-primary.svg);
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    background-size: auto 80%;
    display: inline-block;
    float: right;
    margin: 0.25em 0 0 0.65em; }

.textButton--accent {
  background-color: #1bcc3c;
  color: #FFF;
  border-radius: 2px; }

.textButton + .textButton {
  margin-left: 1em; }

/**
 * Lists
 */
menu,
ol,
ul {
  padding: 0 0 0 2.5em;
  margin: 0 0 1.5em; }

li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Definitions
 */
dl {
  margin: 0 0 1.5em; }

/*
 * Displays the definition element in a horizontal order.
 */
.dl--horizontal:before, .dl--horizontal:after {
  content: '';
  display: table; }

.dl--horizontal:after {
  clear: both; }

.dl--horizontal dt {
  width: 19%;
  float: left;
  overflow: hidden;
  clear: left;
  text-align: right;
  word-wrap: break-word;
  hyphens: auto; }

.dl--horizontal dd {
  margin-left: 21%; }

/**
 * Media elements
 */
embed,
iframe,
object,
img {
  max-width: 100%;
  border: 0; }

img {
  font-style: italic;
  vertical-align: middle; }
  img[height] {
    height: auto; }
  img.alignleft {
    float: left;
    margin-right: 20px; }
    @media (max-width: 460px) {
      img.alignleft {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px; } }
  img.aligncenter {
    margin: 0 auto; }
    @media (max-width: 460px) {
      img.aligncenter {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px; } }
  img.alignright {
    float: right;
    margin-left: 20px; }
    @media (max-width: 460px) {
      img.alignright {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px; } }

.wp-caption {
  max-width: 100%; }
  .wp-caption.alignleft {
    float: left; }
  .wp-caption.aligncenter {
    margin: 0 auto; }
  .wp-caption.alignright {
    float: right; }
  .wp-caption img {
    margin-bottom: 10px; }

figure {
  margin: 0; }

figcaption {
  font-size: 0.875rem; }

audio,
video,
iframe {
  margin: 0 0 1.5em; }

audio {
  min-width: 65%; }
  audio:not([controls]) {
    display: none;
    height: 0; }

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

.mediaItem {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: start; }

.mediaItem__figure {
  margin-right: 0.75em; }

.mediaItem__body {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

img.attachment-post-thumbnail {
  max-width: 360px;
  width: 100%;
  float: left;
  margin-right: 20px; }

/**
 * Quotes
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

blockquote {
  margin: 0 0 1.5em; }

/**
 * Rulers
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  height: 0;
  padding: 0;
  margin: 3em 0;
  border: 0;
  border-top: 1px solid #d9d9d9; }

/**
 * Tables
 */
table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

th {
  text-align: left;
  vertical-align: bottom; }

td {
  vertical-align: top; }

.tag {
  background: #4b4b4b;
  color: #fff;
  padding: 0.2em 0.8em 0.18em;
  font-size: 0.65em;
  border-radius: 20px;
  text-transform: uppercase;
  position: relative;
  margin-right: 0.3em; }

.tag--large {
  padding: 0.6em 1em;
  font-size: 1em; }

.tag--small {
  padding: 0 0.65em;
  font-size: 0.65em;
  font-weight: 600; }

.tag--accent {
  background-color: #1bcc3c; }

.tag--danger {
  background-color: #FA4659; }

/**
 * Typographic elements
 */
p {
  margin: 0 0 1.5em; }

b,
strong {
  font-weight: 700; }

small {
  font-size: 80%; }

abbr[title] {
  border-bottom: 1px dotted;
  cursor: help; }

mark {
  padding-left: .2em;
  padding-right: .2em;
  background: #A42C30;
  color: white; }

dfn {
  font-style: italic; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

.publishTime {
  background-color: #777777;
  padding: 2px 3px;
  color: #FFF;
  font-size: 0.75em; }

.wp-caption-text {
  font-style: italic;
  color: #7b7b7b; }

/**
 * Button group
 * Displays a set of buttons in a group.
 */
.btnGroup:before, .btnGroup:after {
  content: '';
  display: table; }

.btnGroup:after {
  clear: both; }

.btnGroup__btn {
  float: left;
  border-radius: 0;
  border-right: 0; }
  .btnGroup__btn:first-child {
    border-radius: 2px 0 0 2px; }
  .btnGroup__btn:last-child {
    border-radius: 0 2px 2px 0;
    border-right: 1px solid; }

/**
 * Embed a external iframe or media file with a fluid width/height ratio.
 */
/*
 * The base class for all embed containers.
 */
.flexibleEmbed {
  position: relative;
  display: block;
  overflow: hidden; }

/*
 * The class for the embedded content.
 */
.flexibleEmbed__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/*
 * The class for the desired width/height ratio. Default ratio is 1:1.
 */
.flexibleEmbed__ratio {
  display: block;
  width: 100%;
  padding-bottom: 100%; }

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

.flexibleEmbed__ratio--3\/1 {
  padding-bottom: 33.333%; }

.flexibleEmbed__ratio--2\/1 {
  padding-bottom: 50%; }

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

/**
 * Form
 */
/*
 * The base class for all forms.
 */
.form {
  margin-bottom: 1.5rem; }

.form__item {
  margin-bottom: 0.75rem; }

/*
 * Display a `<form>` and all it's content in a horizontal order.
 */
.form--inline label,
.form--inline button,
.form--inline input,
.form--inline select,
.form--inline textarea,
.form--inline .form__item {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle; }

.form--inline .form__item {
  margin-right: 1em; }

.form--inline label {
  margin-right: .3em; }

.small-text {
  font-size: 12px;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 10px; }

.wpcf7-submit, .btn-small {
  border-radius: 0;
  border: 0;
  font-size: 1rem; }

.wpcf7-select,
input[type="date"],
input[type="number"] {
  padding: 6px; }

input[type="date"] {
  font-family: "Myriad Pro", sans-serif; }

select::placeholder, input::placeholder, textarea::placeholder {
  color: #b1b1b1; }

/**
 * Grids
 */
/*
 * Grid object which is based on the util width classes.
 */
.g,
.grid {
  margin-left: -0.5rem;
  margin-right: -0.5rem; }
  .g:before, .g:after,
  .grid:before,
  .grid:after {
    content: '';
    display: table; }
  .g:after,
  .grid:after {
    clear: both; }

/*
 * Grid item, floats itself into the grid and depends on the u-w#/# util classes.
 */
.gi,
.grid__item {
  float: left;
  padding-left: 0.5rem;
  padding-right: 0.5rem; }
  @media all and (max-width: 768px) {
    .gi,
    .grid__item {
      width: 100% !important; } }

.gi--separatedLeft {
  border-left: 1px solid #d9d9d9;
  padding-left: 1rem; }
  @media all and (max-width: 768px) {
    .gi--separatedLeft {
      padding-left: 0.5rem;
      border-left: none; } }

.gi--separatedRight {
  padding-right: 1rem; }
  @media all and (max-width: 768px) {
    .gi--separatedRight {
      padding-right: 0.5rem; } }

@media all and (max-width: 1200px) {
  .g--breakMedium .gi.u-w1\/2 {
    width: 100% !important; }
  .g--breakMedium .gi.u-w1\/4 {
    width: 50% !important; } }

@media all and (max-width: 700px) {
  .g--breakMedium .gi.u-w1\/4 {
    width: 100% !important; } }

@media all and (max-width: 1200px) {
  .g--breakMediumToHalf .gi.u-w1\/4 {
    width: 50% !important; }
  .g--breakMediumToHalf .gi.u-w3\/4 {
    width: 50% !important; } }

@media all and (max-width: 700px) {
  .g--breakMediumToHalf .gi.u-w1\/4 {
    width: 100% !important; }
  .g--breakMediumToHalf .gi.u-w3\/4 {
    width: 100% !important; } }

/**
 * Media
 */
/*
 * The base class for all media elements.
 */
.media {
  display: block; }
  .media:before, .media:after {
    content: '';
    display: table; }
  .media:after {
    clear: both; }

/*
 * The class for the floated media element.
 */
.media__img {
  float: left;
  margin-right: 1.5em; }
  .media__img > img {
    display: block; }

/*
 * Reverts the order of the elements.
 */
.media__img--rev {
  float: right;
  margin-left: 1.5em;
  margin-right: 0; }

.media__img--compact {
  margin-right: 0.75em; }
  .media__img--compact.media__img--rev {
    margin-left: 0.75em;
    margin-right: 0; }

/*
 * The class for the content beside the media element.
 */
.media__body {
  overflow: hidden;
  display: block; }
  .media__body,
  .media__body > :last-child {
    margin-bottom: 0; }

.fb_iframe_widget {
  margin-bottom: 20px; }

@media all and (max-width: 519px) {
  .feeds .grid__item.facebook {
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px; } }

@media all and (min-width: 520px) {
  .feeds .panel__header.grid__item {
    width: 100% !important; }
    .feeds .panel__header.grid__item .grid__item {
      width: 100% !important; } }

.feeds h3 {
  text-align: center;
  margin: 8px 0 24px; }
  .feeds h3 img {
    display: inline-block;
    width: 32px;
    vertical-align: text-bottom;
    margin-right: 4px; }

.video-container {
  position: relative;
  padding-bottom: 55.00%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

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

/**
* Navigations
*/
/*
* Throws a list into horizontal mode.
*/
.topBar__nav ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.topBar__nav li:first-child {
  margin-right: auto; }
  .topBar__nav li:first-child a {
    border-right: 0; }

.topBar__nav li:nth-of-type(1) a::after {
  content: '\f105';
  font-family: FontAwesome;
  margin-left: 10px; }

.topBar__nav li {
  padding: 0.6em 0 .6em 1em; }
  .topBar__nav li:hover {
    background-color: #d2d2d2;
    text-decoration: none; }

.topBar__nav a {
  display: inline-block;
  color: #222;
  text-transform: uppercase;
  font-size: 0.875em;
  padding-right: 1em;
  border-right: 1px solid #afafaf; }

@media all and (max-width: 880px) {
  .topBar__nav {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch; }
    .topBar__nav ul {
      -webkit-box-pack: start;
      -moz-box-pack: start;
      box-pack: start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -o-justify-content: flex-start;
      justify-content: flex-start;
      -ms-flex-pack: start;
      width: 880px; }
    .topBar__nav li:first-child {
      margin-right: 0; } }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.navBar {
  float: left;
  width: 100%;
  background-color: #A42C30; }

.topBar__nav .current-page-ancestor, .topBar__nav .current_page_item {
  font-weight: 600; }

/*==================================================
  $A11Y Dropdown
  ==================================================*/
/* Top level nav */
.mainNav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center; }
  .mainNav .sub-menu {
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }
    .mainNav .sub-menu a {
      font-size: 1.1em;
      padding: 0.8em 1em; }

/* Dropdowns */
.mainNav ul {
  position: absolute;
  top: 4.25em;
  left: -9999px;
  opacity: 0;
  transition: 0.075s linear opacity;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff; }
  .mainNav ul li a {
    color: #A42C30;
    border-bottom: 1px solid #9e9e9e; }
    .mainNav ul li a:hover {
      background-color: #e59ea0;
      color: #2b0c0d; }

.mainNav li {
  float: left;
  position: relative; }

/* Top level nav items */
.mainNav li > a {
  float: left;
  display: block;
  padding: 0.9em 1em;
  text-decoration: none;
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.3rem;
  border-left: 1px solid #df8e8e; }

.mainNav li:first-child > a {
  text-indent: -9999em;
  background-image: url(assets/images/icons/icon-home.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 38% auto;
  min-width: 70px; }

.mainNav li:last-child > a {
  border-right: 1px solid #df8e8e;
  border-bottom: 0; }

/* Top level hover state, preserve hover state when hovering dropdown  */
.mainNav li > a:hover,
.mainNav li > a:focus,
.mainNav li:focus > a,
.mainNav li:hover > a {
  background-color: #741f22;
  outline: 0;
  color: #fff; }

@media all and (min-width: 768px) {
  .mainNav .sub-menu li:hover .nav_thumb {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 50%; } }

.mainNav li:hover ul,
.mainNav li:focus ul,
ul.show-menu {
  left: 0;
  opacity: 0.99; }

.mainNav ul li {
  float: none;
  position: static; }

.mainNav ul a {
  float: none;
  display: block;
  font-size: 1em;
  text-shadow: none;
  transition: 0.075s linear all;
  background-image: none !important;
  text-indent: 0 !important;
  border-left: none !important;
  border-right: none !important; }

.mainNav ul a:hover,
.mainNav ul a:focus {
  text-shadow: none; }

@media all and (max-width: 919px) {
  .navBar .siteWrapper {
    padding: 0; }
  .mainNav li > a {
    font-size: 0.875em; }
  .mainNav li:first-child > a {
    min-width: 50px; } }

.navToggle {
  display: none;
  border: none;
  background-color: #A42C30;
  color: #FFF;
  border-radius: 3px;
  font-size: 1.3rem;
  padding: 0.5rem; }
  .navToggle span {
    width: 20px;
    text-align: center; }
  .navToggle:active, .navToggle:hover {
    text-decoration: none;
    background-color: #7c2124; }
  .navToggle .navToggle__closeIcon {
    display: none; }
  .navToggle.open .navToggle__lineIcon {
    display: none; }
  .navToggle.open .navToggle__closeIcon {
    display: inline-block; }

@media all and (max-width: 767px) {
  .navToggle {
    display: block; }
  .mainNav {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none; }
    .mainNav.open {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex; }
  .mainNav > li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
  .mainNav li:first-child > a {
    text-indent: 0;
    background-image: none;
    min-width: 0; }
  .mainNav li > a {
    width: 100%;
    border-bottom: 1px solid #df8e8e; }
  .mainNav li:last-child a {
    border-right: none; }
  .mainNav li ul {
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    float: left;
    padding: 0; } }

/* sub-navigation panel open state */
.sub-nav.open {
  display: block;
  z-index: 500; }

/* list of items within sub-navigation panel */
.sub-nav ul {
  display: inline-block;
  vertical-align: top;
  margin: 0 1em 0 0;
  padding: 0;
  min-width: 180px; }

/* list item within sub-navigation panel */
.sub-nav li {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #FFF; }

.sub-nav li h4 {
  margin-top: 1em;
  border-bottom: 1px solid #919191;
  padding-bottom: 0.2em; }

.sub-nav li a {
  color: #FFF;
  padding: 0.35em 0.5em;
  display: block;
  font-size: 0.9em; }

.breadcrumbs {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-bottom: 1.5rem; }
  .breadcrumbs:before, .breadcrumbs:after {
    content: '';
    display: table; }
  .breadcrumbs:after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    margin-right: 1em; }
  .breadcrumbs li + li:before {
    content: "/";
    display: inline-block;
    margin-right: 1em;
    color: #595959; }
  @media all and (max-width: 768px) {
    .breadcrumbs {
      display: none; } }

.subnav {
  padding: 1em; }
  .subnav ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .subnav li {
    border-bottom: 1px solid #d9d9d9; }
    .subnav li a {
      display: block;
      color: #212121;
      font-weight: bold;
      padding: 0.5em; }
      .subnav li a.current {
        border-left: 3px solid #0088cc;
        color: #0088cc; }
  @media all and (max-width: 768px) {
    .subnav {
      padding: 0;
      margin-bottom: 1rem;
      display: none; } }

.subnavToggle {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

.subnavToggleLabel {
  display: none !important; }
  @media all and (max-width: 768px) {
    .subnavToggleLabel {
      display: block !important;
      font-weight: bold;
      width: 100%;
      background: url(assets/images/arrows/arrow-down-dark-gray.svg) no-repeat right 15px center;
      background-size: 16px auto;
      margin-bottom: 1rem; } }

.subnavToggle:checked + label {
  color: #A42C30;
  background-image: url(assets/images/arrows/arrow-up-dark-gray.svg); }

.subnavToggle:checked ~ .subnav {
  display: block; }

@media all and (max-width: 900px) {
  .nav__toggle {
    display: inline-block; }
  .nav-menu {
    display: none; }
    .nav-menu.open {
      display: block; }
    .nav-menu li, .nav-menu a {
      display: block; }
    .nav-menu .nav-item > a:focus {
      background-color: #FFF; }
  .sub-nav {
    position: relative;
    top: auto;
    background-color: #FFF; }
    .sub-nav li, .sub-nav li a {
      color: #222; }
  .nav-item > a:focus, .nav-item > a:hover, .nav-item > a.open {
    background: #DDD;
    color: #222; } }

.iconMenu {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  box-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: distribute; }
  .iconMenu li {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
    @media all and (max-width: 640px) {
      .iconMenu li {
        border-bottom: 1px solid #f1f1f1;
        padding: 17px 10px 0; }
        .iconMenu li:last-of-type {
          border-bottom: none; } }
  @media all and (max-width: 640px) {
    .iconMenu {
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      box-orient: vertical;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      box-direction: normal;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      flex-direction: column;
      -ms-flex-direction: column;
      padding: 0; } }

.iconMenu__link {
  color: #A42C30;
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.7rem;
  font-weight: 400; }
  .iconMenu__link img {
    margin-right: 1rem;
    height: 70px;
    width: 70px; }
  .iconMenu__link span {
    -webkit-align-self: center;
    -moz-align-self: center;
    align-self: center;
    -ms-flex-item-align: center;
    text-align: center; }
    .iconMenu__link span:after {
      content: "";
      background-image: url(assets/images/arrows/arrow-right-open-primary.svg);
      background-repeat: no-repeat;
      width: 1.7rem;
      height: 1.7rem;
      background-size: auto 80%;
      display: inline-block;
      float: right;
      margin: 0.24em 0 0 0.65em; }
  @media all and (max-width: 930px) {
    .iconMenu__link {
      font-size: 1.2rem; }
      .iconMenu__link img {
        height: 50px; }
      .iconMenu__link span:after {
        width: 1.2rem;
        height: 1.2rem; } }
  @media all and (max-width: 640px) {
    .iconMenu__link {
      margin-bottom: 1rem; } }

.iconMenu--stacked .iconMenu__link {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column; }
  .iconMenu--stacked .iconMenu__link span::after {
    display: none; }
  .iconMenu--stacked .iconMenu__link img {
    height: 170px;
    margin: 0 auto 1em;
    width: 170px;
    border: 1px solid #a9a9a9;
    border-radius: 50%; }

@media all and (max-width: 730px) {
  .iconMenu--stacked .iconMenu__link img {
    height: 150px;
    width: 150px; } }

@media all and (max-width: 640px) {
  .iconMenu--keepCenter li {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
    .iconMenu--keepCenter li .iconMenu__link {
      display: block;
      text-align: center; } }

.iconMenu--keepCenter img {
  margin-right: 0; }

.error404 #content .siteWrapper {
  padding: 20px 1em;
  text-align: center; }
  @media all and (min-width: 768px) {
    .error404 #content .siteWrapper {
      padding: 40px 1em; } }
  .error404 #content .siteWrapper:after {
    content: '';
    clear: both;
    display: table; }

.page .subpage, .single-uutiset .subpage, .archive .subpage, .search .subpage, .single-kantasairaala .subpage, .single-post .subpage {
  padding: 20px 1em; }
  @media all and (min-width: 768px) {
    .page .subpage, .single-uutiset .subpage, .archive .subpage, .search .subpage, .single-kantasairaala .subpage, .single-post .subpage {
      padding: 40px 1em; } }
  .page .subpage:after, .single-uutiset .subpage:after, .archive .subpage:after, .search .subpage:after, .single-kantasairaala .subpage:after, .single-post .subpage:after {
    content: '';
    clear: both;
    display: table; }
  .page .subpage .siteWrapper, .single-uutiset .subpage .siteWrapper, .archive .subpage .siteWrapper, .search .subpage .siteWrapper, .single-kantasairaala .subpage .siteWrapper, .single-post .subpage .siteWrapper {
    display: flex;
    flex-flow: row wrap; }
  .page .subpage .hentry, .page .subpage .main-content, .single-uutiset .subpage .hentry, .single-uutiset .subpage .main-content, .archive .subpage .hentry, .archive .subpage .main-content, .search .subpage .hentry, .search .subpage .main-content, .single-kantasairaala .subpage .hentry, .single-kantasairaala .subpage .main-content, .single-post .subpage .hentry, .single-post .subpage .main-content {
    float: right;
    width: 100%; }
    @media all and (min-width: 768px) {
      .page .subpage .hentry, .page .subpage .main-content, .single-uutiset .subpage .hentry, .single-uutiset .subpage .main-content, .archive .subpage .hentry, .archive .subpage .main-content, .search .subpage .hentry, .search .subpage .main-content, .single-kantasairaala .subpage .hentry, .single-kantasairaala .subpage .main-content, .single-post .subpage .hentry, .single-post .subpage .main-content {
        float: right;
        width: 74%; } }
  .page .subpage #sidebar, .single-uutiset .subpage #sidebar, .archive .subpage #sidebar, .search .subpage #sidebar, .single-kantasairaala .subpage #sidebar, .single-post .subpage #sidebar {
    width: 100%;
    float: left; }
    @media all and (max-width: 767px) {
      .page .subpage #sidebar, .single-uutiset .subpage #sidebar, .archive .subpage #sidebar, .search .subpage #sidebar, .single-kantasairaala .subpage #sidebar, .single-post .subpage #sidebar {
        margin-bottom: 30px; }
        .page .subpage #sidebar .sidebar-navi-submenu, .single-uutiset .subpage #sidebar .sidebar-navi-submenu, .archive .subpage #sidebar .sidebar-navi-submenu, .search .subpage #sidebar .sidebar-navi-submenu, .single-kantasairaala .subpage #sidebar .sidebar-navi-submenu, .single-post .subpage #sidebar .sidebar-navi-submenu {
          margin-bottom: 0; } }
    .page .subpage #sidebar .sidenav-header, .single-uutiset .subpage #sidebar .sidenav-header, .archive .subpage #sidebar .sidenav-header, .search .subpage #sidebar .sidenav-header, .single-kantasairaala .subpage #sidebar .sidenav-header, .single-post .subpage #sidebar .sidenav-header {
      text-transform: uppercase;
      position: relative; }
    @media all and (min-width: 768px) {
      .page .subpage #sidebar, .single-uutiset .subpage #sidebar, .archive .subpage #sidebar, .search .subpage #sidebar, .single-kantasairaala .subpage #sidebar, .single-post .subpage #sidebar {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        box-flex: 0;
        -webkit-flex: 0 0 26%;
        -moz-flex: 0 0 26%;
        -ms-flex: 0 0 26%;
        flex: 0 0 26%;
        float: left;
        width: 26%;
        padding: 0 60px 0 0; } }
    .page .subpage #sidebar .parent, .single-uutiset .subpage #sidebar .parent, .archive .subpage #sidebar .parent, .search .subpage #sidebar .parent, .single-kantasairaala .subpage #sidebar .parent, .single-post .subpage #sidebar .parent {
      border-bottom: 1px solid;
      font-weight: 700; }
    .page .subpage #sidebar ul, .single-uutiset .subpage #sidebar ul, .archive .subpage #sidebar ul, .search .subpage #sidebar ul, .single-kantasairaala .subpage #sidebar ul, .single-post .subpage #sidebar ul {
      padding: 0;
      list-style: none;
      display: none; }
      @media all and (min-width: 768px) {
        .page .subpage #sidebar ul, .single-uutiset .subpage #sidebar ul, .archive .subpage #sidebar ul, .search .subpage #sidebar ul, .single-kantasairaala .subpage #sidebar ul, .single-post .subpage #sidebar ul {
          display: block; } }
      .page .subpage #sidebar ul ul.children, .single-uutiset .subpage #sidebar ul ul.children, .archive .subpage #sidebar ul ul.children, .search .subpage #sidebar ul ul.children, .single-kantasairaala .subpage #sidebar ul ul.children, .single-post .subpage #sidebar ul ul.children {
        padding-left: 20px; }
    .page .subpage #sidebar > ul, .single-uutiset .subpage #sidebar > ul, .archive .subpage #sidebar > ul, .search .subpage #sidebar > ul, .single-kantasairaala .subpage #sidebar > ul, .single-post .subpage #sidebar > ul {
      padding-left: 0; }
    .page .subpage #sidebar .current_page_item > a, .single-uutiset .subpage #sidebar .current_page_item > a, .archive .subpage #sidebar .current_page_item > a, .search .subpage #sidebar .current_page_item > a, .single-kantasairaala .subpage #sidebar .current_page_item > a, .single-post .subpage #sidebar .current_page_item > a {
      font-weight: 700; }
    .page .subpage #sidebar a, .single-uutiset .subpage #sidebar a, .archive .subpage #sidebar a, .search .subpage #sidebar a, .single-kantasairaala .subpage #sidebar a, .single-post .subpage #sidebar a {
      color: #A42C30;
      padding: 14px 0 0px;
      display: block; }
    .page .subpage #sidebar li a, .single-uutiset .subpage #sidebar li a, .archive .subpage #sidebar li a, .search .subpage #sidebar li a, .single-kantasairaala .subpage #sidebar li a, .single-post .subpage #sidebar li a {
      border-bottom: 1px solid #e4e4e4; }

@media all and (min-width: 768px) {
  .iconMenu--withBorders li {
    width: calc(100%/3);
    border-right: 1px solid #b9b9b9; }
    .iconMenu--withBorders li span {
      margin: 0 auto;
      display: block; }
  .iconMenu--withBorders li:last-of-type {
    border-right: 0; } }

.mainNav li > div {
  float: left;
  display: block;
  padding: 0.9em 1em;
  text-decoration: none;
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.3rem;
  border-left: 1px solid #df8e8e;
  cursor: pointer; }

.navBar {
  z-index: 12; }

.language-selection {
  margin-right: 0;
  margin-top: 14px;
  padding: 4px 0 0;
  text-align: center; }
  @media all and (min-width: 768px) {
    .language-selection {
      text-align: left;
      margin-right: 34px;
      padding: 0; } }
  .language-selection a {
    color: #595959;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0 13px;
    display: inline-block; }
    .language-selection a:first-of-type {
      border-right: 1px solid #595959; }

#sidebar .page_item {
  position: relative; }

@media all and (max-width: 767px) {
  #sidebar .sidebar-mobile-toggle {
    position: absolute;
    top: 10px;
    right: 10px; }
    #sidebar .sidebar-mobile-toggle:after {
      content: '+';
      margin-right: 10px;
      float: right;
      text-align: right;
      width: 40px;
      color: #A42C30;
      font-weight: 600; }
    #sidebar .sidebar-mobile-toggle.open:after {
      content: '–'; } }

#sidebar .sidebar-has-children-toggle {
  position: absolute;
  top: 10px;
  right: 10px; }
  #sidebar .sidebar-has-children-toggle:after {
    content: '+';
    margin-right: 10px;
    float: right;
    text-align: right;
    width: 40px;
    color: #A42C30;
    font-weight: 600; }
  #sidebar .sidebar-has-children-toggle.open:after {
    content: '–'; }

#sidebar .page_item_has_children ul.children {
  display: none; }

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out; }

.navBar {
  margin-bottom: -47px; }
  @media all and (min-width: 768px) {
    .navBar {
      margin-bottom: -68px; } }

#main {
  padding-top: 47px; }
  @media all and (min-width: 768px) {
    #main {
      padding-top: 68px; } }

@media all and (max-width: 600px) {
  .logged-in .fixed-nav {
    margin-top: 45px; } }

@media all and (min-width: 768px) {
  .logged-in .fixed-nav {
    margin-top: 30px; } }

.nav-description {
  text-transform: initial;
  font-size: .8em; }

.coworkers ul {
  padding: 0;
  margin-bottom: 0; }
  .coworkers ul:after {
    clear: both;
    content: '';
    display: table; }

.coworkers li {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8; }
  .coworkers li:last-of-type {
    border-bottom: 0; }
  @media all and (min-width: 640px) {
    .coworkers li {
      width: calc(100%/3);
      float: left;
      border-bottom: 0; } }

.coworkers img {
  width: auto;
  height: 70px; }

.newsArea {
  background-color: #F1F1F1; }

.newsArea__row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem -0.25rem 0; }
  .newsArea__row .panel {
    height: 100%; }
  @media all and (max-width: 580px) {
    .newsArea__row .newsArea__row__article {
      order: 2; }
    .newsArea__row .newsArea__row__latest {
      order: 1; } }

.newsArea__row__article {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 330px;
  -moz-flex: 0 1 330px;
  -ms-flex: 0 1 330px;
  flex: 0 1 330px;
  margin: 0 0.25rem 0.5rem; }

.newsArea__row__latest {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 0 360px;
  -moz-flex: 1 0 360px;
  -ms-flex: 1 0 360px;
  flex: 1 0 360px;
  margin: 0 0.25rem 0.5rem; }
  .newsArea__row__latest .articleTeaser {
    margin: 20px 0;
    border-bottom: 1px solid #f1f1f1; }
  .newsArea__row__latest .panel {
    padding: 1.5rem; }

.newsArea_iframe {
  margin: 0; }

@media all and (max-width: 760px) {
  .newsArea__row {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .newsArea__row__article {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 46%;
    -moz-flex: 1 1 46%;
    -ms-flex: 1 1 46%;
    flex: 1 1 46%; }
  .newsArea__row__latest {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 46%;
    -moz-flex: 1 1 46%;
    -ms-flex: 1 1 46%;
    flex: 1 1 46%; } }

@media all and (max-width: 580px) {
  .newsArea__row__article {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
  .newsArea__row__latest {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; } }

.articleTeaser {
  margin-bottom: 20px; }
  .articleTeaser time {
    font-size: 1rem;
    width: 100%;
    display: block; }
  .articleTeaser a {
    color: #333; }
    .articleTeaser a:hover {
      color: #0088cc; }

.articleTeaser--hasFeatureImage {
  border-radius: 2px; }
  .articleTeaser--hasFeatureImage img {
    width: 100%;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  .articleTeaser--hasFeatureImage .articleTeaser__heading {
    padding: 1.5rem; }

.articleTeaser__heading a {
  color: #333; }
  .articleTeaser__heading a:hover {
    color: #0088cc; }

.newsList li {
  list-style: none; }

.newsList__item {
  margin-bottom: 12px; }

.newsList .newsDate {
  font-size: 14px;
  margin-top: -7px;
  color: #777; }

.newsList img.icon__clock {
  width: 17px;
  margin-top: -3px;
  margin-left: 5px; }

.arkisto-feed {
  margin-bottom: 20px; }
  .arkisto-feed a {
    font-size: 24px; }

.single-uutiset .entry-meta {
  margin-bottom: 20px;
  color: #a2a2a2; }

.single-uutiset .uutisen-kuva {
  width: 100%;
  float: left;
  margin: 0 20px 10px 0; }
  @media all and (min-width: 768px) and (max-width: 880px) {
    .single-uutiset .uutisen-kuva {
      max-width: 100%; } }

.wp-caption {
  float: left;
  margin-right: 20px; }
  @media all and (min-width: 650px) {
    .wp-caption {
      max-width: 33%; } }
  .wp-caption.fullwidth {
    max-width: 100%; }

.notification--icon {
  background: url(assets/images/icons/icon-bubble.svg) no-repeat center center;
  background-size: 40px auto;
  padding: 0.375rem 2.4rem 0.875rem;
  width: 100%;
  min-height: 40px;
  display: block;
  text-align: center; }

.notification__heading {
  font-weight: 400;
  margin-bottom: 0; }
  .notification__heading time {
    display: inline-block;
    margin-right: 0.875rem;
    color: #595959;
    display: inline-block;
    width: 18%;
    vertical-align: top; }
  .notification__heading .notification__title {
    color: #333;
    display: inline-block;
    width: 100%; }
    @media (min-width: 768px) {
      .notification__heading .notification__title {
        width: 78%; } }
    .notification__heading .notification__title:hover {
      color: #0088cc; }

.notification-wrapper-form {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.25rem; }
  .notification-wrapper-form .panel-notification {
    padding-top: 30px; }

.notification-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem -0.25rem 0; }
  @media all and (max-width: 580px) {
    .notification-wrapper {
      flex-flow: column wrap; } }

.panel-notification {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 0 0.25rem 0.5rem; }

.panel-notification__last {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 90px;
  -moz-flex: 0 0 90px;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  margin: 0 0.25rem 0.5rem; }
  .panel-notification__last h3 {
    margin: 0; }
    @media all and (max-width: 580px) {
      .panel-notification__last h3 {
        text-align: center; } }

.searchForm {
  width: 100%;
  position: relative; }

.searchForm__field {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  padding: 0.7em 1em;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px; }

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

.searchForm__button {
  background: url(assets/images/icons/icon-search.svg) no-repeat #d0d0d0 center center;
  background-size: 18px auto;
  border: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }
  .searchForm__button:hover {
    background-color: #c1c1c1; }

.searchForm--small {
  padding: 0; }
  .searchForm--small .searchForm__field {
    padding: 0.5em 0.85em;
    font-size: 0.85em; }
  .searchForm--small .searchForm__button {
    width: 44px;
    background-size: 15px auto; }

@media all and (max-width: 768px) {
  .searchFilters {
    display: none; }
    .searchFilters.open {
      display: block; } }

.searchFiltersToggle {
  display: none; }
  @media all and (max-width: 768px) {
    .searchFiltersToggle {
      display: block; } }

.searchResult {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem; }

.searchResult__meta {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 34px;
  -moz-flex: 0 0 34px;
  -ms-flex: 0 0 34px;
  flex: 0 0 34px;
  padding-right: 1rem; }

.searchResult__body {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.hero {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 600px; }
  @media all and (max-width: 919px) {
    .hero {
      height: 400px; } }
  @media all and (max-width: 600px) {
    .hero {
      height: 300px; } }
  @media all and (max-width: 350px) {
    .hero {
      height: 260px; } }
  .hero .siteWrapper {
    width: 100%;
    height: 100%;
    display: table; }
  .hero .liftWrapper {
    display: table-cell;
    vertical-align: middle; }
    .hero .liftWrapper h1 {
      width: 60%;
      margin: 0 0 0 auto; }
      @media screen and (min-width: 640px) {
        .hero .liftWrapper h1 {
          width: 50%; } }
      @media (min-width: 920px) {
        .hero .liftWrapper h1 {
          max-width: 440px; } }
    @media all and (min-width: 640px) {
      .hero .liftWrapper {
        width: 50%;
        margin-right: 20px; } }
    @media all and (min-width: 920px) {
      .hero .liftWrapper {
        margin-right: 0;
        margin-left: auto;
        text-align: left;
        max-width: 440px;
        max-height: 70%; } }
    @media all and (min-width: 1024px) {
      .hero .liftWrapper {
        max-height: 86%; } }
  .hero h1 {
    color: #A42C30;
    font-size: 2em;
    text-align: center;
    font-weight: 400;
    text-align: right;
    margin-right: 0px; }
    @media all and (min-width: 640px) {
      .hero h1 {
        font-size: 3.4em;
        text-align: right;
        margin-right: 30px; } }
    @media all and (min-width: 920px) {
      .hero h1 {
        font-size: 3.4em;
        text-align: left;
        margin-right: 0; } }

.panel {
  background-color: #FFF;
  border-radius: 2px;
  padding: 1rem; }
  .panel .textButton {
    font-size: 1.3rem; }

.panel--noPadding {
  padding: 0; }

.panel--addSpacing {
  margin: 3rem 0; }
  @media all and (max-width: 550px) {
    .panel--addSpacing {
      margin: 1.5rem 0; } }

.panel__heading {
  color: #A42C30;
  text-transform: uppercase; }

.giftShopArea {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  min-height: 350px; }
  @media all and (min-width: 560px) {
    .giftShopArea {
      min-height: 400px; } }
  .giftShopArea .sectionHeading {
    margin-top: 6rem;
    max-width: 27rem; }
  .giftShopArea .btn, .giftShopArea .wpcf7-submit, .giftShopArea .btn-small {
    font-size: 1.5rem; }
  @media all and (max-width: 1024px) {
    .giftShopArea .siteWrapper {
      background: rgba(255, 255, 255, 0.66);
      padding: 1em 1em 8em; } }
  @media all and (max-width: 768px) {
    .giftShopArea .siteWrapper {
      background: rgba(255, 255, 255, 0.66);
      padding: 1em 1em 5em; } }

.liftImage {
  width: 100%;
  height: 275px;
  margin-bottom: 2em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

/**
 * Table
 */
/*
 * Base class for all table-styles.
 */
.table {
  width: 100%;
  margin-bottom: 1.5em; }
  .table td, .table th {
    padding: 0.5em;
    font-size: 90%; }
  .table th {
    font-weight: bold;
    color: #444; }

/*
 * Adds a border around the table and in between the rows and cells.
 */
.table--bordered table {
  border: 1px solid #d9d9d9;
  border-collapse: separate;
  border-radius: 2px; }

.table--bordered td, .table--bordered th {
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9; }
  .table--bordered td:first-child, .table--bordered th:first-child {
    border-left: 0; }

.table--bordered tr:last-child > td {
  border-bottom: 0; }

/*
 * Adds a border below each row.
 */
.table--striped td, .table--striped th {
  border-bottom: 1px solid #d9d9d9; }

.table--striped th {
  padding-top: 0;
  box-shadow: 0 1px 0 rgba(231, 231, 236, 0.7), 0 3px 0 rgba(231, 231, 236, 0.3); }

/*
 * Reduces the visual gap between each table row.
 */
.table--condensed td, .table--condensed th {
  padding: 0.25em 0.5em 0.25em; }

/*
 * Displays each odd/even row with a changing background to enhance the visual difference between each row element.
 */
.table--zebra tbody tr:nth-child(even) {
  background: #fff; }

.table--zebra tbody tr:nth-child(odd) {
  background: #f2f2f2; }

.table--centerVertically td {
  vertical-align: middle; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
      .table-responsive > table {
        margin-bottom: 0; }
        .table-responsive > table > thead > tr > th,
        .table-responsive > table > thead > tr > td,
        .table-responsive > table > tbody > tr > th,
        .table-responsive > table > tbody > tr > td,
        .table-responsive > table > tfoot > tr > th,
        .table-responsive > table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

.tab-panel {
  overflow: scroll; }

ul.tabs {
  width: 100%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd; }
  ul.tabs li {
    float: left; }
  ul.tabs a {
    color: #5c5c5c;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.3em 0;
    margin-right: 0.7em;
    float: left;
    display: block;
    font-size: 0.875rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0); }
    ul.tabs a:hover {
      border-bottom: 2px solid #777; }

ul.tabs.tabs--invert {
  border-bottom: 1px solid #333; }
  ul.tabs.tabs--invert a {
    color: #cfcfcf;
    border-bottom: 2px solid rgba(0, 0, 0, 0); }
    ul.tabs.tabs--invert a:hover {
      border-bottom: 2px solid #cfcfcf; }

ul.tabs a.selected,
ul.tabs a[aria-selected='true'] {
  color: #111;
  border-bottom: 2px solid #1bcc3c; }

ul.tabs.tabs--invert a.selected,
ul.tabs.tabs--invert a[aria-selected='true'] {
  color: #FFF;
  border-bottom: 2px solid #1bcc3c; }

.tab-panel {
  width: 100%;
  overflow: hidden; }

.tab-accordion-heading {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

label.tab-accordion-heading-label {
  z-index: 200;
  position: relative;
  display: none !important;
  width: 100%;
  cursor: pointer;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF;
  border-bottom: 1px solid #1F1F1F;
  background: url(assets/images/arrows/arrow-down-white.svg) no-repeat right 15px center #484848;
  background-size: 16px auto; }
  @media all and (max-width: 330px) {
    label.tab-accordion-heading-label {
      display: block !important; } }

.tab-accordion-heading:checked + label {
  color: #A42C30;
  background-image: url(assets/images/arrows/arrow-up-white.svg); }

.tab-accordion-heading:checked ~ .tab-panel-content {
  display: block; }

@media all and (max-width: 330px) {
  .product-tabs-section .section-header {
    display: none; }
  .tab-panel {
    margin-bottom: 0;
    padding: 0; }
  .tab-panel-content {
    display: none;
    padding: 15px;
    background: #363636;
    overflow: scroll; } }

/**
 * RSS
 */
.rss h2, .rss h3 {
  text-align: center;
  margin: 1em 0 1em 0; }

.rss-feed {
  list-style: none;
  padding: 0; }
  .rss-feed .rss-item {
    margin-bottom: 10px; }
    .rss-feed .rss-item:after {
      content: '';
      display: table;
      clear: both; }
  .rss-feed .rss-thumbnail {
    width: 100%;
    float: left;
    min-height: 1px; }
    @media all and (min-width: 640px) {
      .rss-feed .rss-thumbnail {
        width: calc(100%/3); } }
  .rss-feed .rss-content {
    float: left;
    width: 100%;
    padding: 20px 0 0 0; }
    @media all and (min-width: 640px) {
      .rss-feed .rss-content {
        padding: 0px 24px; } }
    .rss-feed .rss-content a {
      font-size: 22px;
      color: #333; }
    .rss-feed .rss-content .rss-date {
      color: #a2a2a2; }
    .rss-feed .rss-content.fullWidth {
      width: 100%;
      padding-left: 0; }

.header {
  position: relative; }

.phonebook-search input[type="search"] {
  background: #EAE8E9 url(assets/images/icons/icon-search-white.svg) no-repeat 98% center !important;
  background-size: 20px !important;
  border-color: #EAE8E9;
  border-radius: 10px;
  width: 100%; }

.phonebook-search {
  top: 0;
  right: 0;
  padding-right: 1rem; }
  @media all and (max-width: 768px) {
    .phonebook-search {
      margin-bottom: 40px; }
      .phonebook-search input[type="submit"] {
        top: -5px !important; } }

.phonebook-content hr {
  float: left;
  width: 100%;
  margin: 0 0 14px 0; }

@media all and (min-width: 920px) {
  .phonebook-content .row {
    float: left;
    width: 100%;
    padding-left: 20px; } }

@media all and (max-width: 640px) {
  .phonebook-content .row:last-of-type .phonebook-person {
    border-bottom: 0 !important; } }

.phonebook-content {
  margin-top: 40px; }
  .phonebook-content .phonebook-toimipiste-header {
    margin-top: 60px;
    padding-bottom: 0px;
    border-bottom: 1px solid #d24f52;
    margin-bottom: 20px;
    border-left: 8px solid #d24f52;
    padding-left: 10px;
    padding-top: 6px; }
    .phonebook-content .phonebook-toimipiste-header h2 {
      margin: 0; }
  .phonebook-content .phonebook-toimipiste:after {
    content: '';
    display: table;
    clear: both; }
  .phonebook-content ul {
    list-style: none;
    padding: 0; }
  .phonebook-content .phonebook-person {
    float: left;
    width: 100%;
    margin-bottom: 14px; }
    @media all and (max-width: 640px) {
      .phonebook-content .phonebook-person {
        padding-bottom: 20px;
        border-bottom: 1px solid #d8d8d8; } }
    @media all and (min-width: 640px) {
      .phonebook-content .phonebook-person {
        width: 50%;
        padding-right: 10px; } }
    @media all and (min-width: 920px) {
      .phonebook-content .phonebook-person {
        padding-right: 40px; } }
  .phonebook-content .phonebook-name {
    font-weight: 700; }
  .phonebook-content .phonebook-extranet-info {
    margin-top: 14px;
    background: rgba(217, 217, 217, 0.26);
    padding: 14px 10px 10px;
    border: 1px solid #ddd; }
  .phonebook-content a {
    color: #A42C30; }

.single-kantasairaala .entry-meta {
  margin-bottom: 20px;
  color: #a2a2a2; }

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

.kantasairaala h2 {
  margin-bottom: .5em; }
  @media (max-width: 739px) {
    .kantasairaala h2 {
      margin-bottom: 40px; } }
  .kantasairaala h2 a {
    color: #333; }

.kantasairaala .content-wrapper:after {
  clear: both;
  display: table;
  content: ''; }

.kantasairaala .timeline-item {
  border-bottom: 1px solid #d8d8d8;
  padding: 40px 0px; }
  @media (min-width: 880px) {
    .kantasairaala .timeline-item {
      max-width: 82%; } }
  .kantasairaala .timeline-item:first-of-type {
    padding-top: 10px; }
  .kantasairaala .timeline-item:last-of-type {
    border-bottom: 0; }

.kantasairaala .col-1 {
  float: left; }
  @media (min-width: 740px) {
    .kantasairaala .col-1 {
      width: 130px; } }

.kantasairaala .col-2 {
  float: left; }
  @media (min-width: 740px) {
    .kantasairaala .col-2 {
      width: calc(100% - 130px); } }

.kantasairaala .image-wrap {
  margin-bottom: 30px; }
  @media (min-width: 740px) {
    .kantasairaala .image-wrap {
      max-height: 250px;
      overflow: hidden; } }

.kantasairaala .date {
  text-align: center;
  color: #fff; }
  @media (max-width: 740px) {
    .kantasairaala .date div {
      display: inline-block;
      margin: 10px 0; } }
  .kantasairaala .date .circle-red {
    margin: 20px 0 10px;
    color: #8e8e8e; }
    @media (max-width: 739px) {
      .kantasairaala .date .circle-red {
        position: absolute;
        margin-top: 30px;
        font-size: 16px; } }
    @media (min-width: 740px) {
      .kantasairaala .date .circle-red {
        background: #A42C30;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        margin: 0;
        color: inherit; } }
  @media (min-width: 740px) {
    .kantasairaala .date .day {
      font-size: 38px;
      padding-top: 10px; } }
  .kantasairaala .date .month {
    text-transform: capitalize; }
    @media (min-width: 740px) {
      .kantasairaala .date .month {
        text-transform: uppercase;
        margin-top: -14px; } }
  @media (min-width: 740px) {
    .kantasairaala .date .year {
      margin-top: -8px; } }

@media (min-width: 740px) {
  .single-kantasairaala .image-wrap {
    max-height: none;
    overflow: visible; } }

/**
 * Datepicker custom
 */
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #A42C30;
  background: #A42C30;
  color: #ffffff; }

.accordion {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 40px; }
  .accordion .accordion-item:last-of-type .accordion-header::after {
    display: none; }
  .accordion .accordion-item:last-of-type .accordion-content {
    border-left: 2px solid transparent; }
  .accordion .accordion-item .accordion-header {
    display: block;
    position: relative;
    overflow: hidden;
    color: #333; }
    .accordion .accordion-item .accordion-header:hover {
      color: #333; }
    .accordion .accordion-item .accordion-header .accordion-header__icon-wrapper {
      width: 50px;
      height: 50px;
      padding: 10px;
      background: #fff;
      margin-right: 30px;
      margin-bottom: 10px;
      float: left;
      border-radius: 50%;
      border: 2px solid #A42C30; }
      .accordion .accordion-item .accordion-header .accordion-header__icon-wrapper.dashed {
        border: 2px dashed #A42C30; }
    .accordion .accordion-item .accordion-header .accordion-header__icon {
      width: 100%;
      height: 100%;
      display: block;
      float: left;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain; }
    .accordion .accordion-item .accordion-header h3 {
      align-self: center;
      margin: 10px 0 20px;
      float: left;
      width: calc(100% - 80px); }
      @media (max-width: 460px) {
        .accordion .accordion-item .accordion-header h3 {
          margin-top: 0; } }
      .accordion .accordion-item .accordion-header h3::before {
        content: "";
        background-image: url("assets/images/arrows/arrow-right-open-primary.svg");
        background-repeat: no-repeat;
        background-position: center;
        width: 1.2rem;
        height: 1.2rem;
        background-size: auto 80%;
        display: inline-block;
        float: right;
        margin: .24em 0 0 .65em;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg); }
    .accordion .accordion-item .accordion-header.is-active h3::before {
      transform: rotate(-90deg); }
    .accordion .accordion-item .accordion-header::after {
      content: '';
      clear: both;
      display: table;
      position: absolute;
      width: 2px;
      height: 300px;
      background-color: #A42C30;
      left: 23px;
      top: 0;
      z-index: -1; }
  .accordion .accordion-item .accordion-content {
    padding-left: 58px;
    padding-right: 24px;
    margin-left: 23px;
    border-left: 2px solid #A42C30;
    display: none;
    overflow: hidden;
    position: relative; }

/*
 * Site Header
 */
.siteHeader {
  background-color: #FFF;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  box-direction: normal;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column; }

.siteHeader__container {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem; }
  @media all and (max-width: 919px) {
    .siteHeader__container {
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      box-orient: vertical;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      box-direction: normal;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      flex-direction: column;
      -ms-flex-direction: column; } }

.siteHeader__logo {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.siteHeader__search {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-left: auto; }
  @media all and (max-width: 919px) {
    .siteHeader__search {
      margin-left: 0;
      margin-top: 1rem; } }

.skipLink {
  position: absolute;
  top: 0;
  right: 100%;
  /* moves off screen */
  background-color: #0088cc;
  color: #FFF;
  display: block;
  padding: 0.5em;
  width: 100%;
  text-align: center;
  z-index: 800; }

.skipLink:focus {
  right: auto; }

.topBar {
  background-color: #EBE9EA;
  margin-bottom: 1rem; }

.searchform input[type="search"] {
  padding: .5em 0.75em;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 0.9em;
  color: #404040;
  padding: 0.6em 0.8em;
  font-size: 1.12rem;
  background-color: #EAE8E9;
  border-color: #EAE8E9;
  border-radius: 10px; }
  .searchform input[type="search"]:focus {
    outline: none;
    border-color: #484848;
    box-shadow: 0px 0px 3px 0px rgba(34, 34, 34, 0.3); }
  .searchform input[type="search"]:focus {
    background-color: #f1f1f1; }

.searchform input[type="submit"],
.searchform button[type="submit"] {
  border: none;
  text-indent: -9999em;
  background: url(assets/images/icons/icon-search-white.svg) no-repeat center center #ADADAD;
  background-size: 50% auto;
  border-radius: 50%;
  width: 48px;
  height: 48px; }
  .searchform input[type="submit"]:hover,
  .searchform button[type="submit"]:hover {
    background-color: #959595; }

@media all and (max-width: 919px) {
  .topBar {
    margin-bottom: 0; }
    .topBar::after {
      content: "";
      position: absolute;
      top: 0;
      right: -1px;
      height: 38px;
      width: 1px;
      box-shadow: -1px 0px 7px 0px rgba(0, 0, 0, 0.8); }
    .topBar .siteWrapper {
      padding: 0; }
  .siteHeader__logo {
    text-align: center; }
    .siteHeader__logo img {
      max-width: 280px; }
  .siteHeader__container {
    padding-left: 0;
    padding-right: 0; }
  .searchform {
    position: relative; }
    .searchform input[type="search"] {
      width: 100%;
      font-size: 1rem;
      padding: 0.4em 3em 0.4em 0.6em; }
    .searchform input[type="submit"],
    .searchform button[type="submit"] {
      position: absolute;
      right: 3px;
      top: 3px;
      width: 33px;
      height: 33px; } }

@media all and (min-width: 768px) and (max-width: 860px) {
  .siteHeader__logo {
    text-align: left;
    margin-top: 4px; }
    .siteHeader__logo img {
      max-width: 310px; } }

/**
 * Site Footer
 */
.siteFooter {
  background: #A42C30;
  padding: 3rem 0;
  color: #fff; }
  .siteFooter a {
    color: #fff; }
  .siteFooter ul li {
    list-style: none; }
  @media all and (min-width: 581px) {
    .siteFooter .menu-item {
      border-right: 1px solid #fff; }
      .siteFooter .menu-item:last-of-type {
        border: 0; } }

.footerColumns {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; }

.footerColumns__menu {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 33.3333%;
  -moz-flex: 0 0 33.3333%;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%; }
  @media all and (min-width: 750px) and (max-width: 940px) {
    .footerColumns__menu {
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      box-flex: 0;
      -webkit-flex: 0 0 220px;
      -moz-flex: 0 0 220px;
      -ms-flex: 0 0 220px;
      flex: 0 0 220px; } }

.footerColumns__socialMedia {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.footerColumns__contactInfo.u-alignRight {
  text-align: left; }
  @media (min-width: 750px) {
    .footerColumns__contactInfo.u-alignRight {
      text-align: right; } }

.footerColumns__contactInfo {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0 66.6667%;
  -moz-flex: 0 0 66.6667%;
  -ms-flex: 0 0 66.6667%;
  flex: 0 0 66.6667%; }
  @media all and (min-width: 750px) and (max-width: 940px) {
    .footerColumns__contactInfo {
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      box-flex: 0;
      -webkit-flex: 0 0 220px;
      -moz-flex: 0 0 220px;
      -ms-flex: 0 0 220px;
      flex: 0 0 220px; } }
  .footerColumns__contactInfo address p {
    width: 50%;
    float: left; }
    @media all and (max-width: 940px) {
      .footerColumns__contactInfo address p {
        width: 100%; } }

@media all and (max-width: 750px) {
  .footerColumns {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .footerColumns__menu {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }
  .footerColumns__socialMedia {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    order: 3; }
  .footerColumns__contactInfo {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; } }

.footer__pageName {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.85rem;
  font-weight: normal;
  margin-top: 1.1em; }
  @media all and (max-width: 580px) {
    .footer__pageName {
      text-align: left; } }

.footer__nav ul {
  list-style: none;
  display: inline-block; }
  @media all and (max-width: 580px) {
    .footer__nav ul {
      padding-left: 0; } }

.footer__nav li {
  float: left; }
  @media all and (max-width: 580px) {
    .footer__nav li {
      display: inline-block;
      width: 100%;
      text-align: left; } }
  .footer__nav li a {
    padding: 1em;
    text-transform: uppercase; }
    @media all and (max-width: 580px) {
      .footer__nav li a {
        padding-left: 0; } }

.footer__sideNav ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0; }

.menu-footer-bottom-menu-container {
  width: 100%;
  text-align: center; }

.footer__someIcons {
  text-align: center;
  padding-left: 0;
  margin-top: 60px;
  margin-bottom: 0; }
  @media all and (max-width: 750px) {
    .footer__someIcons {
      margin-top: 30px;
      margin-bottom: 20px; } }
  .footer__someIcons img {
    border: 1px solid #fff;
    border-radius: 50%; }
  .footer__someIcons li {
    display: inline-block;
    padding: 0 20px;
    width: 100px;
    height: 60px; }
    @media all and (max-width: 580px) {
      .footer__someIcons li {
        padding: 0 10px;
        height: 70px;
        width: 30%;
        max-width: 80px; } }

.border-bottom {
  border-bottom: 1px solid #fff; }

.margin-top-20 {
  margin-top: 20px; }

/**
 * Print styles - Inlined to avoid another HTTP connection.
 */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  @page {
    margin: 0.5cm; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2, h3 {
    page-break-after: avoid; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  
  .print-hidden {
    display: none; } }

/**
*   COVID - special template for covid vaccinations. Not used in anywhere else
*/
.covid-site {
  height: 100%;
  height: 100vh;
  width: 100%;
  width: 100vw; }

.covid-h1 {
  font-size: 43pt;
  font-family: Arial, Helvetica, sans-serif;
  padding: 6rem 0; }
  .covid-h1 a {
    color: white; }
  .covid-h1 a:hover {
    color: white;
    text-decoration: none; }

.covid-h2 {
  font-size: 18pt;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold; }

.covid-intro {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif; }
  .covid-intro a {
    font-size: 14pt;
    font-family: Arial, Helvetica, sans-serif;
    color: #e94347;
    text-decoration: none;
    padding-bottom: 0; }
  .covid-intro a:hover {
    border-bottom: 2px solid #e94347; }

.covid-p {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif; }
  .covid-p a {
    color: #e94347;
    text-decoration: none;
    padding-bottom: 0; }
  .covid-p a:hover {
    border-bottom: 2px solid #e94347; }

.covid-link-list li {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.25rem 0; }
  .covid-link-list li a {
    color: #e94347;
    text-decoration: none;
    padding-bottom: 0; }
  .covid-link-list li a:hover {
    border-bottom: 2px solid #e94347; }

.covid-a {
  font-size: 12pt;
  font-family: Arial, Helvetica, sans-serif; }

.covid-block {
  font-size: 16pt;
  font-family: Arial, Helvetica, sans-serif; }

.covid-bg-dark {
  background-color: #00274d; }

.covid-bg-red {
  background-color: #e94347; }

.color-white {
  color: white; }

.color-red {
  color: #e94347; }

.color-dark {
  color: #00274d; }

.siteContent .covid-siteContent {
  padding-top: 0; }

#main-covid {
  padding-top: 0px; }

.covid-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  margin-bottom: 6em;
  padding: 3em;
  max-width: 100vw; }

.covid-header-img {
  align-self: start;
  margin-bottom: 2rem;
  margin-left: 1em;
  margin-top: 6em;
  max-height: 120px; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.covid-footer {
  display: flex;
  flex-direction: column; }
  .covid-footer .covid-columns {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding: 0 6em; }
    .covid-footer .covid-columns li a {
      color: white; }

.covid-footer-img {
  height: 75px; }

.covid-footer-elems {
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: row !important; }

@media (min-width: 768px) {
  #main-covid {
    padding-top: 0px; } }

@media (max-width: 1200px) {
  .covid-header {
    align-items: center;
    flex-direction: column-reverse;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 3em; }
  .covid-h1 {
    font-size: 24pt !important;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2rem 0rem !important;
    text-align: center; }
    .covid-h1 a {
      color: white; }
    .covid-h1 a:hover {
      color: white;
      text-decoration: none; }
  .covid-h2 {
    font-size: 18pt;
    font-weight: bold; }
  .covid-footer-elems {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column; } }

@media (max-width: 1200px) {
  .covid-header-img {
    margin-bottom: 2rem;
    margin-top: 2rem;
    align-self: center; }
  .covid-footer {
    display: flex; }
    .covid-footer .covid-columns {
      flex-direction: column;
      margin-top: 1em;
      padding-left: 0;
      padding-right: 0; }
      .covid-footer .covid-columns li {
        padding-bottom: 1em;
        text-align: center; }
        .covid-footer .covid-columns li a {
          color: white; } }

/**
 * Collection of CSS3 Keyframe Animations.
 */
/*
 * Scales the element up to it's initial proportions and fades it into the viewport.
 */
@keyframes ScaledUpFadeIn {
  0% {
    transform: scale(0.4);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }

.u-aniScaledUpFadeIn {
  animation: ScaledUpFadeIn 0.3s both; }

/*
 * Moves the element from the top into the users viewport.
 */
@keyframes FlyDown {
  0% {
    transform: translateY(-20px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.u-aniFlyDown {
  animation: FlyDown 0.3s both; }

/*
 * Moves the element from the bottom out of the users viewport.
 */
@keyframes FlyUpOut {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(-20px);
    opacity: 0; } }

.u-aniFlyUpOut {
  pointer-events: none;
  animation: FlyUpOut 0.3s both; }

/*
 * Pulsates(fade out and in) an element.
 */
@keyframes Pulsate {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.u-aniPulsate {
  animation: Pulsate 0.3s infinite both; }

.u-bgLightGray {
  background-color: #F1F1F1; }

/**
 * Display utilities
 */
/*
 * Display the target as an block element.
 */
.u-isBlock {
  display: block !important; }

/*
 * Hide from both screenreaders and browsers: http://www.h5bp.com/u
 */
.u-isHidden {
  display: none !important;
  visibility: hidden; }

.screen-reader-text, .u-isVisuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

/*
 * Hide visually and from screenreaders, but maintain layout.
 */
.u-isInvisible {
  visibility: hidden; }

.u-borderRight {
  border-right: 1px solid #d9d9d9; }

/**
 * Layout utilities
 */
/*
 * Floats the element to the right boundary.
 */
.u-floatRight {
  float: right; }

/*
 * Floats the element to the left boundary.
 */
.u-floatLeft {
  float: left; }

.u-cf:before, .u-cf:after,
.u-clearfix:before,
.u-clearfix:after {
  content: '';
  display: table; }

.u-cf:after,
.u-clearfix:after {
  clear: both; }

.sideBarContent {
  margin-top: 3rem;
  padding-bottom: 3rem; }

/**
 * Spacing utilities
 */
.u-removePadding {
  padding: 0 !important; }

.u-flush {
  margin: 0 !important; }

.u-m0 {
  margin: 0; }

.u-ml0 {
  margin-left: 0; }

.u-mr0 {
  margin-right: 0; }

.u-mb0 {
  margin-bottom: 0; }

.u-mt0 {
  margin-top: 0; }

.u-p0 {
  padding: 0; }

.u-pl0 {
  padding-left: 0; }

.u-pr0 {
  padding-right: 0; }

.u-pb0 {
  padding-bottom: 0; }

.u-pt0 {
  padding-top: 0; }

.u-m1\/1 {
  margin: 1.5rem; }

.u-ml1\/1 {
  margin-left: 1.5rem; }

.u-mr1\/1 {
  margin-right: 1.5rem; }

.u-mb1\/1 {
  margin-bottom: 1.5rem; }

.u-mt1\/1 {
  margin-top: 1.5rem; }

.u-p1\/1 {
  padding: 1.5rem; }

.u-pl1\/1 {
  padding-left: 1.5rem; }

.u-pr1\/1 {
  padding-right: 1.5rem; }

.u-pb1\/1 {
  padding-bottom: 1.5rem; }

.u-pt1\/1 {
  padding-top: 1.5rem; }

.u-m1\/2 {
  margin: 0.75rem; }

.u-ml1\/2 {
  margin-left: 0.75rem; }

.u-mr1\/2 {
  margin-right: 0.75rem; }

.u-mb1\/2 {
  margin-bottom: 0.75rem; }

.u-mt1\/2 {
  margin-top: 0.75rem; }

.u-p1\/2 {
  padding: 0.75rem; }

.u-pl1\/2 {
  padding-left: 0.75rem; }

.u-pr1\/2 {
  padding-right: 0.75rem; }

.u-pb1\/2 {
  padding-bottom: 0.75rem; }

.u-pt1\/2 {
  padding-top: 0.75rem; }

.u-m1\/4 {
  margin: 0.375rem; }

.u-ml1\/4 {
  margin-left: 0.375rem; }

.u-mr1\/4 {
  margin-right: 0.375rem; }

.u-mb1\/4 {
  margin-bottom: 0.375rem; }

.u-mt1\/4 {
  margin-top: 0.375rem; }

.u-p1\/4 {
  padding: 0.375rem; }

.u-pl1\/4 {
  padding-left: 0.375rem; }

.u-pr1\/4 {
  padding-right: 0.375rem; }

.u-pb1\/4 {
  padding-bottom: 0.375rem; }

.u-pt1\/4 {
  padding-top: 0.375rem; }

.siteContent::after {
  display: none;
  /* margin-top: 1.5rem; */ }

/**
 * Typographic utilities
 */
/*
 * Centers the text.
 */
.u-alignCenter {
  text-align: center; }

/*
 * Aligns the text to the right boundary.
 */
.u-alignRight {
  text-align: right; }

/*
 * Aligns the text to the left boundary.
 */
.u-alignLeft {
  text-align: left; }

/*
 * Reduces the font-size to the smallest value.
 */
.u-tinyText {
  font-size: 0.75em; }

/*
 * Enlarges the font-size to the smallest value.
 */
.u-largeText {
  font-size: 1.375rem; }

.u-slightlyLargerText {
  font-size: 1.1875rem; }

.u-secondaryText {
  color: #595959; }

.u-textBreak {
  word-wrap: break-word;
  hyphens: auto; }

/*
 * Inverts the text on the element and it's siblings.
 */
.u-invertText,
.u-invertText h1, .u-invertText h2, .u-invertText h3,
.u-invertText h4, .u-invertText h5, .u-invertText h6 {
  color: white; }

.u-resetList {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

/*
 * Removes all standard stylings for an anchor/link element.
 */
.u-linkReset {
  color: currentColor; }
  .u-linkReset:hover, .u-linkReset:active, .u-linkReset:focus {
    text-decoration: none; }
  p .u-linkReset {
    padding: 0;
    margin: 0; }

.u-smallText {
  font-size: 0.875em; }

.sectionTitle {
  display: inline-block; }

.sectionBubble {
  display: inline-block;
  margin-left: 5px; }

/**
 * Sizes which are used in conjunction with other objects and abstractions like the grid system.
 */
.u-w1\/1 {
  width: 100%; }

.u-w1\/2 {
  width: 50%; }

.u-w1\/3 {
  width: 33.333%; }

.u-w2\/3 {
  width: 66.666%; }

.u-w1\/4 {
  width: 25%; }

.u-w2\/4 {
  width: 50%; }

.u-w3\/4 {
  width: 75%; }

.u-w1\/5 {
  width: 20%; }

.u-w2\/5 {
  width: 40%; }

.u-w3\/5 {
  width: 60%; }

.u-w4\/5 {
  width: 80%; }

.u-w1\/6 {
  width: 16.666%; }

.u-w2\/6 {
  width: 33.333%; }

.u-w3\/6 {
  width: 50%; }

.u-w4\/6 {
  width: 66.666%; }

.u-w5\/6 {
  width: 83.333%; }

.u-w1\/8 {
  width: 12.5%; }

.u-w2\/8 {
  width: 25%; }

.u-w3\/8 {
  width: 37.5%; }

.u-w4\/8 {
  width: 50%; }

.u-w5\/8 {
  width: 62.5%; }

.u-w6\/8 {
  width: 75%; }

.u-w7\/8 {
  width: 87.5%; }

.u-w1\/10 {
  width: 10%; }

.u-w2\/10 {
  width: 20%; }

.u-w3\/10 {
  width: 30%; }

.u-w4\/10 {
  width: 40%; }

.u-w5\/10 {
  width: 50%; }

.u-w6\/10 {
  width: 60%; }

.u-w7\/10 {
  width: 70%; }

.u-w8\/10 {
  width: 80%; }

.u-w9\/10 {
  width: 90%; }

.u-w1\/12 {
  width: 8.333%; }

.u-w2\/12 {
  width: 16.666%; }

.u-w3\/12 {
  width: 25%; }

.u-w4\/12 {
  width: 33.333%; }

.u-w5\/12 {
  width: 41.666%; }

.u-w6\/12 {
  width: 50%; }

.u-w7\/12 {
  width: 58.333%; }

.u-w8\/12 {
  width: 66.666%; }

.u-w9\/12 {
  width: 75%; }

.u-w10\/12 {
  width: 62.5%; }

.u-w11\/12 {
  width: 91.666%; }

@media screen and (min-width: 600px) {
  .u-wm1\/1 {
    width: 100%; }
  .u-wm1\/2 {
    width: 50%; }
  .u-wm1\/3 {
    width: 33.333%; }
  .u-wm2\/3 {
    width: 66.666%; }
  .u-wm1\/4 {
    width: 25%; }
  .u-wm2\/4 {
    width: 50%; }
  .u-wm3\/4 {
    width: 75%; }
  .u-wm1\/5 {
    width: 20%; }
  .u-wm2\/5 {
    width: 40%; }
  .u-wm3\/5 {
    width: 60%; }
  .u-wm4\/5 {
    width: 80%; }
  .u-wm1\/6 {
    width: 16.666%; }
  .u-wm2\/6 {
    width: 33.333%; }
  .u-wm3\/6 {
    width: 50%; }
  .u-wm4\/6 {
    width: 66.666%; }
  .u-wm5\/6 {
    width: 83.333%; }
  .u-wm1\/8 {
    width: 12.5%; }
  .u-wm2\/8 {
    width: 25%; }
  .u-wm3\/8 {
    width: 37.5%; }
  .u-wm4\/8 {
    width: 50%; }
  .u-wm5\/8 {
    width: 62.5%; }
  .u-wm6\/8 {
    width: 75%; }
  .u-wm7\/8 {
    width: 87.5%; }
  .u-wm1\/10 {
    width: 10%; }
  .u-wm2\/10 {
    width: 20%; }
  .u-wm3\/10 {
    width: 30%; }
  .u-wm4\/10 {
    width: 40%; }
  .u-wm5\/10 {
    width: 50%; }
  .u-wm6\/10 {
    width: 60%; }
  .u-wm7\/10 {
    width: 70%; }
  .u-wm8\/10 {
    width: 80%; }
  .u-wm9\/10 {
    width: 90%; }
  .u-wm1\/12 {
    width: 8.333%; }
  .u-wm2\/12 {
    width: 16.666%; }
  .u-wm3\/12 {
    width: 25%; }
  .u-wm4\/12 {
    width: 33.333%; }
  .u-wm5\/12 {
    width: 41.666%; }
  .u-wm6\/12 {
    width: 50%; }
  .u-wm7\/12 {
    width: 58.333%; }
  .u-wm8\/12 {
    width: 66.666%; }
  .u-wm9\/12 {
    width: 75%; }
  .u-wm10\/12 {
    width: 62.5%; }
  .u-wm11\/12 {
    width: 91.666%; } }

@media screen and (min-width: 1200px) {
  .u-wl1\/1 {
    width: 100%; }
  .u-wl1\/2 {
    width: 50%; }
  .u-wl1\/3 {
    width: 33.333%; }
  .u-wl2\/3 {
    width: 66.666%; }
  .u-wl1\/4 {
    width: 25%; }
  .u-wl2\/4 {
    width: 50%; }
  .u-wl3\/4 {
    width: 75%; }
  .u-wl1\/5 {
    width: 20%; }
  .u-wl2\/5 {
    width: 40%; }
  .u-wl3\/5 {
    width: 60%; }
  .u-wl4\/5 {
    width: 80%; }
  .u-wl1\/6 {
    width: 16.666%; }
  .u-wl2\/6 {
    width: 33.333%; }
  .u-wl3\/6 {
    width: 50%; }
  .u-wl4\/6 {
    width: 66.666%; }
  .u-wl5\/6 {
    width: 83.333%; }
  .u-wl1\/8 {
    width: 12.5%; }
  .u-wl2\/8 {
    width: 25%; }
  .u-wl3\/8 {
    width: 37.5%; }
  .u-wl4\/8 {
    width: 50%; }
  .u-wl5\/8 {
    width: 62.5%; }
  .u-wl6\/8 {
    width: 75%; }
  .u-wl7\/8 {
    width: 87.5%; }
  .u-wl1\/10 {
    width: 10%; }
  .u-wl2\/10 {
    width: 20%; }
  .u-wl3\/10 {
    width: 30%; }
  .u-wl4\/10 {
    width: 40%; }
  .u-wl5\/10 {
    width: 50%; }
  .u-wl6\/10 {
    width: 60%; }
  .u-wl7\/10 {
    width: 70%; }
  .u-wl8\/10 {
    width: 80%; }
  .u-wl9\/10 {
    width: 90%; }
  .u-wl1\/12 {
    width: 8.333%; }
  .u-wl2\/12 {
    width: 16.666%; }
  .u-wl3\/12 {
    width: 25%; }
  .u-wl4\/12 {
    width: 33.333%; }
  .u-wl5\/12 {
    width: 41.666%; }
  .u-wl6\/12 {
    width: 50%; }
  .u-wl7\/12 {
    width: 58.333%; }
  .u-wl8\/12 {
    width: 66.666%; }
  .u-wl9\/12 {
    width: 75%; }
  .u-wl10\/12 {
    width: 62.5%; }
  .u-wl11\/12 {
    width: 91.666%; } }
