/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/App/Site/Assets/css/photoswipe/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/App/Site/Assets/css/photoswipe/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /*
			The idea of animating inner circle is based on Polymer ("material") loading indicator
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/**
 * Swiper 3.4.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: October 16, 2016
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@charset "UTF-8";
/*
@import url("//hello.myfonts.net/count/30ba6b");

$font-location: '/App/Site/Assets/fonts/garamond/';

@font-face {
  $font-file: '30BA6B_0_0';

  font-family: 'Garamond';
  src: url($font-location + $font-file + '.eot');
  src: url($font-location + $font-file + '.eot?#iefix') format('embedded-opentype'),
       url($font-location + $font-file + '.woff2') format('woff2'),
       url($font-location + $font-file + '.woff') format('woff'),
       url($font-location + $font-file + '.ttf') format('truetype');
}
*/
@font-face {
  font-family: 'icons';
  src: url("/App/Site/Assets/fonts/icons/icons.ttf?ht1pdx") format("truetype"), url("/App/Site/Assets/fonts/icons/icons.woff?ht1pdx") format("woff"), url("/App/Site/Assets/fonts/icons/icons.svg?ht1pdx#icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-age:before {
  content: "";
}

.icon-dot:before {
  content: "";
}

.icon-social-facebook:before {
  content: "";
}

.icon-social-twitter:before {
  content: "";
}

.icon-social-vk:before {
  content: "";
}

.icon-social-youtube:before {
  content: "";
}

.icon-play:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-file:before {
  content: "";
}

.icon-checkbox-off:before {
  content: "";
}

.icon-checkbox-on:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-drop-down:before {
  content: "";
}

.icon-radio-off:before {
  content: "";
}

.icon-radio-on:before {
  content: "";
}

html, body {
  padding: 0;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 16px;
  color: black;
  background-color: white;
}

img {
  border: none;
}

figure {
  margin: 0;
}

a {
  color: black;
  text-decoration: none;
}
a body:not(.touch):hover {
  color: #1c75bc;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td {
  padding: 0;
  vertical-align: top;
}

.hidden {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

/*
p.small {
  font-size: 16px;
  line-height: (24px / 16px);
  color: #666666;
}
*/
.no-animation {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  animation: none !important;
}

header.main {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 568px) {
  header.main {
    height: 59px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main {
    height: 81px;
  }
}
@media screen and (min-width: 1051px) {
  header.main {
    height: 81px;
  }
}
header.main .page-content {
  position: relative;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 568px) {
  header.main .page-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
header.main .left,
header.main .right,
header.main .center {
  height: 100%;
}
header.main .left,
header.main .right {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 755px) {
  header.main .left,
  header.main .right {
    width: 110px;
  }
}
header.main .left {
  float: left;
}
header.main .right {
  float: right;
  text-align: right;
}
header.main .center {
  display: inline-block;
  vertical-align: top;
}
header.main .menu-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  padding-left: 11px;
  padding-right: 11px;
  margin-left: -11px;
  margin-right: -11px;
  /*
  &:before {
    @include icon;
    content: $icon-menu;
    font-size: 22px;
    line-height: $height;
  }
  */
  cursor: pointer;
  /*
  body:not(.touch) &:hover {
    color: $color-hover-btn;
  }
  */
}
@media screen and (max-width: 568px) {
  header.main .menu-btn {
    margin-top: 7px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main .menu-btn {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1051px) {
  header.main .menu-btn {
    margin-top: 18px;
  }
}
header.main .menu-btn .menu-btn-icon {
  position: relative;
  width: 100%;
  height: 100%;
}
header.main .menu-btn .menu-btn-icon .menu-btn-icon-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 22px;
  height: 22px;
}
header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
  position: absolute;
  width: 22px;
  height: 2px;
  top: 50%;
  display: block;
  margin-top: -1px;
  background-color: black;
}
header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before, header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
  content: '';
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: black;
}
header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
  top: -10px;
}
header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
  bottom: -10px;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner, header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before, header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: -webkit-transform 0.15s ease;
    -moz-transition: -moz-transform 0.15s ease;
    transition: transform 0.15s ease;
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
    -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
    -moz-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: bottom 0.1s 0.14s ease, -moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
}
@media screen and (min-width: 1051px) {
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner, header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before, header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: -webkit-transform 0.15s ease;
    -moz-transition: -moz-transform 0.15s ease;
    transition: transform 0.15s ease;
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
    -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
    -moz-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  }
  header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: bottom 0.1s 0.14s ease, -moz-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
}
body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
  top: 0;
  opacity: 0;
}
body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
    -webkit-transition-delay: 0.14s;
    -moz-transition-delay: 0.14s;
    transition-delay: 0.14s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
    -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    -moz-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  }
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: bottom 0.1s ease, -moz-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
@media screen and (min-width: 1051px) {
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner {
    -webkit-transition-delay: 0.14s;
    -moz-transition-delay: 0.14s;
    transition-delay: 0.14s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before {
    -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    -moz-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  }
  body.menu-open header.main .menu-btn .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
    -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: bottom 0.1s ease, -moz-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
body:not(.touch) header.main .menu-btn:hover .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner, body:not(.touch) header.main .menu-btn:hover .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:before, body:not(.touch) header.main .menu-btn:hover .menu-btn-icon .menu-btn-icon-box .menu-btn-icon-inner:after {
  background-color: #146cb2;
}
header.main .logo {
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 100%;
}
@media screen and (max-width: 568px) {
  header.main .logo {
    width: 41px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main .logo {
    width: 170px;
  }
}
@media screen and (min-width: 1051px) {
  header.main .logo {
    width: 170px;
  }
}
@media screen and (max-width: 755px) {
  header.main .logo {
    width: 41px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-desktop.png");
    background-repeat: no-repeat;
    background-position: 20px center;
  }
}
@media only screen and (min-width: 569px) and (max-width: 1050px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 569px) and (max-width: 1050px) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 569px) and (max-width: 1050px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 569px) and (max-width: 1050px) and (min-resolution: 125dpi), only screen and (min-width: 569px) and (max-width: 1050px) and (min-resolution: 1.3dppx) {
  header.main .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-desktop-2x.png");
    background-size: 170px 41px;
  }
}

@media screen and (min-width: 1051px) {
  header.main .logo {
    margin-left: 16px;
    background-image: url("/App/Site/Assets/i/rspectr-logo-desktop.png");
    background-repeat: no-repeat;
    background-position: 20px center;
  }
}
@media only screen and (min-width: 1051px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 1051px) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 1051px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 1051px) and (min-resolution: 125dpi), only screen and (min-width: 1051px) and (min-resolution: 1.3dppx) {
  header.main .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-desktop-2x.png");
    background-size: 170px 41px;
  }
}

@media screen and (max-width: 755px) {
  header.main .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-phone.png");
    background-repeat: no-repeat;
    background-position: 20px center;
  }
}
@media only screen and (max-width: 755px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (max-width: 755px) and (min--moz-device-pixel-ratio: 1.3), only screen and (max-width: 755px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (max-width: 755px) and (min-resolution: 125dpi), only screen and (max-width: 755px) and (min-resolution: 1.3dppx) {
  header.main .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-phone-2x.png");
    background-size: 41px 41px;
  }
}

header.main .sections {
  /*
  --- Vertical Center
  &:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  & > * {
    display: inline-block;
    vertical-align: middle;
  }
  */
}
header.main .sections .selected,
header.main .sections .items .item {
  font-size: 16px;
  text-transform: uppercase;
}
header.main .sections .selected {
  display: none;
}
@media screen and (max-width: 755px) {
  header.main .sections .selected {
    display: block;
    height: 100%;
    cursor: pointer;
  }
  header.main .sections .selected:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  header.main .sections .selected:after {
    display: inline-block;
    margin-left: 5px;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 17px;
    color: #4d4c4d;
  }
}
header.main .sections .items {
  height: 100%;
}
@media screen and (max-width: 755px) {
  header.main .sections .items {
    display: none;
    height: auto;
  }
}
header.main .sections .items .item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  padding-left: 13px;
  padding-right: 13px;
}
header.main .sections .items .item:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  header.main .sections .items .item:not(:first-child) {
    margin-left: 6px;
  }
  header.main .sections .items .item.item-selected {
    color: #1c75bc;
  }
  header.main .sections .items .item.item-selected:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #1c75bc;
  }
}
@media screen and (min-width: 1051px) {
  header.main .sections .items .item:not(:first-child) {
    margin-left: 6px;
  }
  header.main .sections .items .item.item-selected {
    color: #1c75bc;
  }
  header.main .sections .items .item.item-selected:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #1c75bc;
  }
}
@media screen and (max-width: 755px) {
  header.main .sections .items .item {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e4e4;
  }
  header.main .sections .items .item.item-selected:after {
    content: none;
    display: none;
  }
}
body:not(.touch) header.main .sections .items .item:hover {
  color: #1c75bc;
}
@media screen and (max-width: 755px) {
  header.main .sections.sections-open .selected:after {
    -webkit-transform: rotate(180deg) translateY(2px);
    -moz-transform: rotate(180deg) translateY(2px);
    -ms-transform: rotate(180deg) translateY(2px);
    -o-transform: rotate(180deg) translateY(2px);
    transform: rotate(180deg) translateY(2px);
  }
  header.main .sections.sections-open .items {
    display: block;
    position: fixed;
    top: 59px;
    left: 0;
    right: 0;
    background-color: white;
  }
  header.main .sections.sections-open .items .item {
    display: block;
  }
}

nav.main-menu {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 3;
  display: none;
}
@media screen and (max-width: 568px) {
  nav.main-menu {
    top: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  nav.main-menu {
    top: 81px;
  }
}
@media screen and (min-width: 1051px) {
  nav.main-menu {
    top: 81px;
  }
}
nav.main-menu .page-content {
  height: 0;
}
nav.main-menu .menu-body {
  display: inline-block;
  vertical-align: top;
  color: white;
  background-color: rgba(28, 117, 188, 0.9);
}
@media screen and (max-width: 568px) {
  nav.main-menu .menu-body {
    margin-left: 0;
    width: 100%;
    padding: 13px 0 43px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  nav.main-menu .menu-body {
    margin-left: -20px;
    width: 268px;
    padding: 10px 0;
  }
}
@media screen and (min-width: 1051px) {
  nav.main-menu .menu-body {
    margin-left: -22px;
    width: 268px;
    padding: 10px 0;
  }
}
nav.main-menu .menu-body .item {
  text-transform: uppercase;
}
nav.main-menu .menu-body .item a {
  display: block;
  color: white;
}
nav.main-menu .menu-body .item a span {
  position: relative;
}
body:not(.touch) nav.main-menu .menu-body .item a:hover span:after {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -6px;
  height: 2px;
  background-color: white;
}
@media screen and (max-width: 568px) {
  nav.main-menu .menu-body .item {
    font-size: 18px;
    text-align: center;
  }
  nav.main-menu .menu-body .item a {
    padding: 13px 10px 13px 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  nav.main-menu .menu-body .item {
    font-size: 16px;
    text-align: left;
  }
  nav.main-menu .menu-body .item a {
    padding: 10px 20px 10px 63px;
  }
}
@media screen and (min-width: 1051px) {
  nav.main-menu .menu-body .item {
    font-size: 16px;
    text-align: left;
  }
  nav.main-menu .menu-body .item a {
    padding: 10px 20px 10px 83px;
  }
}
@media screen and (max-width: 568px) {
  nav.main-menu {
    bottom: 0;
    height: 100%;
  }
  nav.main-menu .page-content,
  nav.main-menu .menu-body {
    height: 100%;
  }
  nav.main-menu .menu-body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 58px;
  }
  nav.main-menu .menu-body .close-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    margin-top: 7px;
    margin-right: 2px;
    cursor: pointer;
  }
  nav.main-menu .menu-body .close-btn:before {
    display: inline-block;
    vertical-align: top;
    padding: 12px;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: white;
    font-size: 17px;
    text-align: center;
  }
}

@media screen and (max-width: 568px) {
  body.menu-open {
    overflow: hidden;
  }
}
body.menu-open nav.main-menu {
  display: block;
}

.search-bar {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 568px) {
  .search-bar .search-toggle-btn {
    margin-top: 7px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .search-bar .search-toggle-btn {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1051px) {
  .search-bar .search-toggle-btn {
    margin-top: 18px;
  }
}
@media screen and (min-width: 756px) {
  .search-bar {
    position: relative;
    height: 100%;
  }
  .search-bar .search-toggle-btn {
    cursor: pointer;
    height: 44px;
    padding-top: 11px;
    padding-left: 11px;
    padding-right: 11px;
    margin-right: -11px;
  }
  .search-bar .search-toggle-btn:before {
    display: inline-block;
    vertical-align: middle;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: #1c75bc;
    font-size: 22px;
  }
  .search-bar .search-panel .search-body .filter-control {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .search-bar .search-panel {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    height: 40px;
    background-color: white;
    border: 1px solid #1c75bc;
  }
  .search-bar .search-panel .search-body .text-control,
  .search-bar .search-panel .search-body .filter-control,
  .search-bar .search-panel .search-body .search-action {
    display: inline-block;
    vertical-align: top;
  }
  .search-bar .search-panel .search-body .text-control input {
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-family: "Roboto Condensed", Helvetica, Arial, serif;
    font-size: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .search-bar .search-panel .search-body .filter-control {
    height: 38px;
  }
  .search-bar .search-panel .search-body .filter-control .selected-value {
    cursor: pointer;
    height: 100%;
    text-align: right;
    color: #1c75bc;
    text-transform: uppercase;
    line-height: 38px;
    white-space: nowrap;
  }
  .search-bar .search-panel .search-body .filter-control .selected-value:after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 11px;
    margin-right: 12px;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 17px;
    color: #4d4c4d;
  }
  .search-bar .search-panel .search-body .filter-control .items {
    display: none;
    text-align: left;
    border: 1px solid #1c75bc;
    background-color: white;
    padding: 7px 0;
  }
  .search-bar .search-panel .search-body .filter-control .items .item {
    font-size: 16px;
    text-transform: uppercase;
  }
  .search-bar .search-panel .search-body .filter-control .items .item input[type="radio"] {
    display: none;
  }
  .search-bar .search-panel .search-body .filter-control .items .item label {
    cursor: pointer;
    display: block;
    padding: 10px 19px;
  }
  .search-bar .search-panel .search-body .filter-control .items .item input[type="radio"]:checked + label, .search-bar .search-panel .search-body .filter-control .items .item.item-selected {
    color: #1c75bc;
  }
  .search-bar .search-panel .search-body .filter-control .items .item span {
    position: relative;
  }
  body:not(.touch) .search-bar .search-panel .search-body .filter-control .items .item span:hover:after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: -3px;
    height: 2px;
    background-color: #1c75bc;
  }
  .search-bar .search-panel .search-body .filter-control.filter-control-open .selected-value:after {
    -webkit-transform: translateY(-2px) rotate(180deg);
    -moz-transform: translateY(-2px) rotate(180deg);
    -ms-transform: translateY(-2px) rotate(180deg);
    -o-transform: translateY(-2px) rotate(180deg);
    transform: translateY(-2px) rotate(180deg);
  }
  .search-bar .search-panel .search-body .filter-control.filter-control-open .items {
    display: block;
  }
  .search-bar .search-panel .search-body .search-action button {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 38px;
    height: 38px;
    color: #1c75bc;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    text-align: center;
    padding: 0;
    /*
    padding: {
      top: 11px;
      left: 11px;
    }
    */
  }
  .search-bar .search-panel .search-body .search-action button:before {
    display: inline-block;
    vertical-align: top;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 17px;
  }
  .search-bar .search-panel .search-body .search-action button .text {
    display: none;
  }
  body:not(.touch) .search-bar .search-panel .search-body .search-action button:hover {
    color: white;
    background-color: #146cb2;
  }
  .search-bar .search-panel .close-btn {
    cursor: pointer;
    float: right;
    width: 38px;
    height: 38px;
    text-align: left;
    color: white;
    background-color: #1c75bc;
    padding-top: 11px;
    padding-left: 11px;
  }
  .search-bar .search-panel .close-btn:before {
    display: inline-block;
    vertical-align: top;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 17px;
  }
  body:not(.touch) .search-bar .search-panel .close-btn:hover {
    background-color: #146cb2;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .search-bar .search-panel {
    width: 480px;
  }
  .search-bar .search-panel .search-body .text-control {
    width: 188px;
  }
  .search-bar .search-panel .search-body .filter-control {
    width: 205px;
  }
}
@media screen and (min-width: 1051px) {
  .search-bar .search-panel {
    width: 697px;
  }
  .search-bar .search-panel .search-body .text-control {
    width: 410px;
  }
  .search-bar .search-panel .search-body .filter-control {
    width: 205px;
  }
}
@media screen and (max-width: 755px) {
  .search-bar {
    position: relative;
    height: 100%;
  }
  .search-bar .search-toggle-btn {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    padding-top: 11px;
    padding-left: 11px;
    padding-right: 11px;
    margin-right: -11px;
  }
  .search-bar .search-toggle-btn:before {
    display: inline-block;
    vertical-align: middle;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: #1c75bc;
    font-size: 22px;
  }
  .search-bar .search-panel {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
  }
  .search-bar .search-panel .search-body {
    border: 1px solid #1c75bc;
  }
  .search-bar .search-panel .search-body .text-control,
  .search-bar .search-panel .search-body .filter-control,
  .search-bar .search-panel .search-body .search-action {
    display: block;
    width: 100%;
    text-align: center;
  }
  .search-bar .search-panel .search-body .text-control {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .search-bar .search-panel .search-body .text-control input {
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 0;
    outline: none;
    padding: 0 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    font-family: "Roboto Condensed", Helvetica, Arial, serif;
    font-size: 24px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid #1c75bc;
  }
  .search-bar .search-panel .search-body .filter-control {
    width: 100%;
    text-align: center;
  }
  .search-bar .search-panel .search-body .filter-control .selected-value {
    cursor: pointer;
    height: 100%;
    font-size: 16px;
    color: #1c75bc;
    text-transform: uppercase;
    white-space: nowrap;
    padding-top: 17px;
    padding-bottom: 6px;
    padding-left: 40px;
  }
  .search-bar .search-panel .search-body .filter-control .selected-value::after {
    clear: both;
    content: "";
    display: table;
  }
  .search-bar .search-panel .search-body .filter-control .selected-value:after {
    float: right;
    display: inline-block;
    vertical-align: middle;
    margin-left: 11px;
    margin-right: 19px;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 17px;
    color: #4d4c4d;
  }
  .search-bar .search-panel .search-body .filter-control .items {
    display: none;
    padding: 0;
  }
  .search-bar .search-panel .search-body .filter-control .items .item {
    font-size: 16px;
    text-transform: uppercase;
  }
  .search-bar .search-panel .search-body .filter-control .items .item input[type="radio"] {
    display: none;
  }
  .search-bar .search-panel .search-body .filter-control .items .item label {
    cursor: pointer;
    display: block;
    padding: 6px 14px;
  }
  .search-bar .search-panel .search-body .filter-control .items .item input[type="radio"]:checked + label, .search-bar .search-panel .search-body .filter-control .items .item.item-selected {
    color: #1c75bc;
  }
  .search-bar .search-panel .search-body .filter-control.filter-control-open .selected-value:after {
    -webkit-transform: translateY(-2px) rotate(180deg);
    -moz-transform: translateY(-2px) rotate(180deg);
    -ms-transform: translateY(-2px) rotate(180deg);
    -o-transform: translateY(-2px) rotate(180deg);
    transform: translateY(-2px) rotate(180deg);
  }
  .search-bar .search-panel .search-body .filter-control.filter-control-open .items {
    display: block;
  }
  .search-bar .search-panel .search-body .search-action {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 12px;
    padding-bottom: 19px;
  }
  .search-bar .search-panel .search-body .search-action button {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 100%;
    color: white;
    background-color: #1c75bc;
    text-align: center;
    text-transform: uppercase;
    padding: 11px 15px;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
  }
}
.search-bar.search-bar-open .search-toggle-btn:before {
  content: "";
}
.search-bar.search-bar-open .search-panel {
  display: block;
}

@media screen and (max-width: 568px) {
  footer.main {
    min-width: 100%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  footer.main {
    min-width: 100%;
  }
}
@media screen and (min-width: 1051px) {
  footer.main {
    min-width: 1025px;
    padding-left: 0;
    padding-right: 0;
  }
}
body:not(.site-branding) footer.main {
  border-top: 1px solid #e4e4e4;
}
footer.main .page-content {
  background-color: white;
  line-height: 1.66667;
    /*
    @include responsive(desktop) {
      @include clearfix;

      .left,
      .center,
      .right {
        float: left;
      }

      .left {
        width: 530px;
        padding-right: 25px;
      }
      .center {
        width: 540px;
        padding-right: 25px;
      }
      .right {
        width: 178px;
      }
    }

    @include responsive(phone, tablet) {

      .left,
      .center,
      .right {
        text-align: center;
        margin-bottom: 16px;
      }
      .right {
        margin-bottom: 0;
      }

    }
    */
}
body.site-branding footer.main .page-content {
  border-top: 1px solid #e4e4e4;
}
@media screen and (max-width: 568px) {
  footer.main .page-content {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  footer.main .page-content {
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1051px) {
  footer.main .page-content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 12px;
  }
}
footer.main .page-content a strong {
  font-weight: normal;
  color: #1c75bc;
}
footer.main .page-content p {
  margin-top: 8px;
  margin-bottom: 8px;
}
footer.main .page-content p:first-child {
  margin-top: 0;
}
footer.main .page-content p:last-child {
  margin-bottom: 0;
}
footer.main .page-content .caption {
  font-weight: bold;
}
@media screen and (max-width: 568px) {
  footer.main .page-content .caption {
    font-size: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  footer.main .page-content .caption {
    font-size: 14px;
  }
}
@media screen and (min-width: 1051px) {
  footer.main .page-content .caption {
    font-size: 14px;
  }
}
footer.main .page-content .social-links, footer.main .page-content .social-links a {
  color: #c4c4c4;
}
body:not(.touch) footer.main .page-content .social-links a:hover .icon-social-facebook {
  color: #225b99;
}
body:not(.touch) footer.main .page-content .social-links a:hover .icon-social-twitter {
  color: #00adf2;
}
body:not(.touch) footer.main .page-content .social-links a:hover .icon-social-youtube {
  color: #e62117;
}
footer.main .page-content .social-links .plain-icon {
  color: black;
  font-size: 14px;
}
footer.main .page-content .social-links .plain-icon,
footer.main .page-content .social-links a {
  line-height: 1;
}
body:not(.touch) footer.main .page-content .links a:hover {
  color: #1c75bc;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  footer.main .page-content .info-layout::after {
    clear: both;
    content: "";
    display: table;
  }
  footer.main .page-content .info-layout p {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    margin-bottom: 0;
  }
  footer.main .page-content .info-layout .social-links {
    float: right;
    margin-top: -9px;
  }
  footer.main .page-content .info-layout .social-links a,
  footer.main .page-content .info-layout .social-links .plain-icon {
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
    padding-right: 6px;
  }
  footer.main .page-content .info-layout .social-links .icon {
    font-size: 18px;
  }
  footer.main .page-content .links .items {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (min-width: 1051px) {
  footer.main .page-content .info-layout::after {
    clear: both;
    content: "";
    display: table;
  }
  footer.main .page-content .info-layout p {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    margin-bottom: 0;
  }
  footer.main .page-content .info-layout .social-links {
    float: right;
    margin-top: -9px;
  }
  footer.main .page-content .info-layout .social-links a,
  footer.main .page-content .info-layout .social-links .plain-icon {
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
    padding-right: 6px;
  }
  footer.main .page-content .info-layout .social-links .icon {
    font-size: 18px;
  }
  footer.main .page-content .links .items {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (min-width: 1051px) {
  footer.main .page-content .address,
  footer.main .page-content .links,
  footer.main .page-content .legal-info {
    display: inline-block;
    vertical-align: top;
  }
  footer.main .page-content .address {
    width: 25%;
    padding-right: 40px;
  }
  footer.main .page-content .links {
    width: 41%;
    padding-right: 40px;
  }
  footer.main .page-content .legal-info {
    width: 34%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  footer.main .page-content .address,
  footer.main .page-content .links {
    display: inline-block;
    vertical-align: top;
  }
  footer.main .page-content .address {
    width: 40%;
    padding-right: 40px;
  }
  footer.main .page-content .links {
    width: 60%;
  }
}
@media screen and (max-width: 568px) {
  footer.main .page-content .address,
  footer.main .page-content .links,
  footer.main .page-content .legal-info {
    margin-top: 34px;
    text-align: center;
  }
  footer.main .page-content .address:first-child,
  footer.main .page-content .links:first-child,
  footer.main .page-content .legal-info:first-child {
    margin-top: 0;
  }
  footer.main .page-content .legal-info .caption {
    display: none;
  }
  footer.main .page-content .social-links {
    margin-top: 28px;
  }
  footer.main .page-content .social-links a,
  footer.main .page-content .social-links .plain-icon {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  footer.main .page-content .social-links .plain-icon:first-child,
  footer.main .page-content .social-links a:first-child {
    margin-left: 0;
  }
  footer.main .page-content .social-links .plain-icon:last-child,
  footer.main .page-content .social-links a:last-child {
    margin-right: 0;
  }
  footer.main .page-content .social-links .icon {
    font-size: 18px;
  }
}

.heading,
.section-header {
  text-transform: uppercase;
  color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .heading,
  .section-header {
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .heading,
  .section-header {
    font-size: 24px;
    text-align: left;
  }
}
@media screen and (min-width: 1051px) {
  .heading,
  .section-header {
    font-size: 24px;
    text-align: left;
  }
}

@media screen and (max-width: 568px) {
  .heading {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .heading {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1051px) {
  .heading {
    margin-bottom: 12px;
  }
}

.imgset {
  /*
  &.imgset-block {
    .imgset-desktop,
    .imgset-tablet,
    .imgset-phone {
      display: block;
    }
  }

  .imgset-desktop {
    //@include responsive(phone, tablet) {
    @media (max-width: 1401px) {
      display: none !important;
    }
  }
  .imgset-tablet {
    //@include responsive(phone, desktop) {
    @media (max-width: 769px) {
      display: none !important;
    }
  }
  .imgset-phone {
    //@include responsive(tablet, desktop) {
    @media (min-width: 769px) {
      display: none !important;
    }
  }
  */
}
.imgset .imgset-desktop,
.imgset .imgset-tablet,
.imgset .imgset-phone {
  display: none;
}
@media (max-width: 768px) {
  .imgset .imgset-phone {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1400px) {
  .imgset .imgset-tablet {
    display: block;
  }
}
@media (min-width: 1401px) {
  .imgset .imgset-desktop {
    display: block;
  }
}

.imgset-block .imgset-desktop,
.imgset-block .imgset-tablet,
.imgset-block .imgset-phone {
  display: none;
}
@media (max-width: 768px) {
  .imgset-block .imgset-phone {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1326px) {
  .imgset-block .imgset-tablet {
    display: block;
  }
}
@media (min-width: 1327px) {
  .imgset-block .imgset-desktop {
    display: block;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .phone-only {
    display: none !important;
  }
}
@media screen and (min-width: 1051px) {
  .phone-only {
    display: none !important;
  }
}

@media screen and (max-width: 568px) {
  .tablet-only {
    display: none !important;
  }
}
@media screen and (min-width: 1051px) {
  .tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 568px) {
  .desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (max-width: 568px) {
  .phone-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .tablet-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 1051px) {
  .desktop-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 568px) {
  .share-bar {
    margin-bottom: -20px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .share-bar {
    margin-bottom: -20px;
  }
}
@media screen and (min-width: 1051px) {
  .share-bar {
    margin-bottom: -20px;
  }
}
.share-bar .share-facebook,
.share-bar .share-vk,
.share-bar .share-twitter {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
@media screen and (max-width: 568px) {
  .share-bar .share-facebook,
  .share-bar .share-vk,
  .share-bar .share-twitter {
    width: 80px;
    height: 32px;
    margin-bottom: 20px;
  }
  .share-bar .share-facebook:not(:first-child),
  .share-bar .share-vk:not(:first-child),
  .share-bar .share-twitter:not(:first-child) {
    margin-left: 25px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .share-bar .share-facebook,
  .share-bar .share-vk,
  .share-bar .share-twitter {
    width: 118px;
    height: 32px;
    margin-bottom: 20px;
  }
  .share-bar .share-facebook:not(:first-child),
  .share-bar .share-vk:not(:first-child),
  .share-bar .share-twitter:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .share-bar .share-facebook,
  .share-bar .share-vk,
  .share-bar .share-twitter {
    width: 86px;
    height: 32px;
    margin-bottom: 20px;
  }
  .share-bar .share-facebook:not(:first-child),
  .share-bar .share-vk:not(:first-child),
  .share-bar .share-twitter:not(:first-child) {
    margin-left: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .share-bar .share-facebook,
  .share-bar .share-vk,
  .share-bar .share-twitter {
    margin-left: 70px !important;
  }
}
.share-bar .share-facebook:before,
.share-bar .share-vk:before,
.share-bar .share-twitter:before {
  display: inline-block;
  vertical-align: top;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
@media screen and (max-width: 568px) {
  .share-bar .share-facebook:before,
  .share-bar .share-vk:before,
  .share-bar .share-twitter:before {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .share-bar .share-facebook:before,
  .share-bar .share-vk:before,
  .share-bar .share-twitter:before {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .share-bar .share-facebook:before,
  .share-bar .share-vk:before,
  .share-bar .share-twitter:before {
    font-size: 21px;
    line-height: 32px;
  }
}
.share-bar .share-facebook {
  background-color: #225b99;
}
.share-bar .share-facebook:before {
  content: "";
}
body:not(.touch) .share-bar .share-facebook:hover {
  background-color: #13477f;
}
.share-bar .share-vk {
  background-color: #1c75bc;
}
.share-bar .share-vk:before {
  content: "";
}
body:not(.touch) .share-bar .share-vk:hover {
  background-color: #0e61a4;
}
.share-bar .share-twitter {
  background-color: #00adf2;
}
.share-bar .share-twitter:before {
  content: "";
}
body:not(.touch) .share-bar .share-twitter:hover {
  background-color: #0290c9;
}

@media screen and (max-width: 568px) {
  .form-section {
    margin-top: 28px;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-section .section-header {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .form-section {
    margin-top: 38px;
    margin-bottom: 0;
  }
  .form-section .section-header {
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 1051px) {
  .form-section {
    margin-top: 35px;
    margin-bottom: 0;
  }
  .form-section .section-header {
    margin-bottom: 28px;
  }
}

.scroll-up {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #1c75bc;
  background-color: #f3f3f3;
}
.scroll-up:before {
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 1px;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 17px;
}
body.touch .scroll-up {
  display: none;
}
body:not(.touch) .scroll-up:hover {
  color: white;
  background-color: #146cb2;
}

.clear-top:before {
  content: '';
  display: table;
  clear: both;
  height: 0;
}

.content-section {
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 568px) {
  .content-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .content-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .content-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.content-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.separated-content-section {
  border-top: 1px solid #e4e4e4;
}
.separated-content-section .section-header,
.separated-content-section .heading {
  text-align: left;
}
@media screen and (max-width: 568px) {
  .separated-content-section .heading {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 568px) {
  .separated-content-section {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .separated-content-section {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .separated-content-section {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.separated-content-section + .separated-content-section {
  margin-top: 0;
}

.more {
  text-align: center;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-main-related .more {
    text-align: left;
  }
}
@media screen and (min-width: 1051px) {
  .layout-main-related .more {
    text-align: left;
  }
}

.page-content {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  .page-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-content {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .page-content {
    max-width: 1025px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

.page {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  .page {
    width: 100%;
    margin-top: 58px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page {
    width: 100%;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1051px) {
  .page {
    width: 1025px;
    margin-top: 80px;
    padding-left: 0;
    padding-right: 0;
  }
}
.page .page-content {
  background-color: white;
}
.page .page-content:before, .page .page-content:after {
  content: '';
  display: table;
  clear: both;
  height: 0;
}
@media screen and (max-width: 568px) {
  .page .page-content {
    max-width: 100%;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page .page-content {
    max-width: 100%;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
  }
}
@media screen and (min-width: 1051px) {
  .page .page-content {
    max-width: 1025px;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
  }
}
@media screen and (max-width: 568px) {
  .page .page-content {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page .page-content {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1051px) {
  .page .page-content {
    padding-top: 39px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 568px) {
  .page-header {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .page-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.page-header .page-title .text {
  color: #1c75bc;
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .page-header .page-title .text {
    font-size: 22px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-header .page-title .text {
    font-size: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .page-header .page-title .text {
    font-size: 32px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-header .page-title .text {
    margin-right: 29px;
  }
}
@media screen and (min-width: 1051px) {
  .page-header .page-title .text {
    margin-right: 29px;
  }
}
@media screen and (max-width: 568px) {
  .page-header .page-tabs + .page-title {
    margin-top: 26px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-header .page-tabs + .page-title {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1051px) {
  .page-header .page-tabs + .page-title {
    margin-top: 36px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .page-header .page-title {
    overflow: hidden;
    width: 68.68%;
  }
  .page-header .breadcrumb {
    float: right;
    text-align: right;
    margin-top: 7px;
    margin-left: 4.12%;
    margin-bottom: 34px;
    width: 27.2%;
  }
}
@media screen and (min-width: 1051px) {
  .page-header .page-title {
    overflow: hidden;
    width: 67%;
  }
  .page-header .breadcrumb {
    float: right;
    text-align: right;
    margin-top: 7px;
    margin-left: 3%;
    margin-bottom: 34px;
    width: 30%;
  }
}
@media screen and (max-width: 568px) {
  .page-header .page-title,
  .page-header .breadcrumb {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-header .page-tabs,
  .page-header .page-title {
    margin-top: 24px;
  }
}
.page-header .breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
}
.page-header .breadcrumb > :not(:last-child):after {
  content: ' / ';
}
body:not(.touch) .page-header .breadcrumb a:hover {
  color: #1c75bc;
}

body.site-branding .page {
  margin-top: 0;
}
body.site-branding .branding-top,
body.site-branding .branding-bottom {
  margin-left: auto;
  margin-right: auto;
}
body.site-branding .branding-top a,
body.site-branding .branding-top a .imgset,
body.site-branding .branding-bottom a,
body.site-branding .branding-bottom a .imgset {
  display: block;
}
body.site-branding .branding-top a img,
body.site-branding .branding-top a .imgset img,
body.site-branding .branding-bottom a img,
body.site-branding .branding-bottom a .imgset img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  body.site-branding .branding-top {
    margin-top: 58px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  body.site-branding .branding-top {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1051px) {
  body.site-branding .branding-top {
    margin-top: 80px;
  }
}
body.site-branding .branding-top a {
  /*
  img {
    @include responsive {
      width: r-value(branding, image, top, width);
      height: r-value(branding, image, top, height);
    }
  }
  */
}
@media screen and (max-width: 568px) {
  body.site-branding .branding-bottom {
    min-width: 100%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  body.site-branding .branding-bottom {
    min-width: 100%;
  }
}
@media screen and (min-width: 1051px) {
  body.site-branding .branding-bottom {
    min-width: 1025px;
  }
}
body.site-branding .branding-bottom a {
  /*
  img {
    @include responsive {
      width: r-value(branding, image, bottom, width);
      height: r-value(branding, image, bottom, height);
    }
  }
  */
}

.v-align {
  display: table;
  width: 100%;
}
.v-align .v-align-row {
  display: table-row;
}
.v-align .v-align-top,
.v-align .v-align-center,
.v-align .v-align-bottom {
  display: table-cell;
}
.v-align .v-align-top {
  vertical-align: top;
}
.v-align .v-align-center {
  vertical-align: middle;
}
.v-align .v-align-bottom {
  vertical-align: bottom;
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-news-featured .item {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    height: 189px;
    margin-bottom: 20px;
  }
  .layout-news-featured .item:last-child {
    margin-bottom: 0;
  }
  .layout-news-featured .item.item-main {
    float: right;
    width: 66%;
    height: 398px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1051px) {
  .layout-news-featured .item {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    height: 172px;
    margin-bottom: 16px;
  }
  .layout-news-featured .item:last-child {
    margin-bottom: 0;
  }
  .layout-news-featured .item.item-main {
    float: right;
    width: 66%;
    height: 360px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 568px) {
  .layout-news-featured .item {
    height: 190px;
    margin-bottom: 10px;
  }
  .layout-news-featured .item:last-child {
    margin-bottom: 0;
  }
}

.layout-main-related::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-main-related .news-list,
  .layout-main-related .layout-text-list {
    min-height: 418px;
    padding-top: 20px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .layout-main-related .layout-text-list .item:first-child {
    padding-top: 0;
  }
  .layout-main-related .main {
    display: inline-block;
    vertical-align: top;
    width: 66%;
  }
  .layout-main-related .related {
    float: right;
    width: 32%;
  }
  .layout-main-related .main .more,
  .layout-main-related .related .more {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .layout-main-related .news-list,
  .layout-main-related .layout-text-list {
    min-height: 384px;
    padding-top: 20px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .layout-main-related .layout-text-list .item:first-child {
    padding-top: 0;
  }
  .layout-main-related .main {
    display: inline-block;
    vertical-align: top;
    width: 66%;
  }
  .layout-main-related .related {
    float: right;
    width: 32%;
  }
  .layout-main-related .main .more,
  .layout-main-related .related .more {
    margin-top: 20px;
  }
}
@media screen and (max-width: 568px) {
  .layout-main-related .main {
    margin-bottom: 34px;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-grid-2 .item {
    width: 48.485%;
    margin-top: 20px;
  }
  .layout-grid-2 .item:nth-child(1), .layout-grid-2 .item:nth-child(2) {
    margin-top: 0;
  }
  .layout-grid-2 .item:nth-child(2n) {
    margin-left: 3.03%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-grid-2 .item {
    width: 48.485%;
    margin-top: 20px;
  }
  .layout-grid-2 .item:nth-child(1), .layout-grid-2 .item:nth-child(2) {
    margin-top: 0;
  }
  .layout-grid-2 .item:nth-child(2n) {
    margin-left: 3.03%;
  }
}
@media screen and (max-width: 568px) {
  .layout-grid-2 .item {
    width: 100%;
    margin-bottom: 10px;
  }
  .layout-grid-2 .item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-grid-2.news-list .item {
    height: 189px;
  }
}
@media screen and (min-width: 1051px) {
  .layout-grid-2.news-list .item {
    height: 172px;
  }
}
@media screen and (max-width: 568px) {
  .layout-grid-2.news-list .item {
    height: 190px;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-grid-3 .item {
    width: 32%;
    margin-top: 20px;
  }
  .layout-grid-3 .item:nth-child(1), .layout-grid-3 .item:nth-child(2), .layout-grid-3 .item:nth-child(3) {
    margin-top: 0;
  }
  .layout-grid-3 .item:nth-child(3n+2) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-grid-3 .item {
    width: 32%;
    margin-top: 20px;
  }
  .layout-grid-3 .item:nth-child(1), .layout-grid-3 .item:nth-child(2), .layout-grid-3 .item:nth-child(3) {
    margin-top: 0;
  }
  .layout-grid-3 .item:nth-child(3n+2) {
    margin-left: 2%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 568px) {
  .layout-grid-3 .item {
    width: 100%;
    margin-bottom: 10px;
  }
  .layout-grid-3 .item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-grid-3.news-list .item {
    height: 189px;
  }
}
@media screen and (min-width: 1051px) {
  .layout-grid-3.news-list .item {
    height: 172px;
  }
}
@media screen and (max-width: 568px) {
  .layout-grid-3.news-list .item {
    height: 190px;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-gallery-featured .item {
    display: inline-block;
    vertical-align: top;
    width: 32.42%;
    height: 169px;
    margin-bottom: 10px;
    margin-right: 1.37%;
  }
  .layout-gallery-featured .item:nth-child(5) {
    width: 66.21%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-gallery-featured .item {
    display: inline-block;
    vertical-align: top;
    width: 24.4%;
    height: 172px;
    margin-bottom: 10px;
    margin-right: 0.8%;
  }
  .layout-gallery-featured .item:nth-child(5) {
    width: 49.6%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-gallery-featured {
    position: relative;
  }
  .layout-gallery-featured:before {
    content: '';
    float: right;
    display: block;
    width: 24.4%;
  }
  .layout-gallery-featured .item:nth-child(6) {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 0;
    float: right;
    height: 354px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-gallery-featured .item:nth-child(3), .layout-gallery-featured .item:nth-child(5) {
    margin-right: 0;
  }
  .layout-gallery-featured .item:nth-child(6) {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .layout-gallery-featured .item {
    width: 100%;
    height: 187px;
  }
  .layout-gallery-featured .item:not(:first-child) {
    display: none;
  }
}

@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-with-sidebar {
    margin-bottom: 40px;
  }
  .layout-with-sidebar::after {
    clear: both;
    content: "";
    display: table;
  }
  .layout-with-sidebar > .content {
    float: left;
    width: 68.68%;
  }
  .layout-with-sidebar > aside {
    float: right;
    text-align: right;
    width: 27.2%;
    margin-left: 4.12%;
  }
  .layout-with-sidebar > aside .heading {
    text-align: right;
  }
  .layout-with-sidebar > aside section:not(:first-child) {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1051px) {
  .layout-with-sidebar {
    margin-bottom: 40px;
  }
  .layout-with-sidebar::after {
    clear: both;
    content: "";
    display: table;
  }
  .layout-with-sidebar > .content {
    float: left;
    width: 67%;
  }
  .layout-with-sidebar > aside {
    float: right;
    text-align: right;
    width: 30%;
    margin-left: 3%;
  }
  .layout-with-sidebar > aside .heading {
    text-align: right;
  }
  .layout-with-sidebar > aside section:not(:first-child) {
    margin-top: 36px;
  }
}
@media screen and (max-width: 568px) {
  .layout-with-sidebar {
    margin-bottom: 30px;
    /*
    & > .content {
      padding: {
        left: r-value(content, inner-padding, left);
        right: r-value(content, inner-padding, right);
      }
    }
    */
    /*
    & > aside {
      display: none;
    }
    */
  }
  .layout-with-sidebar > aside {
    margin-top: 26px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .layout-with-sidebar > aside section:not(:first-child) {
    margin-top: 24px;
  }
  .layout-with-sidebar > aside .heading,
  .layout-with-sidebar > aside .section-header {
    text-align: left;
    margin-bottom: 14px;
  }
}

.layout-articles-featured::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 568px) {
  .layout-articles-featured .item-featured {
    width: 100%;
    height: 190px;
  }
  .layout-articles-featured aside {
    width: 100%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-articles-featured .item-featured {
    width: 66%;
    height: 397px;
  }
  .layout-articles-featured aside {
    width: 32%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-articles-featured .item-featured {
    width: 66%;
    height: 393px;
  }
  .layout-articles-featured aside {
    width: 32%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-articles-featured .item-featured {
    float: left;
  }
  .layout-articles-featured aside {
    float: right;
    margin-left: 2%;
  }
}
@media screen and (min-width: 1051px) {
  .layout-articles-featured .item-featured {
    float: left;
  }
  .layout-articles-featured aside {
    float: right;
    margin-left: 2%;
  }
}

.layout-text-list .item {
  display: block;
}
.layout-text-list .item:not(:first-child) {
  border-top: 1px solid #c4c4c4;
}
@media screen and (max-width: 568px) {
  .layout-text-list .item {
    font-size: 18px;
    padding: 18px 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .layout-text-list .item {
    font-size: 16px;
    padding: 14px 0;
  }
}
@media screen and (min-width: 1051px) {
  .layout-text-list .item {
    font-size: 16px;
    padding: 18px 0;
  }
}
@media screen and (max-width: 568px) {
  .layout-text-list .item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body:not(.touch) .layout-text-list .item:hover {
  color: #1c75bc;
}

.btn {
  display: inline-block;
  vertical-align: top;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  background-color: #1c75bc;
  text-align: center;
  padding: 12px 15px 11px;
  min-width: 205px;
  cursor: pointer;
}
body:not(.touch) .btn:hover {
  background-color: #146cb2;
}

input[type="submit"].btn,
input[type="button"].btn,
button.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
}

form .form-group .form-label,
.form .form-group .form-label {
  display: block;
  text-transform: uppercase;
}
form .form-group.form-group-required .form-label:after,
.form .form-group.form-group-required .form-label:after {
  content: '*';
  color: #1c75bc;
}
form .form-group .form-control,
.form .form-group .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  width: 100%;
  border-radius: 0;
  border: 1px solid #c4c4c4;
  outline: none;
}
form .form-group .form-control:focus,
.form .form-group .form-control:focus {
  border-color: #1c75bc;
}
form .form-group select.form-control,
.form .form-group select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url("/App/Site/Assets/i/dropdown-arrow.png");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px;
  outline: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
  form .form-group select.form-control,
  .form .form-group select.form-control {
    background-image: url("/App/Site/Assets/i/dropdown-arrow-2x.png");
    background-size: 30px 5px;
  }
}
form .form-group .checkbox,
.form .form-group .checkbox {
  padding-left: 36px;
}
form .form-group .checkbox .form-control,
.form .form-group .checkbox .form-control {
  width: auto;
}
form .form-group .checkbox .form-label,
.form .form-group .checkbox .form-label {
  text-transform: none;
}
form .form-group .checkbox .form-label:after,
.form .form-group .checkbox .form-label:after {
  content: '';
}
form .form-group .checkbox input[type="checkbox"],
.form .form-group .checkbox input[type="checkbox"] {
  display: none;
}
form .form-group .checkbox label,
.form .form-group .checkbox label {
  cursor: pointer;
  display: block;
  position: relative;
}
form .form-group .checkbox label:before,
.form .form-group .checkbox label:before {
  position: absolute;
  top: 0;
  left: -36px;
  display: block;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #1c75bc;
  font-size: 21px;
}
form .form-group .checkbox input[type="checkbox"]:checked + label:before,
.form .form-group .checkbox input[type="checkbox"]:checked + label:before {
  content: "";
}
form .form-group.form-group-error .form-label, form .form-group.form-group-error .form-label:after,
.form .form-group.form-group-error .form-label,
.form .form-group.form-group-error .form-label:after {
  color: #ff3f3f;
}
form .form-group.form-group-error .form-control,
.form .form-group.form-group-error .form-control {
  border-color: #ff3f3f;
  background-color: #ffebeb;
}
form .form-group.form-group-error .error,
.form .form-group.form-group-error .error {
  color: #ff3f3f;
}
@media screen and (max-width: 568px) {
  form.form-vertical,
  .form.form-vertical {
    width: 100%;
  }
  form .form-group,
  .form .form-group {
    margin-bottom: 26px;
  }
  form .form-group .form-label,
  .form .form-group .form-label {
    font-size: 14px;
    margin-bottom: 4px;
  }
  form .form-group .form-control,
  .form .form-group .form-control {
    font-size: 14px;
    padding: 10px 10px;
  }
  form .form-group .error,
  .form .form-group .error {
    font-size: 12px;
  }
  form .form-group .error .validation-advice,
  .form .form-group .error .validation-advice {
    margin-top: 3px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  form.form-vertical,
  .form.form-vertical {
    width: 500px;
  }
  form .form-group,
  .form .form-group {
    margin-bottom: 36px;
  }
  form .form-group .form-label,
  .form .form-group .form-label {
    font-size: 16px;
    margin-bottom: 4px;
  }
  form .form-group .form-control,
  .form .form-group .form-control {
    font-size: 16px;
    padding: 10px 12px;
  }
  form .form-group .error,
  .form .form-group .error {
    font-size: 12px;
  }
  form .form-group .error .validation-advice,
  .form .form-group .error .validation-advice {
    margin-top: 3px;
  }
}
@media screen and (min-width: 1051px) {
  form.form-vertical,
  .form.form-vertical {
    width: 515px;
  }
  form .form-group,
  .form .form-group {
    margin-bottom: 28px;
  }
  form .form-group .form-label,
  .form .form-group .form-label {
    font-size: 16px;
    margin-bottom: 4px;
  }
  form .form-group .form-control,
  .form .form-group .form-control {
    font-size: 16px;
    padding: 10px 12px;
  }
  form .form-group .error,
  .form .form-group .error {
    font-size: 12px;
  }
  form .form-group .error .validation-advice,
  .form .form-group .error .validation-advice {
    margin-top: 3px;
  }
}
form .radio:not(:last-child),
.form .radio:not(:last-child) {
  margin-bottom: 16px;
}
form .radio input[type="radio"],
.form .radio input[type="radio"] {
  display: none;
}
form .radio label,
.form .radio label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 30px;
}
form .radio label:before,
.form .radio label:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #1c75bc;
  font-size: 17px;
}
form .radio input[type="radio"]:checked + label:before,
.form .radio input[type="radio"]:checked + label:before {
  content: "";
}
form.sending,
.form.sending {
  position: relative;
}
form.sending:after,
.form.sending:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("/App/Site/Assets/i/spinner.gif");
  background-repeat: no-repeat;
  background-position: center center;
}

.form-message {
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .form-message {
    max-width: 100%;
    font-size: 24px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .form-message {
    max-width: 330px;
    font-size: 30px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1051px) {
  .form-message {
    max-width: 330px;
    font-size: 32px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.form-horizontal .section-header {
  line-height: 41px;
}
.form-horizontal .form-content {
  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-lines: single;
  -moz-box-lines: single;
  box-lines: single;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: stretch;
  -moz-align-content: stretch;
  align-content: stretch;
  -ms-flex-line-pack: stretch;
}
.form-horizontal .form-content .form-group {
  -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-bottom: 0;
}
.form-horizontal .form-content .form-group .form-control {
  border-right: none;
  height: 41px;
  line-height: 39px;
  padding-top: 0;
  padding-bottom: 0;
}
.form-horizontal .form-content .form-actions {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 0;
  -moz-flex: 0 0;
  -ms-flex: 0 0;
  flex: 0 0;
}
.form-horizontal .form-content .form-actions .btn-icon {
  font-size: 17px;
  min-width: initial;
  line-height: 1;
  padding-top: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 568px) {
  .form-horizontal {
    padding-left: 15px;
    padding-right: 15px;
  }
  .form-horizontal .form-group .form-control {
    font-size: 24px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .form-horizontal .form-group .form-control {
    font-size: 24px;
  }
}
@media screen and (min-width: 1051px) {
  .form-horizontal .form-group .form-control {
    font-size: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .form-horizontal::after {
    clear: both;
    content: "";
    display: table;
  }
  .form-horizontal .section-header {
    float: left;
  }
  .form-horizontal .form-content,
  .form-horizontal .inline-form-message {
    overflow: hidden;
  }
}
@media screen and (min-width: 1051px) {
  .form-horizontal::after {
    clear: both;
    content: "";
    display: table;
  }
  .form-horizontal .section-header {
    float: left;
  }
  .form-horizontal .form-content,
  .form-horizontal .inline-form-message {
    overflow: hidden;
  }
}
@media screen and (min-width: 1051px) {
  .form-horizontal .section-header {
    width: 34%;
  }
  .form-horizontal .form-content {
    width: 66%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .form-horizontal .section-header {
    width: 42%;
  }
  .form-horizontal .form-content {
    width: 58%;
  }
}
@media screen and (max-width: 568px) {
  .form-horizontal .section-header {
    margin-bottom: 15px;
  }
}
.form-horizontal .form-message {
  max-width: none;
  padding: 0;
}

.news-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-list .item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .news-list .item {
    width: 100%;
  }
}
.news-list .item .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: no-repeat center center;
  background-size: cover;
}
.news-list .item .image:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  background-image: linear-gradient(to bottom,transparent 0%, rgba(0, 0, 0, 0.65) 100%);
}
.news-list .item .info {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 568px) {
  .news-list .item .info {
    padding: 13px 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .news-list .item .info {
    padding: 8px 10px;
  }
}
@media screen and (min-width: 1051px) {
  .news-list .item .info {
    padding: 18px 20px;
  }
}
.news-list .item .info, .news-list .item .info a {
  color: white;
}
.news-list .item .info .label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  .news-list .item .info .title {
    font-size: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .news-list .item .info .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .news-list .item .info .title {
    font-size: 16px;
  }
}
.news-list .item .info .subtitle {
  display: none;
  margin-top: 10px;
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .news-list .item .info .subtitle {
    font-size: 16px;
  }
}
.news-list .item .info .timestamp {
  margin-top: 16px;
  color: #c4c4c4;
  font-size: 12px;
  font-weight: 300;
}
body:not(.touch) .news-list .item:hover {
  /*
  .image:before {
    opacity: 0.6;
  }
  */
}
body:not(.touch) .news-list .item:hover .info .label,
body:not(.touch) .news-list .item:hover .info .title {
  color: #ffcc00;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .news-list .item.item-main .info .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .news-list .item.item-main .info .title {
    font-size: 32px;
  }
}
body:not(.touch) .news-list .item.item-main:hover .info .subtitle {
  display: block;
}

.articles-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.articles-list .item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .articles-list .item {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-list .item {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-list .item {
    padding-bottom: 16px;
  }
}
.articles-list .item .label {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  vertical-align: top;
  padding: 7px 20px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}
.articles-list .item .image {
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 568px) {
  .articles-list .item .image {
    width: 100%;
    height: 190px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-list .item .image {
    width: 100%;
    height: 189px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-list .item .image {
    width: 100%;
    height: 173px;
  }
}
.articles-list .item .image .video-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.articles-list .item .image .video-overlay:before, .articles-list .item .image .video-overlay:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.articles-list .item .image .video-overlay:before {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 0.9);
}
.articles-list .item .image .video-overlay:after {
  width: 38px;
  height: 38px;
  padding-left: 5px;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #1c75bc;
  font-size: 38px;
}
@media screen and (max-width: 568px) {
  .articles-list .item .info {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.articles-list .item .info .title {
  margin-top: 16px;
}
@media screen and (max-width: 568px) {
  .articles-list .item .info .title {
    font-size: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-list .item .info .title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-list .item .info .title {
    font-size: 16px;
  }
}
.articles-list .item .info .subtitle,
.articles-list .item .info .summary {
  margin-top: 14px;
  font-size: 14px;
}
body:not(.touch) .articles-list .item:hover .info .title,
body:not(.touch) .articles-list .item:hover .info .subtitle {
  color: #1c75bc;
}

@media screen and (max-width: 568px) {
  .interview-list .item .info .title {
    font-size: 18px;
  }
  .interview-list .item .info .subtitle {
    font-size: 16px;
  }
  .interview-list .item .info .summary {
    font-size: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .interview-list .item .info .title {
    font-size: 16px;
  }
  .interview-list .item .info .subtitle {
    font-size: 16px;
  }
  .interview-list .item .info .summary {
    font-size: 14px;
  }
}
@media screen and (min-width: 1051px) {
  .interview-list .item .info .title {
    font-size: 16px;
  }
  .interview-list .item .info .subtitle {
    font-size: 16px;
  }
  .interview-list .item .info .summary {
    font-size: 14px;
  }
}

.promo {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.promo:first-child {
  margin-top: 0;
}
.promo:last-child {
  margin-bottom: 0;
}
.promo a {
  display: inline-block;
  vertical-align: top;
}
.promo a img {
  display: block;
}
@media screen and (min-width: 1051px) {
  .promo .imgset,
  .promo .iframe {
    width: 1246px;
    height: 87px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .promo .imgset,
  .promo .iframe {
    width: 728px;
    height: 63px;
  }
}
@media screen and (max-width: 568px) {
  .promo .imgset,
  .promo .iframe {
    width: 290px;
    height: 40px;
  }
}

.promo-wide-embed {
  position: relative;
  z-index: 1;
  height: 150px;
  margin: 40px auto;
  background-color: #fcfcfc;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .promo-wide-embed {
    height: 90px;
  }
}
@media screen and (max-width: 419px) {
  .promo-wide-embed {
    width: 320px;
    height: 281px;
  }
}

.promo-tall-embed {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  margin: 20px 0;
  margin-left: auto;
}

.tabs .tab {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: uppercase;
  color: #9B9B9B;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 568px) {
  .tabs .tab:not(:last-child) {
    margin-right: 32px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .tabs .tab:not(:last-child) {
    margin-right: 35px;
  }
}
@media screen and (min-width: 1051px) {
  .tabs .tab:not(:last-child) {
    margin-right: 35px;
  }
}
body:not(.touch) .tabs .tab:hover {
  color: #1c75bc;
}
.tabs .tab-selected {
  border-bottom-color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .tabs {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 568px) {
  .tabs.tabs-digits {
    text-align: left;
  }
}

.page-content .content .tabs {
  margin-bottom: 20px;
}

@media screen and (max-width: 568px) {
  .magazines-list {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.magazines-list .item {
  display: block;
}
.magazines-list .item::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 568px) {
  .magazines-list .item:not(:last-child) {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list .item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list .item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list .item .image {
    float: left;
    margin-right: 20px;
  }
  .magazines-list .item .info {
    overflow: hidden;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list .item .image {
    float: left;
    margin-right: 60px;
  }
  .magazines-list .item .info {
    overflow: hidden;
  }
}
@media screen and (max-width: 568px) {
  .magazines-list .item .image img {
    width: 230px;
    height: 306px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list .item .image img {
    width: 230px;
    height: 306px;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list .item .image img {
    width: 224px;
    height: 300px;
  }
}
.magazines-list .item .info {
  display: block;
}
@media screen and (max-width: 568px) {
  .magazines-list .item .info {
    width: 100%;
    margin-top: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list .item .info {
    width: 470px;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list .item .info {
    width: 370px;
  }
}
.magazines-list .item .info .prop-info {
  font-size: 32px;
}
.magazines-list .item .info .prop-info .badge {
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 16px;
  padding: 4px 10px 3px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  background-color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .magazines-list .item .info .prop-info {
    margin-bottom: 16px;
  }
  .magazines-list .item .info .title {
    font-size: 18px;
  }
  .magazines-list .item .info .summary {
    margin-top: 5px;
    font-size: 14px;
  }
  .magazines-list .item .info .summary .rich-content {
    font-size: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazines-list .item .info .prop-info {
    margin-bottom: 36px;
  }
  .magazines-list .item .info .title {
    font-size: 18px;
  }
  .magazines-list .item .info .summary {
    margin-top: 7px;
    font-size: 18px;
  }
  .magazines-list .item .info .summary .rich-content {
    font-size: 18px;
  }
}
@media screen and (min-width: 1051px) {
  .magazines-list .item .info .prop-info {
    margin-bottom: 36px;
  }
  .magazines-list .item .info .title {
    font-size: 32px;
  }
  .magazines-list .item .info .summary {
    margin-top: 10px;
    font-size: 16px;
  }
  .magazines-list .item .info .summary .rich-content {
    font-size: 16px;
  }
}

.text-list {
  border-top: 1px solid #c4c4c4;
}
@media screen and (max-width: 568px) {
  .text-list {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .text-list {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .text-list {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .text-list .item {
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (min-width: 1051px) {
  .text-list .item {
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 568px) {
  .text-list .item {
    display: block;
  }
}
.text-list .item .label {
  color: #c4c4c4;
  text-transform: uppercase;
}
.text-list .item .subtitle {
  font-weight: 300;
}
.text-list .item .timestamp {
  color: #666666;
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .text-list .item {
    padding-bottom: 18px;
  }
  .text-list .item .label {
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: 18px;
  }
  .text-list .item .title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .text-list .item .subtitle {
    font-size: 16px;
  }
  .text-list .item .timestamp {
    font-size: 12px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .text-list .item .label {
    font-size: 12px;
    margin-top: 21px;
    margin-bottom: 18px;
  }
  .text-list .item .title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .text-list .item .subtitle {
    font-size: 14px;
  }
  .text-list .item .timestamp {
    font-size: 12px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .text-list .item .label {
    font-size: 12px;
    margin-top: 21px;
    margin-bottom: 26px;
  }
  .text-list .item .title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .text-list .item .subtitle {
    font-size: 14px;
  }
  .text-list .item .timestamp {
    font-size: 12px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 568px) {
  .text-list .item {
    border-bottom: 1px solid #c4c4c4;
    padding-left: 15px;
    padding-right: 15px;
  }
}
body:not(.touch) .text-list .item:hover .label,
body:not(.touch) .text-list .item:hover .title {
  color: #1c75bc;
}

.rich-content {
  /*
  b,
  strong {
    font-weight: normal;
  }
  */
}
.rich-content::after {
  clear: both;
  content: "";
  display: table;
}
.rich-content img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 568px) {
  .rich-content {
    font-size: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content {
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content {
    font-size: 16px;
  }
}
.rich-content a {
  color: #1c75bc;
  text-decoration: underline;
}
.rich-content .media-left,
.rich-content .media-right {
  margin-top: 4px;
}
.rich-content .media .media-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 1.4em;
}
.rich-content .media .media-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 1.4em;
}
.rich-content .media .media-center {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 568px) {
  .rich-content .video-block,
  .rich-content .media {
    display: block;
    float: none;
    text-align: center;
    height: auto;
  }
  .rich-content .video-block .media-preview,
  .rich-content .media .media-preview {
    width: 100%;
  }
  .rich-content .video-block .media-preview img,
  .rich-content .media .media-preview img {
    max-width: 100%;
    height: auto;
  }
}
.rich-content .video-block,
.rich-content .media .media-center {
  display: block;
  height: auto;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 568px) {
  .rich-content .video-block {
    height: 240px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content .video-block {
    height: 280px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content .video-block {
    height: 450px;
  }
}
.rich-content .video-block iframe {
  width: 100%;
  height: 100%;
}
.rich-content ul, .rich-content ol {
  padding-left: 25px;
  /*
  @include responsive {
    font-size: r-value(article, list, font-size);
  }
  */
}
.rich-content ul li, .rich-content ol li {
  margin-top: 1em;
  margin-bottom: 1em;
}
.rich-content ul {
  list-style: none;
}
.rich-content ul li:before {
  content: '\2022';
  display: block;
  position: relative;
  max-width: 0px;
  max-height: 0px;
  left: -25px;
  top: -8px;
  color: #1c75bc;
  font-size: 30px;
}
.rich-content h2:first-child, .rich-content h3:first-child, .rich-content h4:first-child, .rich-content h5:first-child, .rich-content h6:first-child {
  margin-top: 0;
}
.rich-content h2:before, .rich-content h3:before, .rich-content h4:before, .rich-content h5:before, .rich-content h6:before {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
@media screen and (max-width: 568px) {
  .rich-content h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content h2 {
    font-size: 32px;
  }
}
.rich-content h3 {
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .rich-content h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content h3 {
    font-size: 24px;
  }
}
.rich-content h4 {
  font-weight: bold;
}
@media screen and (max-width: 568px) {
  .rich-content h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content h4 {
    font-size: 18px;
  }
}
.rich-content p .media:first-child:before {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.rich-content p:last-child {
  margin-bottom: 0;
}
.rich-content p:empty {
  display: none;
}
@media screen and (max-width: 568px) {
  .rich-content .table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    background: -webkit-linear-gradient( left , white, white 50%, rgba(255, 255, 255, 0) 100%), -webkit-linear-gradient( right , white, white 50%, rgba(255, 255, 255, 0) 100%) 100% 0, -webkit-linear-gradient( left , rgba(0, 0, 0, 0.15), transparent 100%), -webkit-linear-gradient( right , rgba(0, 0, 0, 0.15), transparent 100%) 100% 0;
    background: linear-gradient(to right, white, white 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(to left, white, white 50%, rgba(255, 255, 255, 0) 100%) 100% 0, linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent 100%), linear-gradient(to left, rgba(0, 0, 0, 0.15), transparent 100%) 100% 0;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 20px 100%, 20px 100%, 9px 100%, 9px 100%;
    background-attachment: local, local, scroll, scroll;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content .table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    background: -webkit-linear-gradient( left , white, white 50%, rgba(255, 255, 255, 0) 100%), -webkit-linear-gradient( right , white, white 50%, rgba(255, 255, 255, 0) 100%) 100% 0, -webkit-linear-gradient( left , rgba(0, 0, 0, 0.15), transparent 100%), -webkit-linear-gradient( right , rgba(0, 0, 0, 0.15), transparent 100%) 100% 0;
    background: linear-gradient(to right, white, white 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(to left, white, white 50%, rgba(255, 255, 255, 0) 100%) 100% 0, linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent 100%), linear-gradient(to left, rgba(0, 0, 0, 0.15), transparent 100%) 100% 0;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 20px 100%, 20px 100%, 9px 100%, 9px 100%;
    background-attachment: local, local, scroll, scroll;
  }
}
.rich-content .table-responsive {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.rich-content .table-responsive table {
  min-width: 100%;
}
@media screen and (max-width: 568px) {
  .rich-content .table-responsive table th,
  .rich-content .table-responsive table td {
    font-size: 14px;
    padding: 16px 20px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .rich-content .table-responsive table th,
  .rich-content .table-responsive table td {
    font-size: 14px;
    padding: 16px 20px;
  }
}
@media screen and (min-width: 1051px) {
  .rich-content .table-responsive table th,
  .rich-content .table-responsive table td {
    font-size: 14px;
    padding: 16px 20px;
  }
}
.rich-content .table-responsive table th {
  text-align: left;
}
.rich-content .table-responsive table td {
  border: 1px solid #999999;
}

.article .image,
article .image {
  position: relative;
}
.article .image img,
article .image img {
  display: block;
  max-width: 100%;
  height: auto;
}
body.section-interview .article .image img, body.section-interview
article .image img {
  width: 100%;
}
.article .image .info,
article .image .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
}
.article .image .info .subtitle,
article .image .info .subtitle {
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .article .image .info,
  article .image .info {
    padding: 14px 15px;
  }
  .article .image .info .title,
  article .image .info .title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .article .image .info .subtitle,
  article .image .info .subtitle {
    font-size: 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .image .info,
  article .image .info {
    padding: 24px 20px;
  }
  .article .image .info .title,
  article .image .info .title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .article .image .info .subtitle,
  article .image .info .subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .article .image .info,
  article .image .info {
    padding: 32px 20px;
  }
  .article .image .info .title,
  article .image .info .title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .article .image .info .subtitle,
  article .image .info .subtitle {
    font-size: 16px;
  }
}
.article .image.image-backdropped,
article .image.image-backdropped {
  background-color: #d6d6d6;
}
@media screen and (max-width: 568px) {
  .article .image.image-backdropped,
  article .image.image-backdropped {
    padding: 13px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .image.image-backdropped,
  article .image.image-backdropped {
    padding: 23px;
  }
}
@media screen and (min-width: 1051px) {
  .article .image.image-backdropped,
  article .image.image-backdropped {
    padding: 36px;
  }
}
.article .image.image-backdropped img,
article .image.image-backdropped img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 568px) {
  .article .image.image-backdropped img,
  article .image.image-backdropped img {
    width: auto;
    max-height: 155px;
  }
}
.article .meta-info,
article .meta-info {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #666666;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .meta-info,
  article .meta-info {
    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: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
}
@media screen and (min-width: 1051px) {
  .article .meta-info,
  article .meta-info {
    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: justify;
    -moz-box-pack: justify;
    box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .meta-info .props,
  article .meta-info .props {
    white-space: nowrap;
    margin-top: 2px;
  }
}
@media screen and (min-width: 1051px) {
  .article .meta-info .props,
  article .meta-info .props {
    white-space: nowrap;
    margin-top: 2px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .meta-info .tags,
  article .meta-info .tags {
    text-align: right;
    margin-top: -8px;
  }
}
@media screen and (min-width: 1051px) {
  .article .meta-info .tags,
  article .meta-info .tags {
    text-align: right;
    margin-top: -8px;
  }
}
@media screen and (max-width: 568px) {
  .article .meta-info .tags,
  article .meta-info .tags {
    margin-top: 6px;
    margin-bottom: 26px;
  }
}
.article .meta-info .tags .tag,
article .meta-info .tags .tag {
  display: inline-block;
  border: 1px solid #999999;
  padding: 1px 9px;
  margin-top: 8px;
  font-size: 16px;
  color: #999999;
  text-transform: uppercase;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .meta-info .tags .tag,
  article .meta-info .tags .tag {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1051px) {
  .article .meta-info .tags .tag,
  article .meta-info .tags .tag {
    margin-left: 10px;
  }
}
@media screen and (max-width: 568px) {
  .article .meta-info .tags .tag,
  article .meta-info .tags .tag {
    margin-right: 8px;
  }
}
body:not(.touch) .article .meta-info .tags .tag:hover, body:not(.touch)
article .meta-info .tags .tag:hover {
  color: #1c75bc;
  border-color: #1c75bc;
}
.article .article-title .badge,
article .article-title .badge {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-left: 16px;
  padding: 4px 10px 3px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  background-color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .article .summary,
  article .summary {
    font-size: 16px;
    font-weight: bold;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .summary,
  article .summary {
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (min-width: 1051px) {
  .article .summary,
  article .summary {
    font-size: 18px;
    font-weight: bold;
  }
}
.article .attachments .items .item,
article .attachments .items .item {
  display: block;
  position: relative;
}
.article .attachments .items .item:before,
article .attachments .items .item:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #666666;
}
body:not(.touch) .article .attachments .items .item:hover, body:not(.touch)
article .attachments .items .item:hover {
  color: #1c75bc;
}
body:not(.touch) .article .attachments .items .item:hover:before, body:not(.touch)
article .attachments .items .item:hover:before {
  color: #666666;
}
.article .attachments .items div > .item:only-child,
article .attachments .items div > .item:only-child {
  display: inline;
}
@media screen and (max-width: 568px) {
  .article .image,
  article .image {
    margin-top: 0;
    margin-bottom: 15px;
  }
  .article .meta-info,
  article .meta-info {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .article .article-title,
  article .article-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .article .article-title .badge,
  article .article-title .badge {
    margin-top: 4px;
  }
  .article .attachments,
  article .attachments {
    margin-top: 24px;
    margin-bottom: 28px;
  }
  .article .attachments .items,
  article .attachments .items {
    margin-top: 26px;
  }
  .article .attachments .items .item,
  article .attachments .items .item {
    font-size: 22px;
    margin-top: 18px;
    padding-left: 38px;
  }
  .article .attachments .items .item:before,
  article .attachments .items .item:before {
    margin-top: 2px;
    font-size: 22px;
  }
  .article .attachments .items .row,
  article .attachments .items .row {
    margin-top: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .article .image,
  article .image {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .article .meta-info,
  article .meta-info {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .article .article-title,
  article .article-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .article .article-title .badge,
  article .article-title .badge {
    margin-top: 5px;
  }
  .article .attachments,
  article .attachments {
    margin-top: 44px;
    margin-bottom: 44px;
  }
  .article .attachments .items,
  article .attachments .items {
    margin-top: 36px;
  }
  .article .attachments .items .item,
  article .attachments .items .item {
    font-size: 24px;
    margin-top: 18px;
    padding-left: 38px;
  }
  .article .attachments .items .item:before,
  article .attachments .items .item:before {
    margin-top: 4px;
    font-size: 22px;
  }
  .article .attachments .items .row,
  article .attachments .items .row {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1051px) {
  .article .image,
  article .image {
    margin-top: 0;
    margin-bottom: 26px;
  }
  .article .meta-info,
  article .meta-info {
    margin-top: 26px;
    margin-bottom: 16px;
  }
  .article .article-title,
  article .article-title {
    font-size: 32px;
    margin-bottom: 28px;
  }
  .article .article-title .badge,
  article .article-title .badge {
    margin-top: 10px;
  }
  .article .attachments,
  article .attachments {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .article .attachments .items,
  article .attachments .items {
    margin-top: 36px;
  }
  .article .attachments .items .item,
  article .attachments .items .item {
    font-size: 24px;
    margin-top: 18px;
    padding-left: 38px;
  }
  .article .attachments .items .item:before,
  article .attachments .items .item:before {
    margin-top: 4px;
    font-size: 22px;
  }
  .article .attachments .items .row,
  article .attachments .items .row {
    margin-top: 18px;
  }
}
@media screen and (max-width: 568px) {
  .article > header, .article > .rich-content, .article > section,
  article > header,
  article > .rich-content,
  article > section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .article .share-bar .share-facebook,
  .article .share-bar .share-vk,
  .article .share-bar .share-twitter,
  article .share-bar .share-facebook,
  article .share-bar .share-vk,
  article .share-bar .share-twitter {
    width: 27.6%;
  }
  .article .share-bar .share-facebook:not(:first-child),
  .article .share-bar .share-vk:not(:first-child),
  .article .share-bar .share-twitter:not(:first-child),
  article .share-bar .share-facebook:not(:first-child),
  article .share-bar .share-vk:not(:first-child),
  article .share-bar .share-twitter:not(:first-child) {
    margin-left: 8.6%;
  }
}

body.page-errors header.page-error .logo {
  display: inline-block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
  width: 210px;
  height: 50px;
  background-image: url("/App/Site/Assets/i/rspectr-logo-desktop.png");
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
  body.page-errors header.page-error .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-desktop-2x.png");
    background-size: 170px 41px;
  }
}
body.page-errors .page {
  min-height: 80vh;
  margin-top: 0;
  text-align: center;
  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;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -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;
}
body.page-errors .page .page-content {
  max-width: 500px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  body.page-errors .page .error-code {
    font-size: 286px;
  }
}
@media screen and (min-width: 1051px) {
  body.page-errors .page .error-code {
    font-size: 286px;
  }
}
@media screen and (max-width: 568px) {
  body.page-errors .page .error-code {
    font-size: 120px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  body.page-errors .page .text {
    font-size: 36px;
  }
}
@media screen and (min-width: 1051px) {
  body.page-errors .page .text {
    font-size: 36px;
  }
}
@media screen and (max-width: 568px) {
  body.page-errors .page .text {
    font-size: 20px;
  }
}
body.page-errors .page .text p {
  margin-top: 40px;
  margin-bottom: 40px;
}
body.page-errors .page .text p:first-child {
  margin-top: 0;
}
body.page-errors .page .text p:last-child {
  margin-bottom: 0;
}
body.page-errors .page .text .action {
  font-size: 16px;
}
body.page-errors .page .text .action a {
  color: #1c75bc;
  text-transform: uppercase;
}

@media screen and (max-width: 568px) {
  .articles-featured {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-featured {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.articles-featured .item-featured {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
.articles-featured .item-featured .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: no-repeat center center;
  background-size: cover;
}
.articles-featured .item-featured .image:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  opacity: 0.3;
}
.articles-featured .item-featured .info {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 568px) {
  .articles-featured .item-featured .info {
    padding: 12px 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured .item-featured .info {
    padding: 8px 10px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-featured .item-featured .info {
    padding: 18px 20px;
  }
}
.articles-featured .item-featured .info, .articles-featured .item-featured .info a {
  color: white;
}
.articles-featured .item-featured .info .label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  .articles-featured .item-featured .info .title {
    font-size: 18px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured .item-featured .info .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-featured .item-featured .info .title {
    font-size: 32px;
  }
}
.articles-featured .item-featured .info .subtitle {
  margin-top: 10px;
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .articles-featured .item-featured .info .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured .item-featured .info .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-featured .item-featured .info .subtitle {
    font-size: 14px;
  }
}
.articles-featured .item-featured .info .timestamp {
  margin-top: 16px;
  color: #c4c4c4;
  font-size: 12px;
  font-weight: 300;
}
body:not(.touch) .articles-featured .item-featured:hover .image:before {
  opacity: 0.6;
}
body:not(.touch) .articles-featured .item-featured:hover .info .label,
body:not(.touch) .articles-featured .item-featured:hover .info .title {
  color: #ffcc00;
}
.articles-featured aside section:not(:last-child) {
  border-bottom: 1px solid #c4c4c4;
}
.articles-featured aside section header {
  text-transform: uppercase;
  color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .articles-featured aside section:not(:first-child) {
    margin-top: 30px;
  }
  .articles-featured aside section header {
    font-size: 22px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured aside section:not(:first-child) {
    margin-top: 16px;
  }
  .articles-featured aside section header {
    font-size: 24px;
  }
}
@media screen and (min-width: 1051px) {
  .articles-featured aside section:not(:first-child) {
    margin-top: 26px;
  }
  .articles-featured aside section header {
    font-size: 24px;
  }
}
@media screen and (max-width: 568px) {
  .articles-featured aside section .layout-text-list .item:nth-child(3) {
    display: none;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .articles-featured aside section .layout-text-list .item:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .articles-featured .item-featured .subtitle {
    display: none;
  }
  .articles-featured aside {
    margin-top: 30px;
  }
  .articles-featured aside section {
    border-bottom: 1px solid #c4c4c4;
  }
  .articles-featured aside section header {
    text-align: center;
  }
  .articles-featured aside section header,
  .articles-featured aside section .item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 568px) {
  .featured-mixed-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 771px) {
  .featured-mixed-content .item-magazine,
  .featured-mixed-content .item-interview,
  .featured-mixed-content .item-poll,
  .featured-mixed-content .item-promo {
    display: inline-block;
    vertical-align: top;
    width: 32%;
    margin-left: 2%;
    margin-right: 2%;
  }
  .featured-mixed-content .item-magazine:first-child, .featured-mixed-content .item-magazine:last-child,
  .featured-mixed-content .item-interview:first-child,
  .featured-mixed-content .item-interview:last-child,
  .featured-mixed-content .item-poll:first-child,
  .featured-mixed-content .item-poll:last-child,
  .featured-mixed-content .item-promo:first-child,
  .featured-mixed-content .item-promo:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-magazine {
    padding: 11px 14px;
    min-height: 357px;
  }
  .featured-mixed-content .item-magazine img {
    width: 208px;
    height: 278px;
  }
  .featured-mixed-content .item-interview {
    height: 318px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-magazine {
    padding: 7px 9px;
    min-height: 370px;
  }
  .featured-mixed-content .item-magazine img {
    width: 208px;
    height: 278px;
  }
  .featured-mixed-content .item-interview {
    height: 370px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-magazine {
    padding: 16px 17px;
    min-height: 426px;
  }
  .featured-mixed-content .item-magazine img {
    width: 277px;
    height: 370px;
  }
  .featured-mixed-content .item-interview {
    height: 426px;
  }
}
.featured-mixed-content .item-magazine {
  border: 1px solid #c4c4c4;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-magazine {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 42px;
  }
}
.featured-mixed-content .item-magazine .label {
  margin-bottom: 16px;
  font-size: 12px;
  color: #c4c4c4;
  text-transform: uppercase;
}
.featured-mixed-content .item-magazine img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body:not(.touch) .featured-mixed-content .item-magazine:hover {
  border-color: #1c75bc;
}
.featured-mixed-content .item-interview .info {
  position: relative;
  width: 100%;
  height: 100%;
}
.featured-mixed-content .item-interview .info .photo {
  position: relative;
  overflow: hidden;
  height: 99%;
}
.featured-mixed-content .item-interview .info .photo .image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: no-repeat center center;
  background-size: cover;
  /*
  &:before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background-color: black;
    opacity: 0.3;
  }
  */
}
.featured-mixed-content .item-interview .info .photo .label {
  position: relative;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .photo {
    padding: 11px 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-interview .info .photo {
    padding: 10px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-interview .info .photo {
    padding: 20px;
  }
}
.featured-mixed-content .item-interview .info .details {
  height: 1%;
  background-color: white;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .details {
    padding: 16px 25px 25px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-interview .info .details {
    padding: 18px 10px 0;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-interview .info .details {
    padding: 27px 20px 0;
  }
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .details {
    text-align: center;
  }
}
.featured-mixed-content .item-interview .info .label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}
.featured-mixed-content .item-interview .info .title {
  line-height: 1;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-interview .info .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-interview .info .title {
    font-size: 32px;
  }
}
.featured-mixed-content .item-interview .info .subtitle {
  margin-top: 10px;
  line-height: 1;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-interview .info .subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-interview .info .subtitle {
    font-size: 24px;
  }
}
.featured-mixed-content .item-interview .info .timestamp {
  color: #c4c4c4;
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-interview .info .timestamp {
    margin-top: 16px;
    font-size: 12px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .featured-mixed-content .item-interview .info .timestamp {
    margin-top: 16px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-interview .info .timestamp {
    margin-top: 36px;
    font-size: 12px;
  }
}
body:not(.touch) .featured-mixed-content .item-interview a:hover .details {
  color: #1c75bc;
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-poll {
    min-height: 426px;
  }
}
@media screen and (min-width: 1051px) {
  .featured-mixed-content .item-poll {
    border: 1px solid #c4c4c4;
    padding: 10px 13px 20px;
  }
}
@media screen and (max-width: 568px) {
  .featured-mixed-content .item-poll {
    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
    padding-top: 28px;
    padding-bottom: 22px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.poll .caption {
  color: #1c75bc;
  text-transform: uppercase;
}
.poll .question {
  font-weight: bold;
}
.poll .error .validation-advice {
  color: #ff3f3f;
}
@media screen and (max-width: 568px) {
  .poll .error .validation-advice {
    font-size: 12px;
    margin-top: 26px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .poll .error .validation-advice {
    font-size: 12px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .poll .error .validation-advice {
    font-size: 12px;
    margin-top: 36px;
  }
}
.poll .actions {
  text-align: center;
}
@media screen and (max-width: 568px) {
  .poll .caption {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .poll .question {
    font-size: 18px;
  }
  .poll .answers {
    font-size: 16px;
    margin-top: 26px;
    margin-bottom: 26px;
  }
  .poll .answers .radio label:before {
    margin-top: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .poll .caption {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .poll .question {
    font-size: 16px;
  }
  .poll .answers {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .poll .answers .radio:not(:last-child) {
    margin-bottom: 16px;
  }
  .poll .answers .radio label:before {
    margin-top: 0;
  }
}
@media screen and (min-width: 1051px) {
  .poll .caption {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .poll .question {
    font-size: 16px;
  }
  .poll .answers {
    font-size: 16px;
    margin-top: 36px;
    margin-bottom: 36px;
  }
  .poll .answers .radio:not(:last-child) {
    margin-bottom: 30px;
  }
  .poll .answers .radio label:before {
    margin-top: 2px;
  }
}
@media screen and (max-width: 568px) {
  .poll .actions .btn {
    width: 100%;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .poll .actions .btn {
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .poll .caption {
    text-align: center;
  }
}
.poll .results {
  display: none;
}
.poll .results .item .progress {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #c4c4c4;
}
.poll .results .item .progress > .progress-text {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.poll .results .item .progress .progress-bar {
  position: relative;
  overflow: hidden;
  background-color: #1c75bc;
}
.poll .results .item .progress .progress-bar .progress-text {
  color: white;
}
.poll .results .item .progress .progress-text {
  text-align: left;
}
@media screen and (max-width: 568px) {
  .poll .results {
    margin-top: 36px;
    margin-bottom: 32px;
  }
  .poll .results .item:not(:last-child) {
    margin-bottom: 18px;
  }
  .poll .results .item .text {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .poll .results .item .progress .progress-text {
    font-size: 16px;
    padding: 4px 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .poll .results {
    margin-top: 36px;
    margin-bottom: 32px;
  }
  .poll .results .item:not(:last-child) {
    margin-bottom: 18px;
  }
  .poll .results .item .text {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .poll .results .item .progress .progress-text {
    font-size: 14px;
    padding: 4px 10px;
  }
}
@media screen and (min-width: 1051px) {
  .poll .results {
    margin-top: 25px;
    margin-bottom: 19px;
  }
  .poll .results .item:not(:last-child) {
    margin-bottom: 18px;
  }
  .poll .results .item .text {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .poll .results .item .progress .progress-text {
    font-size: 18px;
    padding: 4px 10px;
  }
}
.poll.poll-voted form {
  display: none;
}
.poll.poll-voted .results {
  display: block;
}

.mini-gallery .mini-gallery-item {
  cursor: pointer;
}
.mini-gallery .mini-gallery-item .mini-gallery-image {
  background: no-repeat center center;
  background-size: cover;
}
.mini-gallery .mini-gallery-item .mini-gallery-caption {
  font-weight: 300;
  color: #666666;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .mini-gallery {
    margin-top: 44px;
  }
  .mini-gallery .mini-gallery-item {
    display: inline-block;
    vertical-align: top;
    width: 239px;
    overflow: hidden;
    margin-top: 30px;
    margin-right: 18px;
  }
  .mini-gallery .mini-gallery-item:nth-child(2n) {
    margin-right: 0;
  }
  .mini-gallery .mini-gallery-item:nth-child(1) {
    margin-top: 0;
  }
  .mini-gallery .mini-gallery-item:nth-child(2) {
    margin-top: 0;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-image {
    width: 239px;
    height: 188px;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-caption {
    margin-top: 16px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1051px) {
  .mini-gallery {
    margin-top: 56px;
  }
  .mini-gallery .mini-gallery-item {
    display: inline-block;
    vertical-align: top;
    width: 205px;
    overflow: hidden;
    margin-top: 30px;
    margin-right: 15px;
  }
  .mini-gallery .mini-gallery-item:nth-child(3n) {
    margin-right: 0;
  }
  .mini-gallery .mini-gallery-item:nth-child(1) {
    margin-top: 0;
  }
  .mini-gallery .mini-gallery-item:nth-child(2) {
    margin-top: 0;
  }
  .mini-gallery .mini-gallery-item:nth-child(3) {
    margin-top: 0;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-image {
    width: 205px;
    height: 163px;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-caption {
    margin-top: 18px;
    font-size: 12px;
  }
}
@media screen and (max-width: 568px) {
  .mini-gallery {
    padding: 0;
    padding-top: 26px;
  }
  .mini-gallery .mini-gallery-item {
    display: none;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-image {
    width: 320px;
    height: 240px;
  }
  .mini-gallery .mini-gallery-item .mini-gallery-caption {
    margin-top: 12px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    font-size: 12px;
  }
  .mini-gallery .mini-gallery-item:first-child {
    display: block;
  }
}

.pswp {
  z-index: 6;
}

.pswp__caption__center {
  text-align: center;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .pswp__caption__center {
    max-width: 728px;
  }
}
@media screen and (min-width: 1051px) {
  .pswp__caption__center {
    max-width: 728px;
  }
}

.magazine-toc .items .item .image {
  background: no-repeat center center;
  background-size: cover;
}
.magazine-toc .items .item .info .summary p:first-child {
  margin-top: 0;
}
.magazine-toc .items .item .info .summary p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-toc .items .item::after {
    clear: both;
    content: "";
    display: table;
  }
  .magazine-toc .items .item .image {
    float: left;
  }
  .magazine-toc .items .item .info {
    overflow: hidden;
  }
}
@media screen and (min-width: 1051px) {
  .magazine-toc .items .item::after {
    clear: both;
    content: "";
    display: table;
  }
  .magazine-toc .items .item .image {
    float: left;
  }
  .magazine-toc .items .item .info {
    overflow: hidden;
  }
}
@media screen and (max-width: 568px) {
  .magazine-toc .section-header {
    text-align: center;
  }
  .magazine-toc .items .item .image {
    margin-left: auto;
    margin-right: auto;
  }
  .magazine-toc .items .item .info {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .magazine-toc {
    margin-top: 26px;
    margin-bottom: 0;
  }
  .magazine-toc .items {
    margin-top: 24px;
  }
  .magazine-toc .items .item:not(:first-child) {
    margin-top: 25px;
  }
  .magazine-toc .items .item .image {
    width: 150px;
    height: 150px;
  }
  .magazine-toc .items .item .info {
    margin-top: 22px;
  }
  .magazine-toc .items .item .info .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .magazine-toc .items .item .info .subtitle {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .magazine-toc .items .item .info .summary {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-toc {
    margin-top: 36px;
    margin-bottom: 0;
  }
  .magazine-toc .items {
    margin-top: 18px;
  }
  .magazine-toc .items .item:not(:first-child) {
    margin-top: 25px;
  }
  .magazine-toc .items .item .image {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }
  .magazine-toc .items .item .info .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .magazine-toc .items .item .info .subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .magazine-toc .items .item .info .summary {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1051px) {
  .magazine-toc {
    margin-top: 36px;
    margin-bottom: 0;
  }
  .magazine-toc .items {
    margin-top: 36px;
  }
  .magazine-toc .items .item:not(:first-child) {
    margin-top: 40px;
  }
  .magazine-toc .items .item .image {
    width: 200px;
    height: 200px;
    margin-right: 40px;
  }
  .magazine-toc .items .item .info .title {
    font-size: 32px;
    margin-bottom: 22px;
  }
  .magazine-toc .items .item .info .subtitle {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .magazine-toc .items .item .info .summary {
    font-size: 16px;
    margin-top: 12px;
  }
}

@media screen and (max-width: 568px) {
  body.page-magazines-details article .image img,
  body.page-magazines-details .article .image img {
    margin-left: auto;
    margin-right: auto;
  }
}

.map {
  background: #fafafa;
}
@media screen and (max-width: 568px) {
  .map {
    margin-top: 28px;
    width: 100%;
    height: 245px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .map {
    margin-top: 24px;
    width: 100%;
    height: 405px;
  }
}
@media screen and (min-width: 1051px) {
  .map {
    margin-top: 34px;
    width: 100%;
    height: 445px;
  }
}

.pagination {
  /*
  body:not(.touch) & a.item:not(.active):hover {
    color: $color-accent;
  }
  */
}
.pagination .row {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.pagination .row .pages {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.pagination .hidden {
  display: inline-block;
  visibility: hidden;
}
.pagination a,
.pagination .item,
.pagination .text {
  display: inline-block;
  vertical-align: top;
}
.pagination a .text,
.pagination .item .text {
  margin: 0;
  padding: 0;
}
.pagination .pages .item span {
  padding: 0 2px;
}
.pagination .prev .icon,
.pagination .next .icon {
  display: inline-block;
  vertical-align: top;
}
.pagination .prev .icon:before, .pagination .prev .icon:after,
.pagination .next .icon:before,
.pagination .next .icon:after {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 12px;
}
.pagination .prev .icon-prev-page:before,
.pagination .next .icon-prev-page:before {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.pagination .prev .icon-next-page:after,
.pagination .next .icon-next-page:after {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
@media screen and (max-width: 568px) {
  .pagination .pages .item:not(.active) {
    display: none;
  }
  .pagination .pages .phone-only {
    display: inline-block;
    vertical-align: top;
  }
  .pagination .pages .phone-only .item {
    display: inline-block;
  }
}

@media screen and (max-width: 568px) {
  .pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .pagination {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1051px) {
  .pagination {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 24px;
  }
}
.pagination a,
.pagination .item,
.pagination .text {
  min-width: 44px;
  text-align: center;
  padding: 7px 10px;
  margin-left: 1px;
  margin-right: 1px;
  color: black;
  text-decoration: none;
}
@media screen and (max-width: 568px) {
  .pagination a,
  .pagination .item,
  .pagination .text {
    padding-left: 0;
    padding-right: 0;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.pagination .item.active {
  color: white;
  background-color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .pagination .item.active {
    margin-right: 11px;
  }
}
.pagination span.text {
  min-width: auto;
  padding-left: 0;
  padding-right: 0;
}
.pagination .active + span.text {
  margin-left: 11px;
}
.pagination span.text + .active {
  margin-left: 11px;
}
@media screen and (max-width: 568px) {
  .pagination .pages {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 568px) {
  .pagination .prev,
  .pagination .next {
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.pagination .prev .icon,
.pagination .next .icon {
  width: 44px;
  height: 43px;
  font-size: 17px;
}
.pagination .prev .icon:before, .pagination .prev .icon:after,
.pagination .next .icon:before,
.pagination .next .icon:after {
  margin: 12px 12px;
}
@media screen and (max-width: 568px) {
  .pagination .prev .icon,
  .pagination .next .icon {
    color: white;
    background-color: #1c75bc;
  }
}

.tags-cloud .tag {
  font-weight: 300;
  text-transform: uppercase;
  color: #666666;
}
body:not(.touch) .tags-cloud .tag:hover {
  color: #1c75bc;
}
@media screen and (max-width: 568px) {
  .tags-cloud {
    font-size: 16px;
    line-height: 1.875;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .tags-cloud {
    font-size: 12px;
    line-height: 2.5;
  }
}
@media screen and (min-width: 1051px) {
  .tags-cloud {
    font-size: 12px;
    line-height: 2.5;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .tags-cloud .tag {
    margin-right: 11px;
  }
  .tags-cloud.tags-cloud-right .tag {
    margin-left: 11px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1051px) {
  .tags-cloud .tag {
    margin-right: 11px;
  }
  .tags-cloud.tags-cloud-right .tag {
    margin-left: 11px;
    margin-right: 0;
  }
}
@media screen and (max-width: 568px) {
  .tags-cloud .tag {
    margin-right: 14px;
  }
}
@media screen and (max-width: 568px) {
  .separated-content-section .tags-cloud {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.next-article {
  background-color: #f8f8f8;
}
.next-article .timestamp {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: #666666;
}
.next-article .more {
  font-size: 12px;
  color: #1c75bc;
  text-align: right;
}
.next-article .more .text {
  text-transform: lowercase;
}
.next-article .more .icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
  width: 40px;
  height: 40px;
  color: white;
  background-color: #1c75bc;
  text-align: center;
}
.next-article .more .icon:before {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 17px;
  line-height: 40px;
}
@media screen and (max-width: 568px) {
  .next-article {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .next-article .content {
    padding: 26px 15px 0;
  }
  .next-article .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .next-article {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .next-article .content {
    padding: 32px 20px 0;
  }
  .next-article .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1051px) {
  .next-article {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .next-article .content {
    padding: 32px 20px 0;
  }
  .next-article .title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
body:not(.touch) .next-article a:hover .title {
  color: #1c75bc;
}
body:not(.touch) .next-article a:hover .more .icon {
  background-color: #146cb2;
}

.search-list .item:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.search-list .item .meta-info {
  font-weight: 300;
  color: #666666;
}
.search-list .item .meta-info a {
  color: #1c75bc;
}
.search-list .item .title {
  display: block;
}
@media screen and (max-width: 568px) {
  .search-list .item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .search-list .item:not(:first-child) {
    padding-top: 30px;
  }
  .search-list .item:not(:last-child) {
    padding-bottom: 28px;
  }
  .search-list .item .meta-info {
    font-size: 16px;
  }
  .search-list .item .title {
    font-size: 16px;
    margin-top: 14px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .search-list .item:not(:first-child) {
    padding-top: 30px;
  }
  .search-list .item:not(:last-child) {
    padding-bottom: 28px;
  }
  .search-list .item .meta-info {
    font-size: 16px;
  }
  .search-list .item .title {
    font-size: 18px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1051px) {
  .search-list .item:not(:first-child) {
    padding-top: 30px;
  }
  .search-list .item:not(:last-child) {
    padding-bottom: 28px;
  }
  .search-list .item .meta-info {
    font-size: 16px;
  }
  .search-list .item .title {
    font-size: 24px;
    margin-top: 14px;
  }
}

.search-form {
  /*
  @include responsive(desktop) {

    .row-actions {
      float: right;
    }

  }
  */
}
.search-form .row::after {
  clear: both;
  content: "";
  display: table;
}
.search-form .row .form-control {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family: "Roboto Condensed", Helvetica, Arial, serif;
  border-radius: 0;
  border: 1px solid #1c75bc;
}
.search-form .row .form-control:not(:first-child) {
  margin-left: 20px;
}
.search-form .row .form-control.form-control-error {
  border-color: #ff3f3f;
}
.search-form .row select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("/App/Site/Assets/i/dropdown-arrow.png");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-resolution: 125dpi), only screen and (min-resolution: 1.3dppx) {
  .search-form .row select.form-control {
    background-image: url("/App/Site/Assets/i/dropdown-arrow-2x.png");
    background-size: 30px 5px;
  }
}
.search-form .row .form-control-fullwidth {
  width: 100%;
}
.search-form .row-inline {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 568px) {
  .search-form {
    margin-bottom: 38px;
  }
  .search-form .row {
    margin-left: 15px;
    margin-right: 15px;
  }
  .search-form .row .form-control {
    font-size: 14px;
    padding: 10px 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .search-form {
    margin-bottom: 38px;
  }
  .search-form .row .form-control-medium {
    width: 169px;
  }
  .search-form .row .form-control-small {
    width: 122px;
  }
  .search-form .row .form-control {
    font-size: 16px;
    padding: 10px 12px;
  }
}
@media screen and (min-width: 1051px) {
  .search-form {
    margin-bottom: 38px;
  }
  .search-form .row .form-control-medium {
    width: 205px;
  }
  .search-form .row .form-control-small {
    width: 205px;
  }
  .search-form .row .form-control {
    font-size: 16px;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 568px) {
  .search-form .row .form-control-date {
    width: 135px;
  }
  .search-form .row .form-control:not(.form-control-date) + .form-control-date {
    margin-left: 0;
  }
  .search-form .row .form-control-section {
    width: 100%;
  }
  .search-form .row-inline {
    display: block;
  }
  .search-form .row-actions,
  .search-form .row-actions .btn {
    display: block;
  }
  .search-form .row-actions .btn {
    width: 100%;
  }
}

.simple-list {
  border-top: 1px solid #eeeeee;
}
.simple-list .item {
  border-bottom: 1px solid #eeeeee;
}
.simple-list .item .title {
  display: block;
}
@media screen and (max-width: 568px) {
  .simple-list .item {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .simple-list .item .title {
    font-size: 24px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .simple-list .item {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .simple-list .item .title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1051px) {
  .simple-list .item {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .simple-list .item .title {
    font-size: 32px;
  }
}

.swiper-box {
  position: relative;
  z-index: 1;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swiper-box::after {
  clear: both;
  content: "";
  display: table;
}
.swiper-box .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-box .swiper-container .swiper-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-box .swiper-container .swiper-pagination,
.swiper-box .swiper-container .swiper-wrapper {
  position: relative;
  z-index: 20;
}
.swiper-box .swiper-container .swiper-slide {
  background: no-repeat center center;
  background-size: cover;
}
.swiper-box .swiper-container .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-box .swiper-container .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #c4c4c4;
}
.swiper-box .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1c75bc;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-box .swiper-action-prev,
  .swiper-box .swiper-action-next {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    color: white;
    background-color: #1c75bc;
  }
  .swiper-box .swiper-action-prev:before,
  .swiper-box .swiper-action-next:before {
    display: block;
    text-align: center;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    line-height: 40px;
    color: white;
  }
  body:not(.touch) .swiper-box .swiper-action-prev:hover, body:not(.touch)
  .swiper-box .swiper-action-next:hover {
    background-color: #146cb2;
  }
  .swiper-box .swiper-action-prev {
    left: 0;
    right: auto;
  }
  .swiper-box .swiper-action-prev:before {
    content: "";
    padding-right: 2px;
  }
  .swiper-box .swiper-action-next {
    right: 0;
    left: auto;
  }
  .swiper-box .swiper-action-next:before {
    content: "";
    padding-left: 2px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-box .swiper-action-prev,
  .swiper-box .swiper-action-next {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    color: white;
    background-color: #1c75bc;
  }
  .swiper-box .swiper-action-prev:before,
  .swiper-box .swiper-action-next:before {
    display: block;
    text-align: center;
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    line-height: 40px;
    color: white;
  }
  body:not(.touch) .swiper-box .swiper-action-prev:hover, body:not(.touch)
  .swiper-box .swiper-action-next:hover {
    background-color: #146cb2;
  }
  .swiper-box .swiper-action-prev {
    left: 0;
    right: auto;
  }
  .swiper-box .swiper-action-prev:before {
    content: "";
    padding-right: 2px;
  }
  .swiper-box .swiper-action-next {
    right: 0;
    left: auto;
  }
  .swiper-box .swiper-action-next:before {
    content: "";
    padding-left: 2px;
  }
}

.swiper-box-narrow .swiper-container {
  margin-left: auto;
  margin-right: auto;
}

.swiper-gallery {
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 568px) {
  .swiper-gallery {
    height: 274px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery {
    height: 390px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery {
    height: 490px;
  }
}
.swiper-gallery .swiper-container {
  padding-bottom: 24px;
}
.swiper-gallery .swiper-container .swiper-pagination {
  bottom: -8px;
}
.swiper-gallery .swiper-container .swiper-slide {
  opacity: 0.3;
}
@media screen and (max-width: 568px) {
  .swiper-gallery .swiper-container .swiper-slide {
    width: 320px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery .swiper-container .swiper-slide {
    width: 530px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery .swiper-container .swiper-slide {
    width: 680px;
  }
}
.swiper-gallery .swiper-container .swiper-slide .image {
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .swiper-gallery .swiper-container .swiper-slide .image {
    height: 214px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery .swiper-container .swiper-slide .image {
    height: 350px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery .swiper-container .swiper-slide .image {
    height: 450px;
  }
}
.swiper-gallery .swiper-container .swiper-slide .caption {
  margin-top: 8px;
  overflow: hidden;
  color: #999999;
  font-size: 12px;
}
@media screen and (max-width: 568px) {
  .swiper-gallery .swiper-container .swiper-slide .caption {
    height: 60px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery .swiper-container .swiper-slide .caption {
    height: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery .swiper-container .swiper-slide .caption {
    height: 40px;
  }
}
@media screen and (max-width: 568px) {
  .swiper-gallery .swiper-container .swiper-slide .caption {
    text-align: center;
  }
}
.swiper-gallery .swiper-container .swiper-slide-active {
  opacity: 1;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery .swiper-container .swiper-pagination {
    display: none;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery .swiper-container .swiper-pagination {
    display: none;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-gallery .swiper-action-prev,
  .swiper-gallery .swiper-action-next {
    bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-gallery .swiper-action-prev,
  .swiper-gallery .swiper-action-next {
    bottom: 40px;
  }
}

.swiper-events .swiper-container .swiper-slide {
  text-align: center;
}
.swiper-events .swiper-container .swiper-slide .event-content {
  display: inline-block;
  vertical-align: top;
  width: auto;
}
.swiper-events .swiper-container .swiper-slide .event-content img {
  display: block;
}
@media screen and (max-width: 568px) {
  .swiper-events .swiper-container {
    width: 290px;
  }
  .swiper-events .swiper-container .swiper-slide {
    width: 290px;
  }
  .swiper-events .swiper-container .swiper-slide .event-content {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-events .swiper-container {
    width: 660px;
  }
  .swiper-events .swiper-container .swiper-slide {
    width: 330px;
  }
  .swiper-events .swiper-container .swiper-slide .event-content {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-events .swiper-container {
    width: 882px;
  }
  .swiper-events .swiper-container .swiper-slide {
    width: 294px;
  }
  .swiper-events .swiper-container .swiper-slide .event-content {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 680px) {
  .swiper-events .swiper-container {
    width: 100%;
  }
  .swiper-events .swiper-container .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 568px) {
  .swiper-events {
    margin-top: 23px;
    margin-bottom: 20px;
  }
  .swiper-events .swiper-container .swiper-pagination {
    margin-top: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-events {
    margin-top: 28px;
    margin-bottom: 30px;
  }
  .swiper-events .swiper-container .swiper-pagination {
    margin-top: 22px;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-events {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .swiper-events .swiper-container .swiper-pagination {
    margin-top: 34px;
  }
}
@media screen and (max-width: 568px) {
  .swiper-events .swiper-action-prev,
  .swiper-events .swiper-action-next {
    display: none;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .swiper-events .swiper-action-prev,
  .swiper-events .swiper-action-next {
    display: none;
  }
}
@media screen and (min-width: 1051px) {
  .swiper-events .swiper-action-prev,
  .swiper-events .swiper-action-next {
    top: 0;
    bottom: 54px;
    margin: auto;
  }
}
.swiper-events .swiper-container .swiper-pagination {
  bottom: 0;
  height: 20px;
}

.media-gallery .centered-content {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  .media-gallery .centered-content {
    max-width: 100%;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .media-gallery .centered-content {
    max-width: 530px;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
  }
}
@media screen and (min-width: 1051px) {
  .media-gallery .centered-content {
    max-width: 680px;
    /*
    padding: {
      left: r-value(content, padding, left);
      right: r-value(content, padding, right);
    }
    */
  }
}
.media-gallery .media-gallery-caption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  .media-gallery .media-gallery-caption {
    max-width: 100%;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .media-gallery .media-gallery-caption {
    max-width: 650px;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .media-gallery .media-gallery-caption {
    max-width: 870px;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.media-gallery .video-box {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 568px) {
  .media-gallery .video-box {
    width: 290px;
    height: 163px;
    margin-top: 24px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .media-gallery .video-box {
    width: 530px;
    height: 298px;
    margin-top: 14px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .media-gallery .video-box {
    width: 680px;
    height: 383px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 568px) {
  .media-gallery .share-bar .heading {
    display: none;
  }
  .media-gallery .share-bar .share-buttons {
    text-align: center;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .media-gallery .share-bar .heading,
  .media-gallery .share-bar .share-buttons {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
  }
  .media-gallery .share-bar .share-buttons {
    margin-left: 2px;
  }
  .media-gallery .share-bar .share-buttons a {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1051px) {
  .media-gallery .share-bar .heading,
  .media-gallery .share-bar .share-buttons {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
  }
  .media-gallery .share-bar .share-buttons {
    margin-left: 40px;
  }
  .media-gallery .share-bar .share-buttons a {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 568px) {
  .media-gallery .share-bar {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .media-gallery .share-bar .share-facebook,
  .media-gallery .share-bar .share-vk,
  .media-gallery .share-bar .share-twitter {
    margin-left: !important;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .media-gallery .share-bar {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .media-gallery .share-bar .share-facebook,
  .media-gallery .share-bar .share-vk,
  .media-gallery .share-bar .share-twitter {
    margin-left: 10px !important;
  }
}
@media screen and (min-width: 1051px) {
  .media-gallery .share-bar {
    margin-top: 0;
    margin-bottom: 45px;
  }
  .media-gallery .share-bar .share-facebook,
  .media-gallery .share-bar .share-vk,
  .media-gallery .share-bar .share-twitter {
    margin-left: !important;
  }
}

.filter-tag {
  white-space: nowrap;
  /*
  @include responsive(tablet, desktop) {
    margin-left: 29px;
  }
  */
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .filter-tag {
    display: block;
    margin-top: 14px;
  }
}
.filter-tag .filter-btn {
  display: inline-block;
  color: #999999;
  border: 1px solid #999999;
  margin-left: 5px;
  padding: 1px 8px;
  padding-right: 0;
}
.filter-tag .filter-btn .reset-btn {
  margin: -11px;
  padding: 11px;
  color: #999999;
}
.filter-tag .filter-btn .reset-btn:after {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: -1px;
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 12px;
}

.date-filter form,
.date-filter .form {
  margin-bottom: 30px;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .date-filter form .row select.form-control,
  .date-filter .form .row select.form-control {
    margin-bottom: 0;
  }
  .date-filter form .row-actions,
  .date-filter .form .row-actions {
    float: none;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1051px) {
  .date-filter form .row select.form-control,
  .date-filter .form .row select.form-control {
    margin-bottom: 0;
  }
  .date-filter form .row-actions,
  .date-filter .form .row-actions {
    float: none;
    margin-left: 20px;
  }
}

@media screen and (max-width: 568px) {
  .interview-cards {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .interview-cards {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1051px) {
  .interview-cards {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.interview-card .image {
  background: no-repeat center center;
  background-size: cover;
}
.interview-card .details .timestamp {
  color: #c4c4c4;
  font-weight: 300;
}
@media screen and (max-width: 568px) {
  .interview-card .image {
    width: 100%;
    height: 190px;
  }
  .interview-card .details {
    margin-top: 18px;
  }
  .interview-card .details .person-name {
    font-size: 32px;
    line-height: 1;
  }
  .interview-card .details .person-title {
    font-size: 16px;
    margin-top: 4px;
  }
  .interview-card .details .title {
    font-size: 16px;
    margin-top: 14px;
  }
  .interview-card .details .timestamp {
    font-size: 12px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .interview-card .image {
    width: 100%;
    height: 220px;
  }
  .interview-card .details {
    margin-top: 18px;
  }
  .interview-card .details .person-name {
    font-size: 32px;
    line-height: 1;
  }
  .interview-card .details .person-title {
    font-size: 16px;
    margin-top: 4px;
  }
  .interview-card .details .title {
    font-size: 16px;
    margin-top: 14px;
  }
  .interview-card .details .timestamp {
    font-size: 12px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1051px) {
  .interview-card .image {
    width: 100%;
    height: 300px;
  }
  .interview-card .details {
    margin-top: 18px;
  }
  .interview-card .details .person-name {
    font-size: 32px;
  }
  .interview-card .details .person-title {
    font-size: 24px;
  }
  .interview-card .details .title {
    font-size: 14px;
    margin-top: 20px;
  }
  .interview-card .details .timestamp {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .interview-card {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (min-width: 1051px) {
  .interview-card {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
  }
}
@media screen and (max-width: 568px) {
  .interview-card {
    display: block;
    margin-bottom: 34px !important;
  }
  .interview-card .details {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body:not(.touch) .interview-card:hover .details .person-name,
body:not(.touch) .interview-card:hover .details .person-title,
body:not(.touch) .interview-card:hover .details .title {
  color: #1c75bc;
}

.events-container {
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 568px) {
  .events-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .events-list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .events-list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 568px) {
  .events-list .section-header {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .events-list .section-header {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .events-list .section-header {
    margin-bottom: 40px;
  }
}
.events-list .more {
  text-align: left;
}
@media screen and (max-width: 568px) {
  .events-list .more {
    padding-left: 15px;
    padding-right: 15px;
  }
  .events-list .more .btn {
    width: 100%;
  }
}
body:not(.touch) .events-list .items .item:hover .details .title {
  color: #1c75bc;
}

@media screen and (max-width: 568px) {
  .events-list + .events-list {
    border-top: 1px solid #e4e4e4;
    padding-top: 30px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .events-list + .events-list {
    border-top: 1px solid #e4e4e4;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1051px) {
  .events-list + .events-list {
    border-top: 1px solid #e4e4e4;
    padding-top: 40px;
  }
}

@media screen and (max-width: 568px) {
  .future-events {
    margin-right: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .future-events {
    margin-right: 0;
  }
}
@media screen and (min-width: 1051px) {
  .future-events {
    margin-right: -16px;
  }
}
.future-events .item {
  display: inline-block;
  vertical-align: top;
}
.future-events .item .image {
  overflow: hidden;
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .future-events .item .image .image-full {
    display: block;
    max-width: 500px;
    height: auto;
  }
  .future-events .item .image .image-small {
    display: none;
  }
}
@media screen and (min-width: 1051px) {
  .future-events .item .image .image-full {
    display: block;
    max-width: 500px;
    height: auto;
  }
  .future-events .item .image .image-small {
    display: none;
  }
}
@media screen and (max-width: 568px) {
  .future-events .item .image .image-full {
    display: none;
  }
  .future-events .item .image .image-small {
    display: block;
    max-width: 320px;
    height: auto;
  }
}
.future-events .item .details .date {
  color: #1c75bc;
  text-transform: uppercase;
}
.future-events .item .details .title {
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .future-events .item {
    width: 320px;
    margin-right: 0;
    /*
    &:nth-child(1n) {
      margin-right: 0;
    }
    */
    margin-bottom: 26px;
  }
  .future-events .item .image {
    width: 320px;
    height: 154px;
  }
  .future-events .item .details {
    padding-left: 15px;
    padding-right: 15px;
  }
  .future-events .item .details .date {
    margin-top: 18px;
    font-size: 16px;
  }
  .future-events .item .details .title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .future-events .item {
    width: 500px;
    margin-right: 0;
    /*
    &:nth-child(2n) {
      margin-right: 0;
    }
    */
    margin-bottom: 36px;
  }
  .future-events .item .image {
    width: 500px;
    height: 270px;
  }
  .future-events .item .details .date {
    margin-top: 18px;
    font-size: 24px;
  }
  .future-events .item .details .title {
    margin-top: 14px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1051px) {
  .future-events .item {
    width: 316px;
    margin-right: 16px;
    /*
    &:nth-child(3n) {
      margin-right: 0;
    }
    */
    margin-bottom: 28px;
  }
  .future-events .item .image {
    width: 316px;
    height: 173px;
  }
  .future-events .item .details .date {
    margin-top: 15px;
    font-size: 16px;
  }
  .future-events .item .details .title {
    margin-top: 4px;
    font-size: 16px;
  }
}

@media screen and (max-width: 568px) {
  .past-events {
    margin-right: 0;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .past-events {
    margin-right: -60px;
  }
}
@media screen and (min-width: 1051px) {
  .past-events {
    margin-right: -85px;
  }
}
.past-events .item {
  display: inline-block;
  vertical-align: top;
  /*
  @include responsive(desktop) {
    .details {
      width: (r-value(events, past, width) - r-value(events, past, image, width) - r-value(events, past, details, h-spacing));
    }
  }
  */
}
.past-events .item::after {
  clear: both;
  content: "";
  display: table;
}
.past-events .item .image {
  overflow: hidden;
  float: left;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.past-events .item .details {
  float: left;
  overflow: hidden;
}
.past-events .item .details .date {
  color: #1c75bc;
  text-transform: uppercase;
}
.past-events .item .details .title {
  text-transform: uppercase;
}
@media screen and (max-width: 568px) {
  .past-events .item {
    width: 320px;
    margin-right: 0;
    /*
    &:nth-child(1n) {
      margin-right: 0;
    }
    */
    margin-bottom: 26px;
  }
  .past-events .item .image,
  .past-events .item .details {
    padding-left: 15px;
    padding-right: 15px;
  }
  .past-events .item .image {
    width: 270px;
    height: 120px;
    margin-bottom: 18px;
  }
  .past-events .item .details .date {
    font-size: 16px;
  }
  .past-events .item .details .title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .past-events .item {
    width: 270px;
    margin-right: 60px;
    /*
    &:nth-child(2n) {
      margin-right: 0;
    }
    */
    margin-bottom: 36px;
  }
  .past-events .item .image {
    width: 270px;
    height: 120px;
    margin-bottom: 20px;
  }
  .past-events .item .details .date {
    font-size: 16px;
  }
  .past-events .item .details .title {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1051px) {
  .past-events .item {
    width: 270px;
    margin-right: 85px;
    /*
    &:nth-child(3n) {
      margin-right: 0;
    }
    */
    margin-bottom: 28px;
  }
  .past-events .item .image {
    width: 270px;
    height: 120px;
    margin-right: 20px;
  }
  .past-events .item .details .date {
    margin-top: 15px;
    font-size: 16px;
  }
  .past-events .item .details .title {
    margin-top: 4px;
    font-size: 16px;
  }
}

.magazine-preview {
  position: relative;
  text-align: center;
}
.magazine-preview .btn {
  cursor: pointer;
}
.magazine-preview .preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: auto;
}
.magazine-preview .preview img {
  display: block;
  width: auto;
}
@media screen and (max-width: 568px) {
  .magazine-preview .preview img {
    max-height: 156px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-preview .preview img {
    max-height: 268px;
  }
}
@media screen and (min-width: 1051px) {
  .magazine-preview .preview img {
    max-height: 430px;
  }
}
.magazine-preview .preview.preview-overlayed:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.magazine-preview .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -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;
}

body.magazine-view {
  overflow: hidden;
}

.magazine-viewer {
  display: none;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background-color: #f2f2f2;
}
.magazine-viewer .navbar {
  position: relative;
  height: 44px;
  color: white;
  background-color: #1c75bc;
}
.magazine-viewer .navbar .logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 568px) {
  .magazine-viewer .navbar .logo {
    width: 56px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-viewer .navbar .logo {
    width: 180px;
  }
}
@media screen and (min-width: 1051px) {
  .magazine-viewer .navbar .logo {
    width: 180px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white.png");
    background-repeat: no-repeat;
    background-position: 20px center;
  }
}
@media only screen and (min-width: 569px) and (max-width: 1050px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 569px) and (max-width: 1050px) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 569px) and (max-width: 1050px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 569px) and (max-width: 1050px) and (min-resolution: 125dpi), only screen and (min-width: 569px) and (max-width: 1050px) and (min-resolution: 1.3dppx) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white-2x.png");
    background-size: 110px 26px;
  }
}

@media screen and (min-width: 1051px) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white.png");
    background-repeat: no-repeat;
    background-position: 20px center;
  }
}
@media only screen and (min-width: 1051px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-width: 1051px) and (min--moz-device-pixel-ratio: 1.3), only screen and (min-width: 1051px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (min-width: 1051px) and (min-resolution: 125dpi), only screen and (min-width: 1051px) and (min-resolution: 1.3dppx) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white-2x.png");
    background-size: 110px 26px;
  }
}

@media screen and (max-width: 568px) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white-compact.png");
    background-repeat: no-repeat;
    background-position: 19px center;
  }
}
@media only screen and (max-width: 568px) and (-webkit-min-device-pixel-ratio: 1.3), only screen and (max-width: 568px) and (min--moz-device-pixel-ratio: 1.3), only screen and (max-width: 568px) and (-o-min-device-pixel-ratio: 1.3 / 1), only screen and (max-width: 568px) and (min-resolution: 125dpi), only screen and (max-width: 568px) and (min-resolution: 1.3dppx) {
  .magazine-viewer .navbar .logo {
    background-image: url("/App/Site/Assets/i/rspectr-logo-white-compact-2x.png");
    background-size: 27px 27px;
  }
}

.magazine-viewer .navbar .title {
  text-align: center;
  line-height: 44px;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
@media screen and (max-width: 568px) {
  .magazine-viewer .navbar .title {
    font-size: 24px;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media screen and (min-width: 569px) and (max-width: 1050px) {
  .magazine-viewer .navbar .title {
    font-size: 24px;
    padding-left: 180px;
    padding-right: 180px;
  }
}
@media screen and (min-width: 1051px) {
  .magazine-viewer .navbar .title {
    font-size: 24px;
    padding-left: 180px;
    padding-right: 180px;
  }
}
.magazine-viewer .navbar .close-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.magazine-viewer .navbar .close-btn:after {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 24px;
  display: block;
  margin-top: 9px;
  margin-left: 9px;
}
.magazine-viewer .viewer {
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 0;
  right: 0;
}
.magazine-viewer .viewer iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
}

/*# sourceMappingURL=styles.css.map */
