/* Vendor */
/*!
 * baguetteBox.js
 * @author  feimosi
 * @version %%INJECT_VERSION%%
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
          animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
          animation: bounceFromLeft .4s ease-out;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}

@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
          animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.3.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2014 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

.chosen-container a {
  cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/chosen-sprite.png") no-repeat 0px -1px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url("../images/chosen-sprite.png") no-repeat 100% -22px;
  background: url("../images/chosen-sprite.png") no-repeat 100% -22px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #d14249;
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: 0 1px 0 #fff inset;
          box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px -1px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url("../images/chosen-sprite.png") no-repeat -30px -20px;
  background: url("../images/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px -1px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px -1px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("../images/chosen-sprite.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */
/* -----------------------------------------------------------------------------

  COMPENENTS - RATING
  
----------------------------------------------------------------------------- */
.c-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-rating__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  background: url("../images/stars.svg");
  background-position: 0 0;
  cursor: pointer;
}

.c-rating__item:hover,
.c-rating__item.is-active {
  background-position: -24px 0;
}

.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  padding: 0 .6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}

.autocomplete-suggestion.selected {
  background: #f0f0f0;
}

/* Normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS and IE text size adjust after device orientation
*    change, without disabling
*    user zoom.
*/
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   */
[hidden] {
  display: none;
}

/**
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
*/
template {
  display: none;
}

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
* Define consistent border, margin, and padding.
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

td,
th {
  padding: 0;
}

/* Base */
.bg-yellow,
.yellow {
  background-color: #eaaf0f !important;
}

.bg-yellow {
  color: #192a38;
}

.bg-navy,
.navy {
  background-color: #192a38 !important;
}

.bg-red,
.red {
  background-color: #d14249 !important;
}

.bg-slate,
.slate {
  background-color: #5c6976 !important;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background: #fbfbfb;
  color: #706566;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  margin-top: 84px;
}

@media (min-width: 641px) and (max-width: 940px) {
  body {
    height: calc(100% - 84px);
  }
}

@media (min-width: 941px) {
  body {
    margin-top: 0;
    height: 100%;
    min-height: 100%;
  }
}

@media print {
  body {
    background: none;
    margin-top: 0;
  }
}

@page {
  margin: 40pt;
}

@media print {
  * {
    color: black;
  }
}

.grecaptcha-badge {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "bebas-neue", sans-serif;
  font-weight: normal;
}

sub {
  bottom: 0;
  font-size: 60%;
}

a {
  text-decoration: none;
}

a:link, a:visited {
  color: #d14249;
}

a:hover, a:visited:hover {
  color: #62181c;
}

label {
  display: block;
}

input,
select,
textarea {
  border: 2px solid #f2f3f5;
  font-size: 14px;
  line-height: 24px;
  padding: 10px 14px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  background: #f2f3f5;
}

.list-unstyled, .form-radio-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Components */
.activity-search {
  background: #fff;
  border-bottom: 1px solid #e4e7e9;
  display: none;
  float: left;
  margin: 56px 0 0 0;
  padding: 1.75em;
  position: absolute;
  width: 100%;
}

.activity-search.open {
  display: block;
}

.activity-map {
  height: 100%;
  position: absolute;
  width: 100%;
}

@media (min-width: 941px) {
  .activity-map {
    height: calc(100vh - 56px);
    margin-top: 56px;
  }
}

.activity-no-results {
  background: #f2f3f5;
  font-weight: bold;
  margin: 0 auto;
  max-width: 720px;
  padding: 4em 2em;
  text-align: center;
}

@media (min-width: 641px) and (max-width: 940px) {
  .activity-no-results {
    margin: 2em auto 0;
  }
}

@media (min-width: 941px) {
  .activity-no-results {
    margin: 2em auto 0;
  }
}

.page .activity-map-loading {
  background: rgba(255, 255, 255, 0.9);
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.page .activity-map-loading .icon-page-loading {
  display: block;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  position: absolute;
  top: 50%;
}

.page .activity-map-loading.loaded {
  display: none;
}

.activity-map-no-results {
  background: white;
  left: 50%;
  margin-left: -150px;
  margin-top: -50px;
  padding: 2em;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 300px;
  z-index: 2;
}

.alert {
  background: #d14249;
  border-radius: 5px;
  color: white;
  margin-bottom: 1.75em;
  padding: 0.875em 1.75em;
  width: 100%;
}

.alert .icon {
  display: none;
  fill: white;
  height: 43px;
  margin: 4px 0;
  position: absolute;
  width: 47px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .alert .icon {
    display: block;
  }
}

@media (min-width: 941px) {
  .alert .icon {
    display: block;
  }
}

.alert-content {
  padding-left: 0;
}

.alert-content p {
  font-size: 14px;
  line-height: 1.3;
  margin: 0.4375em 0 0 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .alert-content {
    padding-left: 77px;
  }
}

@media (min-width: 941px) {
  .alert-content {
    padding-left: 77px;
  }
}

.alert-title {
  font-size: 31px;
  margin: 0;
  text-transform: uppercase;
}

.grid-sizer {
  width: 298px;
}

.banner, .banner-page,
.banner-get-involved-post, .banner-event, .banner-post, .banner-sign-posts {
  display: block;
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .banner, .banner-page,
  .banner-get-involved-post, .banner-event, .banner-post, .banner-sign-posts {
    width: 298px;
  }
}

@media (min-width: 941px) {
  .banner, .banner-page,
  .banner-get-involved-post, .banner-event, .banner-post, .banner-sign-posts {
    width: 298px;
  }
}

.banner .banner-inner, .banner-page .banner-inner,
.banner-get-involved-post .banner-inner, .banner-event .banner-inner, .banner-post .banner-inner, .banner-sign-posts .banner-inner {
  display: block;
}

.banner .card-content-header, .banner-page .card-content-header,
.banner-get-involved-post .card-content-header, .banner-event .card-content-header, .banner-post .card-content-header, .banner-sign-posts .card-content-header {
  border-color: white !important;
}

.banner .card-content-header h2, .banner-page .card-content-header h2,
.banner-get-involved-post .card-content-header h2, .banner-event .card-content-header h2, .banner-post .card-content-header h2, .banner-sign-posts .card-content-header h2 {
  color: white;
}

.banner .card-content, .banner-page .card-content,
.banner-get-involved-post .card-content, .banner-event .card-content, .banner-post .card-content, .banner-sign-posts .card-content {
  overflow: hidden;
}

.banner .card-content p, .banner-page .card-content p,
.banner-get-involved-post .card-content p, .banner-event .card-content p, .banner-post .card-content p, .banner-sign-posts .card-content p {
  color: white;
  float: left;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0.875em;
  width: 100%;
}

.banner .meta-date, .banner-page .meta-date,
.banner-get-involved-post .meta-date, .banner-event .meta-date, .banner-post .meta-date, .banner-sign-posts .meta-date {
  color: white;
  float: left;
  margin: 0.875em 0 0 0;
  width: 100%;
}

.banner .meta-date .icon, .banner-page .meta-date .icon,
.banner-get-involved-post .meta-date .icon, .banner-event .meta-date .icon, .banner-post .meta-date .icon, .banner-sign-posts .meta-date .icon {
  fill: white;
}

.banner-form {
  margin-top: 0.875em;
}

.banner-explore-map {
  display: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .banner-explore-map {
    display: block;
  }
}

@media (min-width: 941px) {
  .banner-explore-map {
    display: block;
  }
}

.banner-page,
.banner-get-involved-post {
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .banner-page,
  .banner-get-involved-post {
    width: 616px !important;
  }
}

@media (min-width: 941px) {
  .banner-page,
  .banner-get-involved-post {
    width: 616px !important;
  }
}

.banner-page .card-image,
.banner-page .card-content,
.banner-get-involved-post .card-image,
.banner-get-involved-post .card-content {
  float: left;
}

@media (min-width: 641px) and (max-width: 940px) {
  .banner-page .card-image,
  .banner-get-involved-post .card-image {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 298px;
  }
}

@media (min-width: 941px) {
  .banner-page .card-image,
  .banner-get-involved-post .card-image {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 298px;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .banner-page .card-content,
  .banner-get-involved-post .card-content {
    width: 298px;
  }
}

@media (min-width: 941px) {
  .banner-page .card-content,
  .banner-get-involved-post .card-content {
    padding-right: 318px;
  }
}

.banner-page .card-content-full-width,
.banner-get-involved-post .card-content-full-width {
  padding-right: 1.75em;
}

.banner-event {
  background: #aea13f;
  color: #192a38;
}

.banner-post {
  background: #61b0a7;
}

.activity-type-beaches {
  background: #aea13f;
}

.activity-type-horse-riding-areas {
  background: #192a38;
}

.activity-type-long-and-short-cycling-routes {
  background: #d14249;
}

.activity-type-long-and-short-distance-walks {
  background: #eaaf0f;
}

.activity-type-parks-and-open-spaces {
  background: #5c6976;
}

.activity-type-canoeing {
  background: #d14249;
}

@media (min-width: 641px) and (max-width: 1258px) {
  .banner-sign-posts {
    width: 616px !important;
  }
}

@media (min-width: 1259px) {
  .banner-sign-posts {
    width: 298px !important;
  }
}

.banner-small {
  display: block;
  margin-bottom: 20px;
}

.banner-small:last-child {
  margin-bottom: 0;
}

.banner-small img {
  display: block;
  height: 119px;
  width: 298px;
}

@media (min-width: 641px) and (max-width: 1258px) {
  .banner-small {
    float: left;
    margin-bottom: 0;
  }
  .banner-small:first-child {
    margin-right: 20px;
  }
}

.banner-newsletter {
  background: #d14249;
}

.banner-newsletter .card-content {
  float: left;
  width: 100%;
}

.banner-newsletter .card-content-header {
  border-bottom-color: white;
}

.banner-newsletter .card-content-header h2 {
  color: white;
}

.banner-newsletter .button-light {
  width: 100%;
}

.banner-activity .card-image {
  border: none;
}

.banner-activity .card-content-header {
  border-color: white;
}

.banner-activity .card-content-header h2 {
  color: white;
}

.banner-activity .card-content p {
  color: white;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0.875em;
  width: 100%;
}

.activity-type-walking,
.banner-event:not(.bg-red):not(.bg-slate),
.banner-event.bg-yellow,
.banner-page.bg-yellow {
  color: #192a38;
}

.activity-type-walking .card-content-header,
.banner-event:not(.bg-red):not(.bg-slate) .card-content-header,
.banner-event.bg-yellow .card-content-header,
.banner-page.bg-yellow .card-content-header {
  border-color: #192a38 !important;
}

.activity-type-walking .card-content-header h2,
.banner-event:not(.bg-red):not(.bg-slate) .card-content-header h2,
.banner-event.bg-yellow .card-content-header h2,
.banner-page.bg-yellow .card-content-header h2 {
  color: #192a38 !important;
}

.activity-type-walking p,
.banner-event:not(.bg-red):not(.bg-slate) p,
.banner-event.bg-yellow p,
.banner-page.bg-yellow p {
  color: #192a38 !important;
}

.activity-type-walking .meta-date,
.banner-event:not(.bg-red):not(.bg-slate) .meta-date,
.banner-event.bg-yellow .meta-date,
.banner-page.bg-yellow .meta-date {
  color: #192a38 !important;
}

.activity-type-walking .meta-date svg,
.banner-event:not(.bg-red):not(.bg-slate) .meta-date svg,
.banner-event.bg-yellow .meta-date svg,
.banner-page.bg-yellow .meta-date svg {
  fill: #192a38 !important;
}

.blocks {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  width: 298px;
}

.blocks:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 682px) and (max-width: 940px) {
  .blocks {
    width: 636px;
  }
}

@media (min-width: 941px) and (max-width: 959px) {
  .blocks {
    width: 318px;
  }
}

@media (min-width: 960px) and (max-width: 1277px) {
  .blocks {
    width: 636px;
  }
}

@media (min-width: 1278px) and (max-width: 1595px) {
  .blocks {
    width: 954px;
  }
}

@media (min-width: 1596px) {
  .blocks {
    width: auto;
  }
}

.blocks > div:first-child .heading-inverted {
  margin-top: 0;
}

.blocks article a:focus .list-panel {
  background: #e4e7e9;
}

.blocks-inner {
  overflow: hidden;
  padding: 2px;
}

.block {
  margin: 0 0 20px 0;
}

@media (min-width: 682px) and (max-width: 940px) {
  .block {
    width: 49.15254237%;
    float: left;
  }
  .block:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .block:nth-child(2n + 2) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) and (max-width: 959px) {
  .block {
    width: 100%;
    float: left;
  }
  .block:nth-child(1n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 960px) and (max-width: 1277px) {
  .block {
    width: 49.15254237%;
    float: left;
  }
  .block:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .block:nth-child(2n + 2) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1278px) and (max-width: 1595px) {
  .block {
    width: 32.20338983%;
    float: left;
  }
  .block:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .block:nth-child(3n + 2) {
    margin-left: 33.89830508%;
    margin-right: -100%;
    clear: none;
  }
  .block:nth-child(3n + 3) {
    margin-left: 67.79661017%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1596px) {
  .block {
    width: 23.72881356%;
    float: left;
  }
  .block:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .block:nth-child(4n + 2) {
    margin-left: 25.42372881%;
    margin-right: -100%;
    clear: none;
  }
  .block:nth-child(4n + 3) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
  .block:nth-child(4n + 4) {
    margin-left: 76.27118644%;
    margin-right: -100%;
    clear: none;
  }
}

.breadcrumbs {
  font-size: 14px;
}

.browsehappy {
  background: #d14249;
  color: white;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 500000;
}

.browsehappy p {
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.browsehappy a:link, .browsehappy a:visited {
  color: white;
  font-weight: bold;
}

.browsehappy a:hover, .browsehappy a:hover:visited {
  color: #992e34;
}

.button, .button-tiny, .map-image-toggle, .step-guide-toggle, .button-light, .form-submit {
  background: #718390;
  border: none;
  border-radius: 6px;
  border-bottom: 4px solid black;
  color: white;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  padding: 0.58333333em 2.625em;
}

.button:link, .button-tiny:link, .map-image-toggle:link, .step-guide-toggle:link, .button-light:link, .form-submit:link, .button:visited, .button-tiny:visited, .map-image-toggle:visited, .step-guide-toggle:visited, .button-light:visited, .form-submit:visited {
  color: white !important;
}

.button:hover:not([disabled]), .button-tiny:hover:not([disabled]), .map-image-toggle:hover:not([disabled]), .step-guide-toggle:hover:not([disabled]), .button-light:hover:not([disabled]), .form-submit:hover:not([disabled]), .button:visited:hover:not([disabled]), .button-tiny:visited:hover:not([disabled]), .map-image-toggle:visited:hover:not([disabled]), .step-guide-toggle:visited:hover:not([disabled]), .button-light:visited:hover:not([disabled]), .form-submit:visited:hover:not([disabled]) {
  background: #d14249;
}

[disabled].button, [disabled].button-tiny, [disabled].map-image-toggle, [disabled].step-guide-toggle, [disabled].button-light, [disabled].form-submit {
  opacity: .5;
}

.button:focus {
  background: #a0272d;
}

.search-button {
  background: white;
  border: none;
  border-radius: 50%;
  display: inline-block;
  height: 67px;
  padding: 24px;
  width: 67px;
}

.search-button-mobile {
  background: none;
  border: none;
  float: right;
  margin-top: 22px;
  width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.search-button-mobile svg {
  fill: white;
}

@media (min-width: 941px) {
  .search-button-mobile {
    display: none;
  }
}

.button-tiny, .map-image-toggle, .step-guide-toggle {
  border-bottom: 0;
  font-weight: normal;
  padding: 2px 0.4375em 0;
}

.button-back {
  background: white;
  border: none;
  border-radius: 50%;
  display: none;
  height: 70px;
  width: 70px;
  z-index: 1000;
}

.button-back .icon {
  fill: #706566;
  height: 30px;
  margin-top: 9px;
  width: 30px;
}

@media (min-width: 941px) {
  .button-back {
    display: block;
  }
}

a.button-back {
  padding: 10px 18px;
}

.button-light {
  background: white;
  border-color: #a0272d;
  color: #d14249;
}

.button-light:hover {
  background: #f2f3f5;
}

.button-text {
  background: none;
  border: none;
  font-size: 18px;
}

.card, .card-activity, .card-cmp, .card-category, .card-page, .card-post, .card-map, .card-tweet {
  background: white;
  border: 1px solid #efefef;
  display: block;
}

.card:hover .card-image img, .card-activity:hover .card-image img, .card-cmp:hover .card-image img, .card-category:hover .card-image img, .card-page:hover .card-image img, .card-post:hover .card-image img, .card-map:hover .card-image img, .card-tweet:hover .card-image img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.card:hover .card-title, .card-activity:hover .card-title, .card-cmp:hover .card-title, .card-category:hover .card-title, .card-page:hover .card-title, .card-post:hover .card-title, .card-map:hover .card-title, .card-tweet:hover .card-title {
  padding-left: 25px;
}

.card-post-small .card-image {
  height: 130px;
}

a.card, a.card-activity, a.card-cmp, a.card-category, a.card-page, a.card-post, a.card-map, a.card-tweet {
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

a.card:hover, a.card-activity:hover, a.card-cmp:hover, a.card-category:hover, a.card-page:hover, a.card-post:hover, a.card-map:hover, a.card-tweet:hover {
  background: #f2f3f5;
}

.card-image {
  background-color: #C7CED3;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid #e4e7e9;
  height: 150px;
  margin: 0;
  overflow: hidden;
  padding: 23px 0 23px 23px;
  position: relative;
  width: 100%;
  z-index: 0;
}

.card-image img {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  width: 100%;
}

@media print {
  .card-image {
    display: none;
  }
}

.card-no-image {
  background-image: url(../images/card-no-image.png) !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
}

.card-title {
  background: #d14249;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  color: white;
  font-size: 32px;
  left: -23px;
  line-height: 30px;
  margin: 0 23px 0 0;
  padding: 0 5px 0 15px;
  position: relative;
  -webkit-transition: padding .2s ease;
  transition: padding .2s ease;
  z-index: 1;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .card-title {
    display: inline-block;
  }
}

.card-content {
  padding: 1.75em;
}

.activity-type-beaches.banner-activity {
  background-color: #aea13f;
}

.activity-type-beaches .card-title {
  background-color: #aea13f;
}

.activity-type-horse-riding-areas.banner-activity {
  background-color: #192a38;
}

.activity-type-horse-riding-areas .card-title {
  background-color: #192a38;
}

.activity-type-cycling.banner-activity {
  background-color: #d14249;
}

.activity-type-cycling .card-title {
  background-color: #d14249;
}

.activity-type-walking.banner-activity {
  background-color: #eaaf0f;
}

.activity-type-walking .card-title {
  background-color: #eaaf0f;
}

.activity-type-parks-and-open-spaces.banner-activity {
  background-color: #5c6976;
}

.activity-type-parks-and-open-spaces .card-title {
  background-color: #5c6976;
}

.card-content-header {
  border-bottom: 5px solid #d14249;
}

.card-content-header h2 {
  color: #171b1e;
  font-size: 25.33333333px;
  margin: 0;
  padding-bottom: 0.58333333em;
  text-transform: uppercase;
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-content-header h2 {
    font-size: 38px;
  }
}

@media (min-width: 941px) {
  .card-content-header h2 {
    font-size: 38px;
    line-height: 1;
    padding-bottom: 0.29166667em;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-content-header-fixed-height {
    min-height: 157px;
  }
}

@media (min-width: 941px) {
  .card-content-header-fixed-height {
    min-height: 157px;
  }
}

.card-content-summary {
  color: #718390;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-content-summary {
    line-height: 1.4;
    min-height: 112px;
  }
}

@media (min-width: 941px) {
  .card-content-summary {
    line-height: 1.4;
    min-height: 112px;
  }
}

.card-footer, .card-map-footer {
  padding: 0.875em 1.75em;
  width: 100%;
}

.card-footer .icon, .card-map-footer .icon {
  display: inline-block;
  fill: #aab5bd;
  height: 28px;
  margin-left: -5px;
  margin-right: 4px;
  width: 28px;
}

.card-footer-category {
  color: #718390;
  display: inline-block;
}

.card-footer-category span {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.card-footer-category span:first-child {
  font-size: 12px;
}

.card-footer-category span:last-child {
  font-weight: bold;
}

.card-activity .card-content {
  padding: 1.75em 1.75em 0.875em 1.75em;
}

.card-activity .card-image img {
  top: -20%;
}

.card-cmp .card-content {
  background: #f4f4f4;
  padding: 1.3125em;
}

@media (min-width: 1254px) {
  .card-cmp .card-content-summary p {
    margin-top: 0;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-cmp .card-content-summary {
    min-height: 0;
  }
}

@media (min-width: 941px) {
  .card-cmp .card-content-summary {
    min-height: 0;
  }
}

.card-cmp .card-title {
  margin-top: 0;
}

@media (min-width: 1254px) {
  .card-cmp .card-title {
    display: none;
  }
}

.card-cmp .card-image {
  height: 120px;
}

.card-cmp .card-link {
  color: #CCC;
  font-size: 12px;
  font-style: italic;
}

.card-cmp:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f4f4f4;
  bottom: -10px;
  content: '';
  left: 50%;
  font-size: 0;
  height: 0;
  line-height: 0;
  margin-left: -10px;
  position: absolute;
  width: 0;
}

.card-category {
  background-color: #d14249;
  color: white !important;
  padding: 1.75em;
  position: relative;
}

.card-category:hover {
  background: #bc2e35 !important;
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-category {
    height: 561px;
  }
  .card-category .card-category-footer {
    bottom: 1.75em;
    left: 0;
    padding: 0 1.75em;
    position: absolute;
    width: 100%;
  }
}

@media (min-width: 941px) {
  .card-category {
    height: 561px;
  }
  .card-category .card-category-footer {
    bottom: 1.75em;
    left: 0;
    padding: 0 1.75em;
    position: absolute;
    width: 100%;
  }
}

.card-category.activity-type-beaches {
  background: #aea13f;
}

.card-category.activity-type-horse-riding-areas {
  background: #192a38;
}

.card-category.activity-type-long-and-short-cycling-routes {
  background: #d14249;
}

.card-category.activity-type-long-and-short-distance-walks {
  background: #eaaf0f;
}

.card-category.activity-type-parks-and-open-spaces {
  background: #5c6976;
}

.card-category-header h2 {
  font-size: 64px;
  line-height: 1;
  margin: 0;
}

.card-category-content,
.card-category-content p {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 1.75em;
}

.card-category-footer {
  margin-top: 1.75em;
}

.card-category-footer .button {
  width: 100%;
}

.card-map {
  height: 100%;
  margin-left: -100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: margin-left 0.2s;
  transition: margin-left 0.2s;
  width: 100%;
  z-index: 500;
}

.card-map .card-activity {
  border: none;
  height: 100%;
}

.card-map .card-content {
  -webkit-overflow-scrolling: touch;
  height: calc(100% - 256px);
  overflow-y: auto;
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-map {
    padding-top: 140px;
    width: 320px;
  }
}

@media (min-width: 941px) {
  .card-map {
    margin-left: -320px;
    padding-top: 56px;
    width: 320px;
  }
}

.card-map-open {
  margin-left: 0;
}

.card-map-footer {
  background: white;
  bottom: 0;
  height: 106px;
  padding: 1.75em;
  position: absolute;
}

.card-map-footer .button {
  display: block;
  width: 100%;
}

.card-map-close {
  background: none;
  border: none;
  position: absolute;
  right: 6px;
  top: 196px;
  z-index: 1;
}

.card-map-close .icon {
  fill: #C7CED3;
  height: 14px;
  width: 14px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .card-map-close {
    top: 144px;
  }
}

@media (min-width: 941px) {
  .card-map-close {
    top: 60px;
  }
}

.card-tweet {
  overflow: hidden;
}

.card-tweet .meta-author-figure {
  border: 4px solid white;
  margin: 0 0.875em 0 0;
}

.card-tweet-user {
  background: rgba(0, 0, 0, 0.4);
  float: left;
  padding: 0.875em;
  width: 100%;
}

.card-tweet-name {
  color: white;
  margin: 0;
}

.card-tweet-screen-name {
  color: white;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}

.card-tweet-screen-name a:link, .card-tweet-screen-name a:visited {
  color: white;
}

.card-tweet-content {
  float: left;
  font-size: 14px;
  line-height: 1.4;
  padding: 0.875em;
  width: 100%;
}

.card-tweet-time-ago {
  color: #C7CED3;
  display: block;
  font-size: 14px;
  margin-top: 0.4375em;
}

.cmp-map {
  height: auto;
  width: 100%;
}

.cmp-map-area,
.cmp-map-area path {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.cmp-map-area:hover,
.cmp-map-area:hover path {
  cursor: pointer;
  fill: #3e8322;
}

.cmp-map-label {
  pointer-events: none;
}

.cmp-map-svg {
  margin: 0 0 4em 0;
  max-width: 960px;
  position: relative;
}

.cmp-map-svg svg {
  display: none;
}

@media (min-width: 1254px) {
  .cmp-map-svg svg {
    display: block;
    height: 650px;
  }
}

.cmp-map-cards {
  margin: 0 auto;
  max-width: 636px;
  overflow: hidden;
}

@media (min-width: 941px) {
  .cmp-map-cards {
    margin: 0 10px;
  }
}

@media (min-width: 1254px) {
  .cmp-map-cards {
    margin: 0;
    max-width: none;
  }
}

.cmp-map-card {
  margin: 20px auto;
  max-width: 298px;
  width: 100%;
}

@media (min-width: 384px) {
  .cmp-map-card {
    width: calc(100% - 40px);
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .cmp-map-card {
    float: left;
    margin: 10px;
    width: calc(50% - 20px);
  }
}

@media (min-width: 941px) {
  .cmp-map-card {
    float: left;
    margin: 10px;
    width: calc(50% - 20px);
  }
}

@media (min-width: 1254px) {
  .cmp-map-card {
    float: none;
    opacity: 0;
    margin: 0 0 -20px;
    pointer-events: none;
    position: absolute;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    width: auto;
  }
  .cmp-map-card.active {
    margin-bottom: 0;
    opacity: 1;
  }
  .cmp-map-card[data-map-area="north-west-kent"] {
    bottom: 86%;
    left: 5%;
  }
  .cmp-map-card[data-map-area="kent-high-weald"] {
    bottom: 38%;
    left: 18%;
  }
  .cmp-map-card[data-map-area="medway-valley"] {
    bottom: 61%;
    left: 17%;
  }
  .cmp-map-card[data-map-area="mid-kent-downs"] {
    bottom: 67%;
    left: 37%;
  }
  .cmp-map-card[data-map-area="medway-swale-estuary"] {
    bottom: 89%;
    left: 43%;
  }
  .cmp-map-card[data-map-area="kentish-stour"] {
    bottom: 58%;
    left: 53%;
  }
  .cmp-map-card[data-map-area="romney-marsh"] {
    bottom: 24%;
    left: 48.5%;
  }
  .cmp-map-card[data-map-area="white-cliffs"] {
    bottom: 47%;
    left: 72%;
  }
  .cmp-map-card[data-map-area="thanet-coast"] {
    bottom: 83%;
    right: 0;
  }
  .cmp-map-card[data-map-area="thanet-coast"] .card-cmp:after {
    left: auto;
    margin-left: 0;
    right: 36px;
  }
}

.dashboard-filter {
  display: none;
  background: white;
  border-bottom: 4px solid #C7CED3;
  overflow: hidden;
  padding: 1.75em;
  text-align: center;
  width: 100%;
}

.dashboard-filter .icon {
  display: inline-block;
  height: 47px;
  margin-right: 0.875em;
  margin-top: 0.875em;
  width: 60px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .dashboard-filter .icon {
    height: 92px;
    margin-top: 0;
    width: 116px;
  }
}

@media (min-width: 941px) {
  .dashboard-filter {
    padding: 3.5em;
    position: absolute;
    right: 0;
    text-align: left;
    top: 190px;
    width: 35%;
  }
  .dashboard-filter .icon {
    height: 92px;
    margin-top: 0;
    width: 116px;
  }
}

@media (min-width: 941px) and (max-width: 1400px) {
  .dashboard-filter {
    padding: 1.75em;
    top: 160px;
  }
}

.dashboard-filter-col {
  display: inline-block;
  position: relative;
  top: -10px;
}

.dashboard-filter-label {
  display: block;
  margin-left: 3px;
  text-align: left;
}

.dashboard-filter-select {
  border: 0;
  border-bottom: 1px solid #e4e7e9;
  border-bottom-width: 4px;
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 30px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .dashboard-filter-select {
    font-size: 45px;
  }
}

@media (min-width: 941px) {
  .dashboard-filter-select {
    font-size: 45px;
  }
}

.filter-bar {
  -webkit-transform: translateZ(0);
  background-color: white;
  border-bottom: 4px solid #C7CED3;
  padding: 0;
  position: fixed;
  top: 84px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  z-index: 1000;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-bar {
    height: 56px;
    overflow: initial;
    padding: 0 0.875em 0 0;
    position: relative;
    top: 0;
  }
}

@media (min-width: 941px) {
  .filter-bar {
    height: 56px;
    overflow: initial;
    padding: 0 0.875em;
    position: relative;
    top: 0;
  }
}

@media print {
  .filter-bar {
    display: none;
  }
}

.filter-bar-label {
  display: none;
  float: left;
  position: relative;
}

@media (min-width: 941px) {
  .filter-bar-label {
    clear: none;
    display: inline-block;
    margin: 12px 20px 0 0;
    padding: 0;
    width: auto;
  }
}

.filter-bar-select {
  display: inline-block;
}

.filter-options-container {
  background: white;
  left: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-options-container {
    position: absolute;
    top: 56px;
  }
}

@media (min-width: 941px) {
  .filter-options-container {
    position: absolute;
    top: 56px;
  }
}

.filter-options-container-open {
  max-height: 400px;
}

.filter-options-form {
  margin: 0;
  padding: 0.4375em 0.875em;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-options-form {
    border-bottom: 1px solid #C7CED3;
    padding: 2.625em 2.625em;
  }
}

@media (min-width: 941px) {
  .filter-options-form {
    border-bottom: 1px solid #C7CED3;
    padding: 5.25em 5.25em;
  }
}

.filter-options-list {
  margin: 0;
  padding: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-options-list {
    -webkit-columns: 3;
            columns: 3;
  }
}

@media (min-width: 941px) {
  .filter-options-list {
    -webkit-columns: 3;
            columns: 3;
  }
}

.filter-options-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-options-item {
    padding: 0.4375em 0;
  }
}

@media (min-width: 941px) {
  .filter-options-item {
    padding: 0.4375em 0;
  }
}

.filter-options-checkbox {
  margin-right: 10px;
}

.filter-options-label {
  font-size: 16px;
  font-weight: 600;
}

.filter-options-submit {
  margin-top: 1.75em;
}

.filter-select {
  float: left;
  position: relative;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select {
    width: auto;
  }
}

@media (min-width: 941px) {
  .filter-select {
    width: auto;
  }
}

.filter-select-active {
  clear: both;
  cursor: pointer;
  float: left;
  padding: 12px 12px 6px 12px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  width: 100%;
}

.filter-select-active:hover {
  background-color: #e4e7e9;
}

.filter-select-active:last-child {
  border-right: 1px solid #C7CED3;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-active {
    border-left: 1px solid #C7CED3;
    clear: none;
    width: auto;
  }
}

@media (min-width: 941px) {
  .filter-select-active {
    border-left: 1px solid #C7CED3;
    clear: none;
    width: auto;
  }
}

.filter-select-active-icon {
  display: none;
  margin-right: 10px;
  width: 40px;
}

.filter-select-active-icon .icon {
  fill: #706566;
  height: 24px;
  width: 26px;
}

.filter-select-active-icon img {
  display: block;
  height: 43px;
  position: absolute;
  top: 4px;
  width: 40px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-active-icon {
    display: inline-block;
  }
}

@media (min-width: 941px) {
  .filter-select-active-icon {
    display: inline-block;
  }
}

.filter-select-active-title {
  display: inline-block;
  font-size: 31px;
  font-family: "bebas-neue", sans-serif;
  margin-right: 20px;
  min-width: 150px;
}

.filter-select-toggle {
  display: inline-block;
  float: right;
  line-height: 1;
  position: relative;
  top: 5px;
}

.filter-select-toggle .icon {
  fill: #62181c;
  height: 16px;
  width: 16px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-toggle {
    float: none;
    top: -3px;
  }
}

@media (min-width: 941px) {
  .filter-select-toggle {
    float: none;
    top: -3px;
  }
}

.filter-select-dropdown {
  background: white;
  clear: both;
  float: left;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-dropdown {
    position: absolute;
    overflow-y: auto;
    top: 56px;
    width: 480px;
    z-index: 1000;
  }
}

@media (min-width: 941px) {
  .filter-select-dropdown {
    position: absolute;
    overflow-y: auto;
    top: 56px;
    width: 480px;
    z-index: 1000;
  }
}

.filter-select-dropdown-open {
  max-height: 1000px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-dropdown-open {
    max-height: 540px;
  }
}

@media (min-width: 941px) {
  .filter-select-dropdown-open {
    max-height: 540px;
  }
}

.filter-select-dropdown-item {
  cursor: pointer;
  float: left;
  padding: 0.4375em 0.875em;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  width: 100%;
}

.filter-select-dropdown-item:hover {
  background-color: #e4e7e9;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-dropdown-item {
    padding: 0.875em 1.75em;
  }
}

@media (min-width: 941px) {
  .filter-select-dropdown-item {
    padding: 0.875em 1.75em;
  }
}

.filter-select-dropdown-icon {
  background: #fbfbfb;
  border-radius: 50%;
  display: none;
  float: left;
  height: 60px;
  margin-right: 20px;
  width: 60px;
}

.filter-select-dropdown-icon .icon {
  height: 30px;
  margin: 15px;
  width: 30px;
}

.filter-select-dropdown-icon img {
  display: block;
  height: 60px;
  width: 60px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-dropdown-icon {
    display: inline-block;
  }
}

@media (min-width: 941px) {
  .filter-select-dropdown-icon {
    display: inline-block;
  }
}

.filter-select-dropdown-title {
  float: left;
  font-family: "bebas-neue", sans-serif;
  font-size: 21px;
  margin-top: 0;
  width: 100%;
}

.filter-select-dropdown-title span:first-child {
  display: none;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  line-height: 1;
}

@media (min-width: 641px) and (max-width: 940px) {
  .filter-select-dropdown-title {
    font-size: 31px;
    margin-top: 10px;
    width: 300px;
  }
  .filter-select-dropdown-title span:first-child {
    display: block;
  }
}

@media (min-width: 941px) {
  .filter-select-dropdown-title {
    font-size: 31px;
    margin-top: 10px;
    width: 300px;
  }
  .filter-select-dropdown-title span:first-child {
    display: block;
  }
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  text-align: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 100%;
}

@media (min-width: 941px) {
  .footer {
    text-align: left;
  }
}

@media print {
  .footer {
    display: none;
  }
}

.footer-inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #e4e7e9;
  margin: 0.875em;
}

.footer-inner:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 941px) {
  .footer-inner {
    margin: 3.5em 3.5em 1.75em 3.5em;
    height: 130px;
  }
}

.footer-contact {
  padding-top: 0.875em;
}

@media (min-width: 941px) {
  .footer-contact {
    float: left;
    border-right: 1px solid #e4e7e9;
    padding: 1.75em 1.75em 1.75em 0;
  }
}

@media (min-width: 941px) and (max-width: 1500px) {
  .footer-contact {
    height: 100%;
    padding: 0.875em 0.875em 0.875em 0;
  }
}

.footer-contact-title {
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 45px;
  line-height: 1;
  margin: 0 0 0.21875em 0;
  text-transform: uppercase;
}

.footer-contact-title:link, .footer-contact-title:visited {
  color: #706566;
}

@media (min-width: 941px) and (max-width: 1500px) {
  .footer-contact-title {
    font-size: 22px;
  }
}

@media (min-width: 941px) {
  .footer-contact-title {
    margin: 0;
  }
}

@media (min-width: 941px) {
  .footer-nav {
    float: left;
    padding: 1.75em 0 1.75em 1.75em;
  }
}

@media (min-width: 941px) and (max-width: 1500px) {
  .footer-nav {
    padding: 0.875em 0 0.875em 0.875em;
  }
}

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

@media (min-width: 941px) {
  .footer-nav-list {
    float: left;
    width: 300px;
  }
  .footer-nav-list:last-child {
    margin-right: 0;
    width: auto;
  }
}

@media (min-width: 941px) and (max-width: 1500px) {
  .footer-nav-list {
    float: none;
    width: auto;
  }
  .footer-nav-list:first-child {
    margin-top: -6px;
  }
}

.footer-link {
  border-top: 1px solid #e4e7e9;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 3.5em;
  width: 100%;
}

.footer-link:link, .footer-link:hover {
  color: #706566;
}

.footer-link:visited, .footer-link:visited:hover {
  color: #706566;
}

@media (min-width: 941px) {
  .footer-link {
    border-top: 0;
    display: inline;
    line-height: normal;
    width: auto;
  }
}

.footer-partners a {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 0.875em;
}

.footer-partners a img {
  display: block;
  height: auto;
  width: 100%;
}

.footer-partners .small {
  height: 50px;
  width: 50px;
}

.footer-partners .wide {
  height: 50px;
  width: 78px;
}

.footer-partners-logo {
  height: 85px;
  width: auto;
}

.footer-partners-no-border {
  border-left: 0 !important;
}

@media (min-width: 941px) {
  .footer-partners {
    border-left: 1px solid #e4e7e9;
    float: right;
    padding: 1.75em 0 1.75em 1.75em;
  }
  .footer-partners a {
    float: right;
    margin-right: 0;
    margin-top: 0;
  }
  .footer-partners .small {
    height: 85px;
    width: 85px;
  }
  .footer-partners .wide {
    height: 85px;
    width: 132px;
  }
}

@media (min-width: 941px) and (max-width: 1500px) {
  .footer-partners {
    height: 100%;
    padding: 0.875em 0 0.875em 0.875em;
  }
  .footer-partners a:last-child {
    margin-left: 0;
  }
  .footer-partners .small {
    height: 50px;
    width: 50px;
  }
  .footer-partners .wide {
    height: 50px;
    width: 78px;
  }
}

.form-label {
  font-weight: bold;
  margin: 0;
}

.form-optional {
  font-weight: normal;
  font-style: italic;
  font-size: 0.75em;
}

.form-control-inverted {
  background: #a0272d;
  border: none;
  color: #f1c5c7;
  outline-color: #eaa9ac;
}

.form-control-inverted::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #eaa9ac;
}

.form-control-inverted:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #eaa9ac;
  opacity: 1;
}

.form-control-inverted::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #edb5b8;
  opacity: 1;
}

.form-control-inverted:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #edb5b8;
}

.form-control-inverted:placeholder-shown {
  /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color: #edb5b8;
}

.form-group {
  margin-top: 0.875em;
}

.form-group:first-of-type {
  margin-top: 0;
}

.form-group .icon {
  height: 20px;
  margin: 15px 10px;
  position: absolute;
  width: 20px;
}

.form-input-with-icon {
  padding-left: 38px;
}

.form-radio-list li {
  background: #f8f8f8;
  border-radius: 5px;
  margin: 0.21875em 0 0;
  padding: 0.4375em;
}

.form-radio-list label {
  line-height: 1;
  margin: 0;
}

.form-radio-list input {
  float: left;
  margin-right: 0.58333333em;
  width: auto;
}

.form-radio-list a {
  float: right;
  font-size: 0.875em;
}

.form-submit {
  margin-top: 0.875em;
}

/* Vendor specific */
.chosen-container {
  min-width: 200px;
}

.chosen-search {
  display: none;
}

.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.gallery:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 641px) and (max-width: 940px) {
  .gallery {
    top: -0.875em;
  }
}

@media (min-width: 941px) {
  .gallery {
    top: -0.875em;
  }
}

@media print {
  .gallery {
    display: none;
  }
}

.gallery-item {
  background: center no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 88px;
  overflow: hidden;
  width: 100%;
}

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

.gallery-2 .gallery-item {
  width: 31.81818182%;
  float: left;
  margin-top: 2.63157895%;
}

.gallery-2 .gallery-item:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.gallery-2 .gallery-item:nth-child(3n + 2) {
  margin-left: 34.09090909%;
  margin-right: -100%;
  clear: none;
}

.gallery-2 .gallery-item:nth-child(3n + 3) {
  margin-left: 68.18181818%;
  margin-right: -100%;
  clear: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .gallery-2 .gallery-item {
    width: 49.15254237%;
    float: left;
  }
  .gallery-2 .gallery-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-2 .gallery-item:nth-child(2n + 2) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .gallery-2 .gallery-item {
    width: 49.15254237%;
    float: left;
  }
  .gallery-2 .gallery-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-2 .gallery-item:nth-child(2n + 2) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
}

.gallery-3 .gallery-item {
  width: 31.81818182%;
  float: left;
  margin-top: 2.63157895%;
}

.gallery-3 .gallery-item:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.gallery-3 .gallery-item:nth-child(3n + 2) {
  margin-left: 34.09090909%;
  margin-right: -100%;
  clear: none;
}

.gallery-3 .gallery-item:nth-child(3n + 3) {
  margin-left: 68.18181818%;
  margin-right: -100%;
  clear: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .gallery-3 .gallery-item {
    width: 32.20338983%;
    float: left;
  }
  .gallery-3 .gallery-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-3 .gallery-item:nth-child(3n + 2) {
    margin-left: 33.89830508%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-3 .gallery-item:nth-child(3n + 3) {
    margin-left: 67.79661017%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .gallery-3 .gallery-item {
    width: 32.20338983%;
    float: left;
  }
  .gallery-3 .gallery-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-3 .gallery-item:nth-child(3n + 2) {
    margin-left: 33.89830508%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-3 .gallery-item:nth-child(3n + 3) {
    margin-left: 67.79661017%;
    margin-right: -100%;
    clear: none;
  }
}

.gallery-4 .gallery-item {
  width: 31.81818182%;
  float: left;
  margin-top: 2.63157895%;
}

.gallery-4 .gallery-item:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.gallery-4 .gallery-item:nth-child(3n + 2) {
  margin-left: 34.09090909%;
  margin-right: -100%;
  clear: none;
}

.gallery-4 .gallery-item:nth-child(3n + 3) {
  margin-left: 68.18181818%;
  margin-right: -100%;
  clear: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .gallery-4 .gallery-item {
    width: 23.72881356%;
    float: left;
  }
  .gallery-4 .gallery-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-4 .gallery-item:nth-child(4n + 2) {
    margin-left: 25.42372881%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-4 .gallery-item:nth-child(4n + 3) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-4 .gallery-item:nth-child(4n + 4) {
    margin-left: 76.27118644%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .gallery-4 .gallery-item {
    width: 23.72881356%;
    float: left;
  }
  .gallery-4 .gallery-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-4 .gallery-item:nth-child(4n + 2) {
    margin-left: 25.42372881%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-4 .gallery-item:nth-child(4n + 3) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-4 .gallery-item:nth-child(4n + 4) {
    margin-left: 76.27118644%;
    margin-right: -100%;
    clear: none;
  }
}

.gallery-5 .gallery-item {
  width: 31.81818182%;
  float: left;
  margin-top: 2.63157895%;
}

.gallery-5 .gallery-item:nth-child(3n + 1) {
  margin-left: 0;
  margin-right: -100%;
  clear: both;
  margin-left: 0;
}

.gallery-5 .gallery-item:nth-child(3n + 2) {
  margin-left: 34.09090909%;
  margin-right: -100%;
  clear: none;
}

.gallery-5 .gallery-item:nth-child(3n + 3) {
  margin-left: 68.18181818%;
  margin-right: -100%;
  clear: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .gallery-5 .gallery-item {
    width: 18.36734694%;
    float: left;
  }
  .gallery-5 .gallery-item:nth-child(5n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-5 .gallery-item:nth-child(5n + 2) {
    margin-left: 20.40816327%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 3) {
    margin-left: 40.81632653%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 4) {
    margin-left: 61.2244898%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 5) {
    margin-left: 81.63265306%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .gallery-5 .gallery-item {
    width: 18.36734694%;
    float: left;
  }
  .gallery-5 .gallery-item:nth-child(5n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .gallery-5 .gallery-item:nth-child(5n + 2) {
    margin-left: 20.40816327%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 3) {
    margin-left: 40.81632653%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 4) {
    margin-left: 61.2244898%;
    margin-right: -100%;
    clear: none;
  }
  .gallery-5 .gallery-item:nth-child(5n + 5) {
    margin-left: 81.63265306%;
    margin-right: -100%;
    clear: none;
  }
}

.gmap {
  height: 300px;
  width: 100%;
}

.gm-card {
  left: -14px;
  position: relative;
  top: -12px;
  width: 249px;
}

.gm-card .card-activity {
  border: none;
}

.gm-card .card-footer, .gm-card .card-map-footer {
  padding-bottom: 0;
}

.gm-card .card-title {
  line-height: 28px;
}

.gm-style .gm-style-iw {
  overflow: hidden;
}

.gm-style .gm-style-iw > div {
  overflow: visible !important;
}

.gm-style .gm-style-iw > div > div {
  overflow: visible !important;
}

.heading-inverted {
  background: #d14249;
  color: white;
  display: inline-block;
  margin: 1.75em 2%;
  padding: 0 10px;
}

.icon {
  display: inline-block;
  fill: black;
}

.icon-map,
.icon-grid {
  height: 26px;
  width: 26px;
}

.icon-map {
  padding: 1px;
}

.icon-grid {
  padding: 3px;
}

.icon-burger-nav {
  fill: white;
}

.icon-nav-today,
.icon-nav-map,
.icon-nav-activities,
.icon-nav-events,
.icon-nav-news,
.icon-nav-get-involved,
.icon-compass,
.icon-nav-inspire {
  height: 50px;
  width: 50px;
}

.icon-logo-explore-kent,
.icon-logo-north-west-kent,
.icon-logo-mid-kent-downs,
.icon-logo-medway-valley,
.icon-logo-kent-high-weald {
  fill: white;
  height: 88px;
  width: 88px;
}

.icon-search {
  height: 19px;
  width: 19px;
}

.icon-loading {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  height: 24px;
  left: -2px;
  position: relative;
  top: -2px;
  width: 24px;
}

.icon-page-loading {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  height: 48px;
  opacity: 0.4;
  width: 48px;
  position: relative;
  margin: -24px 0 0 -24px;
}

@media (min-width: 941px) {
  .icon-page-loading {
    margin: -24px 0 0 99.5px;
  }
}

.icon-weather {
  height: 92px;
  width: 116px;
}

.icon-down-arrow {
  height: 10px;
  width: 10px;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.kc-widget-inner {
  background: #198230;
  color: #fff;
  margin-top: 3.5em;
  padding: 1.75em;
}

.kc-widget-heading {
  color: inherit;
  font-size: 28px;
  margin: 0;
}

.kc-widget-intro {
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.kc-widget-form {
  margin-top: -0.875em;
  position: relative;
}

.kc-widget-input-group {
  position: relative;
}

.kc-widget-input-group label {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  left: 15px;
  position: absolute;
  top: 19px;
}

.kc-widget-input {
  background: #115720;
  border: none;
  color: #fff;
  font-size: 13px;
  margin-top: 0.875em;
  padding-left: 60px;
}

.kc-widget-input::-webkit-input-placeholder {
  color: #60976b;
}

.kc-widget-input:focus {
  background: #156d28;
}

.kc-widget-form-action {
  margin-top: 0.875em;
}

.kc-widget-form-action .button {
  background-color: #93c023;
}

.kc-widget-footer {
  margin-top: 0.4375em;
  text-align: center;
}

.kc-widget-footer a:link, .kc-widget-footer a:visited {
  color: #C7CED3;
  font-size: 14px;
  text-decoration: none;
}

.list-panel {
  border-top: 1px solid #efefef;
  color: #706566 !important;
  float: left;
  margin-top: 1.75em;
  padding: 1.75em 2% 0 2%;
  width: 100%;
}

article:first-of-type .list-panel {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.list-panel-figure {
  display: none;
  float: left;
  margin: 0 3% 0 0;
  width: 100%;
}

.list-panel-figure img {
  display: block;
  height: auto;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .list-panel-figure {
    display: inline-block;
    width: 20%;
  }
}

@media (min-width: 941px) {
  .list-panel-figure {
    display: inline-block;
    width: 20%;
  }
}

.list-panel-no-image {
  background: url(../images/event-no-image.png) center no-repeat #C7CED3;
  min-height: 107px;
}

.list-panel-content {
  float: left;
  max-width: 660px;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .list-panel-content {
    width: 77%;
  }
}

@media (min-width: 941px) {
  .list-panel-content {
    width: 77%;
  }
}

.list-panel-title {
  font-size: 31px;
  margin: 0;
}

.list-panel-summary {
  font-size: 14px;
  line-height: 1.4;
  margin: 0.875em 0 0 0;
}

.list-panel-summary p {
  margin: 0;
}

.list-panel-meta-group {
  margin-top: 0.875em;
}

.list-panel-meta-group .list-panel-meta {
  display: inline-block;
  font-size: 14px;
  margin-right: 15px;
}

.list-panel-meta-group .list-panel-meta:last-child {
  margin-right: 0;
}

.list-panel-meta-group .list-panel-meta .icon {
  display: inline-block;
  fill: #706566;
  height: 20px;
  margin-right: 5px;
  width: 20px;
}

.list-panel-meta-group .list-panel-meta span {
  display: inline-block;
  position: relative;
  top: -4px;
}

.list-panel-meta-group .list-panel-meta span:first-child {
  margin-top: 0;
}

.load-more {
  display: inline-block;
  margin-bottom: 1.75em;
  margin-top: 0;
  text-align: center;
  width: 100%;
}

.load-more.loading .icon-page-loading {
  display: inline-block;
}

.load-more.loading .button {
  display: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .load-more {
    border-top: 1px solid #e4e7e9;
    margin-top: 3.5em;
    padding-top: 3.5em;
  }
}

@media (min-width: 941px) {
  .load-more {
    border-top: 1px solid #e4e7e9;
    margin-bottom: 0;
    margin-top: 3.5em;
    padding-top: 3.5em;
  }
}

.page .load-more .icon-page-loading {
  margin: 0;
}

@media (min-width: 941px) {
  .logo-list {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
}

.logo-list-item {
  padding: 0.4375em 0;
}

.logo-list-item:not(:last-child) {
  margin-bottom: 1.75em;
}

.logo-list-anchor {
  display: block;
}

.logo-list ul {
  list-style: none;
  padding: 0;
}

.logo-list img {
  display: block;
  max-width: 14em;
  margin: 0 auto;
}

@media (min-width: 941px) {
  .logo-list img {
    height: auto;
    max-width: none;
    width: 100%;
  }
}

.main-nav {
  -webkit-transform: translateZ(0);
  background-color: #d14249;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

.main-nav nav {
  height: 100%;
  padding-top: 84px;
  position: absolute;
  width: 100%;
}

@media (min-width: 941px) {
  .main-nav {
    background-image: url(../images/sidebar-logo-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    border-right: 0 solid #C7CED3;
    height: 100%;
    width: 247px;
  }
  .main-nav nav {
    height: auto;
    padding-top: 0;
    position: relative;
    width: auto;
  }
}

@media (max-height: 630px) {
  .main-nav {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media print {
  .main-nav {
    display: none;
  }
}

.main-nav-logo {
  display: block;
  float: left;
  height: 84px;
  margin-top: 2px;
  padding: 18px 22px;
  position: relative;
  z-index: 1;
}

.main-nav-logo svg path,
.main-nav-logo img path {
  fill: #FFFFFF;
}

.main-nav-logo .icon {
  height: 44px;
  width: 44px;
}

@media (min-width: 941px) {
  .main-nav-logo {
    float: none;
    height: 237px;
    padding: 80px 78px;
    width: 247px;
  }
  .main-nav-logo .icon {
    height: 88px;
    width: 88px;
  }
}

@media screen and (min-width: 941px) and (max-height: 650px) {
  .main-nav-logo {
    height: 123.5px;
    padding: 34px 92px;
  }
  .main-nav-logo .icon {
    height: 60px;
    width: 60px;
  }
}

.main-nav-logo-stour {
  display: block;
  float: left;
  height: 84px;
  margin-top: 2px;
  padding: 20px 26px;
  position: relative;
  z-index: 1;
}

.main-nav-logo-stour img {
  height: 44px;
  width: 32px;
}

@media (min-width: 941px) {
  .main-nav-logo-stour {
    float: none;
    height: 237px;
    padding: 74px 91px;
    width: 247px;
  }
  .main-nav-logo-stour img {
    height: 88px;
    width: 64px;
  }
}

@media screen and (min-width: 941px) and (max-height: 650px) {
  .main-nav-logo-stour {
    height: 123.5px;
    padding: 32px 102px;
  }
  .main-nav-logo-stour img {
    height: 60px;
    width: 43px;
  }
}

.main-nav-open {
  overflow: hidden;
}

.main-nav-open .main-nav {
  height: 100%;
}

.main-nav-open .main-nav-list {
  max-height: 800px;
}

.main-nav-toggle {
  background: none;
  border: none;
  float: right;
  padding: 23px 24px;
  position: relative;
  z-index: 1;
}

.main-nav-toggle .icon {
  height: 18px;
  margin-top: 10px;
  width: 20px;
}

@media (min-width: 941px) {
  .main-nav-toggle {
    display: none;
  }
}

.main-nav-list {
  height: 100%;
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow-y: auto;
  padding: 0;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  width: 100%;
}

@media (min-width: 941px) {
  .main-nav-list {
    height: auto;
    max-height: none;
    overflow: hidden;
  }
}

.main-nav-item {
  margin-bottom: 2px;
  margin-top: 2px;
}

.main-nav-item .icon {
  fill: white;
  float: left;
  height: 44px;
  margin-right: 17px;
  width: 44px;
}

.main-nav-item:hover a,
.main-nav-item .active {
  color: white !important;
}

.main-nav-item:hover a .icon,
.main-nav-item .active .icon {
  fill: white;
}

@media (min-width: 941px) {
  .main-nav-item:hover a,
  .main-nav-item .active {
    background: #a0272d;
  }
}

.main-nav-link {
  background-position: 25px center;
  background-repeat: no-repeat;
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 31px;
  line-height: 1;
  padding: 25px 25px 25px 25px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}

.main-nav-link:link, .main-nav-link:visited {
  color: white;
}

.main-nav-link-text span {
  display: block;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  text-transform: none;
}

@media screen and (min-width: 941px) and (max-height: 780px) {
  .main-nav-link {
    padding: 10px 20px;
  }
}

.main-nav-search {
  display: none;
  margin-bottom: 1.75em;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 941px) {
  .main-nav-search {
    display: block;
  }
}

@media screen and (min-width: 941px) and (max-height: 650px) {
  .main-nav-search .search-button {
    height: 50px;
    padding: 15px;
    width: 50px;
  }
}

@media (max-height: 720px) {
  .main-nav-search {
    margin-top: 2.625em;
    position: relative;
  }
}

.main-nav-search-label {
  font-size: 14px;
  margin: 0;
}

.main-nav-list-stour {
  overflow: visible;
}

.main-nav-list-stour .main-nav-item {
  position: relative;
}

.main-nav-list-stour .main-nav-item:hover .main-nav-nested-link,
.main-nav-list-stour .main-nav-item:hover .main-nav-nested-title-link {
  background-color: transparent;
  color: #706566 !important;
}

.main-nav-list-stour .main-nav-nested-list {
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  left: 100%;
  list-style: none;
  margin: 0;
  padding: 0 0 16px;
  position: absolute;
  top: 0;
  width: 280px;
}

.main-nav-list-stour .main-nav-nested-list--show {
  display: block;
}

@media screen and (min-width: 941px) {
  .main-nav-list-stour .main-nav-item:hover > .main-nav-nested-list {
    display: block;
  }
}

@media screen and (min-width: 941px) {
  .main-nav-list-stour .main-nav-nested-item:hover > .main-nav-nested-list {
    display: block;
  }
}

.main-nav-list-stour .main-nav-nested-title {
  padding: 24px 18px 8px;
}

.main-nav-list-stour .main-nav-nested-title-link {
  color: #d14249;
  font-family: "bebas-neue", sans-serif;
  font-size: 24px;
}

.main-nav-list-stour .main-nav-item:hover .main-nav-nested-title-link {
  color: #d14249 !important;
}

.main-nav-list-stour .main-nav-item:hover .main-nav-nested-title-link:hover {
  color: #a0272d !important;
}

.main-nav-list-stour .main-nav-nested-item {
  padding: 0 32px;
  position: relative;
}

.main-nav-list-stour .main-nav-nested-item:hover {
  background-color: #a0272d;
}

.main-nav-list-stour .main-nav-nested-item:hover > .main-nav-nested-link {
  color: #fff !important;
}

.main-nav-list-stour .main-nav-nested-link {
  color: #706566;
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 18px;
  padding: 8px 0;
  position: relative;
}

.main-nav-list-stour .main-nav-nested-link:link, .main-nav-list-stour .main-nav-nested-link:visited {
  color: #706566;
}

.main-nav-list-stour .main-nav-nested-chevron {
  display: block;
  left: 100%;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-nav-list-stour .main-nav-nested-chevron .icon.icon-right-chevron {
  float: none;
  height: 16px;
  margin-right: 0;
  width: 16px;
}

.main-nav-list-stour .main-nav-item:hover a .icon.icon-right-chevron,
.main-nav-list-stour .main-nav-item .active .icon.icon-right-chevron {
  fill: #706566;
}

.main-nav-list-stour .main-nav-nested-item:hover .main-nav-nested-link .icon.icon-right-chevron {
  fill: #fff;
}

.angular-google-map-container {
  height: 100%;
  margin-top: 192px;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .angular-google-map-container {
    margin-top: 0;
  }
}

@media (min-width: 941px) {
  .angular-google-map-container {
    margin-top: 0;
  }
}

.map-image {
  margin-top: 0 !important;
  position: relative;
}

.map-image-title {
  font-size: 31px;
}

.map-image-toggle {
  position: absolute;
  right: 0;
  top: 0;
}

.map-image-toggle .icon {
  height: 15px;
  width: 15px;
}

.map-image-container {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
}

.map-image-container img {
  display: block;
  height: auto;
  width: 100%;
}

.map-image-container-open {
  max-height: 1000px;
}

.masonry {
  margin: 0 auto;
}

@media (min-width: 941px) {
  .masonry {
    margin: 0;
    padding: 1em;
  }
}

.masonry-brick {
  margin-bottom: 20px;
  opacity: 0;
  width: 100%;
}

.masonry-brick.loaded {
  opacity: 1;
}

@media (min-width: 641px) and (max-width: 940px) {
  .masonry-brick {
    width: 298px;
  }
}

@media (min-width: 941px) {
  .masonry-brick {
    width: 298px;
  }
}

.masonry-brick {
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-animation: moveUp 0.65s ease forwards;
          animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
  0% {
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveUp {
  0% {
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.meta-attributes {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.meta-attribute {
  background: #e4e7e9;
  float: left;
  margin: 0.4375em 0.4375em 0 0;
  padding: 0 0.875em;
  position: relative;
  top: -0.4375em;
}

@media print {
  .meta-attribute {
    background: none;
    padding: 0 1.75em 0 0;
    top: 0;
  }
}

.meta-attribute-label {
  display: inline-block;
  font-size: 16px;
  margin-right: 0.875em;
}

.meta-attribute-info {
  background: #C7CED3;
  border-radius: 50%;
  bottom: -3px;
  color: white;
  cursor: default;
  display: inline-block;
  font-size: 14px;
  height: 17px;
  left: -6px;
  line-height: 17px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 17px;
}

.meta-attribute-value, .meta-attribute-yes, .meta-attribute-no {
  display: inline-block;
}

.meta-attribute-yes .icon {
  fill: #75a727;
  height: 12px;
  width: 14px;
}

.meta-attribute-no .icon {
  fill: #d14249;
  height: 11px;
  width: 11px;
}

.meta-author-figure {
  border-radius: 50%;
  border: 8px solid white;
  float: left;
  height: 45px;
  margin-right: 18px;
  overflow: hidden;
  width: 45px;
}

.meta-author-figure img {
  display: block;
  height: 100%;
  width: 100%;
}

.meta-author-label {
  display: inline-block;
  float: left;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 3px;
}

.meta-author-name {
  font-weight: bold;
}

.meta-date .icon {
  fill: #d14249;
  float: left;
  height: 34px;
  margin-right: 18px;
  width: 34px;
}

.meta-date time {
  float: left;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
  top: -2px;
}

.meta-info {
  margin-top: 3.5em;
}

.meta-info:first-child {
  margin-top: 0;
}

.meta-info-button {
  background: #d14249;
  border-bottom: 4px solid black;
  border-color: #a6272d;
  border-radius: 5px;
  color: black;
  padding-top: 1px;
}

.meta-info-button .meta-info-link .icon {
  fill: #f9e6e7;
}

.meta-info-button .meta-info-link:hover .icon {
  fill: white;
}

.meta-info-button a:link, .meta-info-button a:visited {
  color: #f9e6e7;
}

.meta-info-button a:hover, .meta-info-button a:visited:hover {
  color: white;
}

.meta-info-button .meta-info-term:not(:first-child) {
  border-top: 1px solid #a6272d;
  margin-top: 0;
  padding-top: 14px;
  position: relative;
}

.meta-info-button .meta-info-description {
  border-bottom: 0;
}

.meta-info-term {
  font-size: 14px;
  line-height: 1;
  margin: 0.875em 0 0 0;
  padding-left: 12px;
  padding-right: 12px;
}

.meta-info-description {
  border-bottom: 2px solid #e4e7e9;
  font-family: "bebas-neue", sans-serif;
  font-size: 31px;
  margin: 4px 0 0 0;
  padding-bottom: 0.4375em;
  padding-left: 12px;
  padding-right: 12px;
}

.meta-info-col {
  display: inline-block;
  width: 48%;
}

.meta-info-col:only-child {
  width: 100%;
}

.meta-info-link {
  display: inline-block;
  position: relative;
  width: 100%;
}

.meta-info-link:link, .meta-info-link:visited {
  color: #706566;
}

.meta-info-link:hover, .meta-info-link:visited:hover {
  color: #d14249;
}

.meta-info-link .icon {
  bottom: 6px;
  fill: #d14249;
  height: 14px;
  position: absolute;
  right: 0;
  width: 16px;
}

.notice {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eaaf0f;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .75em;
  line-height: 1.5;
  padding: 0 1.75em;
}

.notice .notice-icon {
  margin-right: .5em;
  font-size: 2em;
}

.notice a:link, .notice a:visited {
  color: black;
  text-decoration: underline;
}

.page-banner, .page-banner-large, .page-banner-large-dashboard, .page-banner-large-404 {
  background-color: #5c5c54;
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  z-index: 2;
}

.page-banner .page-banner-inner, .page-banner-large .page-banner-inner, .page-banner-large-dashboard .page-banner-inner, .page-banner-large-404 .page-banner-inner {
  background: url(../images/page-banner-bg.png) top left no-repeat;
  padding: 1.75em 1.75em;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-banner .page-banner-inner, .page-banner-large .page-banner-inner, .page-banner-large-dashboard .page-banner-inner, .page-banner-large-404 .page-banner-inner {
    padding: 5.25em 3.5em;
  }
}

@media (min-width: 941px) {
  .page-banner .page-banner-inner, .page-banner-large .page-banner-inner, .page-banner-large-dashboard .page-banner-inner, .page-banner-large-404 .page-banner-inner {
    padding: 5.25em 3.5em;
  }
}

@media print {
  .page-banner .page-banner-inner, .page-banner-large .page-banner-inner, .page-banner-large-dashboard .page-banner-inner, .page-banner-large-404 .page-banner-inner {
    padding: 3.5em 3.5em 1.75em 1.75em;
  }
}

.page-banner.xs-hidden {
  display: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-banner.xs-hidden {
    display: block;
  }
}

@media (min-width: 941px) {
  .page-banner.xs-hidden {
    display: block;
  }
}

.page-banner.small-title .page-banner-title {
  font-size: 100px !important;
}

.page-banner-large, .page-banner-large-dashboard, .page-banner-large-404 {
  padding: 3.5em 1.75em;
  position: relative;
}

@media (min-width: 941px) {
  .page-banner-large, .page-banner-large-dashboard, .page-banner-large-404 {
    padding: 8.75em 3.5em;
  }
}

.page-banner-overlay {
  background: url(../images/overlay.svg) no-repeat;
  background-position: -196px -177px;
  background-size: auto 165%;
  height: 100%;
  left: 0;
  opacity: 0.17;
  position: absolute;
  top: 0;
  width: 100%;
}

.page-banner-title {
  color: white;
  font-size: 60px;
  line-height: 1;
  margin: 0;
  position: relative;
  text-align: center;
  text-shadow: 0px 1px 1px #4d4d4d;
  text-transform: uppercase;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-banner-title {
    font-size: 145px;
    max-width: 100%;
  }
}

@media (min-width: 941px) {
  .page-banner-title {
    font-size: 165px;
    max-width: 750px;
    text-align: left;
  }
}

@media (min-width: 1271px) and (max-width: 1400px) {
  .page-banner-title {
    font-size: 110px;
  }
}

@media (min-width: 941px) and (max-width: 1270px) {
  .page-banner-title {
    font-size: 120px;
  }
}

@media print {
  .page-banner-title {
    color: #706566;
    text-align: left;
    text-shadow: none;
  }
}

/*
Banners
*/
@media (min-width: 941px) and (max-width: 1270px) {
  .page-banner-large-dashboard {
    padding: 5.25em 3.5em;
  }
}

.page-banner-large-404 {
  background-image: url(../images/page-banner-large/404.jpg);
}

.page-banner-large-404 .page-banner-title {
  max-width: 100%;
}

@media (min-width: 941px) and (max-width: 1270px) {
  .page-banner-large-404 {
    padding: 5.25em 3.5em;
  }
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  width: 100%;
  z-index: 0;
}

@media (min-width: 941px) {
  .page {
    padding-left: 247px;
  }
}

.page .icon-page-loading {
  display: none;
}

.page-activities-map {
  height: 100%;
}

.page-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  width: 100%;
}

.page.loading .icon-page-loading {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
}

.page.loading .page-inner {
  left: -1.75em;
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.page.loading .footer {
  opacity: 0;
}

.page.loaded .page-inner {
  left: 0;
  opacity: 1;
}

.page.loaded .footer {
  opacity: 1;
}

.page-content, .page-content-compact {
  margin: 1.75em auto;
  opacity: 1;
  overflow: hidden;
  padding: 0 0.875em;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: 100%;
}

@media (min-width: 941px) {
  .page-content, .page-content-compact {
    margin: 3.5em auto;
    max-width: 1340px;
    padding: 0 1.75em;
    width: 100%;
  }
}

.page-content.loading, .loading.page-content-compact {
  opacity: 0.4;
}

@media (min-width: 941px) {
  .page-content-compact {
    max-width: 1000px;
  }
}

.page-content-results-header {
  margin: 1.75em 0;
  text-align: center;
}

.page-content-results-header a {
  color: #d14249;
}

@media (min-width: 941px) {
  .page-content-results-header {
    text-align: left;
  }
}

.page-content-results-header-button {
  margin-left: 5px;
  top: -1px;
  position: relative;
}

.page-image {
  background: #e4e7e9 no-repeat center;
  background-size: cover;
  height: 250px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.page-image .button-back {
  position: absolute;
  top: 20px;
  left: 20px;
}

@media (min-width: 941px) {
  .page-image {
    height: 332px;
  }
}

@media (min-width: 1600px) {
  .page-image {
    height: 420px;
  }
}

@media print {
  .page-image {
    display: none;
  }
}

.page-map {
  background: #e4e7e9;
  height: 250px;
  margin-top: 3.5em;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.page-map .angular-google-map {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.page-map .angular-google-map-container {
  margin-top: 0;
}

.page-map .button-back {
  position: absolute;
  margin: 0 0 0 20px;
  top: 460px;
}

@media (min-width: 941px) {
  .page-map {
    height: 400px;
  }
}

@media print {
  .page-map {
    display: none;
  }
}

.page-map-link {
  font-size: 14px;
}

.page-content-breadcrumbs {
  margin-bottom: 1.75em;
}

.page-content-header {
  float: left;
  margin-top: 1.75em;
  width: 100%;
}

@media (min-width: 941px) {
  .page-content-header {
    margin-right: 32%;
    width: 68%;
  }
}

.page-content-header .list-panel-meta-group {
  float: left;
  margin-top: 1.75em;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-content-header .list-panel-meta-group {
    float: right;
    margin-top: 3px;
  }
}

@media (min-width: 941px) {
  .page-content-header .list-panel-meta-group {
    float: right;
    margin-top: 3px;
  }
}

.page-content-header-meta {
  margin-top: 1.75em;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-content-header-meta {
    margin-top: 3.5em;
  }
}

@media (min-width: 941px) {
  .page-content-header-meta {
    margin-top: 3.5em;
  }
}

.page-content-header-meta .meta-author {
  float: left;
}

.page-content-header-meta .meta-author .meta-author-figure {
  display: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-content-header-meta .meta-author .meta-author-figure {
    display: block;
  }
}

@media (min-width: 941px) {
  .page-content-header-meta .meta-author .meta-author-figure {
    display: block;
  }
}

.page-content-header-meta .meta-date {
  float: right;
  margin-top: 4px;
}

.page-content-main {
  float: left;
  margin-top: 1.75em;
  width: 100%;
}

@media (min-width: 941px) {
  .page-content-main {
    margin-right: 4%;
    margin-top: 3.5em;
    width: 68%;
  }
}

.page-content-main-meta {
  margin-top: 0;
}

.page-content-info {
  float: right;
  margin-top: 1.75em;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-content-info {
    margin-top: 3.5em;
  }
}

@media (min-width: 941px) {
  .page-content-info {
    margin-top: 3.5em;
    width: 28%;
  }
}

.page-content-info .button {
  width: 100%;
}

.page-content-info-section {
  border-bottom: 1px solid #e4e7e9;
  border-bottom-width: 2px;
  margin-top: 3.5em;
  padding: 0 12px 0.875em;
}

.page-suggestion {
  margin-top: 1.75em;
}

.page-rating {
  border-bottom: 1px solid #e4e7e9;
  border-bottom-width: 2px;
  margin-top: 3.5em;
  padding: 0 12px 0.875em;
}

.page-title {
  font-size: 60px;
  line-height: 1;
  margin: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-title {
    font-size: 75px;
  }
}

@media (min-width: 941px) {
  .page-title {
    font-size: 90px;
  }
}

.page-section {
  margin: 3.5em 0 0 0;
}

.page-section:first-child {
  margin: 0 !important;
}

.page-section > p:first-child {
  margin: 0;
}

/* Related */
.page-related {
  text-align: center;
}

@media print {
  .page-related {
    display: none;
  }
}

.page-related-title {
  font-size: 31px;
  margin-bottom: 0.875em;
  text-align: left;
}

.page-related-list {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-related-list:after {
  content: " ";
  display: block;
  clear: both;
}

.page-related-item {
  text-align: left;
  margin-top: 0.875em;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-related-item {
    width: 48.97959184%;
    float: left;
  }
  .page-related-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .page-related-item:nth-child(2n + 2) {
    margin-left: 51.02040816%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .page-related-item {
    width: 48.97959184%;
    float: left;
  }
  .page-related-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .page-related-item:nth-child(2n + 2) {
    margin-left: 51.02040816%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-related-item-3-col {
    width: 49.15254237%;
    float: left;
  }
  .page-related-item-3-col:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .page-related-item-3-col:nth-child(2n + 2) {
    margin-left: 50.84745763%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 941px) {
  .page-related-item-3-col {
    width: 32.20338983%;
    float: left;
  }
  .page-related-item-3-col:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .page-related-item-3-col:nth-child(3n + 2) {
    margin-left: 33.89830508%;
    margin-right: -100%;
    clear: none;
  }
  .page-related-item-3-col:nth-child(3n + 3) {
    margin-left: 67.79661017%;
    margin-right: -100%;
    clear: none;
  }
}

.page-related-button {
  display: inline-block;
  margin: 3.5em auto 0;
}

@media print {
  .page-cta {
    display: none;
  }
}

.page-share {
  overflow: hidden;
}

.page-share h3 {
  margin-bottom: 0.4375em;
  margin-top: 0;
}

.page-share > div {
  float: left;
}

.page-content-header-meta .page-share {
  float: right;
  margin-top: 6px;
}

.page-content-header-meta .page-share > div {
  float: right;
}

.page-cards .card-image {
  height: 312px;
}

.page-cards .card-content-summary {
  font-size: 14px;
  line-height: 1.3;
  min-height: 270px;
}

.page-related-content .card, .page-related-content .card-activity, .page-related-content .card-cmp, .page-related-content .card-category, .page-related-content .card-page, .page-related-content .card-post, .page-related-content .card-map, .page-related-content .card-tweet {
  margin-top: 1.75em;
}

.page-background {
  background: url(../images/overlay.svg) no-repeat;
  background-position: -196px -177px;
  background-size: auto 165%;
  height: 50%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
}

.page-background:after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background-image: linear-gradient(to bottom, transparent, white);
  bottom: 0;
  content: "";
  height: 50%;
  position: absolute;
  width: 100%;
}

@media (min-width: 941px) {
  .page-background {
    margin-left: 247px;
    width: calc(100% - 247px);
  }
}

.page-header-cmp {
  margin: 1.75em 0 1.75em;
  padding: 1em;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp {
    margin: 1.75em 0 3.5em;
  }
}

@media (min-width: 941px) {
  .page-header-cmp {
    margin: 1.75em 0 3.5em;
  }
}

.page-header-cmp h1 {
  color: #62181c;
  font-family: "proxima-nova", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp h1 {
    font-size: 40px;
  }
}

@media (min-width: 941px) {
  .page-header-cmp h1 {
    font-size: 40px;
  }
}

.page-header-cmp h1 span {
  color: #d14249;
  font-family: "bebas-neue", sans-serif;
  font-size: 43px;
  text-transform: uppercase;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp h1 span {
    font-size: 80px;
  }
}

@media (min-width: 941px) {
  .page-header-cmp h1 span {
    font-size: 80px;
  }
}

.page-header-cmp p {
  color: #62181c;
  font-size: 15px;
  line-height: 1;
  margin: 0;
  text-transform: lowercase;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp p {
    font-size: 30px;
  }
}

@media (min-width: 941px) {
  .page-header-cmp p {
    font-size: 30px;
  }
}

.page-header-cmp p span {
  color: #d14249;
  margin: 0 6px;
}

.page-header-cmp .icon {
  fill: #d14249;
  float: left;
  height: 68px;
  margin-right: 15px;
  margin-top: 5px;
  width: 68px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp .icon {
    height: 152px;
    margin-right: 20px;
    margin-top: 0;
    width: 152px;
  }
}

@media (min-width: 941px) {
  .page-header-cmp .icon {
    height: 152px;
    margin-right: 20px;
    margin-top: 0;
    width: 152px;
  }
}

.page-header-cmp .page-header-stour-logo {
  float: left;
  height: 68px;
  margin-right: 15px;
  margin-top: 5px;
  width: 49px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-header-cmp .page-header-stour-logo {
    height: 152px;
    margin-right: 20px;
    margin-top: 0;
    width: 110px;
  }
}

@media (min-width: 941px) {
  .page-header-cmp .page-header-stour-logo {
    height: 152px;
    margin-right: 20px;
    margin-top: 0;
    width: 110px;
  }
}

.page-intro {
  max-width: 50em;
  padding: 0 1em 1.75em 1em;
}

.page-intro p {
  font-size: 17px;
  margin-top: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .page-intro p {
    font-size: 20px;
  }
}

@media (min-width: 941px) {
  .page-intro p {
    font-size: 20px;
  }
}

.print {
  background: none;
  border: none;
  float: right;
  text-align: left;
}

@media print {
  .print {
    display: none;
  }
}

.print-icon {
  background: white;
  border-radius: 50%;
  border: 8px solid white;
  float: left;
  height: 45px;
  margin-right: 18px;
  overflow: hidden;
  width: 45px;
}

.print-icon .icon {
  fill: #706566;
  height: 22px;
  margin: 4px;
  width: 22px;
}

.print-label {
  display: inline-block;
  float: left;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 3px;
  width: 65px;
}

.rating-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0;
}

.star {
  font-size: 1.5em;
  cursor: pointer;
}

.star.glow {
  color: #eaaf0f;
}

.rating-select[data-rated="1"] .star {
  cursor: default !important;
}

.results-bar {
  background-color: white;
  border-bottom: 4px solid #C7CED3;
  margin: 0 auto;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  z-index: 1000;
}

.results-bar .form-group {
  margin-top: 0;
}

.results-bar .form-group input {
  border: 0;
  height: 52px;
}

@media (min-width: 941px) {
  .results-bar .form-group input {
    font-size: 16px;
  }
}

.results-bar .chosen-container {
  height: 100%;
  width: 100%;
  min-width: 0;
}

.results-bar .chosen-container .chosen-single {
  border: none;
  background-clip: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #706566;
  height: 100%;
  line-height: 24px;
  padding: 10px 14px;
}

.results-bar .chosen-container .chosen-single > span {
  line-height: 32px;
}

@media (min-width: 941px) {
  .results-bar .chosen-container .chosen-single > span {
    font-size: 16px;
  }
}

.results-bar .chosen-container .chosen-single > div {
  width: 24px;
}

.results-bar .chosen-container .chosen-single > div b {
  background-position: 0 13px;
  width: 80%;
}

.results-bar .chosen-container .chosen-drop {
  border: none;
  border-radius: 0;
}

.results-bar-fixed {
  position: absolute;
  top: 0;
}

.results-bar-inner {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.results-bar-inner > div,
.results-bar-inner > button {
  border-top: 1px solid #e4e7e9;
}

@media (min-width: 941px) {
  .results-bar-inner {
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

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

@media (min-width: 941px) {
  .results-bar-left,
  .results-bar-right {
    width: auto;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-left {
    width: 55%;
  }
}

@media (min-width: 941px) {
  .results-bar-left {
    max-width: 500px;
    width: 50%;
  }
}

.results-bar-right {
  display: none;
  margin-left: auto;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-right {
    display: block;
    width: 45%;
  }
  .page-activities-map .results-bar-right {
    width: auto;
  }
}

@media (min-width: 941px) {
  .results-bar-right {
    display: block;
    max-width: 340px;
    width: 40%;
  }
  .results-bar-fixed .results-bar-right {
    width: 128px;
  }
}

.results-bar-right .results-bar-view {
  width: 128px;
}

.results-bar-location {
  float: left;
  border-right: 1px solid #e4e7e9;
  width: 50%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-location {
    width: 50%;
  }
}

@media (min-width: 941px) {
  .results-bar-location {
    width: 60%;
  }
}

@media (min-width: 941px) and (max-width: 1200px) {
  .results-bar-location {
    width: 50%;
  }
}

.results-bar-location .icon {
  fill: #718390;
}

.results-bar-months select,
.results-bar-sort select {
  height: 52px;
  background: none;
  border: none;
}

.results-bar-months select:focus,
.results-bar-sort select:focus {
  background: #f2f3f5;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-months,
  .results-bar-sort {
    border-left: 1px solid #e4e7e9;
    float: left;
    width: calc(100% - 128px);
  }
}

@media (min-width: 941px) {
  .results-bar-months,
  .results-bar-sort {
    border-left: 1px solid #e4e7e9;
    float: left;
    width: calc(100% - 128px);
  }
}

@media (min-width: 941px) and (max-width: 1200px) {
  .results-bar-months,
  .results-bar-sort {
    border-left-width: 1px;
  }
}

.results-bar-icon {
  display: none;
  float: right;
  margin-left: 5px;
  padding: 3px 6px;
  width: auto;
}

.results-bar-icon.active {
  background: #d14249;
  color: white;
}

.results-bar-view {
  display: none;
  border-left: 1px solid #e4e7e9;
  float: left;
  padding: 0 9px;
}

.results-bar-view span {
  color: #5c6976;
  float: left;
  font-size: 12px;
  font-weight: bold;
  line-height: 52px;
  margin: 0 3px;
  text-transform: uppercase;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-view {
    display: block;
  }
}

@media (min-width: 941px) {
  .results-bar-view {
    display: block;
  }
}

.results-bar-view-anchor {
  display: inline-block;
  padding: 13px 2px 4px;
}

.results-bar-view-anchor:focus {
  background: #f2f3f5;
}

.results-bar-view-anchor .icon {
  fill: #C7CED3;
}

.results-bar-view-anchor.active .icon {
  fill: #718390;
}

.results-bar-button {
  background: none;
  border: none;
  font-size: 14px;
  height: 52px;
  line-height: 52px;
  text-align: left;
  padding: 0 20px;
  white-space: nowrap;
}

.results-bar-button:focus {
  background: #f2f3f5;
}

@media (min-width: 941px) {
  .results-bar-button {
    font-size: 16px;
  }
}

.results-bar-more-options {
  float: left;
  width: 50%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-more-options {
    border-right: 1px solid #e4e7e9;
    width: 50%;
  }
}

@media (min-width: 941px) {
  .results-bar-more-options {
    border-right: 1px solid #e4e7e9;
    width: 40%;
  }
}

@media (min-width: 941px) and (max-width: 1200px) {
  .results-bar-more-options {
    width: 50%;
  }
}

.results-bar-more-options svg {
  margin-left: 3px;
  position: relative;
}

.results-bar-clear-search {
  border-top: 1px solid #e4e7e9;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  width: 100%;
}

.results-bar-clear-search:link, .results-bar-clear-search:visited {
  color: #706566;
}

.results-bar-clear-search:hover, .results-bar-clear-search:visited:hover {
  color: #706566;
}

.results-bar-clear-search svg {
  bottom: -1px;
  fill: #706566;
  float: right;
  margin-top: 19px;
  position: relative;
  width: 10px;
}

.results-bar-clear-search span {
  float: left;
}

.results-bar-clear-search.hide {
  display: none;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-clear-search {
    border-left: 1px solid #e4e7e9;
    width: 50%;
  }
}

@media (min-width: 941px) {
  .results-bar-clear-search {
    border-left: 1px solid #e4e7e9;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    width: auto;
  }
}

@media (min-width: 941px) and (max-width: 1200px) {
  .results-bar-clear-search {
    width: 25%;
  }
}

@media (min-width: 1201px) {
  .results-bar-clear-search span {
    display: none;
  }
}

.results-bar-filters {
  background: white;
  border-top: 1px solid #e4e7e9;
  overflow: hidden;
  max-height: 0;
  position: absolute;
  -webkit-transition: max-height .3s ease-in-out;
  transition: max-height .3s ease-in-out;
  width: 100%;
}

.results-bar-filters.open {
  max-height: 1000px;
}

@media (min-width: 941px) {
  .results-bar-filters.open {
    max-height: 496px;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-left {
    float: left;
    margin-right: 2%;
    width: 48%;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-left {
    float: left;
    margin-right: 2%;
    width: 28%;
  }
}

.results-bar-filters-right {
  margin-top: 2em;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-right {
    float: left;
    margin-top: 0;
    min-height: 420px;
    width: 50%;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-right {
    float: left;
    margin-top: 0;
    min-height: 420px;
    width: 70%;
  }
}

.results-bar-filters-search {
  margin-top: 1em;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-search {
    margin-top: 2em;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-search {
    margin-top: 2em;
  }
}

.results-bar-filters-inner {
  overflow: hidden;
  padding: 1em 2em 2em;
  position: relative;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-inner {
    padding: 2em 3em;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-inner {
    padding: 2em 3em;
  }
}

.results-bar-filters-inner h3 {
  margin: 1em 0 0 0;
}

.results-bar-filters-item {
  display: inline-block;
  font-size: 14px;
  margin: .5em 0;
  width: 100%;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-item {
    font-size: 16px;
    margin: 1em 0 0;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-item {
    font-size: 16px;
    margin: 1em 0 0;
    width: 48%;
  }
}

.results-bar-filters-item input {
  margin-right: 10px;
  padding: 0;
  width: auto;
}

.results-bar-filters-item label:focus-within {
  background: #f2f3f5;
}

.results-bar-months {
  width: 100%;
}

@media (min-width: 941px) {
  .results-bar-months {
    border-left: 1px solid #e4e7e9;
    float: right;
    margin-left: auto;
    max-width: 240px;
    width: 40%;
  }
}

.results-bar-filters-activity-types {
  list-style: none;
  padding: 0;
}

.results-bar-filters-activity-types li {
  margin: 1em 0;
  font-size: 14px;
  margin: .5em 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-activity-types li {
    font-size: 16px;
    margin: 1em 0 0;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-activity-types li {
    font-size: 16px;
    margin: 1em 0 0;
  }
}

.results-bar-filters-activity-types input {
  display: inline-block;
  margin-right: 10px;
  width: auto;
}

.results-bar-filters-activity-types label:focus-within {
  background: #f2f3f5;
}

@media (min-width: 641px) and (max-width: 940px) {
  .results-bar-filters-actions {
    bottom: 3em;
    position: absolute;
  }
}

@media (min-width: 941px) {
  .results-bar-filters-actions {
    bottom: 3em;
    position: absolute;
  }
}

.results-bar-filters-message,
.results-bar-filters-no-options {
  display: none;
}

.results-bar-filters-cancel {
  margin-left: 10px;
}

.results-bar-overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  width: 100%;
  z-index: 1;
}

.results-bar-overlay.open {
  opacity: 1;
}

.search {
  background: #d14249;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500000;
}

.search[aria-hidden="true"] {
  display: none;
}

@media (min-height: 800px) {
  .search {
    background-image: url(../images/search-bg.png);
    background-position: top left;
    background-repeat: no-repeat;
  }
}

.search-logo {
  display: none;
  margin: 1.75em 0 0 1.75em;
}

.search-logo .icon {
  height: 88px;
  width: 88px;
}

@media (min-height: 800px) {
  .search-logo {
    display: block;
    margin: 80px 0 0 78px;
  }
}

.search-form {
  margin: 60px auto 0;
  max-width: 1110px;
  padding: 1.75em 1.75em 0 1.75em;
  position: relative;
}

@media (min-height: 800px) {
  .search-form {
    margin: 120px auto 0;
    padding: 3.5em 3.5em 0 3.5em;
  }
}

.search-keywords {
  background: none;
  border: none;
  border-bottom: 9px solid #c02f36;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
  font-size: 30px;
  outline: none;
  height: 90px;
  line-height: 90px;
  width: 100%;
}

.search-keywords:focus {
  background: none;
}

.search-keywords::-webkit-input-placeholder {
  color: white;
}

.search-keywords::-ms-clear {
  display: none;
}

@media (min-height: 800px) {
  .search-keywords {
    font-size: 60px;
    height: 160px;
    line-height: 160px;
  }
}

.search-submit {
  position: absolute;
  right: 1.75em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

@media (min-height: 800px) {
  .search-submit {
    right: 4em;
    bottom: 3.25em;
  }
}

.search-submit .icon-loading {
  display: none;
}

.search-submit.is-loading {
  opacity: 0.75;
}

.search-submit.is-loading .icon-loading {
  display: block;
}

.search-submit.is-loading .icon-search {
  display: none;
}

.search-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  float: right;
  margin-right: 0;
  position: absolute;
  top: 1.75em;
  right: 1.75em;
  width: auto;
  padding: 0;
}

@media (min-height: 800px) {
  .search-close {
    top: 3.5em;
    right: 3.5em;
  }
}

.search-no-results {
  height: 0;
  margin: 0 auto 0;
  max-width: 1110px;
  overflow: hidden;
  padding: 0 1.75em;
  position: relative;
  top: -46px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.search-no-results p {
  background: #c02f36;
  color: white;
  font-size: 14px;
  margin: 0;
  padding: 1.75em;
  text-align: center;
  width: 100%;
}

.search-no-results.show {
  height: 126px;
}

@media (min-height: 800px) {
  .search-no-results {
    padding: 0 3.5em 0 3.5em;
    top: -74px;
  }
  .search-no-results p {
    font-size: 16px;
  }
}

.search-results {
  list-style: none;
  margin: 0 auto 0;
  max-width: 1110px;
  padding: 0 1.75em 1.75em 1.75em;
  position: relative;
  top: -9px;
}

@media (min-height: 800px) {
  .search-results {
    padding: 0 3.5em 3.5em 3.5em;
  }
}

.search-results-item {
  height: 0;
  overflow: hidden;
  margin-bottom: 3px;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}

.search-results-item-open {
  height: 70px;
}

@media (min-height: 800px) {
  .search-results-item-open {
    height: 126px;
  }
}

.search-results-item-link {
  background: #c02f36;
  display: block;
  height: 100%;
  padding: 0.875em;
  position: absolute;
  width: 100%;
}

.search-results-item-link:hover, .search-results-item-link:focus {
  background: #b42c33;
}

.search-results-item-link:focus {
  outline: 5px;
}

@media (min-height: 800px) {
  .search-results-item-link {
    padding: 1.75em;
  }
}

.search-results-item-total {
  background: white;
  border-radius: 50%;
  color: #6a1a1e;
  float: left;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin-right: 0.875em;
  text-align: center;
  width: 40px;
}

@media (min-height: 800px) {
  .search-results-item-total {
    height: 70px;
    line-height: 70px;
    margin-right: 1.75em;
    width: 70px;
  }
}

.search-results-item-header {
  color: white;
  float: left;
  font-family: "bebas-neue", sans-serif;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  margin-top: 0;
  text-transform: uppercase;
}

@media (min-height: 800px) {
  .search-results-item-header {
    font-size: 31px;
    height: 70px;
    line-height: 70px;
  }
}

.search-results-item-label {
  display: none;
  color: #6a1a1e;
  float: right;
  height: 4.5em;
  line-height: 4.5em;
  margin-right: 1.75em;
}

.search-results-item-label:link, .search-results-item-label:visited {
  color: #6a1a1e;
}

@media (min-height: 800px) {
  .search-results-item-label {
    display: block;
  }
}

.secondary-logo {
  background: #457491;
  padding: 37px 10px 15px;
  position: fixed;
  right: 8em;
  top: -75px;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
  z-index: 1200;
}

.secondary-logo span {
  color: white;
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 23px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 1320px) {
  .secondary-logo {
    top: 0;
  }
}

@media print {
  .secondary-logo {
    display: none;
  }
}

@media (min-width: 941px) {
  .side-nav {
    margin-left: 40px;
    width: calc(100% - 40px);
  }
}

.side-nav-heading {
  background: #d14249;
  color: white;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  padding: 0.875em;
}

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

.side-nav-item {
  border-bottom: 1px solid #e4e7e9;
  padding: 0;
}

.side-nav-item:last-child {
  border-bottom: 0;
}

.side-nav-anchor {
  display: block;
  font-family: "bebas-neue", sans-serif;
  font-size: 18px;
  padding: 0.4375em 0;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.active .side-nav-anchor:link, .active .side-nav-anchor:visited {
  background: #e4e7e9;
  color: #171b1e;
}

.side-nav-anchor:link, .side-nav-anchor:visited {
  color: #706566;
}

.side-nav-anchor:hover, .side-nav-anchor:visited:hover {
  background: #f2f3f5;
  color: #171b1e;
}

@media (min-width: 641px) and (max-width: 940px) {
  .side-nav-anchor {
    padding: 0.4375em 0.875em;
  }
}

@media (min-width: 941px) {
  .side-nav-anchor {
    padding: 0.4375em 0.875em;
  }
}

.side-nav-stour .side-nav-anchor:hover {
  background: transparent;
  color: #d14249;
}

.side-nav-stour .parent .side-nav-anchor {
  font-size: 24px;
}

@media (min-width: 641px) and (max-width: 940px) {
  .side-nav-stour .parent .side-nav-anchor {
    padding: 0.4375em 0;
  }
}

@media (min-width: 941px) {
  .side-nav-stour .parent .side-nav-anchor {
    padding: 0.4375em 0;
  }
}

.side-nav-stour .active .side-nav-anchor {
  background: transparent;
  color: #706566;
}

.side-nav-stour .active > .side-nav-anchor {
  color: #a0272d;
}

.side-nav-stour .side-nav-list-nested {
  display: none;
  margin: -0.4375em 0 0.4375em 0.875em;
}

@media (min-width: 941px) {
  .side-nav-stour .side-nav-list-nested {
    margin-left: 1.75em;
  }
}

.side-nav-stour .side-nav-list-nested .side-nav-item {
  border-bottom: 0;
}

.side-nav-stour .side-nav-list-nested .side-nav-anchor {
  font-size: 14px;
  padding: 0;
}

@media (min-width: 641px) and (max-width: 940px) {
  .side-nav-stour .side-nav-list-nested .side-nav-anchor {
    padding: 0 0.875em;
  }
}

.side-nav-stour .side-nav-list-nested .side-nav-anchor:hover {
  color: #d14249;
}

.side-nav-stour .open .side-nav-list-nested {
  display: block;
}

.skip-link {
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  font-size: 1rem;
  display: block;
  padding: 10px 15px;
  position: absolute;
  text-decoration: underline;
  top: 0;
}

.skip-link:link, .skip-link:visited {
  color: black;
}

.skip-link:active, .skip-link:focus {
  width: 100%;
  height: auto;
  margin: inherit;
  overflow: visible;
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  white-space: inherit;
  z-index: 100001;
}

.skip-link:focus {
  outline: 3px solid #ffbf47;
  outline-offset: 0;
  background-color: #ffbf47;
}

.step-guide {
  margin-top: 0 !important;
  position: relative;
}

.step-guide-open .step-guide-list {
  display: block !important;
}

.step-guide-open .step-guide-toggle svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.step-guide-title {
  font-size: 31px;
}

.step-guide-toggle {
  position: absolute;
  right: 0;
  top: 0;
}

.step-guide-toggle .icon {
  height: 15px;
  width: 15px;
}

.step-guide-list {
  display: none;
  list-style: none;
  overflow: hidden;
  padding: 0;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
}

.step-guide-item {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: white;
  border: 1px solid #e4e7e9;
  margin-top: 0.875em;
  position: relative;
}

.step-guide-item:after {
  content: " ";
  display: block;
  clear: both;
}

.step-guide-item:first-child {
  margin-top: 0;
}

.step-guide-icon {
  border-right: 1px solid #e4e7e9;
  height: 100%;
  line-height: 75px;
  text-align: center;
  position: absolute;
  width: 75px;
}

.step-guide-icon .icon {
  height: 40px;
  margin-top: 18px;
  width: 40px;
}

.step-guide-content {
  margin: 0;
  padding: 0.875em 0.875em 0.875em 95px;
  width: 100%;
}

.step-guide-distance {
  font-family: "bebas-neue", sans-serif;
  font-size: 31px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-guide-description {
  font-size: 14px;
  line-height: 1.3;
}

.tags {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tags li {
  float: left;
}

.tag, .tags-new {
  background: #d14249;
  border-radius: 6px;
  border: none;
  color: white;
  display: inline-block;
  font-size: 14px;
  margin-right: 5px;
  padding: 0 0.58333333em 0;
}

.tag-remove {
  background: none;
  border: none;
  margin-left: 0.58333333em;
  padding: 0;
}

.tags-new {
  background: #718390;
  float: left;
  margin-top: 1px;
}

.tooltip {
  text-align: center;
  color: #fff;
  background: #111;
  position: absolute;
  z-index: 1000000;
  padding: 15px;
}

.tooltip:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #111;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
}

.tooltip.top:after {
  border-top-color: transparent;
  border-bottom: 10px solid #111;
  top: -20px;
  bottom: auto;
}

.tooltip.left:after {
  left: 10px;
  margin: 0;
}

.tooltip.right:after {
  right: 10px;
  left: auto;
  margin: 0;
}

body.vanilla-modal .modal-hider {
  position: absolute;
  left: -99999em;
}

.modal {
  display: none;
}

.vanilla-modal .modal {
  display: block;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  opacity: 0;
  font-size: 0;
  -webkit-transition: opacity 0.2s, z-index 0s 0.2s;
  transition: opacity 0.2s, z-index 0s 0.2s;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.vanilla-modal .modal > * {
  display: inline-block;
  white-space: normal;
  vertical-align: middle;
  text-align: left;
}

.vanilla-modal .modal:before {
  display: inline-block;
  overflow: hidden;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: "";
}

.vanilla-modal.modal-visible .modal {
  z-index: 9999999;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.modal-inner {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  max-height: 80%;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.2s, z-index 0s 0.2s, height 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, z-index 0s 0.2s, height 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, z-index 0s 0.2s, height 0.2s;
  transition: opacity 0.2s, transform 0.2s, z-index 0s 0.2s, height 0.2s, -webkit-transform 0.2s;
  font-size: 1rem;
  width: 80%;
  padding: 1.75em;
}

.modal-inner h1,
.modal-inner h2,
.modal-inner h3 {
  margin-top: 0;
}

.modal-visible .modal-inner {
  z-index: 100;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

a[rel="modal:close"] {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  line-height: 21px;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  padding: 7px;
}

.video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 35px;
  position: relative;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media print {
  .video {
    display: none;
  }
}
