@charset "UTF-8";
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  backface-visibility: hidden;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px;
}

.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none;
}

.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button::before,
.fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button[disabled]::before,
.fancybox-button[disabled]::after {
  opacity: 0.3;
}

.fancybox-button--left::after,
.fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
}

.fancybox-button--left::after {
  left: 20px;
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close::before, .fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  transform: rotate(-45deg);
}

/* Navigation arrows */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  user-select: none;
  transition: opacity 0.25s;
}

.fancybox-arrow::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px;
}

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

.fancybox-arrow--left {
  left: 0;
  transform: scaleX(-1);
}

.fancybox-arrow--right::after,
.fancybox-arrow--left::after {
  left: 0;
}

.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6;
}

.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: 0.3;
}

/* Loading indicator */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-infobar {
    left: 0;
    margin-left: 0;
  }
  .fancybox-button--left,
  .fancybox-button--right {
    display: none !important;
  }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}
/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before,
.fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent;
}

.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
}

.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
}

.fancybox-button--thumbs {
  display: none;
}

@media all and (min-width: 800px) {
  .fancybox-button--thumbs {
    display: inline-block;
  }
  .fancybox-button--thumbs span {
    font-size: 23px;
  }
  .fancybox-button--thumbs::before {
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995;
  }
  .fancybox-show-thumbs .fancybox-thumbs {
    display: block;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 220px;
  }
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
  }
  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    backface-visibility: hidden;
    box-sizing: border-box;
  }
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
  }
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    user-select: none;
  }
  .fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
  }
}
/**
 * Foundation for Sites
 * Version 6.6.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

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

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

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

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

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

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

[data-whatinput=mouse] button {
  outline: 0;
}
button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

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

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

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

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

.column.row.row, .row.row.columns {
  float: none;
}

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

.small-1 {
  width: 4.1666666667%;
}

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

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

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

.small-2 {
  width: 8.3333333333%;
}

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

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

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

.small-3 {
  width: 12.5%;
}

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

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

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

.small-4 {
  width: 16.6666666667%;
}

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

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

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

.small-5 {
  width: 20.8333333333%;
}

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

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

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

.small-6 {
  width: 25%;
}

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

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

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

.small-7 {
  width: 29.1666666667%;
}

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

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

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

.small-8 {
  width: 33.3333333333%;
}

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

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

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

.small-9 {
  width: 37.5%;
}

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

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

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

.small-10 {
  width: 41.6666666667%;
}

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

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

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

.small-11 {
  width: 45.8333333333%;
}

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

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

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

.small-12 {
  width: 50%;
}

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

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

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

.small-13 {
  width: 54.1666666667%;
}

.small-push-13 {
  position: relative;
  left: 54.1666666667%;
}

.small-pull-13 {
  position: relative;
  left: -54.1666666667%;
}

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

.small-14 {
  width: 58.3333333333%;
}

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

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

.small-offset-13 {
  margin-left: 54.1666666667%;
}

.small-15 {
  width: 62.5%;
}

.small-push-15 {
  position: relative;
  left: 62.5%;
}

.small-pull-15 {
  position: relative;
  left: -62.5%;
}

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

.small-16 {
  width: 66.6666666667%;
}

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

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

.small-offset-15 {
  margin-left: 62.5%;
}

.small-17 {
  width: 70.8333333333%;
}

.small-push-17 {
  position: relative;
  left: 70.8333333333%;
}

.small-pull-17 {
  position: relative;
  left: -70.8333333333%;
}

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

.small-18 {
  width: 75%;
}

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

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

.small-offset-17 {
  margin-left: 70.8333333333%;
}

.small-19 {
  width: 79.1666666667%;
}

.small-push-19 {
  position: relative;
  left: 79.1666666667%;
}

.small-pull-19 {
  position: relative;
  left: -79.1666666667%;
}

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

.small-20 {
  width: 83.3333333333%;
}

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

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

.small-offset-19 {
  margin-left: 79.1666666667%;
}

.small-21 {
  width: 87.5%;
}

.small-push-21 {
  position: relative;
  left: 87.5%;
}

.small-pull-21 {
  position: relative;
  left: -87.5%;
}

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

.small-22 {
  width: 91.6666666667%;
}

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

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

.small-offset-21 {
  margin-left: 87.5%;
}

.small-23 {
  width: 95.8333333333%;
}

.small-push-23 {
  position: relative;
  left: 95.8333333333%;
}

.small-pull-23 {
  position: relative;
  left: -95.8333333333%;
}

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

.small-24 {
  width: 100%;
}

.small-offset-23 {
  margin-left: 95.8333333333%;
}

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

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

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

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

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

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

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

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

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

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

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

.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}
.small-centered {
  margin-right: auto;
  margin-left: auto;
}

.small-uncentered, .small-uncentered:last-child:not(:first-child), .small-push-0, .small-push-0:last-child:not(:first-child), .small-pull-0, .small-pull-0:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.small-uncentered:last-child:not(:first-child), .small-push-0:last-child:not(:first-child), .small-pull-0:last-child:not(:first-child) {
  float: right;
}
.small-uncentered, .small-push-0, .small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 4.1666666667%;
  }
  .medium-push-1 {
    position: relative;
    left: 4.1666666667%;
  }
  .medium-pull-1 {
    position: relative;
    left: -4.1666666667%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 8.3333333333%;
  }
  .medium-push-2 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-2 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-1 {
    margin-left: 4.1666666667%;
  }
  .medium-3 {
    width: 12.5%;
  }
  .medium-push-3 {
    position: relative;
    left: 12.5%;
  }
  .medium-pull-3 {
    position: relative;
    left: -12.5%;
  }
  .medium-offset-2 {
    margin-left: 8.3333333333%;
  }
  .medium-4 {
    width: 16.6666666667%;
  }
  .medium-push-4 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-4 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-3 {
    margin-left: 12.5%;
  }
  .medium-5 {
    width: 20.8333333333%;
  }
  .medium-push-5 {
    position: relative;
    left: 20.8333333333%;
  }
  .medium-pull-5 {
    position: relative;
    left: -20.8333333333%;
  }
  .medium-offset-4 {
    margin-left: 16.6666666667%;
  }
  .medium-6 {
    width: 25%;
  }
  .medium-push-6 {
    position: relative;
    left: 25%;
  }
  .medium-pull-6 {
    position: relative;
    left: -25%;
  }
  .medium-offset-5 {
    margin-left: 20.8333333333%;
  }
  .medium-7 {
    width: 29.1666666667%;
  }
  .medium-push-7 {
    position: relative;
    left: 29.1666666667%;
  }
  .medium-pull-7 {
    position: relative;
    left: -29.1666666667%;
  }
  .medium-offset-6 {
    margin-left: 25%;
  }
  .medium-8 {
    width: 33.3333333333%;
  }
  .medium-push-8 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-8 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-7 {
    margin-left: 29.1666666667%;
  }
  .medium-9 {
    width: 37.5%;
  }
  .medium-push-9 {
    position: relative;
    left: 37.5%;
  }
  .medium-pull-9 {
    position: relative;
    left: -37.5%;
  }
  .medium-offset-8 {
    margin-left: 33.3333333333%;
  }
  .medium-10 {
    width: 41.6666666667%;
  }
  .medium-push-10 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-10 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-9 {
    margin-left: 37.5%;
  }
  .medium-11 {
    width: 45.8333333333%;
  }
  .medium-push-11 {
    position: relative;
    left: 45.8333333333%;
  }
  .medium-pull-11 {
    position: relative;
    left: -45.8333333333%;
  }
  .medium-offset-10 {
    margin-left: 41.6666666667%;
  }
  .medium-12 {
    width: 50%;
  }
  .medium-push-12 {
    position: relative;
    left: 50%;
  }
  .medium-pull-12 {
    position: relative;
    left: -50%;
  }
  .medium-offset-11 {
    margin-left: 45.8333333333%;
  }
  .medium-13 {
    width: 54.1666666667%;
  }
  .medium-push-13 {
    position: relative;
    left: 54.1666666667%;
  }
  .medium-pull-13 {
    position: relative;
    left: -54.1666666667%;
  }
  .medium-offset-12 {
    margin-left: 50%;
  }
  .medium-14 {
    width: 58.3333333333%;
  }
  .medium-push-14 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-14 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-13 {
    margin-left: 54.1666666667%;
  }
  .medium-15 {
    width: 62.5%;
  }
  .medium-push-15 {
    position: relative;
    left: 62.5%;
  }
  .medium-pull-15 {
    position: relative;
    left: -62.5%;
  }
  .medium-offset-14 {
    margin-left: 58.3333333333%;
  }
  .medium-16 {
    width: 66.6666666667%;
  }
  .medium-push-16 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-16 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-15 {
    margin-left: 62.5%;
  }
  .medium-17 {
    width: 70.8333333333%;
  }
  .medium-push-17 {
    position: relative;
    left: 70.8333333333%;
  }
  .medium-pull-17 {
    position: relative;
    left: -70.8333333333%;
  }
  .medium-offset-16 {
    margin-left: 66.6666666667%;
  }
  .medium-18 {
    width: 75%;
  }
  .medium-push-18 {
    position: relative;
    left: 75%;
  }
  .medium-pull-18 {
    position: relative;
    left: -75%;
  }
  .medium-offset-17 {
    margin-left: 70.8333333333%;
  }
  .medium-19 {
    width: 79.1666666667%;
  }
  .medium-push-19 {
    position: relative;
    left: 79.1666666667%;
  }
  .medium-pull-19 {
    position: relative;
    left: -79.1666666667%;
  }
  .medium-offset-18 {
    margin-left: 75%;
  }
  .medium-20 {
    width: 83.3333333333%;
  }
  .medium-push-20 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-20 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-19 {
    margin-left: 79.1666666667%;
  }
  .medium-21 {
    width: 87.5%;
  }
  .medium-push-21 {
    position: relative;
    left: 87.5%;
  }
  .medium-pull-21 {
    position: relative;
    left: -87.5%;
  }
  .medium-offset-20 {
    margin-left: 83.3333333333%;
  }
  .medium-22 {
    width: 91.6666666667%;
  }
  .medium-push-22 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-22 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-21 {
    margin-left: 87.5%;
  }
  .medium-23 {
    width: 95.8333333333%;
  }
  .medium-push-23 {
    position: relative;
    left: 95.8333333333%;
  }
  .medium-pull-23 {
    position: relative;
    left: -95.8333333333%;
  }
  .medium-offset-22 {
    margin-left: 91.6666666667%;
  }
  .medium-24 {
    width: 100%;
  }
  .medium-offset-23 {
    margin-left: 95.8333333333%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-uncentered, .medium-uncentered:last-child:not(:first-child), .medium-push-0, .medium-push-0:last-child:not(:first-child), .medium-pull-0, .medium-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .medium-uncentered:last-child:not(:first-child), .medium-push-0:last-child:not(:first-child), .medium-pull-0:last-child:not(:first-child) {
    float: right;
  }
  .medium-uncentered, .medium-push-0, .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 4.1666666667%;
  }
  .large-push-1 {
    position: relative;
    left: 4.1666666667%;
  }
  .large-pull-1 {
    position: relative;
    left: -4.1666666667%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 8.3333333333%;
  }
  .large-push-2 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-2 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-1 {
    margin-left: 4.1666666667%;
  }
  .large-3 {
    width: 12.5%;
  }
  .large-push-3 {
    position: relative;
    left: 12.5%;
  }
  .large-pull-3 {
    position: relative;
    left: -12.5%;
  }
  .large-offset-2 {
    margin-left: 8.3333333333%;
  }
  .large-4 {
    width: 16.6666666667%;
  }
  .large-push-4 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-4 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-3 {
    margin-left: 12.5%;
  }
  .large-5 {
    width: 20.8333333333%;
  }
  .large-push-5 {
    position: relative;
    left: 20.8333333333%;
  }
  .large-pull-5 {
    position: relative;
    left: -20.8333333333%;
  }
  .large-offset-4 {
    margin-left: 16.6666666667%;
  }
  .large-6 {
    width: 25%;
  }
  .large-push-6 {
    position: relative;
    left: 25%;
  }
  .large-pull-6 {
    position: relative;
    left: -25%;
  }
  .large-offset-5 {
    margin-left: 20.8333333333%;
  }
  .large-7 {
    width: 29.1666666667%;
  }
  .large-push-7 {
    position: relative;
    left: 29.1666666667%;
  }
  .large-pull-7 {
    position: relative;
    left: -29.1666666667%;
  }
  .large-offset-6 {
    margin-left: 25%;
  }
  .large-8 {
    width: 33.3333333333%;
  }
  .large-push-8 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-8 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-7 {
    margin-left: 29.1666666667%;
  }
  .large-9 {
    width: 37.5%;
  }
  .large-push-9 {
    position: relative;
    left: 37.5%;
  }
  .large-pull-9 {
    position: relative;
    left: -37.5%;
  }
  .large-offset-8 {
    margin-left: 33.3333333333%;
  }
  .large-10 {
    width: 41.6666666667%;
  }
  .large-push-10 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-10 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-9 {
    margin-left: 37.5%;
  }
  .large-11 {
    width: 45.8333333333%;
  }
  .large-push-11 {
    position: relative;
    left: 45.8333333333%;
  }
  .large-pull-11 {
    position: relative;
    left: -45.8333333333%;
  }
  .large-offset-10 {
    margin-left: 41.6666666667%;
  }
  .large-12 {
    width: 50%;
  }
  .large-push-12 {
    position: relative;
    left: 50%;
  }
  .large-pull-12 {
    position: relative;
    left: -50%;
  }
  .large-offset-11 {
    margin-left: 45.8333333333%;
  }
  .large-13 {
    width: 54.1666666667%;
  }
  .large-push-13 {
    position: relative;
    left: 54.1666666667%;
  }
  .large-pull-13 {
    position: relative;
    left: -54.1666666667%;
  }
  .large-offset-12 {
    margin-left: 50%;
  }
  .large-14 {
    width: 58.3333333333%;
  }
  .large-push-14 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-14 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-13 {
    margin-left: 54.1666666667%;
  }
  .large-15 {
    width: 62.5%;
  }
  .large-push-15 {
    position: relative;
    left: 62.5%;
  }
  .large-pull-15 {
    position: relative;
    left: -62.5%;
  }
  .large-offset-14 {
    margin-left: 58.3333333333%;
  }
  .large-16 {
    width: 66.6666666667%;
  }
  .large-push-16 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-16 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-15 {
    margin-left: 62.5%;
  }
  .large-17 {
    width: 70.8333333333%;
  }
  .large-push-17 {
    position: relative;
    left: 70.8333333333%;
  }
  .large-pull-17 {
    position: relative;
    left: -70.8333333333%;
  }
  .large-offset-16 {
    margin-left: 66.6666666667%;
  }
  .large-18 {
    width: 75%;
  }
  .large-push-18 {
    position: relative;
    left: 75%;
  }
  .large-pull-18 {
    position: relative;
    left: -75%;
  }
  .large-offset-17 {
    margin-left: 70.8333333333%;
  }
  .large-19 {
    width: 79.1666666667%;
  }
  .large-push-19 {
    position: relative;
    left: 79.1666666667%;
  }
  .large-pull-19 {
    position: relative;
    left: -79.1666666667%;
  }
  .large-offset-18 {
    margin-left: 75%;
  }
  .large-20 {
    width: 83.3333333333%;
  }
  .large-push-20 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-20 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-19 {
    margin-left: 79.1666666667%;
  }
  .large-21 {
    width: 87.5%;
  }
  .large-push-21 {
    position: relative;
    left: 87.5%;
  }
  .large-pull-21 {
    position: relative;
    left: -87.5%;
  }
  .large-offset-20 {
    margin-left: 83.3333333333%;
  }
  .large-22 {
    width: 91.6666666667%;
  }
  .large-push-22 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-22 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-21 {
    margin-left: 87.5%;
  }
  .large-23 {
    width: 95.8333333333%;
  }
  .large-push-23 {
    position: relative;
    left: 95.8333333333%;
  }
  .large-pull-23 {
    position: relative;
    left: -95.8333333333%;
  }
  .large-offset-22 {
    margin-left: 91.6666666667%;
  }
  .large-24 {
    width: 100%;
  }
  .large-offset-23 {
    margin-left: 95.8333333333%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-uncentered, .large-uncentered:last-child:not(:first-child), .large-push-0, .large-push-0:last-child:not(:first-child), .large-pull-0, .large-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .large-uncentered:last-child:not(:first-child), .large-push-0:last-child:not(:first-child), .large-pull-0:last-child:not(:first-child) {
    float: right;
  }
  .large-uncentered, .large-push-0, .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
}
.column-block {
  margin-bottom: 0;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 0;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

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

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

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cacaca;
}

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

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

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

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

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

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #8a8a8a;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button:hover, .button:focus {
  background-color: rgb(19.55, 102.85, 158.1);
  color: #fefefe;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(18.4, 96.8, 148.8);
  color: #fefefe;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #fefefe;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #0a0a0a;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fefefe;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #1779ba;
}
.button.clear:hover, .button.clear:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.accordion {
  margin-left: 0;
  background: transparent;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #D8D8D8;
  border-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  color: #CC0C3F;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #D8D8D8;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #fefefe;
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #D8D8D8;
  border-bottom: 0;
  background-color: transparent;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #D8D8D8;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

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

.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
  margin-right: 0;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: rgb(18.4, 96.8, 148.8);
  color: #fefefe;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #fefefe;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #0a0a0a;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: #0a0a0a;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fefefe;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #1779ba;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: rgb(11.5, 60.5, 93);
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
  margin-right: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

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

[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
.close-button:hover, .close-button:focus {
  color: #0a0a0a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

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

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

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  background: #fefefe;
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas {
  position: fixed;
  z-index: 12;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas {
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute {
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px);
}
@media print, screen and (min-width: 40em) {
  .position-left {
    width: 250px;
    transform: translateX(-250px);
  }
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-250px);
  }
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(250px);
  }
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px);
}
@media print, screen and (min-width: 40em) {
  .position-right {
    width: 250px;
    transform: translateX(250px);
  }
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(250px);
  }
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-250px);
  }
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px);
}
@media print, screen and (min-width: 40em) {
  .position-top {
    height: 250px;
    transform: translateY(-250px);
  }
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-top {
    transform: translateY(-250px);
  }
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-top.has-transition-push {
    transform: translateY(250px);
  }
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px);
}
@media print, screen and (min-width: 40em) {
  .position-bottom {
    height: 250px;
    transform: translateY(250px);
  }
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-bottom {
    transform: translateY(250px);
  }
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-bottom.has-transition-push {
    transform: translateY(-250px);
  }
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.orbit {
  position: relative;
}

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

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

.orbit-figure {
  margin: 0;
}

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

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

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

.orbit-previous {
  left: 0;
}

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

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

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

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

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

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

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

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

.sticky-container {
  position: relative;
}

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

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

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

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

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

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

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #CC0C3F;
  color: #fefefe;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

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

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

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

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

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar {
  flex-wrap: wrap;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

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

@font-face {
  font-family: Circe;
  src: url("../assets/fonts/Circe-ExtraLight.WOFF");
  font-weight: 100;
}
@font-face {
  font-family: Circe;
  src: url("../assets/fonts/Circe-Light.WOFF");
  font-weight: 300;
}
@font-face {
  font-family: Circe;
  src: url("../assets/fonts/Circe-Regular.WOFF");
  font-weight: 500;
}
@font-face {
  font-family: Circe;
  src: url("../assets/fonts/Circe-Bold.WOFF");
  font-weight: 700;
}
@font-face {
  font-family: Circe;
  src: url("../assets/fonts/Circe-ExtraBold.WOFF");
  font-weight: 900;
}
.txt {
  font-family: Circe;
  font-size: 16px;
  margin-bottom: 4px;
}

html {
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: "Circe", sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Circe", sans-serif;
}

h2 {
  color: #30373E;
  font-size: 36px;
  line-height: 56px;
}

h3 {
  color: #30373E;
  font-size: 30px;
  line-height: 50px;
}

h4 {
  color: #30373E;
  font-size: 24px;
  line-height: 44px;
}

.mt-36 {
  margin-top: 36px;
}

html .daterangepicker.dropdown-menu {
  z-index: 9000;
}

.daterangepicker:not(.show-calendar) {
  display: none;
}

.twoliner__top {
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: #4D5155;
  margin-bottom: 6px;
}
.twoliner__bottom {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: #9FA3A7;
}

blockquote {
  margin: 0 auto;
  padding: 20px 40px;
  border: none;
  max-width: 600px;
  background-image: url("../assets/svg/quote.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  color: #CC0C3F;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}
blockquote p {
  color: #CC0C3F;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}

a {
  color: #CC0C3F;
  text-decoration: none;
}
a:hover {
  color: #CC0C3F;
}

.gutter {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 1024px) {
  .gutter--large-down-reset {
    padding: initial;
    margin: auto;
  }
}

svg {
  height: 100%;
  width: 100%;
}

.imgToBg {
  display: none;
}

.bt-row {
  padding-left: 15px;
  padding-right: 15px;
}
.bt-row .columns,
.bt-row .column {
  margin-left: -15px;
  margin-right: -15px;
}

main {
  margin-top: 60px;
  margin-bottom: 60px;
}

div.table-responsive {
  margin-top: 36px;
}
div.table-responsive thead tr {
  background: #CC0C3F;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
div.table-responsive td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}
div.table-responsive table {
  border: 1px solid #eceeef;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  background-color: transparent;
  border-spacing: 2px;
}
div.table-responsive tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.breadcrumbs {
  margin: -10px 0 40px;
}
.breadcrumbs a {
  color: #30373E;
  margin: 6px;
}
.breadcrumbs a:hover {
  color: #CC0C3F;
  text-decoration: none;
}
.breadcrumbs .breadcrumb_last {
  margin-left: 6px;
  color: #CC0C3F;
}
.breadcrumbs--white span, .breadcrumbs--white a {
  color: rgba(235, 235, 235, 0.75);
}
.breadcrumbs--no-last .breadcrumb_last {
  display: none;
}
.breadcrumbs--m0-0-12 {
  margin: 0 0 12px;
}

.vd-gallery .columns:nth-child(odd) {
  padding: 0 12px 12px 0;
}
.vd-gallery .columns:nth-child(even) {
  padding: 0 0 12px 12px;
}

.main--content__title {
  font-family: "Circe";
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  color: #30373e;
}

.content--404 {
  text-align: center;
  color: #30373E;
}

.content--404__image {
  margin-top: 25px;
  max-width: 344px;
  height: auto;
}

.row {
  padding-left: 24px;
  padding-right: 24px;
}
.row .row {
  padding-right: 0;
  padding-left: 0;
}
.row--full {
  max-width: 100%;
}
.row--w900 {
  max-width: 900px;
}
.row--p72-24 {
  padding: 72px 24px;
}
.row--mb12 {
  margin-bottom: 12px;
}
.row--mb24 {
  margin-bottom: 24px;
}
.row--mb36 {
  margin-bottom: 36px;
}
.row--mb48 {
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .column.smaller-than-large-center, .smaller-than-large-center.columns {
    text-align: center;
  }
}
.column--pr120 {
  padding-right: 120px;
}
@media (min-width: 1024px) {
  .column--large-pr120 {
    padding-right: 120px;
  }
}
@media (max-width: 1024px) {
  .column--medium-mb48 {
    margin-bottom: 48px;
  }
}
.column--mb12 {
  margin-bottom: 12px;
}
.column--mb24 {
  margin-bottom: 24px;
}
.column--gutter {
  width: calc(50% - 12px);
}
.column--gutter2x {
  width: calc(50% - 24px);
}
@media (min-width: 640px) {
  .column--medium--pr12 {
    padding-right: 12px;
  }
}
.column--pr30 {
  padding-right: 30px;
}
@media (min-width: 1024px) {
  .column--large-pr30 {
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  .column--large-pr12 {
    padding-right: 12px;
  }
}
@media (min-width: 1024px) {
  .column--large-pl12 {
    padding-left: 12px;
  }
}

.m--mb12 {
  margin-bottom: 12px;
}
.m--mb48 {
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .medium-12-gutter:nth-child(odd) {
    padding-left: 12px;
  }
  .medium-12-gutter:nth-child(even) {
    padding-right: 12px;
  }
}

.page__content {
  padding: 72px 0;
  font-size: 18px;
  line-height: 1.4;
}
.page__content .content--df {
  display: flex;
  align-items: center;
}
.page__content .content--sb {
  display: flex;
  justify-content: space-between;
}
.page__content .content--sb.row:before, .page__content .content--sb.row:after {
  content: none;
}
.page__content .content__heading {
  margin-bottom: 36px;
}
.page__content .content__heading--mb0 {
  margin-bottom: 0;
}
.page__content .content__heading--center {
  text-align: center;
}

.content__list {
  list-style: none;
  margin-left: 26px;
}
.content__list li {
  position: relative;
}
.content__list li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -16px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #4D5155;
}
.content__list li > ul li:before {
  background: transparent;
  border: 1px solid #4D5155;
}
.content__list li a {
  color: #CC0C3F;
  transition: all 0.2s;
}
.content__list li a:hover {
  color: #CC0C3F;
  text-decoration: underline;
}

.heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading-wrap > * {
  margin-bottom: 0;
}
.heading-wrap--mb40 {
  margin-bottom: 40px;
}

.heading-sub {
  font-size: 14px;
  color: #9FA3A7;
  margin-top: 6px;
}

.js-underlay[data-underlay=actual] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 40, 49, 0.6);
}

.pricing .hero {
  padding: 192px 0 96px;
}

.hero {
  position: relative;
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
}
.hero--single .post__details {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.hero--single .post__details--read-time:before {
  content: "•";
  margin: 10px;
}
.hero--single .post__author {
  margin-top: 20px;
  color: #EBEBEB;
  text-align: center;
}
.hero--single .post__author img {
  width: 50px;
  border-radius: 50%;
}
.hero--short {
  padding: 144px 0 108px;
}
.hero--tall {
  padding: 180px 0 168px;
}
@media (max-width: 1024px) {
  .hero--tall {
    padding: 120px 0 60px;
  }
}
.hero__overlay, .hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}
.hero__overlay--z-index-0 {
  z-index: 0;
}
.hero > .row {
  position: relative;
  z-index: 2;
}
.hero__heading, .hero h1 {
  font-size: 64px;
  line-height: 70px;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .hero__heading, .hero h1 {
    font-size: 48px;
    line-height: 54px;
  }
}
@media (max-width: 640px) {
  .hero__heading, .hero h1 {
    font-size: 42px;
    line-height: 48px;
  }
}
.hero__heading--center, .hero h1--center {
  text-align: center;
}
.hero__heading--mb48, .hero h1--mb48 {
  margin-bottom: 48px;
}
.hero__heading--mb30, .hero h1--mb30 {
  margin-bottom: 30px !important;
}
.hero p.intro {
  color: #FFFFFF;
  margin-bottom: 48px;
}
.hero__features {
  padding-right: 60px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .hero__features {
    margin-top: 30px;
    padding-right: 0;
  }
}
.hero__features > .btn, .message-content-actions .hero__features.btn-group > a, .fep-form .hero__features > .fep-button, #fep-menu .hero__features > .fep-button,
#fep-menu .hero__features > .fep-button-active {
  margin-bottom: 0;
}
.hero__features .feature {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
.hero__features .feature__item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.hero__features .feature__logo {
  margin-right: 18px;
}
.hero__features .feature__logo > img {
  width: 60px;
  height: auto;
}
.hero__features .feature__text {
  max-width: 480px;
}
.hero__features .feature__text .text {
  font-size: 15px;
  color: rgba(235, 235, 235, 0.75);
}
@media (max-width: 1024px) {
  .hero__features .feature__text .text {
    color: #FFFFFF;
  }
}
.hero__features .feature__text .text--big {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
}

.dot {
  display: inline-block;
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #9FA3A7;
  margin: 3px 6px;
}
.dot--large {
  height: 14px;
  width: 14px;
  margin: 3px 12px 3px 0;
}

.page-training_page .schedule {
  display: inline-block;
  float: right;
}

.schedule {
  margin-top: -50px;
}
@media (max-width: 1200px) {
  .schedule {
    margin-top: 0;
  }
}
.schedule--mt24 {
  margin-top: 24px;
}
.schedule > .btn, .message-content-actions .schedule.btn-group > a, .fep-form .schedule > .fep-button, #fep-menu .schedule > .fep-button,
#fep-menu .schedule > .fep-button-active {
  float: right;
  margin-bottom: 0;
}
.schedule__heading {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.schedule__wrap {
  position: relative;
  margin: 0 48px 48px 4px;
}
.schedule__wrap .line {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 3px;
}
.schedule__wrap .line__top {
  height: 50%;
  background: #FFFFFF;
}
.schedule__wrap .line__bottom {
  height: 50%;
  background: #FFFFFF;
}
.schedule__wrap .list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}
.schedule__wrap .list--opacity .list__item {
  cursor: pointer;
  transition: all 0.2s;
}
.schedule__wrap .list--opacity .list__item:hover.list__img, .schedule__wrap .list--opacity .list__item:hover.list__text, .schedule__wrap .list--opacity .list__item:hover.list__time, .schedule__wrap .list--opacity .list__item.active.list__img, .schedule__wrap .list--opacity .list__item.active.list__text, .schedule__wrap .list--opacity .list__item.active.list__time {
  opacity: 1;
}
.schedule__wrap .list--opacity .list__item.list__img, .schedule__wrap .list--opacity .list__item.list__text, .schedule__wrap .list--opacity .list__item.list__time {
  opacity: 0.5;
}
.schedule__wrap .list__item {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.schedule__wrap .list__item:hover .list__dot, .schedule__wrap .list__item.active .list__dot {
  background: #CC0C3F;
}
.schedule__wrap .list__item:hover .list__dot:before, .schedule__wrap .list__item.active .list__dot:before {
  height: 18px;
  width: 18px;
  background: #CC0C3F;
  opacity: 0.3;
}
.schedule__wrap .list__item:hover .list__dot:after, .schedule__wrap .list__item.active .list__dot:after {
  height: 4px;
  width: 4px;
  background: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__dot--blue, .schedule__wrap .list__item:hover .list__dot--blue:before, .schedule__wrap .list__item.active .list__dot--blue, .schedule__wrap .list__item.active .list__dot--blue:before {
  background: #0090D6;
}
.schedule__wrap .list__item:hover .list__time, .schedule__wrap .list__item.active .list__time {
  background: #CC0C3F;
  border-color: #CC0C3F;
  color: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__time--blue, .schedule__wrap .list__item.active .list__time--blue {
  background: #0090D6;
  border-color: #0090D6;
}
.schedule__wrap .list__item:hover .list__text, .schedule__wrap .list__item.active .list__text {
  border-color: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__text .text, .schedule__wrap .list__item.active .list__text .text {
  color: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__text .text--trainer, .schedule__wrap .list__item.active .list__text .text--trainer {
  color: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__text .text--small, .schedule__wrap .list__item.active .list__text .text--small {
  color: #FFFFFF;
}
.schedule__wrap .list__item:hover .list__text i, .schedule__wrap .list__item.active .list__text i {
  opacity: 1;
}
.schedule__wrap .list__dot {
  flex: 0 0 auto;
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #9FA3A7;
  margin: 0 18px 0 -4px;
}
.schedule__wrap .list__dot:before, .schedule__wrap .list__dot:after {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  height: 0;
  width: 0;
  transition: all 0.2s;
}
.schedule__wrap .list__time {
  flex: 0 0 auto;
  width: 58px;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  margin-right: 24px;
  transition: all 0.2s;
}
.schedule__wrap .list__img {
  height: 52px;
  width: 52px;
  border: 2px solid #EBEBEB;
  border-radius: 50%;
  margin-right: 12px;
}
.schedule__wrap .list__text {
  position: relative;
  max-width: 236px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 60px 8px 12px;
  transition: all 0.2s;
}
.schedule__wrap .list__text--no-border {
  border: none;
}
.schedule__wrap .list__text .text {
  font-size: 18px;
  line-height: 1;
  color: #EBEBEB;
  margin-bottom: 4px;
  transition: inherit;
}
.schedule__wrap .list__text .text--trainer {
  font-size: 10px;
  text-decoration: underline;
  transition: inherit;
  color: rgba(235, 235, 235, 0.75);
}
.schedule__wrap .list__text .text--small {
  font-size: 14px;
  color: rgba(235, 235, 235, 0.75);
  margin-top: 6px;
}
.schedule__wrap .list__text i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #FFFFFF;
  opacity: 0;
  transition: all 0.2s;
}

.date {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
}
.date--circle .date__day {
  height: 30px;
  width: 30px;
  border: 1px solid #4D5155;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  transition: all 0.2s;
}
.date--circle .date__month {
  font-size: 14px;
  color: #30373E;
  margin-left: 12px;
}
.date--circle.date--large .date__day {
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.date--circle.date--large .date__month {
  font-size: 18px;
}
.date--circle.date--white .date__day {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.date--circle.date--white .date__month {
  color: rgba(235, 235, 235, 0.75);
}
.date--circle.active .date__day {
  color: #CC0C3F;
  border-color: #CC0C3F;
}
.date--p24-0 {
  padding: 24px 0;
}

.time {
  display: inline-block;
  width: 52px;
  border: 1px solid #9FA3A7;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: #9FA3A7;
  padding: 4px 6px;
}
.time--w-auto {
  width: auto;
}
.time--90deg {
  transform: rotate(-90deg) translate3d(0, 0, 0);
  margin-top: 36px;
}
.time--highlight {
  border-color: #CC0C3F;
  color: #CC0C3F;
}
.time--no-border {
  border: none;
}
.time--bold {
  font-weight: 600;
  color: #4D5155;
}
.time--mt12 {
  margin-top: 12px;
}

.back {
  color: #9FA3A7;
  transition: all 0.2s;
}
.back > i {
  color: inherit;
  transition: inherit;
}
.back:hover {
  color: #CC0C3F;
}
.back--large {
  font-size: 34px;
}
.back--mr12 {
  margin-right: 12px;
}

.tab__heading {
  font-size: 36px;
  color: #30373E;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .tab__heading {
    font-size: 30px;
  }
}
.tab__heading-line {
  display: inline-block;
  height: 3px;
  width: 100px;
  background: #CC0C3F;
  margin-bottom: 36px;
}
.tab__heading-line--white {
  background: #FFFFFF;
}
.tab__content p {
  font-size: 16px;
  line-height: 1.5;
  color: #4D5155;
}
.tab__content p:not(:last-child) {
  margin-bottom: 24px;
}
.tab__content p b {
  text-transform: uppercase;
  font-size: 14px;
}
.tab__content p a {
  color: #CC0C3F;
}

.subpage__link {
  position: relative;
  background: #000000;
  border-radius: 6px;
  overflow: hidden;
  padding: 12px;
  margin: 6px;
}
.subpage__link .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}

.subpage__link--title {
  display: table-cell;
  vertical-align: bottom;
  height: 136px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.img-responsive {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.form-success__title {
  color: #FFFFFF;
  font-size: 36px;
  line-height: 53px;
  text-align: center;
}

.form-success__text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 29px;
  text-align: center;
}

[data-columns]::before {
  content: "2 .column.size-1of2";
  visibility: hidden;
}

[data-columns="3"]::before {
  content: "3 .column.size-1of3";
  visibility: hidden;
}

[data-columns="5"]::before {
  content: "5 .column.size-1of5";
  visibility: hidden;
}

@media screen and (max-width: 480px) {
  [data-columns]::before {
    content: "1 .column.size-1of1";
  }
}
/* Again, you’re free to use and define the classes: */
.salvattore.column, .salvattore.columns {
  float: left;
}

.size-1of1 {
  width: 100%;
}

.size-1of2 {
  width: 50%;
}
@media (max-width: 1024px) {
  .size-1of2 {
    width: 100%;
  }
}

.size-1of3 {
  width: 33.333%;
}

.size-1of5 {
  width: 20%;
}
@media (max-width: 1024px) {
  .size-1of5 {
    width: 50%;
  }
}

html .m-text--s-bold {
  font-weight: 800;
}
html .m-text--bold {
  font-weight: 600;
}
html .m-text--regular {
  font-weight: 400;
}
html .m-text--white {
  color: #FFFFFF;
}
html .m-text--s-48-i {
  font-size: 48px !important;
}
html .m-text--s-48 {
  font-size: 48px;
}
html .m-text--s-20 {
  font-size: 20px;
}
html .m-text--line-left {
  position: relative;
  padding-left: 80px;
}
html .m-text--line-left:before {
  content: "";
  width: 40px;
  height: 2px;
  background: #CC0C3F;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
html .g--w900 {
  max-width: 900px;
}
html .g--p72-24 {
  padding: 72px 24px;
}
html .g--p8-24 {
  padding: 8px 24px;
}
html .g--pl16 {
  padding-left: 16px;
}
html .g--pb0 {
  padding-bottom: 0;
}
html .g--m-0 {
  margin: 0;
}
html .g--mb12 {
  margin-bottom: 12px;
}
html .g--mb24 {
  margin-bottom: 24px;
}
html .g--mb36 {
  margin-bottom: 36px;
}
html .g--mb48 {
  margin-bottom: 48px;
}
html .g--mb72 {
  margin-bottom: 72px;
}
html .g--inline-block {
  display: inline-block;
}
html .g--color-white {
  color: #FFFFFF;
}

.page__content--campaign p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nf-error > span {
  color: red;
}

.two-col {
  display: flex;
  justify-content: space-around;
}
.two-col p:first-of-type {
  margin-right: 7px;
}
.two-col p:last-of-type {
  margin-left: 7px;
}

.promotion__heading {
  color: #222222;
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
}

.promotion__text {
  color: #222222;
  margin-bottom: 18px;
  font-size: 16px;
  float: left;
}

.promotion__text--large {
  color: #000000;
  font-size: 30px;
  font-weight: 500;
}

.hero__features .feature__text .text--big {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.woocommerce-checkout .nf-form-cont .nf-field-description {
  margin-bottom: 12px;
}

.page-template-joining footer section.cta, .page-template-joining footer section.instagram {
  display: none;
}

.promotion__heading {
  color: #222222;
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
}

.promotion__heading--mb24 {
  margin-bottom: 24px;
}

body.ru .promotion__heading {
  line-height: 100%;
}

.promotion_wrapper {
  position: relative;
}

.open_promotion {
  float: left;
  cursor: pointer;
}

.open_promotion img {
  float: left;
  margin: 0 27px 0 0;
}

.open_promotion p {
  font-size: 20px;
  color: #fff;
  line-height: 100%;
  margin: 13px 0 8px 0;
  float: left;
  font-weight: 500;
}

body.ru .open_promotion p {
  width: 240px;
}

.open_promotion span {
  font-size: 14px;
  color: #CC0C3F;
  border-bottom: 1.3px solid transparent;
  transition: ease 0.3s all;
  background: #fff;
  line-height: 100%;
  border-radius: 5px;
  padding: 7px 17px 5px 17px;
  float: left;
}

.open_promotion:hover span {
  background-color: #CC0C3F;
  color: #fff;
}

.page-template-joining .promotion {
  position: absolute;
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  float: left;
  padding: 43px 15px 20px 43px;
  top: -43px;
  left: -43px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: ease 0.3s all;
}

.page-template-joining .promotion.active {
  opacity: 1;
  pointer-events: auto;
}

.promotion_close {
  position: absolute;
  right: 22px;
  top: 22px;
  float: left;
  width: 18px;
  height: 18px;
  background-image: url("../assets/svg/close_x.svg");
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.page-template-joining .promotion > img {
  float: left;
}

.promotion_information {
  float: left;
  width: 73%;
  margin: 0 0 0 24px;
}

.promotion_information .btn, .promotion_information .message-content-actions .btn-group > a, .message-content-actions .promotion_information .btn-group > a, .promotion_information .fep-form .fep-button, .fep-form .promotion_information .fep-button, .promotion_information #fep-menu .fep-button, #fep-menu .promotion_information .fep-button,
.promotion_information #fep-menu .fep-button-active,
#fep-menu .promotion_information .fep-button-active {
  background: #cc0c3f;
  min-width: auto;
  transition: ease 0.3s all;
  font-size: 16px;
  text-transform: uppercase;
  width: 100px;
  height: 36px;
  padding: 4px 0;
  float: left;
  font-weight: 600;
  margin: 4px 0 0 40px;
}

.promotion_information .btn:hover, .promotion_information .message-content-actions .btn-group > a:hover, .message-content-actions .promotion_information .btn-group > a:hover, .promotion_information .fep-form .fep-button:hover, .fep-form .promotion_information .fep-button:hover, .promotion_information #fep-menu .fep-button:hover, #fep-menu .promotion_information .fep-button:hover,
.promotion_information #fep-menu .fep-button-active:hover,
#fep-menu .promotion_information .fep-button-active:hover {
  color: #fff;
  background: #840023;
}

.promotion_information .btn::after, .promotion_information .message-content-actions .btn-group > a::after, .message-content-actions .promotion_information .btn-group > a::after, .promotion_information .fep-form .fep-button::after, .fep-form .promotion_information .fep-button::after, .promotion_information #fep-menu .fep-button::after, #fep-menu .promotion_information .fep-button::after,
.promotion_information #fep-menu .fep-button-active::after,
#fep-menu .promotion_information .fep-button-active::after {
  display: none;
}

#featured_block {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(239, 239, 242, 0.5) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(208, 211, 219, 0.5) 100%);
}

#featured_block .hero__features .feature {
  display: flex;
  justify-content: space-between;
}

#featured_block .hero__features .feature li {
  margin-top: -30px;
  display: block;
  margin-bottom: 0;
}

#featured_block .hero__features {
  padding-right: 0;
  margin-top: 0;
}

#featured_block .hero__features .feature__logo > img {
  max-width: 60px;
  position: relative;
  float: left;
  z-index: 2;
}

#featured_block .hero__features .feature .feature__logo {
  float: left;
  width: 100%;
}

#featured_block .hero__features .feature .feature__text {
  float: left;
  max-width: 280px;
  width: 100%;
  margin: 15px 0 0 0;
}

#featured_block .hero__features .feature .feature__text .text {
  color: #000;
}

.prices_and_joining_submenu {
  float: left;
  width: 100%;
  position: relative;
  transition: ease 0.3s all;
  top: 0;
  box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 13px 0 0 0;
}

.prices_and_joining_submenu.sticky_menu {
  position: fixed;
  top: 0;
  z-index: 20;
  padding: 0 0 0 0;
}

.prices_and_joining_submenu.sticky_menu ul.sub-menu li {
  height: 80px;
}

.prices_and_joining_submenu ul.sub-menu {
  display: flex;
  justify-content: space-between;
}

.prices_and_joining_submenu ul.sub-menu li {
  width: 125px;
  position: relative;
  height: 99px;
  transition: ease 0.3s all;
  text-align: center;
  cursor: pointer;
}

.prices_and_joining_submenu ul.sub-menu li:hover, .prices_and_joining_submenu ul.sub-menu li.active {
  background: #fff;
  color: #222222;
}

.prices_and_joining_submenu ul.sub-menu li span {
  float: left;
  width: 100%;
  margin: 3px 0 0 0;
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  padding-bottom: 9px;
}

section#main__content {
  float: left;
  width: 100%;
  position: relative;
  margin: 50px 0 0 0;
}

section#main__content.ptop {
  margin-top: 162px;
}

.prices_and_joining_main_content_sections {
  float: left;
  width: 100%;
  position: relative;
}

.mcs_title_wrapper {
  background: #EBEBEB;
}

.mcs_title_wrapper h3 {
  color: #000000;
  font-size: 30px;
  padding: 14px 0 8px 30px;
}

.mcs_products {
  float: left;
  margin: 0 0 0 0;
  width: 100%;
}

.product_items {
  float: left;
  width: 100%;
}

.product_items .product {
  border-bottom: 2px solid #EBEBEB;
  float: left;
  width: 100%;
  padding: 21px 0 28px 0;
  position: relative;
}

.product_items .product:last-child {
  border-bottom: 0;
}

.product_items .product_side {
  position: relative;
}

.product_side[data-side=left] {
  float: left;
  margin-left: 30px;
  width: 60%;
}

.mcs_products h4 {
  font-size: 22px;
  color: #cc0c3f;
  margin: 0 0 0 0;
}

.product_terms {
  float: left;
  clear: left;
}

.product_terms span {
  color: #777777;
  font-size: 14px;
}

.trigger_read_more {
  float: left;
  clear: left;
  margin: 9px 0 0 0;
}

.trigger_read_more.hidden {
  display: none;
}

.trigger_read_more span {
  color: #CC0C3F;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  float: left;
  clear: left;
  position: relative;
}

.trigger_read_more span::after {
  content: "";
  transition: ease 0.15s all;
  background-image: url("../assets/svg/arrow-red.svg");
  position: absolute;
  top: 0;
  right: -19px;
  bottom: 2px;
  width: 12px;
  height: 6px;
  background-position: 50%;
  background-repeat: no-repeat;
  margin: auto;
}

.trigger_read_more span:hover::after {
  bottom: -1.5px;
}

.product_read_more .trigger_read_more span::after {
  transform: rotate(180deg);
  bottom: 2px;
}

.product_read_more .trigger_read_more span:hover::after {
  bottom: 5px;
}

.product_read_more {
  float: left;
  clear: left;
  margin: 13px 0 0 0;
}

.product_read_more.hidden {
  display: none;
}

.product_read_more > span {
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  float: left;
  clear: left;
}

.product_side[data-side=right] {
  transition: ease 0.3s all;
  float: right;
  position: absolutE;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  width: 250px;
}

.product_price_section {
  float: left;
  width: 100%;
}

.product_price_section .price {
  color: #000000;
  font-size: 30px;
  text-align: right;
  font-weight: 500;
  line-height: 100%;
  position: relative;
  top: 4px;
  width: 43%;
  margin-right: 20px;
  float: left;
  cursor: default;
  pointer-events: none;
}

.product_price_section a.btn, .product_price_section .message-content-actions .btn-group > a, .message-content-actions .product_price_section .btn-group > a, .product_price_section .fep-form a.fep-button, .fep-form .product_price_section a.fep-button, .product_price_section #fep-menu a.fep-button, #fep-menu .product_price_section a.fep-button,
.product_price_section #fep-menu a.fep-button-active,
#fep-menu .product_price_section a.fep-button-active {
  font-size: 16px;
  transition: ease 0.3s all;
  width: 100px;
  height: 36px;
  padding-top: 5px;
  text-transform: uppercase;
  font-weight: 500;
  float: right;
  margin-right: 18px;
}

.product_price_section a.btn:hover, .product_price_section .message-content-actions .btn-group > a:hover, .message-content-actions .product_price_section .btn-group > a:hover, .product_price_section .fep-form a.fep-button:hover, .fep-form .product_price_section a.fep-button:hover, .product_price_section #fep-menu a.fep-button:hover, #fep-menu .product_price_section a.fep-button:hover,
.product_price_section #fep-menu a.fep-button-active:hover,
#fep-menu .product_price_section a.fep-button-active:hover {
  background-color: #840023;
}

.product_price_section button.btn.default-text-nobtn, .product_price_section .fep-form button.default-text-nobtn.fep-button, .fep-form .product_price_section button.default-text-nobtn.fep-button, .product_price_section #fep-menu button.default-text-nobtn.fep-button, #fep-menu .product_price_section button.default-text-nobtn.fep-button,
.product_price_section #fep-menu button.default-text-nobtn.fep-button-active,
#fep-menu .product_price_section button.default-text-nobtn.fep-button-active {
  color: #777777;
  background: transparent;
  width: 115px;
  text-align: left;
  height: auto;
  line-height: 180%;
  float: right;
  position: relative;
  cursor: default;
  bottom: 8px;
  margin-right: 5px;
}

body.en .product_price_section button.btn.default-text-nobtn, body.en .product_price_section .fep-form button.default-text-nobtn.fep-button, .fep-form body.en .product_price_section button.default-text-nobtn.fep-button, body.en .product_price_section #fep-menu button.default-text-nobtn.fep-button, #fep-menu body.en .product_price_section button.default-text-nobtn.fep-button,
body.en .product_price_section #fep-menu button.default-text-nobtn.fep-button-active,
#fep-menu body.en .product_price_section button.default-text-nobtn.fep-button-active {
  margin-top: 12px;
}

.woocommerce-cart-form input.btn[name=update_cart], .woocommerce-cart-form .fep-form input[name=update_cart].fep-button, .fep-form .woocommerce-cart-form input[name=update_cart].fep-button, .woocommerce-cart-form #fep-menu input[name=update_cart].fep-button, #fep-menu .woocommerce-cart-form input[name=update_cart].fep-button,
.woocommerce-cart-form #fep-menu input[name=update_cart].fep-button-active,
#fep-menu .woocommerce-cart-form input[name=update_cart].fep-button-active {
  width: 153px;
  float: right;
  height: auto;
  padding: 10px 0;
}

.woocommerce-cart-form .btn--txt-small[data-show-coupon] {
  margin: 7px 0 0 0;
}

#head_coach_recommends {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 25px 50px 0 50px;
  margin: 0 0 60px 0;
}

#head_coach_recommends h3 {
  color: #cc0c3f;
}

.recommended_items {
  display: flex;
  flex-wrap: wrap;
}

.recommended_item {
  position: relative;
  float: left;
  width: 33%;
  margin-bottom: 25px;
  padding-right: 2%;
}

.recommended_items .recommended_item p {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0 0 0 0;
}

.recommended_items .recommended_item a {
  font-size: 14px;
  border: 1px solid #cc0c3f;
  transition: ease 0.3s all;
  border-radius: 4px;
  float: left;
  line-height: 100%;
  padding: 7px 14px;
  font-weight: 400;
  margin: 3px 0 0 0;
}

.recommended_items .recommended_item a:hover {
  background-color: #cc0c3f;
  color: #fff;
}

.recommended_items .recommended_item > span {
  color: #cc0c3f;
  font-weight: 600;
  float: left;
  margin: 7px 0 0 19px;
}

@media (max-width: 1140px) {
  .promotion__heading--mb24 {
    line-height: 113%;
  }
}
@media (max-width: 1024px) {
  .recommended_item {
    width: 50%;
  }
  .promotion {
    top: 0;
    left: 0;
  }
  .open_promotion {
    width: 380px;
  }
  #featured_block .hero__features .feature li {
    padding: 0 25px;
  }
  .prices_and_joining_submenu ul.sub-menu {
    padding: 0 0 0 0;
  }
  .prices_and_joining_submenu ul.sub-menu li {
    width: 25%;
    height: 60px;
  }
  .prices_and_joining_submenu ul.sub-menu {
    flex-wrap: wrap;
  }
  .prices_and_joining_submenu {
    padding: 0 0 0 0;
  }
  .prices_and_joining_submenu.sticky_menu ul.sub-menu li {
    height: 60px;
  }
  .prices_and_joining_submenu.sticky_menu {
    position: relative;
  }
  section#main__content.ptop {
    margin-top: 50px;
  }
  .prices_and_joining_submenu ul.sub-menu li.active {
    background-color: transparent;
    color: #fff;
  }
}
@media (max-width: 880px) {
  .prices_and_joining_submenu ul.sub-menu li {
    width: 33.3%;
  }
  .prices_and_joining_submenu ul.sub-menu {
    justify-content: flex-start;
  }
}
@media (max-width: 720px) {
  .recommended_item {
    width: 100%;
    padding-right: 0;
  }
  #head_coach_recommends {
    padding: 25px 5% 0 5%;
  }
  #featured_block .hero__features .feature {
    display: block;
  }
  #featured_block .hero__features .feature li {
    float: left;
    width: 100%;
    position: relative;
    margin: 0 0 50px 0;
  }
  .product_side[data-side=left] {
    width: calc(100% - 30px);
  }
  .product_side[data-side=right] {
    position: relative;
    float: left;
    transform: translate(0);
    width: 100%;
    top: 0;
    margin: 20px 0 0 0;
  }
  .product_price_section .price {
    float: left;
    margin-left: 30px;
    width: auto;
  }
  .mcs_products h4 {
    line-height: 130%;
    margin-bottom: 11px;
  }
  .product_items .product {
    padding: 21px 0 10px 0;
  }
  .mcs_title_wrapper h3 {
    font-size: 20px;
    padding: 8px 0 4px 30px;
  }
  .prices_and_joining_main_content_sections {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 650px) {
  .prices_and_joining_submenu ul.sub-menu li {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .promotion_information {
    width: 98%;
    margin: 0 0 0 0;
  }
  .prices_and_joining_submenu ul.sub-menu li {
    width: 100%;
  }
  .open_promotion p {
    clear: left;
  }
  .open_promotion span {
    clear: left;
  }
  .product_side[data-side=left] {
    width: 100%;
    margin: 0 0 0 0;
  }
  .product_price_section .price {
    margin-left: 0;
    font-size: 24px;
  }
  .product_price_section a.btn, .product_price_section .message-content-actions .btn-group > a, .message-content-actions .product_price_section .btn-group > a, .product_price_section .fep-form a.fep-button, .fep-form .product_price_section a.fep-button, .product_price_section #fep-menu a.fep-button, #fep-menu .product_price_section a.fep-button,
  .product_price_section #fep-menu a.fep-button-active,
  #fep-menu .product_price_section a.fep-button-active {
    margin-right: 0;
    font-size: 14px;
    position: relative;
    bottom: 4px;
  }
  .product_side[data-side=right] {
    margin: 12px 0 0 0;
  }
  .mcs_title_wrapper h3 {
    padding-left: 20px;
  }
  .pricing.page {
    overflow-x: hidden;
  }
}
/* New frontpage 2019 */
/* -- top header */
.header {
  padding: 12px 0;
  background: #1e2831;
}

.header .lang-switch {
  display: flex;
}

.header .lang-switch li {
  margin-right: 24px;
}

.header .header__action {
  display: flex;
  justify-content: flex-end;
}

.header .header__info {
  float: right;
  width: 100%;
  font-size: 16px;
}

.header .header__action > a {
  height: 36px;
  margin: 0 12px 0 0;
  padding: 0 0 0 0;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  color: #fff;
  min-width: 124px;
  width: 124px;
  font-size: 16px;
  line-height: 37px;
  transition: ease 0.3s all;
}

.header .header__action > a:hover {
  background-color: #fff;
  color: #1e2831;
}

.header .header__action button {
  width: 94px;
  padding: 4px 0 0 0;
  min-width: 94px;
  height: 36px;
  font-size: 16px;
  color: #1e2831;
  font-weight: 400;
  letter-spacing: inherit;
  transition: ease 0.3s all;
}

.header .header__action button[data-collapse=account] {
  width: 144px;
}

.header .header__action button[data-collapse=account].active span {
  color: #1E2831;
}

.header .header__action button[data-collapse=account]:hover {
  background-color: #fff !important;
}

.header .header__action button[data-collapse=account]:hover span {
  color: #1e2831;
}

.header .header__action button[data-collapse=account] span {
  color: #fff;
}

.header .header__action button[data-collapse=account] i {
  display: none;
}

.btn--border-white:hover:not(.no-hover) .btn__svg, .btn--border-white.active:not(.no-hover) .btn__svg {
  stroke: #1e2831;
}

.header .header__action > .collapse-wrap > button:hover {
  background-color: #1e2831;
  color: #fff;
}

/* -- top menu */
.header--menu {
  position: relative;
  background: #cc0c3f;
  padding: 0 0 0 0;
}

.header--menu .header__wrap {
  margin: 0 0 0 0;
}

.header--menu .header__wrap img.logo__img {
  width: auto;
  height: auto;
  margin: 0 0 0 0;
}

.header--menu .header__wrap nav li.menu-item a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: ease 0.3s all;
}

.header--menu .header__wrap nav li.menu-item a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

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

.HomepageSlider .slider_content {
  position: relative;
  z-index: 2;
}

.HomepageSlider .slider_item {
  float: left;
  min-height: 540px;
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

.HomepageSlider .slider_item::before {
  content: "";
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e2831+0,1e2831+100&0.8+0,0.2+100 */
  background: -moz-linear-gradient(left, rgba(30, 40, 49, 0.8) 0%, rgba(30, 40, 49, 0.2) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(30, 40, 49, 0.8) 0%, rgba(30, 40, 49, 0.2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(30, 40, 49, 0.8) 0%, rgba(30, 40, 49, 0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc1e2831', endColorstr='#331e2831',GradientType=1 ); /* IE6-9 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.HomepageSlider .slider_item .row {
  z-index: 2;
  position: relative;
  padding: 0 60px;
}

.HomepageSlider .slider_item .row h2 {
  color: #fff;
  width: 59%;
  margin: 138px 0 0 0;
  font-size: 48px;
  line-height: 64px;
}

.HomepageSlider .slider_item .row a {
  background: #cc0c3F;
  border-radius: 6px;
  float: left;
  width: 199px;
  height: 48px;
  position: relative;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 0 0 24px;
  transition: ease 0.3s all;
  margin: 24px 0 0 0;
  font-weight: 500;
}

.HomepageSlider .slider_item .row a:hover {
  background-color: #1e2831;
  color: #fff;
}

.HomepageSlider .slider_item .row a::after {
  position: absolute;
  background-image: url("../assets/svg/white-arrow-right.svg");
  width: 5px;
  height: 9px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  top: -1px;
  bottom: 0;
  right: 24px;
  content: "";
  margin: auto;
}

.HomepageSlider .bx-wrapper {
  max-width: 100%;
  margin: 0 0 0 0;
  border: none;
  box-shadow: none;
}

.HomepageSlider .bx-wrapper .bx-controls .bx-prev {
  background-image: url("../assets/svg/homepage-slider-left.svg");
  background-position: 50%;
  width: 34px;
  height: 68px;
  left: 38px;
  transform: translate(0px, -50%);
}

.HomepageSlider .bx-wrapper .bx-controls .bx-next {
  background-image: url("../assets/svg/homepage-slider-right.svg");
  background-position: 50%;
  width: 34px;
  height: 68px;
  right: 38px;
  transform: translate(0px, -50%);
}

.HomepageSlider .bx-wrapper .bx-pager {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  bottom: 12px;
}

.HomepageSlider .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  background: transparent;
  transition: ease 0.3s all;
  border-radius: 50%;
  margin: 0 6px;
}

.HomepageSlider .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a:hover {
  background-color: #fff;
}

.HomepageSlider .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item a.active {
  background-color: #fff;
}

.joinahealthylifestyle_content {
  background-color: #F7F7F9;
  float: left;
  width: 100%;
  text-align: center;
  padding: 60px 0;
}

.joinahealthylifestyle_content h3 {
  font-size: 36px;
  line-height: 48px;
  color: #30373E;
  margin-bottom: 40px;
  float: left;
  width: 100%;
  text-align: center;
}

.joinahealthylifestyle_items {
  display: flex;
  width: 966px;
  margin: 0 auto;
  justify-content: space-between;
}

.joinahealthylifestyle_items .item {
  width: 282px;
}

.joinahealthylifestyle_items .item h4 {
  font-size: 20px;
  line-height: 32px;
  color: #30373E;
  margin-bottom: 6px;
  margin-top: 10px;
}

.joinahealthylifestyle_items .item p {
  font-size: 16px;
  line-height: 24px;
  color: #30373E;
  margin: 0 0 0 0;
}

.joinahealthylifestyle_content .cstmbuttons {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 48px 0 0 0;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(1) a {
  background-color: #CC0C3F;
  padding: 13px 37px 11px 24px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 12px;
  position: relative;
  transition: ease 0.3s all;
  font-weight: 400;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(1) a:hover {
  background-color: #1e2831;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(1) a::after {
  content: "";
  background-image: url("../assets/svg/01-homepage-btn-right-arrow.svg");
  position: absolute;
  float: left;
  width: 5px;
  height: 9px;
  background-size: contain;
  background-position: 50%;
  right: 24px;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  margin: auto;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(2) a {
  background-color: transparent;
  padding: 13px 37px 11px 24px;
  border: 1px solid #CC0C3F;
  border-radius: 6px;
  color: #CC0C3F;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 12px;
  font-weight: 400;
  position: relative;
  transition: ease 0.3s all;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(2) a:hover {
  background-color: #1e2831;
  border: 1px solid transparent;
  color: #fff;
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(2) a:hover::after {
  background-image: url("../assets/svg/01-homepage-btn-right-arrow.svg");
}

.joinahealthylifestyle_content .cstmbuttons .cstmbutton:nth-child(2) a::after {
  transition: ease 0.3s all;
  content: "";
  background-image: url("../assets/svg/02-homepage-btn-right-arrow.svg");
  position: absolute;
  float: left;
  width: 5px;
  height: 9px;
  background-size: cover;
  background-position: 50%;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page-template-home-new section.blog {
  display: flex;
  width: 100%;
  padding: 61px 0 143px 0;
}

.page-template-home-new .blog__top,
.show_blog_items .blog__top {
  justify-content: flex-start;
}

.page-template-home-new .blog__top .blog__heading,
.show_blog_items .blog__top .blog__heading {
  margin-right: 36px;
  margin-bottom: 0px;
}

.page-template-home-new .blog__top a,
.show_blog_items .blog__top a {
  font-size: 18px;
  border: none;
  line-height: 26px;
  padding: 0 0 0 0;
  letter-spacing: 0px;
  font-weight: 400;
}

.page-template-home-new .blog__top a:focus,
.show_blog_items .blog__top a:focus {
  color: #CC0C3F !important;
}

.page-template-home-new .blog__top a::after,
.show_blog_items .blog__top a::after {
  position: relative;
  right: 4px;
  font-size: 22px;
  transition: ease 0.3s all;
}

.page-template-home-new .blog__top a:hover::after,
.show_blog_items .blog__top a:hover::after {
  right: 2px;
}

.page-template-home-new .blog__list li,
.show_blog_items .blog__list li {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.page-template-home-new .blog__list li h3 span,
.show_blog_items .blog__list li h3 span {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  border: none;
}

.page-template-home-new .blog__list li h3 span:hover,
.show_blog_items .blog__list li h3 span:hover {
  border: none;
}

.page-template-home-new .blog__article a:hover .blog__article--title span,
.show_blog_items .blog__article a:hover .blog__article--title span {
  border: none;
}

.page-template-home-new .blog__article h3.blog__article--title,
.show_blog_items .blog__article h3.blog__article--title {
  margin-bottom: 0;
  line-height: 28px;
}

.page-template-home-new .blog__article .blog__article--time span,
.show_blog_items .blog__article .blog__article--time span {
  font-size: 14px;
  line-height: 24px;
  color: #9FA3A7;
}

.page-template-home-new .blog__article .blog__article--excerpt,
.show_blog_items .blog__article .blog__article--excerpt {
  margin: 4px 0 0 0;
  font-size: 16px;
  line-height: 26px;
}

.page-template-home-new li.blog__article,
.show_blog_items li.blog__article {
  margin-bottom: 38px;
}

.page-template-home-new li.blog__article:last-child,
.show_blog_items li.blog__article:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 1350px) {
  .HomepageSlider .slider_item .row {
    max-width: 88%;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-home-new section.blog .large-12:last-child {
    margin: 30px 0 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .joinahealthylifestyle_content {
    padding: 40px 0;
  }
  .joinahealthylifestyle_items {
    width: 100%;
  }
}
@media screen and (max-width: 930px) {
  .joinahealthylifestyle_items {
    flex-wrap: wrap;
  }
  .joinahealthylifestyle_items .item {
    margin-bottom: 50px;
    width: 100%;
  }
  .joinahealthylifestyle_items .item:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 850px) {
  .HomepageSlider .slider_item {
    min-height: 400px;
    height: 400px;
  }
  .HomepageSlider .slider_item .row h2 {
    margin: 110px 0 0 0;
    width: 95%;
    font-size: 30px;
    line-height: 45px;
  }
  .HomepageSlider .bx-wrapper .bx-controls .bx-prev {
    width: 24px;
    height: 58px;
    background-size: contain;
  }
  .HomepageSlider .bx-wrapper .bx-controls .bx-next {
    width: 24px;
    height: 58px;
    background-size: contain;
  }
}
@media screen and (max-width: 640px) {
  .page-template-home-new .blog__article h3.blog__article--title {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
  }
  .page-template-home-new section.blog {
    padding: 41px 0 143px 0;
  }
  .page-template-home-new section.blog .large-12:last-child {
    margin: 50px 0 0 0;
  }
}
@media screen and (max-width: 600px) {
  .HomepageSlider .slider_item {
    min-height: 280px;
    height: 280px;
  }
  .HomepageSlider .slider_item .row h2 {
    margin: 0% 0 0 0;
    font-size: 30px;
    line-height: 35px;
  }
  .HomepageSlider .slider_item .row a {
    margin: 20px 0 0 0;
  }
  .HomepageSlider .bx-wrapper .bx-controls .bx-prev {
    top: 60%;
    width: 18px;
    height: 38px;
    left: 12px;
  }
  .HomepageSlider .bx-wrapper .bx-controls .bx-next {
    top: 60%;
    width: 18px;
    height: 38px;
    right: 12px;
  }
  .HomepageSlider .slider_item .row a {
    width: 150px;
    height: 36px;
    font-size: 12px;
    padding: 0 0 0 18px;
  }
  .HomepageSlider .slider_item .row a::after {
    right: 15px;
  }
  .HomepageSlider .slider_item .row h2 {
    width: 100%;
  }
  .HomepageSlider .slider_item .row h2 {
    margin: 30% 0 0 0;
    font-size: 24px;
    line-height: 29px;
  }
  /* .HomepageSlider .slider_item .row {margin: 50% 0 0 0; transform: translate(0px, -50%);} */
  .joinahealthylifestyle_content h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .joinahealthylifestyle_content .cstmbuttons {
    width: 100%;
    flex-wrap: wrap;
  }
  .cstmbutton {
    float: left;
    width: 100%;
    margin-bottom: 45px;
  }
  .cstmbutton:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 400px) {
  .HomepageSlider .slider_item .row h2 {
    margin: 0% 0 0 0;
    font-size: 18px;
    line-height: 23px;
  }
  .HomepageSlider .slider_item .row a {
    height: 33px;
  }
  .HomepageSlider .slider_item .row a {
    margin: 12px 0 0 0;
  }
  .page-template-home-new .blog__top .blog__heading {
    margin-right: 20px;
  }
}
.popular__posts {
  display: none !important;
}

.show_blog_items {
  width: 100%;
  float: right;
}

.show_blog_items .blog__top a {
  margin: 20px 0 0 0;
}

.show_blog_items .blog__top .blog__heading {
  float: left;
}

.show_blog_items .blog__list {
  float: left;
  clear: left;
  margin: 10px 0 30px 0;
}

@media screen and (max-width: 1024px) {
  .show_blog_items {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
@media screen and (max-width: 640px) {
  .show_blog_items .blog__list .content {
    margin-top: 8px;
  }
}
.header__wrap .mainnav .menu-item {
  border-bottom: 1px solid transparent;
}

.header__wrap .mainnav .menu-item.current-menu-item {
  border-bottom: 1px solid transparent;
}

.header--menu .header__wrap nav li.menu-item.current-menu-item a {
  border-bottom: 1px solid #fff;
}

body.page-template-home-new.ru div.home.page section.blog .large-12.column, body.page-template-home-new.ru div.home.page section.blog .large-12.columns {
  left: 50%;
  position: relative;
  transform: translate(-50%, 0%);
}

.trainer-sidebar__meta a {
  color: #fff;
}

.trainer-sidebar__button--container a:hover {
  color: #CC0C3F;
}

.accordion:not(.event-list) .accordion-title {
  transition: all 0.2s;
}
.accordion:not(.event-list) .accordion-title:hover, .accordion:not(.event-list) .accordion-title:focus {
  color: #CC0C3F;
}
.accordion:not(.event-list) .is-active > .accordion-title {
  border-left: 2px solid #CC0C3F;
}

.st .accordion-title, .st .accordion-title:hover, .st .accordion-title:focus {
  background-color: transparent;
}
.st .accordion-item.is-active .accordion-title:after {
  border-bottom: 6px solid #EBEBEB;
}
.st .accordion-title {
  position: relative;
  z-index: 2;
  border: none !important;
  border-top-right-radius: 3px !important;
  border-top-left-radius: 3px !important;
}
.st .accordion-title:after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 0 solid transparent;
  transition: all 0.2s;
}
.st .accordion-content {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: none !important;
  border-bottom-right-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
  background: #EBEBEB;
  padding: 8px 12px;
}

.vad {
  position: fixed;
  bottom: 0;
  z-index: 600;
}
.vad:not(.open) {
  display: none;
}
.vad--right {
  right: 0;
}
.vad__close {
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -2px;
  height: 48px;
  width: 48px;
  background: #CC0C3F;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.vad__close > i {
  color: #FFFFFF;
  font-size: 24px;
  line-height: 48px;
}
.vad__close:hover {
  background: rgb(242.9166666667, 49.5833333333, 100.9375);
}
.vad__wrap {
  border: 2px solid #CC0C3F;
  background: #FFFFFF;
}
.vad__body {
  position: relative;
}
.vad__content {
  position: relative;
  z-index: 1;
}
.vad__content:not(.open) {
  display: none;
}
.vad__content > .underlay {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  opacity: 0;
}
.vad__content > * {
  position: relative;
  z-index: 2;
}
.vad__text {
  color: #1E2831;
}
.vad__text--large {
  font-size: 26px;
  line-height: 36px;
}
.vad__text--bold {
  font-weight: 500;
}
.vad__text--mb36 {
  margin-bottom: 36px;
}

#vad__join {
  position: relative;
  padding: 72px 48px 24px 24px;
  width: calc(100vw - 4px);
  height: 450px;
}
@media (min-width: 480px) {
  #vad__join {
    min-height: 450px;
    width: 450px;
  }
}

.campaign-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 36px 0;
}
.campaign-list__item {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 26px;
}

h1.campaign__title {
  font-size: 40px;
}
h1.campaign__title strong {
  font-size: 64px;
}

.btn, .message-content-actions .btn-group > a, .fep-form .fep-button, #fep-menu .fep-button,
#fep-menu .fep-button-active {
  display: inline-block;
  text-align: center;
  min-width: 144px;
  background: #CC0C3F;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: Circe, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 50px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  padding: 0 18px;
}
.btn:hover, .message-content-actions .btn-group > a:hover, .fep-form .fep-button:hover, #fep-menu .fep-button:hover,
#fep-menu .fep-button-active:hover, .btn:focus, .message-content-actions .btn-group > a:focus, .fep-form .fep-button:focus, #fep-menu .fep-button:focus,
#fep-menu .fep-button-active:focus {
  color: #FFFFFF;
}
.btn.event--past, .message-content-actions .btn-group > a.event--past, .fep-form .event--past.fep-button, #fep-menu .event--past.fep-button,
#fep-menu .event--past.fep-button-active {
  display: none;
}
.btn--inverted {
  background: #FFFFFF;
  color: #CC0C3F;
}
.btn--short {
  height: 30px;
  line-height: 30px;
}
.btn--medium, .message-content-actions .btn-group > a {
  height: 44px;
  line-height: 44px;
}
.btn--tall {
  height: 60px;
  line-height: 60px;
  font-size: 20px;
}
.btn--full {
  width: 100% !important;
}
.btn--minimal, .message-content-actions .btn-group > a, #fep-menu .fep-button,
#fep-menu .fep-button-active {
  min-width: 0;
}
.btn--w300 {
  max-width: 300px;
}
.btn--w240 {
  max-width: 240px;
}
.btn--left {
  float: left;
}
.btn--right, .fep-form .fep-button {
  float: right;
}
.btn--mb12 {
  margin-bottom: 12px;
}
.btn--ml24 {
  margin-left: 24px;
}
.btn--white {
  background: #FFFFFF;
  color: #CC0C3F;
}
.btn--bradius-4px {
  border-radius: 4px;
}
.btn--bradius-50pct {
  border-radius: 50%;
}
.btn--border-white {
  border: 1px solid #FFFFFF;
  background: 0;
}
.btn--border-white:hover:not(.no-hover), .btn--border-white.active:not(.no-hover) {
  background: #FFFFFF;
  color: #CC0C3F;
}
.btn--border-white:hover:not(.no-hover) .btn__svg, .btn--border-white.active:not(.no-hover) .btn__svg {
  stroke: #CC0C3F;
}
.btn--border-white .btn__svg {
  stroke: #FFFFFF;
}
.btn--border-light {
  border: 1px solid #EBEBEB;
  background: 0;
  color: #D8D8D8;
}
.btn--border-light:hover, .btn--border-light.active {
  border: 1px solid #CC0C3F;
  background: #CC0C3F;
  color: #FFFFFF;
}
.btn--border-gray {
  border: 1px solid #9FA3A7;
  background: 0;
  color: #9FA3A7;
}
.btn--border-gray:hover {
  border: 1px solid #CC0C3F;
  background: #CC0C3F;
  color: #FFFFFF;
}
.btn--border-red, .message-content-actions .btn-group > a, #fep-menu .fep-button,
#fep-menu .fep-button-active {
  border: 1px solid #CC0C3F;
  color: #CC0C3F;
  background: 0;
}
.btn--border-red:hover, .message-content-actions .btn-group > a:hover, #fep-menu .fep-button:hover,
#fep-menu .fep-button-active:hover {
  background: #CC0C3F;
  color: #FFFFFF;
}
.btn--hover-red {
  border: 1px solid transparent;
  background: 0;
}
.btn--hover-red:hover {
  background: #CC0C3F !important;
  color: #FFFFFF !important;
  border-color: #CC0C3F !important;
}
.btn--hover-transparent {
  border-width: 1px;
  border-style: solid;
}
.btn--hover-transparent:hover {
  background: transparent !important;
  color: #CC0C3F;
}
.btn--txt {
  min-width: initial;
  background: none;
  font-size: 20px;
  line-height: 24px;
  color: #CC0C3F;
  border-bottom: 1px solid #CC0C3F;
  border-radius: 0;
  padding: 0 0 0 4px;
}
.btn--txt:hover {
  color: #CC0C3F;
  border-color: #CC0C3F;
}
.btn--txt-small {
  min-width: initial;
  background: none;
  font-size: 14px;
  line-height: 18px;
  color: #CC0C3F;
  border-bottom: 1px solid #CC0C3F;
  border-radius: 0;
  padding: 0 0 0 4px;
}
.btn--txt-small:hover {
  color: #CC0C3F;
  border-color: #CC0C3F;
}
.btn--txt-gray {
  min-width: initial;
  background: none;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #9FA3A7;
  border-color: #9FA3A7;
  transition: all 0.2s;
}
.btn--txt-gray:hover {
  color: #CC0C3F;
  border-color: #CC0C3F;
}
.btn--arrow:after {
  content: "\f142";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  vertical-align: bottom;
}
.btn--arrow-before:before {
  content: "\f141";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}
.btn--icon > * {
  vertical-align: middle;
}
.btn--icon .btn__svg {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 6px 6px 0;
  transition: all 0.2s;
}
.btn--collapser {
  position: relative;
  padding-right: 45px;
}
.btn--collapser.active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn--collapser.active > i {
  transform: rotate(180deg);
}
.btn--collapser > i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  line-height: inherit;
  color: inherit;
  padding: 0 12px;
  pointer-events: none;
  transition: all 0.2s;
}
.btn--to-account {
  margin: 40px 0px;
}

.play {
  display: inline-flex;
  align-items: center;
  color: rgba(235, 235, 235, 0.75);
  transition: all 0.2s;
}
.play:hover .play__circle {
  border-color: #CC0C3F;
  background: #CC0C3F;
  color: #FFFFFF;
}
.play:hover .play__circle .mdi-triangle {
  opacity: 1;
}
.play:hover .play__circle .mdi-triangle-outline {
  opacity: 0;
}
.play:hover .play__circle .outer {
  height: calc(100% + 42px);
  width: calc(100% + 42px);
  background: rgba(204, 12, 63, 0.5);
}
.play:hover .play__text {
  color: #FFFFFF;
}
.play--blue:hover .play__circle {
  border-color: #0090D6;
  background: #0090D6;
}
.play--blue:hover .play__circle .outer {
  background: rgba(0, 144, 214, 0.5);
}
.play__circle {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  border: 2px solid rgba(235, 235, 235, 0.75);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 58px;
  color: rgba(235, 235, 235, 0.75);
  margin-right: 24px;
  transition: all 0.2s;
}
.play__circle > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play__circle > i.mdi-triangle {
  opacity: 0;
}
.play__circle .outer {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s;
}
.play__text {
  font-size: 18px;
  color: rgba(235, 235, 235, 0.75);
  transition: all 0.2s;
}

.round {
  display: inline-block;
  border: 1px solid #CC0C3F;
  border-radius: 999px;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 22px;
  line-height: 40px;
  color: #CC0C3F;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}
.round:hover {
  border-color: #CC0C3F;
  background: #CC0C3F;
  color: #FFFFFF;
}
.round--small {
  height: 30px;
  width: 30px;
  font-size: 18px;
  line-height: 30px;
}
.round--red {
  background: #CC0C3F;
  color: #FFFFFF;
  border: none;
}
.round--gray {
  border-color: #9FA3A7;
  color: #9FA3A7;
}
.round--x {
  height: 30px;
  width: 30px;
  font-size: 22px;
  line-height: 32px;
  color: #CC0C3F;
}
.round--x:hover {
  color: #FFFFFF;
  background: #CC0C3F;
  transition: all 0.2s;
}
.round--next:after {
  content: "\f142";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}
.round--back:before {
  content: "\f141";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}

.dont-show-label .nf-field-label {
  display: none !important;
}

.nf-form-cont .submit-wrap input {
  cursor: pointer;
}

.nf-form-fields-required,
.nf-error-required-error {
  display: none;
}

.input-wrap--left {
  text-align: left;
}
.input-wrap--small input[type=checkbox] + label, .input-wrap--small input[type=radio] + label {
  font-size: 16px;
  margin-bottom: 12px;
}
.input-wrap--small input[type=checkbox] + label:before, .input-wrap--small input[type=radio] + label:before {
  height: 20px;
  width: 20px;
  margin-right: 12px;
}
.input-wrap--small input[type=checkbox]:checked + label:before, .input-wrap--small input[type=radio]:checked + label:before {
  border: 6px solid #CC0C3F;
}
.input-wrap--list input[type=checkbox] + label, .input-wrap--list input[type=radio] + label {
  display: flex;
}
.input-wrap--row {
  display: flex;
  align-items: center;
}
.input-wrap--row-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-wrap--row-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .input-wrap--medium-gutter-12 > *:nth-child(odd) {
    margin-right: 12px;
    width: calc(50% - 12px);
  }
  .input-wrap--medium-gutter-12 > *:nth-child(even) {
    margin-left: 12px;
    width: calc(50% - 12px);
  }
}

form > *:not(:last-child) {
  margin-bottom: 18px;
}

input, textarea, select {
  display: block;
  width: 100%;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  color: #9FA3A7;
  padding: 12px 24px;
  transition: all 0.2s;
}
input:focus, input:hover, textarea:focus, textarea:hover, select:focus, select:hover {
  border-color: #9FA3A7;
}
input:focus::placeholder, input:hover::placeholder, textarea:focus::placeholder, textarea:hover::placeholder, select:focus::placeholder, select:hover::placeholder {
  color: #9FA3A7;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #D8D8D8;
  transition: all 0.2s;
}

textarea {
  height: 160px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
}

.select--border-white {
  border: 1px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
}
.select--border-white:hover {
  border-color: rgba(255, 255, 255, 0.75);
}
.select--border-white > option {
  color: #1E2831;
}
.select--w230 {
  display: inline-block;
  width: 230px;
}
.select--w230.select {
  margin-left: 24px;
}
@media (max-width: 640px) {
  .select--w230.select {
    margin-left: 0;
    margin-bottom: 12px;
  }
}
@media (max-width: 640px) {
  .select--w230 {
    width: 100%;
  }
}
.select--half {
  width: 50%;
}
@media (max-width: 640px) {
  .select--half {
    width: 100%;
    margin-bottom: 12px;
  }
}
.select--h36 {
  height: 36px;
  padding: 6px 12px;
}

.label--light {
  font-size: 14px;
  color: #9FA3A7;
}
.label--white {
  font-size: 16px;
  color: #FFFFFF;
}

.input.good, .woocommerce .quantity > input.good {
  border-color: #11B346;
}
.input--red:hover input, .input--red:hover input::placeholder, .input--red:hover select {
  border-color: #CC0C3F;
  color: #CC0C3F;
}
.input--red:hover i {
  color: #CC0C3F;
}
.input--red input:focus, .input--red select:focus {
  border-color: #CC0C3F;
  color: #CC0C3F;
}
.input--red input:focus + i, .input--red select:focus + i {
  color: #CC0C3F;
}
.input--red input:focus::placeholder, .input--red select:focus::placeholder {
  color: #CC0C3F;
}
.input--transparent {
  background: transparent;
}
.input--full {
  width: 100% !important;
}
.input--half {
  width: 50%;
}
@media (max-width: 640px) {
  .input--half {
    width: 100%;
    margin-bottom: 12px;
  }
}
.input--w300 {
  max-width: 300px;
  margin: 0 auto;
}
.input--w140 {
  display: inline-block;
  width: 140px;
}
.input--medium, .woocommerce .quantity > input {
  height: 44px;
}
.input--small {
  height: 36px;
}
.input--ml30 {
  margin-left: 30px;
}
.input--mb24 {
  margin-bottom: 12px;
}
.input--search, .input--select {
  position: relative;
}
.input--search > i, .input--select > i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  line-height: 26px;
  color: #D8D8D8;
  padding: 12px;
  pointer-events: none;
  transition: all 0.2s;
}
.input--text-center {
  text-align: center;
  text-align-last: center;
}
.input--center {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}
.input--center input {
  text-align: inherit;
}
.input__svg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.input__svg > svg {
  height: 22px;
  width: 22px;
  stroke: #CC0C3F;
}

input[type=password] {
  letter-spacing: 2px;
  font-size: 18px;
}

.checkbox-df {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.checkbox-df:not(:last-child) {
  margin-bottom: 18px;
}
.checkbox-df input[type=text] {
  margin: 0 24px 18px 0;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

input[type=checkbox] + label, input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #9FA3A7;
  cursor: pointer;
  margin: 0 24px 18px 0;
  transition: all 0.2s;
}
input[type=checkbox] + label:before, input[type=radio] + label:before {
  content: "";
  display: inline-block;
  height: 30px;
  width: 30px;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(204, 12, 63, 0);
  margin-right: 6px;
  transition: all 0.2s;
}
input[type=checkbox] + label.label--icon, input[type=radio] + label.label--icon {
  position: relative;
  height: 44px;
  width: 140px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: center;
  padding: 0;
  margin-left: 28px;
  margin-bottom: 0;
}
input[type=checkbox] + label.label--icon:not(.label--icon-text), input[type=radio] + label.label--icon:not(.label--icon-text) {
  display: inline-block;
}
input[type=checkbox] + label.label--icon:before, input[type=radio] + label.label--icon:before {
  position: absolute;
  top: 14px;
  left: -28px;
  height: 16px;
  width: 16px;
}
input[type=checkbox] + label.label--icon-seb, input[type=radio] + label.label--icon-seb {
  background: #60CD18;
}
input[type=checkbox] + label.label--icon-swed, input[type=radio] + label.label--icon-swed {
  background: #FFFFFF;
  border-color: #FC8A00;
  padding: 1px 6px;
}
input[type=checkbox] + label.label--icon-visa, input[type=radio] + label.label--icon-visa {
  background: #EDEBE7;
}

input[type=checkbox]:checked + label, input[type=radio]:checked + label {
  color: #30373E;
}
input[type=checkbox]:checked + label:before, input[type=radio]:checked + label:before {
  border: 11px solid #CC0C3F;
  box-shadow: 0 2px 4px 0 rgba(204, 12, 63, 0.52);
}
input[type=checkbox]:checked + label.label--icon:before, input[type=radio]:checked + label.label--icon:before {
  border-width: 5px;
}

.profile-state {
  margin-top: 50px;
  position: relative;
}

.text-nav .nav {
  list-style: none;
  display: flex;
  align-items: baseline;
  margin: 0 0 90px;
}
@media (max-width: 640px) {
  .text-nav .nav {
    flex-direction: column;
  }
  .text-nav .nav .nav__item {
    font-size: 18px;
    margin-left: 0;
  }
  .text-nav .nav .nav__item.active {
    font-size: 24px;
  }
  .text-nav .nav .nav__item:not(:last-child) {
    margin-bottom: 6px;
  }
}
.text-nav .nav__item {
  font-size: 20px;
  line-height: 36px;
  color: #9FA3A7;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding: 0 6px;
  margin: 0 18px;
  transition: all 0.2s;
}
.text-nav .nav__item:first-child {
  margin-left: 0;
}
.text-nav .nav__item.active {
  font-size: 36px;
  color: #30373E;
  border-color: #CC0C3F;
}
.text-nav.smaller .nav__item.active {
  font-size: 24px;
}

.icon-nav {
  border-bottom: 2px solid #EBEBEB;
  padding: 30px 0;
  /* Vaikne Spa alamlehtede ikonimenüü taust */
}
.page-template-template-vaiknespa .icon-nav .sub-menu, body[class*=vaikne-spa] .icon-nav .sub-menu, body[class*=vaiknespa] .icon-nav .sub-menu, .parent-pageid-79447 .icon-nav .sub-menu, .page-id-79447 .icon-nav .sub-menu {
  background-color: #9E8D71;
}
.page-template-template-vaiknespa .icon-nav .sub-menu .menu-item > a, body[class*=vaikne-spa] .icon-nav .sub-menu .menu-item > a, body[class*=vaiknespa] .icon-nav .sub-menu .menu-item > a, .parent-pageid-79447 .icon-nav .sub-menu .menu-item > a, .page-id-79447 .icon-nav .sub-menu .menu-item > a {
  color: #ffffff;
}
.page-template-template-vaiknespa .icon-nav .sub-menu .menu-item > a:hover, body[class*=vaikne-spa] .icon-nav .sub-menu .menu-item > a:hover, body[class*=vaiknespa] .icon-nav .sub-menu .menu-item > a:hover, .parent-pageid-79447 .icon-nav .sub-menu .menu-item > a:hover, .page-id-79447 .icon-nav .sub-menu .menu-item > a:hover {
  color: #1e2831;
}
.icon-nav .sub-menu {
  text-align: center;
  list-style: none;
  margin: 0;
}
.icon-nav .sub-menu .menu-item {
  display: inline-block;
  margin: 0 24px;
}
.icon-nav .sub-menu .menu-item > a {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  color: #9FA3A7;
  padding-top: 72px;
  transition: all 0.2s;
}
.icon-nav .sub-menu .menu-item > a:hover {
  color: #CC0C3F;
}
.icon-nav .sub-menu .menu-item > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  height: 60px;
  width: 60px;
}
.icon-nav .sub-menu .menu-item.current-menu-item > a {
  color: #CC0C3F;
}
.icon-nav .sub-menu .menu-item.icon-team > a:before {
  content: "active";
}

.collapse-wrap {
  position: relative;
  display: inline-block;
}
.collapse-wrap > .btn, .message-content-actions .collapse-wrap.btn-group > a, .fep-form .collapse-wrap > .fep-button, #fep-menu .collapse-wrap > .fep-button,
#fep-menu .collapse-wrap > .fep-button-active {
  z-index: 5;
}
.collapse-wrap > .collapse {
  z-index: 4;
}

.collapse {
  position: relative;
  max-height: 0;
  overflow: hidden;
  border: 0 solid transparent;
  padding: 0;
  transition: all 0.2s;
}
.collapse.active {
  max-height: 100vh;
}
.collapse:before {
  content: "";
  position: absolute;
  top: 0;
}
.collapse--mt36 {
  margin-top: -36px;
}
.collapse--mb36 {
  margin-bottom: 36px;
}
.collapse--bottom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.collapse--modal.active {
  border-top: 2px solid #CC0C3F;
  border-bottom: 2px solid #CC0C3F;
  padding: 60px 0;
}
.collapse--menu {
  background: #FFFFFF;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  text-align: left;
  overflow: hidden;
}
.collapse--menu.active {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  padding-bottom: 12px;
}

[data-type=tab]:not(li) {
  display: none;
}
[data-type=tab]:not(li).active {
  display: block;
}

.tab-button {
  color: #9FA3A7;
  font-size: 20px;
  line-height: 30px;
  border-bottom: 2px solid transparent;
  padding: 0 4px;
  transition: all 0.2s;
}
.tab-button.active {
  color: #1E2831;
  font-size: 26px;
  border-color: #CC0C3F;
}
.tab-button:not(.active):hover {
  color: #4D5155;
}
.tab-button:not(:last-child) {
  margin-right: 18px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: initial;
}

.tabs {
  list-style: none;
  display: flex;
  border-bottom: 1px solid #EBEBEB;
  margin: 0 0 12px;
}

.tabs-title {
  flex: 1 1 auto;
  text-align: center;
  padding: 6px 2px;
}
.tabs-title.is-active {
  background: #EBEBEB;
}
.tabs-title__day {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #30373E;
}
.tabs-title__date {
  display: block;
  font-size: 14px;
  color: #30373E;
}

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

.list {
  list-style: none;
  margin: 0;
}
.list__item {
  transition: all 0.2s;
}
.list__item:not(:last-child) {
  margin-bottom: 12px;
}
.list__item a.text:hover, .list__item a .text:hover {
  color: #CC0C3F;
}
.list__item a.text:hover i, .list__item a .text:hover i {
  color: #CC0C3F;
}
.list__item a.text:hover .text--underline, .list__item a .text:hover .text--underline {
  border-color: #CC0C3F;
}
.list__item .text {
  font-size: 18px;
  transition: all 0.2s;
}
.list__item .text > i {
  margin-right: 6px;
  transition: all 0.2s;
}
.list__item .text--big {
  font-size: 20px;
}
.list__item .text--small {
  font-size: 14px;
}
.list__item .text--bold {
  font-weight: 500;
}
.list__item .text--underline {
  border-bottom: 1px solid transparent;
}
.list__item .text--svg {
  display: inline-flex;
  align-items: center;
}
.list__item .text--svg:not(:last-child) {
  margin-right: 24px;
}
.list__item .text--svg > svg {
  height: 18px;
  width: 18px;
  margin-right: 6px;
}
.list__item .text--mb6 {
  margin-bottom: 6px;
}
.list__item .text--mb0 {
  margin-bottom: 0;
}
.list__item--block > * {
  display: block;
}
.list--white .text {
  color: rgba(235, 235, 235, 0.75);
}
.list--white .text > i {
  color: rgba(235, 235, 235, 0.75);
}
.list--white .text--big {
  color: #FFFFFF;
}
.list--white .text--underline {
  border-color: rgba(235, 235, 235, 0.75);
}
.list--white .text--svg > svg {
  fill: rgba(235, 235, 235, 0.75);
}
.list--links .list__item {
  font-size: 14px;
  line-height: 40px;
  color: #9FA3A7;
  padding: 0;
  margin: 0;
}
.list--links .list__item > a {
  display: block;
  color: inherit;
  padding: 0 18px;
}
.list--links .list__item:hover {
  background: #CC0C3F;
  color: #FFFFFF;
}
.list--lined > li {
  border-bottom: 1px solid #EBEBEB;
  padding: 0 12px 12px 18px;
}
.list--lined .meta span:not(:last-child) {
  margin-right: 24px;
}
.list--mb24 {
  margin-bottom: 24px;
}
.list--bullet li {
  list-style-image: url("../../assets/svg/bullet.svg");
  list-style-position: inside;
  margin-left: 5px;
}

.packages {
  margin-top: 48px;
}
.packages hr {
  display: inline-block;
  height: 3px;
  width: 100px;
  background: #CC0C3F;
  margin-bottom: 36px;
}

.packages__title {
  color: #30373E;
  font-size: 24px;
  line-height: 35px;
}

.packages__list {
  list-style: none;
  margin-left: 30px;
}
.packages__list-item {
  border-bottom: 1px solid #D8D8D8;
  padding: 12px 0;
}

.packages__list-item--price {
  border: 1px solid #CC0C3F;
  border-radius: 5px;
  color: #CC0C3F;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  padding: 3px 12px;
  display: inline-block;
  min-width: 68px;
  text-align: center;
}

.packages__list-item--name {
  margin-left: 30px;
  color: #30373E;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  display: inline-block;
}

.trainer-type .trainer-type__list {
  text-align: left;
}

hr.red {
  display: inline-block;
  height: 3px;
  width: 100px;
  background: #CC0C3F;
  margin-bottom: 36px;
}

.modal {
  overflow-y: scroll;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
  background: rgba(30, 40, 49, 0.8);
}
.modal .nf-error {
  border: 1px solid #e80000;
}
.modal.open {
  display: block;
}
.modal__data-list {
  list-style: none;
}
.modal__data-list-item {
  padding-left: 24px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.modal__data-list-item p {
  margin-bottom: 0.2rem;
}
.modal__data-list-item--border-bottom {
  border-bottom: 1px solid #9fa3a7;
}
.modal__wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 120px 24px 24px;
}
@media (max-width: 640px) {
  .modal__wrap {
    min-width: initial;
    padding: 60px 12px 24px;
  }
}
.modal__body {
  display: inline-block;
  position: relative;
  background: #FFFFFF;
  padding: 24px;
}
@media (max-width: 640px) {
  .modal__body {
    padding: 24px 12px;
  }
}
.modal__action {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
}
.modal__action .action {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.modal__action .action > i {
  font-size: 34px;
  line-height: 50px;
}
.modal__action .action--close {
  background: #CC0C3F;
  color: #FFFFFF;
}
.modal__action .action--close:hover {
  background: rgb(242.9166666667, 49.5833333333, 100.9375);
}
.modal__action .action--prev, .modal__action .action--next {
  background: #FFFFFF;
  color: #D8D8D8;
}
.modal__action .action--prev:hover, .modal__action .action--next:hover {
  background: #D8D8D8;
  color: #FFFFFF;
}
.modal__content {
  display: none;
}
.modal__content.open {
  display: block;
}
.modal__content h2.heading {
  font-family: Circe, sans-serif;
  font-size: 36px;
  font-weight: 300;
}
.modal__content .text {
  font-size: 18px;
  color: #1E2831;
}
.modal__content .text--w400 {
  width: 100%;
  max-width: 400px;
}
.modal__content .text--link {
  display: block;
  text-decoration: underline;
}
.modal__content .text--small {
  font-size: 14px;
}
.modal__content .text--medium {
  font-size: 20px;
}
.modal__content .text--large {
  font-size: 24px;
}
.modal__content .text--bold {
  font-weight: 400;
}
.modal__content .text--light {
  color: #9FA3A7;
}
.modal__content .text--left {
  text-align: left;
}
.modal__content .text--mb12 {
  margin-bottom: 12px;
}
.modal__content .text--mb24 {
  margin-bottom: 24px;
}
.modal__content .text--mb36 {
  margin-bottom: 36px;
}
.modal__content--login {
  min-width: 360px;
  min-height: 360px;
  max-width: 780px;
  padding: 60px 144px;
}
@media (max-width: 1024px) {
  .modal__content--login {
    padding: 60px;
  }
}
@media (max-width: 640px) {
  .modal__content--login {
    min-width: initial;
    padding: 60px 0 24px;
  }
}
.modal__content--login h2 {
  color: #CC0C3F;
  margin-bottom: 24px;
}
.modal__content--login button:not(:last-child) {
  margin-bottom: 18px;
}
.modal__content--replacable {
  min-width: 360px;
  min-height: 360px;
  padding-top: 48px;
}
@media (max-width: 640px) {
  .modal__content--replacable {
    min-width: initial;
  }
}
.modal__content--fitness {
  max-width: 800px;
}
.modal__content--fitness-ty {
  padding: 24px 12px;
}
.modal__content--fitness-ty > svg {
  height: 240px;
  margin: 24px 0 36px;
}
.modal__side-wrap {
  display: flex;
  flex-wrap: wrap;
}
.modal__full-wrap {
  padding: 0px 50px;
}
.modal__side {
  text-align: left;
  padding: 48px;
}
.modal__side--left {
  border-right: 1px solid #EBEBEB;
  padding-left: 24px;
}
.modal__side--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}
.modal__img {
  display: inline-block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-position: center;
  background-size: 60px;
}
.modal__img--mr18 {
  margin-right: 18px;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal__df {
  display: flex;
}
.modal__df--center {
  align-items: center;
}
.modal__df--mb24 {
  margin-bottom: 24px;
}

.training__icon--modal {
  display: inline-block;
}
.training__icon--modal > svg {
  text-align: center;
}

.training__info--date, .training__info--name {
  color: #30373E;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.login__error {
  margin: 20px;
}

#compose-form-container {
  align-items: center;
  left: 0 !important;
  width: unset !important;
  margin: 0 auto !important;
  max-width: unset !important;
}
#compose-form-container button[type=submit] {
  background-color: #CC0C3F;
  border-color: rgb(155.8333333333, 9.1666666667, 48.125);
}
#compose-form-container .modal-dialog {
  margin-top: 200px;
}

.table {
  border-collapse: collapse;
  text-align: left;
}
.table tr:hover .date__day {
  color: #CC0C3F;
  border-color: #CC0C3F;
}
.table--full {
  width: 100%;
}
.table--border-full tr {
  display: block;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 6px 24px;
  transition: all 0.2s;
}
.table--border-full tr > td:not(:last-child) {
  margin-right: 30px;
}
.table--border-full tr:hover {
  border-color: #EBEBEB;
}
.table--border-full tr:hover .table__action {
  opacity: 1;
}
.table--border tr {
  padding: 12px;
}
.table--border tr:not(:last-of-type) {
  border-bottom: 1px solid #EBEBEB;
}
.table--child-mr30 > *:not(:last-child) {
  margin-right: 30px;
}
.table__df {
  display: flex;
  align-items: center;
}
.table__df--inline {
  display: inline-flex;
}
.table__df--sb {
  justify-content: space-between;
}
.table__df--se {
  justify-content: flex-end;
}
.table__df--right {
  float: right;
}
.table__calc {
  width: calc(100% - 356px);
}
.table__text {
  display: inline-block;
  font-size: 18px;
  color: #30373E;
}
.table__text--block {
  display: block;
}
.table__text--large {
  font-size: 20px;
}
.table__text--small {
  font-size: 14px;
}
.table__text--bold {
  font-weight: 400;
}
.table__text--red {
  color: #CC0C3F;
}
.table__text--light {
  color: #9FA3A7;
}
.table__action {
  opacity: 0;
  transition: all 0.2s;
}
.table .border-right {
  border-right: 1px solid #EBEBEB;
  padding-right: 30px;
}

.flex-table {
  text-align: left;
}
.flex-table--no-border .flex-table__row {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.flex-table__row {
  display: flex;
  padding: 12px;
}
.flex-table__row > * {
  padding: 24px 0;
}
.flex-table__row:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 36px;
}
.flex-table__cell--center {
  display: flex;
  align-items: center;
}
.flex-table__cell--grow-1 {
  flex-grow: 1;
}
.flex-table__cell--basis-200 {
  flex-basis: 200px;
}
.flex-table__cell--align-center {
  align-self: center;
}
.flex-table__cell--border {
  padding-right: 48px;
  border-right: 1px solid #EBEBEB;
  margin-right: 48px;
}
.flex-table .p0 {
  padding: 0 !important;
}

.sc {
  list-style: none;
  text-align: center;
  margin: 0;
}
.sc__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #9FA3A7;
  cursor: pointer;
}
@media (max-width: 640px) {
  .sc__item {
    display: flex;
  }
  .sc__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.sc__item:not(:last-child) {
  margin-right: 30px;
}
.sc__item .check-dot {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  font-size: 20px;
  color: #9FA3A7;
  transition: all 0.2s;
  margin-right: 6px;
}
.sc__item .check-dot:after, .sc__item .check-dot:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.sc__item .check-dot:after {
  content: "\f5e1";
  opacity: 0;
}
.sc__item .check-dot:before {
  content: "\f5e0";
  opacity: 1;
}
.sc__item.inactive .check-dot:after {
  opacity: 1;
}
.sc__item.inactive .check-dot:before {
  opacity: 0;
}

.sn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .sn {
    justify-content: center;
    margin-top: 24px;
  }
}
.sn--h36 {
  height: 36px;
}

.st {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.st--mobile .st__col--time {
  width: 60px;
  padding-left: 0 !important;
}
.st tr {
  background: #FFFFFF !important;
}
.st__head {
  border-bottom: 1px solid #D8D8D8;
}
.st__head-col {
  padding: 18px 30px;
}
.st__head-col--highlight {
  background: #EBEBEB !important;
}
.st__head-col--time {
  width: 60px;
}
.st__date {
  text-align: left;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: #9FA3A7;
}
.st__date--day {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4D5155;
  margin-bottom: 12px;
}
.st__row {
  height: 98px;
  border-bottom: 1px solid #D8D8D8 !important;
}
.st__col {
  vertical-align: top;
  padding: 0;
}
.st__col:first-child {
  text-align: center;
}
.st__col--today {
  background: #EBEBEB;
}
.st .event-list {
  list-style: none;
  margin: 12px 6px 0;
}
.st .event {
  position: relative;
  background: #9FA3A7;
  border-radius: 3px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.st .event.stash {
  margin-bottom: 0 !important;
}
.st .event.stash .event__content, .st .event.stash .accordion-content {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.st .event.stash .accordion-title {
  border-width: 0 !important;
}
.st .event:not(.booking__activeuser) [data-action=cancelbron] {
  display: none;
}
.st .event.booking__activeuser [data-action=login] {
  display: none;
}
.st .event.booking__activeuser [data-action=booking] {
  display: none;
}
.st .event.booking__activeuser:before {
  content: "\f4ce";
  position: absolute;
  z-index: 100;
  top: 4px;
  right: 6px;
  color: #FFFFFF;
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.st .event.booking__activeuser .event__text--l {
  padding-right: 16px;
}
.st .event--past {
  opacity: 0.3;
}
.st .event--past:hover {
  opacity: 1;
}
.st .event__popup {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: calc(100% - 48px);
  background: #FFFFFF;
  border-left: 2px solid transparent;
  border-radius: 3px;
  padding: 18px 24px 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  transition: visibility 0s, opacity 0.2s, bottom 0.2s;
  width: max-content;
  max-width: 350px;
}
.st .event__popup .fix-whitespace {
  white-space: normal;
  display: block;
}
.st .event__popup.open {
  visibility: visible;
  opacity: 1;
  bottom: 100%;
}
.st .event__popup-caret {
  position: absolute;
  z-index: 101;
  top: 100%;
  left: 12px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FFFFFF;
}
.st .event__content {
  max-height: 160px;
  overflow: hidden;
  padding: 8px 12px;
  box-shadow: 0 1px 10px -4px #000;
  transition: all 0.2s ease-out;
}
.st .event__line {
  white-space: nowrap;
}
.st .event__line--mb6 {
  margin-bottom: 6px;
}
.st .event__text {
  color: #FFFFFF;
  line-height: 1;
}
.st .event__text:not(:last-child) {
  margin-bottom: 4px;
}
.st .event__text--dark {
  color: #1E2831;
}
.st .event__text--gray {
  color: #4D5155;
}
.st .event__text--gray-light {
  color: #9FA3A7;
}
.st .event__text--red {
  color: #CC0C3F;
}
.st .event__text--light {
  opacity: 0.75;
}
.st .event__text--s {
  font-size: 13px;
}
.st .event__text--m {
  font-size: 14px;
}
.st .event__text--l {
  font-size: 16px;
  font-weight: 400;
  padding: 4px 0 2px;
}
.st .event__text--bold {
  font-weight: 500;
}
.st .event__text--mb12 {
  margin-bottom: 12px !important;
}
.st .event__text--nowrap {
  white-space: nowrap;
}
.st .event__text--ellipsis {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.st .event__text--line {
  text-decoration: underline;
}

.schedule-table-parent {
  position: relative;
}

.loading {
  position: relative;
}

.faded {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .vd-mobile.schedule-table-parent {
    overflow-x: scroll;
    width: 100%;
  }
  .vd-mobile .schedule-table {
    table-layout: auto;
  }
  .vd-mobile .schedule-table tr > td:first-child, .vd-mobile .schedule-table tr > th:first-child {
    position: sticky;
    left: -24px;
    z-index: 500;
    background: #FFFFFF;
    padding-left: 24px;
  }
  .vd-mobile .schedule-table .event {
    width: 200px;
  }
}
.client {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.client__head {
  border-bottom: none !important;
}
.client__link {
  color: #1E2831;
  transition: all 0.2s;
}
.client__link:hover {
  color: inherit;
  text-decoration: underline;
}
.client th {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #4D5155;
  margin-bottom: 12px;
  padding: 18px 12px;
}
.client th:first-child {
  text-align: left;
  padding-left: 24px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.client th:last-child {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.client th.filtered-by {
  background: #CC0C3F;
  color: #FFFFFF;
}
.client th:not(.filtered-by):hover {
  background: #EBEBEB;
}
.client tr {
  vertical-align: center;
  border-bottom: 1px solid #D8D8D8;
  transition: all 0.2s;
}
.client tr:not(.client__head):hover {
  background: #EBEBEB;
}
.client tr td {
  text-align: center;
  font-size: 14px;
  color: #4D5155;
  padding: 12px;
}
.client tr td:first-child {
  text-align: left;
  font-size: 18px;
  padding-left: 24px;
}

@media (max-width: 1024px) {
  .client-table-parent {
    overflow-x: scroll;
    width: 100%;
  }
  .client {
    table-layout: auto;
  }
  .client th, .client td {
    min-width: 240px;
  }
}
.vd-gallery a {
  position: relative;
  display: block;
}
.vd-gallery a:hover:before, .vd-gallery a:hover:after {
  opacity: 1;
}
.vd-gallery a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(204, 12, 63, 0.75);
  opacity: 0;
  transition: all 0.2s;
}
.vd-gallery a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../assets/svg/zoom.svg") no-repeat 50% 50%;
  background-size: 66px 66px;
  opacity: 0;
  transition: all 0.2s;
}

.header-promo {
  position: relative;
  background: #FFFFFF;
}
.header-promo__close {
  position: absolute;
  z-index: 10;
  top: 6px;
  right: 12px;
}
.header-promo__close > i {
  font-size: 24px;
  color: #CC0C3F;
  cursor: pointer;
  transition: all 0.2s;
}
.header-promo__close > i:hover {
  color: rgb(242.9166666667, 49.5833333333, 100.9375);
}
.header-promo__df {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC0C3F;
  padding: 10px 0;
}
@media (max-width: 1024px) {
  .header-promo__df {
    flex-wrap: wrap;
  }
}
.header-promo__wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header-promo__wrap {
    flex-basis: calc(100% - 90px);
    justify-content: center;
    margin-bottom: 12px;
  }
  .header-promo__wrap p {
    flex-shrink: 1;
    margin: 0 0 0 12px;
  }
  .header-promo__wrap svg {
    flex-shrink: 0;
  }
}
.header-promo__wrap svg {
  height: 28px;
  width: 28px;
}
.header-promo__wrap p {
  margin: 0 24px 0 12px;
}

header {
  position: relative;
  z-index: 1000;
}
header .menu-icon {
  position: relative;
  margin-left: 60px !important;
  outline: none;
  transition: all 0.2s;
}
header .menu-icon__title {
  position: absolute;
  top: 0;
  left: -56px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 18px;
  transition: inherit;
}
header .menu-icon:hover .menu-icon__title {
  color: #cacaca;
}

.vd-fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

.title-bar-title {
  color: #FFFFFF !important;
}

.header {
  position: relative;
  z-index: 3;
  background: rgb(30, 40, 49);
  padding: 10px 0;
}
.header .row {
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.header__info {
  text-align: center;
  font-size: 14px;
}
.header__action {
  text-align: right;
}
.header__action > a {
  margin-right: 8px;
}
.header--menu {
  position: absolute;
  z-index: 2;
  top: 100%;
  right: 0;
  left: 0;
}
.header--menu-bg {
  background: #EBEBEB;
  border-bottom: 1px solid #D8D8D8;
  padding: 24px 0;
}
.header--menu-bg .header__wrap .logo__text {
  color: #30373E;
}
.header--menu-bg .header__wrap .mainnav .menu-item > a {
  color: #30373E;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__wrap .logo {
  display: inline-flex;
  align-items: center;
}
.header__wrap .logo__img {
  height: 66px;
  width: 66px;
  margin-right: 12px;
}
.header__wrap .logo__text {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: #EBEBEB;
}
.header__wrap .mainnav {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__wrap .mainnav .menu-item {
  padding: 6px;
  list-style: none;
}
.header__wrap .mainnav .menu-item.current-menu-item {
  border-bottom: 3px solid #CC0C3F;
}
.header__wrap .mainnav .menu-item:not(:last-child) {
  margin-right: 36px;
}
.header__wrap .mainnav .menu-item > a {
  color: rgb(235, 235, 235);
  transition: all 0.2s;
}
.header__wrap .mainnav .menu-item > a:hover {
  color: #CC0C3F;
}
.header__wrap .mainnav .menu-item {
  /* Muudame Vaikne Spa tekstilise menüü otse logoks, vältides menüü paksuks venitamist */
}
.header__wrap .mainnav .menu-item > a[href*=vaikne-spa],
.header__wrap .mainnav .menu-item > a[href*=Vaikne-Spa],
.header__wrap .mainnav .menu-item > a[href*=vaiknespa] {
  position: relative;
  display: block !important;
  width: 150px;
  height: 28px; /* Sama mis tavalise lingi line-height */
  font-size: 0; /* Peidame teksti */
  color: transparent !important;
  padding: 0 !important;
  /* Peidame pildi juhul kui see on lisatud WP menüü nime sisse */
}
.header__wrap .mainnav .menu-item > a[href*=vaikne-spa] > img,
.header__wrap .mainnav .menu-item > a[href*=Vaikne-Spa] > img,
.header__wrap .mainnav .menu-item > a[href*=vaiknespa] > img {
  display: none !important;
}
.header__wrap .mainnav .menu-item > a[href*=vaikne-spa]::before,
.header__wrap .mainnav .menu-item > a[href*=Vaikne-Spa]::before,
.header__wrap .mainnav .menu-item > a[href*=vaiknespa]::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 150px;
  height: 75px;
  background-image: url("../assets/img/logo-vaikne-spa.png");
  background-size: 100% 200%;
  background-position: center bottom;
  transition: background-position 0.3s ease;
}
.header__wrap .mainnav .menu-item > a[href*=vaikne-spa]:hover::before,
.header__wrap .mainnav .menu-item > a[href*=Vaikne-Spa]:hover::before,
.header__wrap .mainnav .menu-item > a[href*=vaiknespa]:hover::before {
  background-position: center top;
}

.header--section {
  min-height: 130px;
  background: linear-gradient(to top, #bcbcbc, #e1e1e1 28%, #efefef 55%, #ffffff 77%, #f1f1f1);
}

.header--infobar {
  background-color: #CC0C3F;
  padding: 8px 0;
  color: #fff;
}

.header--logo__link {
  display: inline-flex;
  align-items: center;
}

.header--logo {
  height: 65px;
  width: auto;
}

.header--logo__text {
  text-transform: uppercase;
  font-size: 14px;
  padding-left: 15px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-align: left;
  color: #30373e;
}

html header .lang-switch {
  margin: 0;
  padding: 0;
  list-style: none;
}
html header .lang-switch .lang-switch__item {
  text-transform: inherit;
}
html header .lang-switch .lang-switch__item.current-item {
  display: none;
}
html header .lang-switch .lang-switch__item a {
  color: #CC0C3F;
}
@media (min-width: 1024px) {
  html header .lang-switch .lang-switch__item a {
    color: #fff;
  }
}

.button__wrapper {
  display: block;
  margin-bottom: 30px;
}

.hero__user-quotes {
  margin-top: -50px;
}

.hero__user-quote {
  position: relative;
  display: block;
  background: none;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.hero__user-quote:after {
  content: "";
  background: url("../assets/svg/quote.svg");
  opacity: 0.2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 9;
  background-repeat: no-repeat;
}

.hero__user-quote--author {
  margin-top: 40px;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
}

.top-bar {
  padding: 0;
}
@media (max-width: 1024px) {
  .top-bar .top-bar-left {
    overflow-y: auto;
    max-height: calc(100vh - 40px);
  }
}
.top-bar .navbar--mobile {
  text-align: center;
}
.top-bar .navbar--mobile:first-child {
  margin-top: 12px;
}
.top-bar .navbar--mobile:last-child {
  margin-bottom: 12px;
}
.top-bar .navbar--mobile > ul {
  list-style: none;
  margin: 0;
}
.top-bar .navbar--mobile > ul .list__item {
  background: transparent !important;
  line-height: 1.6;
}
.top-bar .navbar--mobile > ul a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #1E2831;
  padding: 12px;
  transition: all 0.2s;
}
.top-bar .navbar--mobile > ul a.current-menu-item, .top-bar .navbar--mobile > ul a.current-menu-ancestor, .top-bar .navbar--mobile > ul a:hover {
  color: #CC0C3F;
  background: transparent;
}
.top-bar .navbar--mobile > ul a {
  /* Kui WP menüüs on lisatud pilt, siis peidame selle mobiilis ära, et tekst jääks puhtaks */
}
.top-bar .navbar--mobile > ul a[href*=vaikne-spa] > img, .top-bar .navbar--mobile > ul a[href*=Vaikne-Spa] > img, .top-bar .navbar--mobile > ul a[href*=vaiknespa] > img {
  display: none !important;
}

.cta {
  background: linear-gradient(90deg, rgba(239, 239, 242, 0.5) 0%, rgba(255, 255, 255, 0.5) 49.95%, rgba(208, 211, 219, 0.5) 100%);
  padding: 96px 0 60px;
}
.cta__heading {
  font-size: 48px;
  color: #CC0C3F;
  margin-bottom: 36px;
}
.cta__quote {
  position: relative;
  list-style: none;
  margin: 0 0 30px;
}
.cta__quote > .btn, .message-content-actions .cta__quote.btn-group > a, .fep-form .cta__quote > .fep-button, #fep-menu .cta__quote > .fep-button,
#fep-menu .cta__quote > .fep-button-active {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1024px) {
  .cta__quote > .btn, .message-content-actions .cta__quote.btn-group > a, .fep-form .cta__quote > .fep-button, #fep-menu .cta__quote > .fep-button,
  #fep-menu .cta__quote > .fep-button-active {
    position: relative;
    margin: 24px 0 0;
  }
}
.cta__quote .quote {
  display: none;
}
.cta__quote .quote.active {
  display: block;
}
.cta__quote .quote > p {
  font-size: 16px;
  line-height: 1.5;
  color: #30373E;
  margin-bottom: 30px;
}
.cta__quote .quote__author {
  display: flex;
  align-items: center;
}
.cta__quote .quote__author > img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  margin-right: 18px;
}
.cta__quote .quote__name .name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #4D5155;
  margin-bottom: 6px;
}
.cta__quote .quote__name .extra {
  font-size: 14px;
  line-height: 1;
  color: #9FA3A7;
}
.cta__nav {
  display: flex;
}
.cta__nav .nav {
  position: relative;
  cursor: pointer;
  padding: 12px;
}
.cta__nav .nav.active .dot, .cta__nav .nav:hover .dot {
  background: #CC0C3F;
}
.cta__nav .nav.active .dot--inner, .cta__nav .nav:hover .dot--inner {
  background: #FFFFFF;
}
.cta__nav .nav .dot {
  display: block;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s;
}
.cta__nav .nav .dot--inner {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 6px;
  width: 6px;
  background: #9FA3A7;
}
.cta__img {
  text-align: center;
}
.cta__img > img {
  max-width: 420px;
  margin-top: -160px;
}
@media (max-width: 640px) {
  .cta__img > img {
    width: 100%;
  }
}

.instagram {
  background: #FFFFFF;
  padding: 84px;
}
@media (max-width: 640px) {
  .instagram {
    padding: 84px 24px;
  }
}

.footer__container {
  position: relative;
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
  padding: 96px 0 60px;
}
.footer__container .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}
.footer__list-wrap {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
  border-bottom: 1px solid rgba(235, 235, 235, 0.75);
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .footer__list-wrap {
    padding: 0 24px 60px;
  }
}
@media (max-width: 1024px) {
  .footer__list-wrap > .column:not(:last-child), .footer__list-wrap > .columns:not(:last-child) {
    margin-bottom: 36px;
  }
}
.footer__list .list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list .list__item-head {
  font-size: 14px;
  line-height: 2;
  color: #FFFFFF;
}
.footer__list .list__item {
  list-style: none;
}
.footer__list .list__item > a {
  font-size: 14px;
  line-height: 2;
  color: rgba(235, 235, 235, 0.75);
  transition: all 0.2s;
}
.footer__list .list__item > a:hover {
  color: #CC0C3F;
}
.footer__info .info:not(:last-child) {
  margin-bottom: 12px;
}
.footer__info .info__small {
  font-size: 14px;
  line-height: 2;
  color: rgba(235, 235, 235, 0.75);
}
.footer__info .info__big {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
}
.footer__icons {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}
.footer__icons .icon > a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #FFFFFF;
  transition: all 0.2s;
}
.footer__icons .icon > a svg {
  height: 20px;
  width: 20px;
  fill: #EBEBEB;
  margin-right: 18px;
  transition: all 0.2s;
}
.footer__icons .icon > a span {
  line-height: 1;
}
.footer__icons .icon > a:hover {
  color: #CC0C3F;
}
.footer__icons .icon > a:hover svg {
  fill: #CC0C3F;
}
@media (max-width: 1024px) {
  .footer__icons .icon {
    text-align: center;
  }
  .footer__icons .icon > a {
    min-width: 140px;
  }
  .footer__icons .icon:not(:last-child) {
    margin-bottom: 18px;
  }
}
.footer__copyright {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #EBEBEB;
}

.blog__list {
  margin: 0;
}
.blog__article {
  list-style: none;
  margin: 0;
  padding: 24px 0 0 48px;
  position: relative;
  margin-bottom: 30px;
}
.blog__article a {
  display: block;
}
.blog__article a:hover .blog__figure > img {
  border-color: #CC0C3F;
}
.blog__article a:hover .blog__article--title span {
  border-bottom: 1px solid #CC0C3F;
}
.blog__article a .blog__figure {
  padding-left: 20px;
  padding-bottom: 20px;
  transition: border 0.2s ease-in-out;
}
.blog__article a .blog__figure.blog__figure--straight {
  padding: 0;
}
@media (max-width: 640px) {
  .blog__article a .blog__figure {
    padding-left: 0;
  }
}
.blog__article a .blog__figure > img {
  border: 1px solid transparent;
  transition: inherit;
}
.blog__article a .blog__article--title span {
  border: 1px solid transparent;
  transition: border 250ms ease-in-out;
}
.blog__article .blog__time {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: baseline;
  background: #CC0C3F;
  padding: 5px 24px;
  color: #FFFFFF;
}
.blog__article .blog__time--day {
  font-size: 24px;
  margin-right: 4px;
}
.blog__article .blog__time--month {
  font-size: 18px;
}
.blog__article .blog__time .span-reading-time {
  margin-left: 12px;
}
.blog__article .content {
  padding: 0 15px;
  margin-left: 15px;
}
@media (max-width: 640px) {
  .blog__article .content {
    padding: 0;
    margin-left: 0;
  }
}
.blog__article .content .span-reading-time {
  color: #9FA3A7;
  font-size: 14px;
  font-weight: 300;
}
.blog__article--title {
  color: #CC0C3F;
  font-size: 20px;
  line-height: 29px;
}
.blog__article--excerpt {
  color: #4D5155;
  font-size: 16px;
  line-height: 26px;
}
.blog__article--sticky {
  margin-bottom: 90px;
}
.blog__article--sticky .post__details {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}
.blog__article--sticky .post__details--read-time:before {
  content: "•";
  margin: 10px;
}
.blog__article--sticky .content {
  padding: 0;
  margin: 0;
}
.blog__article--sticky .blog__article--title {
  color: #CC0C3F;
  font-size: 24px;
  line-height: 35px;
  margin: 24px 0 12px 24px;
}
@media (max-width: 640px) {
  .blog__article--sticky .blog__article--title {
    margin-left: 0;
  }
}
.blog__article--sticky .blog__article--excerpt {
  color: #4D5155;
  font-size: 16px;
  line-height: 26px;
  margin-left: 24px;
}
@media (max-width: 640px) {
  .blog__article--sticky .blog__article--excerpt {
    margin-left: 0;
  }
}
.blog__article--related {
  margin-bottom: 60px;
  padding: 20px 20px 20px 0;
}
.blog__article--related a span {
  font-weight: normal;
}
.blog__article--related .content {
  padding: 0 0 0 20px;
  margin: 0;
}
@media (max-width: 640px) {
  .blog__article--related .content {
    padding: 0;
  }
}
.blog__article--related .blog__article--title {
  color: #CC0C3F;
  font-size: 20px;
  margin-top: 20px;
}
.blog__article--related .blog__article--excerpt {
  color: #4D5155;
  font-size: 16px;
  font-weight: normal;
}

.useful {
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .useful {
    padding-left: 0;
  }
}
.useful__list {
  list-style: none;
  padding-top: 48px;
  margin: 0;
}
.useful__item:not(:last-child) {
  margin-bottom: 48px;
}
.useful__item .item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.useful__item .item__icon {
  flex: 0 0 66px;
  height: 66px;
  margin-right: 36px;
}
.useful__item .item__content {
  flex: 1 1 auto;
}
.useful__item .item__content h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #4D5155;
  margin-bottom: 0;
}
.useful__item .item__content p {
  font-size: 14px;
  color: #4D5155;
}
.useful__item .item-line {
  display: flex;
  align-items: center;
}
.useful__item .item-line .line {
  flex: 1 1 auto;
  height: 1px;
  background: #9FA3A7;
  margin-right: 12px;
  transition: all 0.2s;
}
.useful .cta__nav {
  justify-content: center;
}

.packet {
  display: flex;
  border-bottom: 1px solid #D8D8D8;
  padding: 36px 0;
  margin-left: 24px;
}
@media (max-width: 1024px) {
  .packet {
    margin-left: 0;
  }
}
.packet--blue .packet__price .price__sum {
  border-color: #0090D6;
  color: #0090D6;
}
.packet--mb40 {
  margin-bottom: 40px;
}
.packet__price {
  flex: 0 0 auto;
  margin-right: 24px;
}
.packet__price .price__text {
  font-size: 14px;
  line-height: 1;
  color: #4D5155;
  margin-bottom: 6px;
}
.packet__price .price__sum {
  display: inline-block;
  min-width: 60px;
  height: 26px;
  border: 1px solid #CC0C3F;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #CC0C3F;
}
.packet__meta {
  flex: 1 1 auto;
}
.packet__meta .meta__text {
  font-size: 18px;
  line-height: 1.2;
  color: #1E2831;
}
.packet__meta .meta__text:not(:last-child) {
  margin-bottom: 6px;
}
.packet__meta .meta__text--large {
  font-size: 20px;
}
.packet__meta .meta__text--small {
  font-size: 14px;
}
.packet__meta .meta__text--icon {
  display: flex;
  align-items: center;
}
.packet__meta .meta__text--icon > svg {
  height: 16px;
  width: 18px;
  margin-right: 4px;
  stroke: #D8D8D8;
}
.packet__meta .meta__text--bold {
  font-weight: 400;
}
.packet__meta .meta__text--light {
  color: #9FA3A7;
}
.packet__meta .meta__text--mb24 {
  margin-bottom: 24px !important;
}

.cta__promotion--minus-top-195 {
  margin-top: -195px;
}

.sidebar__promotion {
  padding: 30px;
  color: #FFFFFF;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 30px;
  background-color: #888888;
  background-blend-mode: multiply;
}
.sidebar__promotion--content {
  border: 1px solid #EBEBEB;
  padding: 60px 40px;
}
.sidebar__promotion--shift-border {
  padding: 30px 0px 0px 30px;
  display: none;
}
.sidebar__promotion--shift-border .sidebar__promotion--content {
  min-height: 386px;
}
.sidebar__promotion--shift-border.active {
  padding: 30px 0px 0px 30px;
  display: block;
}
.sidebar__promotion--title {
  font-size: 36px;
  line-height: 40px;
  color: white;
}
.sidebar__promotion--text {
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
  margin-bottom: 18px;
}
.sidebar__promotion--price {
  margin: 25px 0;
  font-size: 20px;
  line-height: 29px;
}
.sidebar__promotion--stick-top {
  margin-top: -72px;
}
.sidebar__promotion hr {
  width: 50px;
  background-color: #fff;
  height: 2px;
  margin-left: 0;
  margin-bottom: 36px;
}
.sidebar__promotion .nf-error-msg {
  color: #fff;
}

.trainers__container {
  padding: 40px 30px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  margin-bottom: 24px;
}

.trainer__figure {
  margin-right: 24px;
}

.trainer__figure--image {
  border-radius: 50%;
}

.trainer__name {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}

.trainer__title {
  font-size: 14px;
  line-height: 20px;
  color: #CC0C3F;
}

.trainer__meta {
  margin-top: 10px;
  color: #4D5155;
  font-size: 14px;
}

.trainer-sidebar__meta a:hover {
  color: #fff;
  text-decoration: underline;
}

.trainer-sidebar {
  background: #ccc;
  margin-top: -72px;
  margin-left: 30px;
  padding-top: 640px;
  position: relative;
}
.trainer-sidebar:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  background: url("../assets/svg/triangle.svg");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

.trainer-sidebar__triangle {
  background-color: #CC0C3F;
  margin-left: 30px;
  padding: 30px;
  color: #fff;
}

.trainer-sidebar__name {
  font-size: 20px;
  line-height: 29px;
}

hr.trainer-line {
  height: 2px;
  max-width: 50px;
  background-color: #fff;
  text-align: left;
  margin: 12px 0 36px;
}

.trainer-sidebar__button--container {
  margin-top: 48px;
}

.slider-helper {
  position: relative;
  z-index: 2;
  height: 2px;
  background: #D8D8D8;
}
.slider-helper--start .slider-helper__dot {
  right: 0;
  transform: translate(50%, -50%);
}
.slider-helper--end .slider-helper__dot {
  left: 0;
  transform: translate(-50%, -50%);
}
.slider-helper__dot {
  position: absolute;
  top: 50%;
  display: inline-block;
  height: 14px;
  width: 14px;
  background: #D8D8D8;
  border-radius: 50%;
}
.slider-helper__time {
  position: absolute;
  top: calc(100% + 7px);
  left: -19px;
  width: 48px;
  text-align: center;
  font-size: 14px;
  color: #D8D8D8;
}

.slider {
  position: relative;
  z-index: 3;
  height: 2px;
  background: #D8D8D8;
}
.slider__line {
  border-radius: 2px;
}
.slider .ui-slider-range {
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #CC0C3F 15%, transparent 85%);
}
.slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  height: 14px;
  width: 14px;
  background: #FFFFFF;
  border: 5px solid #CC0C3F;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}
.slider__time {
  position: absolute;
  bottom: calc(100% + 12px);
  left: -24px;
  width: 48px;
  text-align: center;
  font-size: 14px;
  color: #CC0C3F;
}

@media (max-width: 1024px) {
  .page-template-dashboard .switcher nav,
  .page-template-my-account .switcher nav,
  .page-template-contract .switcher nav,
  .page-template-notification .switcher nav,
  .page-template-invoice .switcher nav {
    margin-top: 40px;
  }
}
.switcher {
  border-bottom: 2px solid #e6e6e6;
}
.switcher .mainnav-submenu-section .menu-item > a:before {
  height: 60px;
  margin-bottom: 12px;
}
.switcher .mainnav-submenu-section__noicons .menu-item {
  margin: 0 30px -2px;
}
.switcher .mainnav-submenu-section__noicons .menu-item > a {
  padding: 30px 0 24px;
}
@media (max-width: 1024px) {
  .switcher .mainnav-submenu-section__noicons .menu-item > a {
    padding: 0;
  }
}
.switcher .mainnav-submenu-section__noicons .menu-item > a:before {
  content: none;
}
.switcher__list, .mainnav-submenu-section__vertical, .sub-menu {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .switcher__list, .mainnav-submenu-section__vertical, .sub-menu {
    display: block;
    padding: 24px 0;
  }
}
.switcher__list .menu-item, .mainnav-submenu-section__vertical .menu-item, .sub-menu .menu-item {
  flex: 0 0 auto;
  font-size: 18px;
  color: #9FA3A7;
  margin: 0 60px -2px;
  transition: all 0.2s;
}
.switcher__list .menu-item > a, .mainnav-submenu-section__vertical .menu-item > a, .sub-menu .menu-item > a {
  display: block;
  color: inherit;
  white-space: nowrap;
  padding: 24px 0;
}
@media (max-width: 1024px) {
  .switcher__list .menu-item, .mainnav-submenu-section__vertical .menu-item, .sub-menu .menu-item {
    border-bottom: none !important;
    margin: 0;
    padding: 12px;
  }
  .switcher__list .menu-item a, .mainnav-submenu-section__vertical .menu-item a, .sub-menu .menu-item a {
    position: relative;
    text-align: left;
    line-height: 40px;
    padding: 0 0 0 60px;
  }
  .switcher__list .menu-item a:before, .mainnav-submenu-section__vertical .menu-item a:before, .sub-menu .menu-item a:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px !important;
    width: 40px;
  }
  .switcher__list .menu-item.current-menu-item, .mainnav-submenu-section__vertical .menu-item.current-menu-item, .sub-menu .menu-item.current-menu-item, .switcher__list .menu-item.current-page-ancestor, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor, .sub-menu .menu-item.current-page-ancestor {
    border-left: 2px solid #CC0C3F;
    background: #EBEBEB;
  }
}
.switcher__list .menu-item:hover, .mainnav-submenu-section__vertical .menu-item:hover, .sub-menu .menu-item:hover, .switcher__list .menu-item.current-page-ancestor, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor, .sub-menu .menu-item.current-page-ancestor {
  color: #CC0C3F;
}
.switcher__list .menu-item.current-menu-item, .mainnav-submenu-section__vertical .menu-item.current-menu-item, .sub-menu .menu-item.current-menu-item, .switcher__list .menu-item.current-page-ancestor, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor, .sub-menu .menu-item.current-page-ancestor {
  color: #CC0C3F;
  border-bottom: 2px solid #CC0C3F;
}
.switcher__list .menu-item > a:before, .mainnav-submenu-section__vertical .menu-item > a:before, .sub-menu .menu-item > a:before {
  content: "";
  display: block;
  height: 36px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 6px;
  transition: all 250ms ease;
}
.switcher__list .menu-item.icon-dashboard > a:before, .mainnav-submenu-section__vertical .menu-item.icon-dashboard > a:before, .sub-menu .menu-item.icon-dashboard > a:before {
  background-image: url("../assets/svg/board-icon.svg");
}
.switcher__list .menu-item.icon-account > a:before, .mainnav-submenu-section__vertical .menu-item.icon-account > a:before, .sub-menu .menu-item.icon-account > a:before {
  background-image: url("../assets/svg/acc-icon.svg");
}
.switcher__list .menu-item.icon-clients > a:before, .mainnav-submenu-section__vertical .menu-item.icon-clients > a:before, .sub-menu .menu-item.icon-clients > a:before {
  background-image: url("../assets/svg/client-icon.svg");
}
.switcher__list .menu-item.icon-contract > a:before, .mainnav-submenu-section__vertical .menu-item.icon-contract > a:before, .sub-menu .menu-item.icon-contract > a:before {
  background-image: url("../assets/svg/leping-icon.svg");
}
.switcher__list .menu-item.icon-notification > a:before, .mainnav-submenu-section__vertical .menu-item.icon-notification > a:before, .sub-menu .menu-item.icon-notification > a:before {
  background-image: url("../assets/svg/msg-icon.svg");
}
.switcher__list .menu-item.icon-invoice > a:before, .mainnav-submenu-section__vertical .menu-item.icon-invoice > a:before, .sub-menu .menu-item.icon-invoice > a:before {
  background-image: url("../assets/svg/bill-icon.svg");
}
.switcher__list .menu-item.icon-training > a:before, .mainnav-submenu-section__vertical .menu-item.icon-training > a:before, .sub-menu .menu-item.icon-training > a:before {
  background-image: url("../assets/svg/training.svg");
}
.switcher__list .menu-item.icon-grouptraining > a:before, .mainnav-submenu-section__vertical .menu-item.icon-grouptraining > a:before, .sub-menu .menu-item.icon-grouptraining > a:before {
  background-image: url("../assets/svg/group.svg");
}
.switcher__list .menu-item.icon-personaltraining > a:before, .mainnav-submenu-section__vertical .menu-item.icon-personaltraining > a:before, .sub-menu .menu-item.icon-personaltraining > a:before {
  background-image: url("../assets/svg/personal.svg");
}
.switcher__list .menu-item.icon-gym > a:before, .mainnav-submenu-section__vertical .menu-item.icon-gym > a:before, .sub-menu .menu-item.icon-gym > a:before {
  background-image: url("../assets/svg/gym.svg");
}
.switcher__list .menu-item.icon-saavutussport > a:before, .mainnav-submenu-section__vertical .menu-item.icon-saavutussport > a:before, .sub-menu .menu-item.icon-saavutussport > a:before {
  background-image: url("../assets/svg/saavutussport.svg");
}
.switcher__list .menu-item.icon-training2 > a:before, .mainnav-submenu-section__vertical .menu-item.icon-training2 > a:before, .sub-menu .menu-item.icon-training2 > a:before {
  background-image: url("../assets/svg/training-3.svg");
}
.switcher__list .menu-item.icon-pool > a:before, .mainnav-submenu-section__vertical .menu-item.icon-pool > a:before, .sub-menu .menu-item.icon-pool > a:before {
  background-image: url("../assets/svg/pool.svg");
}
.switcher__list .menu-item.icon-relax > a:before, .mainnav-submenu-section__vertical .menu-item.icon-relax > a:before, .sub-menu .menu-item.icon-relax > a:before {
  background-image: url("../assets/svg/relax.svg");
}
.switcher__list .menu-item.icon-courses > a:before, .mainnav-submenu-section__vertical .menu-item.icon-courses > a:before, .sub-menu .menu-item.icon-courses > a:before {
  background-image: url("../assets/svg/courses.svg");
}
.switcher__list .menu-item.icon-brooneeri > a:before, .mainnav-submenu-section__vertical .menu-item.icon-brooneeri > a:before, .sub-menu .menu-item.icon-brooneeri > a:before {
  background-image: url("../assets/svg/brooneeri.svg");
}
.switcher__list .menu-item.icon-galerii > a:before, .mainnav-submenu-section__vertical .menu-item.icon-galerii > a:before, .sub-menu .menu-item.icon-galerii > a:before {
  background-image: url("../assets/svg/galerii.svg");
}
.switcher__list .menu-item.icon-kodukord > a:before, .mainnav-submenu-section__vertical .menu-item.icon-kodukord > a:before, .sub-menu .menu-item.icon-kodukord > a:before {
  background-image: url("../assets/svg/kodukord.svg");
}
.switcher__list .menu-item.icon-meeskond > a:before, .mainnav-submenu-section__vertical .menu-item.icon-meeskond > a:before, .sub-menu .menu-item.icon-meeskond > a:before {
  background-image: url("../assets/svg/meeskond.svg");
}
.switcher__list .menu-item.icon-treeninguid > a:before, .mainnav-submenu-section__vertical .menu-item.icon-treeninguid > a:before, .sub-menu .menu-item.icon-treeninguid > a:before {
  background-image: url("../assets/svg/treeninguid.svg");
}
.switcher__list .menu-item.icon-voimalused > a:before, .mainnav-submenu-section__vertical .menu-item.icon-voimalused > a:before, .sub-menu .menu-item.icon-voimalused > a:before {
  background-image: url("../assets/svg/voimalused.svg");
}
.switcher__list .menu-item.icon-soodustus > a:before, .mainnav-submenu-section__vertical .menu-item.icon-soodustus > a:before, .sub-menu .menu-item.icon-soodustus > a:before {
  background-image: url("../assets/svg/soodustus.svg");
}
.switcher__list .menu-item.icon-saun-icon > a:before, .mainnav-submenu-section__vertical .menu-item.icon-saun-icon > a:before, .sub-menu .menu-item.icon-saun-icon > a:before {
  background-image: url("../assets/svg/saun-icon-v2.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-hinnakiri-icon > a:before, .mainnav-submenu-section__vertical .menu-item.icon-hinnakiri-icon > a:before, .sub-menu .menu-item.icon-hinnakiri-icon > a:before {
  background-image: url("../assets/svg/hinnakiri-icon-v2.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-saunarituaalid1-icon > a:before, .mainnav-submenu-section__vertical .menu-item.icon-saunarituaalid1-icon > a:before, .sub-menu .menu-item.icon-saunarituaalid1-icon > a:before {
  background-image: url("../assets/svg/saunarituaalid1-icon-v2.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-loogastus-icon > a:before, .mainnav-submenu-section__vertical .menu-item.icon-loogastus-icon > a:before, .sub-menu .menu-item.icon-loogastus-icon > a:before {
  background-image: url("../assets/svg/loogastus-icon-v2.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-tagasiside > a:before, .mainnav-submenu-section__vertical .menu-item.icon-tagasiside > a:before, .sub-menu .menu-item.icon-tagasiside > a:before {
  background-image: url("../assets/svg/tagasiside.svg");
}
.switcher__list .menu-item.icon-parkimine > a:before, .mainnav-submenu-section__vertical .menu-item.icon-parkimine > a:before, .sub-menu .menu-item.icon-parkimine > a:before {
  background-image: url("../assets/svg/parkimine.svg");
}
.switcher__list .menu-item.icon-parkimine > a:before, .mainnav-submenu-section__vertical .menu-item.icon-parkimine > a:before, .sub-menu .menu-item.icon-parkimine > a:before {
  background-image: url("../assets/svg/parkimine.svg");
}
.switcher__list .menu-item.icon-birthday > a:before, .mainnav-submenu-section__vertical .menu-item.icon-birthday > a:before, .sub-menu .menu-item.icon-birthday > a:before {
  background-image: url("../assets/svg/birthday.svg");
}
.switcher__list .menu-item.icon-birthday--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-birthday--white > a:before, .sub-menu .menu-item.icon-birthday--white > a:before {
  background-image: url("../assets/svg/birthday.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-bassein--white > a:before, .sub-menu .menu-item.icon-bassein--white > a:before {
  background-image: url("../assets/svg/bassein-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-bassein--white > a:before, .sub-menu .menu-item.icon-bassein--white > a:before {
  background-image: url("../assets/svg/bassein-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-jousaal--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-jousaal--white > a:before, .sub-menu .menu-item.icon-jousaal--white > a:before {
  background-image: url("../assets/svg/jousaal-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-kursed--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-kursed--white > a:before, .sub-menu .menu-item.icon-kursed--white > a:before {
  background-image: url("../assets/svg/kursed-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-loogastus--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-loogastus--white > a:before, .sub-menu .menu-item.icon-loogastus--white > a:before {
  background-image: url("../assets/svg/loogastus-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-newicon--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-newicon--white > a:before, .sub-menu .menu-item.icon-newicon--white > a:before {
  background-image: url("../assets/svg/newicon-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-saun--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-saun--white > a:before, .sub-menu .menu-item.icon-saun--white > a:before {
  background-image: url("../assets/svg/saun-icon-v2.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-personal--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-personal--white > a:before, .sub-menu .menu-item.icon-personal--white > a:before {
  background-image: url("../assets/svg/personal-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-ruhma--white > a:before, .mainnav-submenu-section__vertical .menu-item.icon-ruhma--white > a:before, .sub-menu .menu-item.icon-ruhma--white > a:before {
  background-image: url("../assets/svg/ruhma-white.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.icon-ruhma--star > a:before, .mainnav-submenu-section__vertical .menu-item.icon-ruhma--star > a:before, .sub-menu .menu-item.icon-ruhma--star > a:before {
  background-image: url("../assets/svg/reval-star.svg");
  opacity: 0.75;
  transition: 0.2s ease;
}
.switcher__list .menu-item.current-menu-item.icon-dashboard > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-dashboard > a:before, .sub-menu .menu-item.current-menu-item.icon-dashboard > a:before, .switcher__list .menu-item.current-page-ancestor.icon-dashboard > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-dashboard > a:before, .sub-menu .menu-item.current-page-ancestor.icon-dashboard > a:before, .switcher__list .menu-item:hover.icon-dashboard > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-dashboard > a:before, .sub-menu .menu-item:hover.icon-dashboard > a:before {
  background-image: url("../assets/svg/board-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-account > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-account > a:before, .sub-menu .menu-item.current-menu-item.icon-account > a:before, .switcher__list .menu-item.current-page-ancestor.icon-account > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-account > a:before, .sub-menu .menu-item.current-page-ancestor.icon-account > a:before, .switcher__list .menu-item:hover.icon-account > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-account > a:before, .sub-menu .menu-item:hover.icon-account > a:before {
  background-image: url("../assets/svg/acc-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-clients > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-clients > a:before, .sub-menu .menu-item.current-menu-item.icon-clients > a:before, .switcher__list .menu-item.current-page-ancestor.icon-clients > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-clients > a:before, .sub-menu .menu-item.current-page-ancestor.icon-clients > a:before, .switcher__list .menu-item:hover.icon-clients > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-clients > a:before, .sub-menu .menu-item:hover.icon-clients > a:before {
  background-image: url("../assets/svg/client-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-contract > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-contract > a:before, .sub-menu .menu-item.current-menu-item.icon-contract > a:before, .switcher__list .menu-item.current-page-ancestor.icon-contract > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-contract > a:before, .sub-menu .menu-item.current-page-ancestor.icon-contract > a:before, .switcher__list .menu-item:hover.icon-contract > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-contract > a:before, .sub-menu .menu-item:hover.icon-contract > a:before {
  background-image: url("../assets/svg/leping-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-notification > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-notification > a:before, .sub-menu .menu-item.current-menu-item.icon-notification > a:before, .switcher__list .menu-item.current-page-ancestor.icon-notification > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-notification > a:before, .sub-menu .menu-item.current-page-ancestor.icon-notification > a:before, .switcher__list .menu-item:hover.icon-notification > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-notification > a:before, .sub-menu .menu-item:hover.icon-notification > a:before {
  background-image: url("../assets/svg/msg-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-invoice > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-invoice > a:before, .sub-menu .menu-item.current-menu-item.icon-invoice > a:before, .switcher__list .menu-item.current-page-ancestor.icon-invoice > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-invoice > a:before, .sub-menu .menu-item.current-page-ancestor.icon-invoice > a:before, .switcher__list .menu-item:hover.icon-invoice > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-invoice > a:before, .sub-menu .menu-item:hover.icon-invoice > a:before {
  background-image: url("../assets/svg/bill-icon-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-training > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-training > a:before, .sub-menu .menu-item.current-menu-item.icon-training > a:before, .switcher__list .menu-item.current-page-ancestor.icon-training > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-training > a:before, .sub-menu .menu-item.current-page-ancestor.icon-training > a:before, .switcher__list .menu-item:hover.icon-training > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-training > a:before, .sub-menu .menu-item:hover.icon-training > a:before {
  background-image: url("../assets/svg/training-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-grouptraining > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-grouptraining > a:before, .sub-menu .menu-item.current-menu-item.icon-grouptraining > a:before, .switcher__list .menu-item.current-page-ancestor.icon-grouptraining > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-grouptraining > a:before, .sub-menu .menu-item.current-page-ancestor.icon-grouptraining > a:before, .switcher__list .menu-item:hover.icon-grouptraining > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-grouptraining > a:before, .sub-menu .menu-item:hover.icon-grouptraining > a:before {
  background-image: url("../assets/svg/group-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-personaltraining > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-personaltraining > a:before, .sub-menu .menu-item.current-menu-item.icon-personaltraining > a:before, .switcher__list .menu-item.current-page-ancestor.icon-personaltraining > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-personaltraining > a:before, .sub-menu .menu-item.current-page-ancestor.icon-personaltraining > a:before, .switcher__list .menu-item:hover.icon-personaltraining > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-personaltraining > a:before, .sub-menu .menu-item:hover.icon-personaltraining > a:before {
  background-image: url("../assets/svg/personal-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-gym > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-gym > a:before, .sub-menu .menu-item.current-menu-item.icon-gym > a:before, .switcher__list .menu-item.current-page-ancestor.icon-gym > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-gym > a:before, .sub-menu .menu-item.current-page-ancestor.icon-gym > a:before, .switcher__list .menu-item:hover.icon-gym > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-gym > a:before, .sub-menu .menu-item:hover.icon-gym > a:before {
  background-image: url("../assets/svg/gym-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-saavutussport > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-saavutussport > a:before, .sub-menu .menu-item.current-menu-item.icon-saavutussport > a:before, .switcher__list .menu-item.current-page-ancestor.icon-saavutussport > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-saavutussport > a:before, .sub-menu .menu-item.current-page-ancestor.icon-saavutussport > a:before, .switcher__list .menu-item:hover.icon-saavutussport > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-saavutussport > a:before, .sub-menu .menu-item:hover.icon-saavutussport > a:before {
  background-image: url("../assets/svg/saavutussport-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-training2 > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-training2 > a:before, .sub-menu .menu-item.current-menu-item.icon-training2 > a:before, .switcher__list .menu-item.current-page-ancestor.icon-training2 > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-training2 > a:before, .sub-menu .menu-item.current-page-ancestor.icon-training2 > a:before, .switcher__list .menu-item:hover.icon-training2 > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-training2 > a:before, .sub-menu .menu-item:hover.icon-training2 > a:before {
  background-image: url("../assets/svg/training-3-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-pool > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-pool > a:before, .sub-menu .menu-item.current-menu-item.icon-pool > a:before, .switcher__list .menu-item.current-page-ancestor.icon-pool > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-pool > a:before, .sub-menu .menu-item.current-page-ancestor.icon-pool > a:before, .switcher__list .menu-item:hover.icon-pool > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-pool > a:before, .sub-menu .menu-item:hover.icon-pool > a:before {
  background-image: url("../assets/svg/pool-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-relax > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-relax > a:before, .sub-menu .menu-item.current-menu-item.icon-relax > a:before, .switcher__list .menu-item.current-page-ancestor.icon-relax > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-relax > a:before, .sub-menu .menu-item.current-page-ancestor.icon-relax > a:before, .switcher__list .menu-item:hover.icon-relax > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-relax > a:before, .sub-menu .menu-item:hover.icon-relax > a:before {
  background-image: url("../assets/svg/relax-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-courses > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-courses > a:before, .sub-menu .menu-item.current-menu-item.icon-courses > a:before, .switcher__list .menu-item.current-page-ancestor.icon-courses > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-courses > a:before, .sub-menu .menu-item.current-page-ancestor.icon-courses > a:before, .switcher__list .menu-item:hover.icon-courses > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-courses > a:before, .sub-menu .menu-item:hover.icon-courses > a:before {
  background-image: url("../assets/svg/courses-active-blue.svg");
}
.switcher__list .menu-item.current-menu-item.icon-brooneeri > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-brooneeri > a:before, .sub-menu .menu-item.current-menu-item.icon-brooneeri > a:before, .switcher__list .menu-item.current-page-ancestor.icon-brooneeri > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-brooneeri > a:before, .sub-menu .menu-item.current-page-ancestor.icon-brooneeri > a:before, .switcher__list .menu-item:hover.icon-brooneeri > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-brooneeri > a:before, .sub-menu .menu-item:hover.icon-brooneeri > a:before {
  background-image: url("../assets/svg/brooneeri-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-galerii > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-galerii > a:before, .sub-menu .menu-item.current-menu-item.icon-galerii > a:before, .switcher__list .menu-item.current-page-ancestor.icon-galerii > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-galerii > a:before, .sub-menu .menu-item.current-page-ancestor.icon-galerii > a:before, .switcher__list .menu-item:hover.icon-galerii > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-galerii > a:before, .sub-menu .menu-item:hover.icon-galerii > a:before {
  background-image: url("../assets/svg/galerii-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-kodukord > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-kodukord > a:before, .sub-menu .menu-item.current-menu-item.icon-kodukord > a:before, .switcher__list .menu-item.current-page-ancestor.icon-kodukord > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-kodukord > a:before, .sub-menu .menu-item.current-page-ancestor.icon-kodukord > a:before, .switcher__list .menu-item:hover.icon-kodukord > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-kodukord > a:before, .sub-menu .menu-item:hover.icon-kodukord > a:before {
  background-image: url("../assets/svg/kodukord-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-meeskond > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-meeskond > a:before, .sub-menu .menu-item.current-menu-item.icon-meeskond > a:before, .switcher__list .menu-item.current-page-ancestor.icon-meeskond > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-meeskond > a:before, .sub-menu .menu-item.current-page-ancestor.icon-meeskond > a:before, .switcher__list .menu-item:hover.icon-meeskond > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-meeskond > a:before, .sub-menu .menu-item:hover.icon-meeskond > a:before {
  background-image: url("../assets/svg/meeskond-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-treeninguid > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-treeninguid > a:before, .sub-menu .menu-item.current-menu-item.icon-treeninguid > a:before, .switcher__list .menu-item.current-page-ancestor.icon-treeninguid > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-treeninguid > a:before, .sub-menu .menu-item.current-page-ancestor.icon-treeninguid > a:before, .switcher__list .menu-item:hover.icon-treeninguid > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-treeninguid > a:before, .sub-menu .menu-item:hover.icon-treeninguid > a:before {
  background-image: url("../assets/svg/treeninguid-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-voimalused > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-voimalused > a:before, .sub-menu .menu-item.current-menu-item.icon-voimalused > a:before, .switcher__list .menu-item.current-page-ancestor.icon-voimalused > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-voimalused > a:before, .sub-menu .menu-item.current-page-ancestor.icon-voimalused > a:before, .switcher__list .menu-item:hover.icon-voimalused > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-voimalused > a:before, .sub-menu .menu-item:hover.icon-voimalused > a:before {
  background-image: url("../assets/svg/voimalused-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-soodustus > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-soodustus > a:before, .sub-menu .menu-item.current-menu-item.icon-soodustus > a:before, .switcher__list .menu-item.current-page-ancestor.icon-soodustus > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-soodustus > a:before, .sub-menu .menu-item.current-page-ancestor.icon-soodustus > a:before, .switcher__list .menu-item:hover.icon-soodustus > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-soodustus > a:before, .sub-menu .menu-item:hover.icon-soodustus > a:before {
  background-image: url("../assets/svg/soodustus-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-saun-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-saun-icon > a:before, .sub-menu .menu-item.current-menu-item.icon-saun-icon > a:before, .switcher__list .menu-item.current-page-ancestor.icon-saun-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-saun-icon > a:before, .sub-menu .menu-item.current-page-ancestor.icon-saun-icon > a:before, .switcher__list .menu-item:hover.icon-saun-icon > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-saun-icon > a:before, .sub-menu .menu-item:hover.icon-saun-icon > a:before {
  background-image: url("../assets/svg/saun-icon-active-v2.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-hinnakiri-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-hinnakiri-icon > a:before, .sub-menu .menu-item.current-menu-item.icon-hinnakiri-icon > a:before, .switcher__list .menu-item.current-page-ancestor.icon-hinnakiri-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-hinnakiri-icon > a:before, .sub-menu .menu-item.current-page-ancestor.icon-hinnakiri-icon > a:before, .switcher__list .menu-item:hover.icon-hinnakiri-icon > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-hinnakiri-icon > a:before, .sub-menu .menu-item:hover.icon-hinnakiri-icon > a:before {
  background-image: url("../assets/svg/hinnakiri-icon-active-v2.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-saunarituaalid1-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-saunarituaalid1-icon > a:before, .sub-menu .menu-item.current-menu-item.icon-saunarituaalid1-icon > a:before, .switcher__list .menu-item.current-page-ancestor.icon-saunarituaalid1-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-saunarituaalid1-icon > a:before, .sub-menu .menu-item.current-page-ancestor.icon-saunarituaalid1-icon > a:before, .switcher__list .menu-item:hover.icon-saunarituaalid1-icon > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-saunarituaalid1-icon > a:before, .sub-menu .menu-item:hover.icon-saunarituaalid1-icon > a:before {
  background-image: url("../assets/svg/saunarituaalid1-icon-active-v2.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-loogastus-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-loogastus-icon > a:before, .sub-menu .menu-item.current-menu-item.icon-loogastus-icon > a:before, .switcher__list .menu-item.current-page-ancestor.icon-loogastus-icon > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-loogastus-icon > a:before, .sub-menu .menu-item.current-page-ancestor.icon-loogastus-icon > a:before, .switcher__list .menu-item:hover.icon-loogastus-icon > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-loogastus-icon > a:before, .sub-menu .menu-item:hover.icon-loogastus-icon > a:before {
  background-image: url("../assets/svg/loogastus-icon-active-v2.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-tagasiside > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-tagasiside > a:before, .sub-menu .menu-item.current-menu-item.icon-tagasiside > a:before, .switcher__list .menu-item.current-page-ancestor.icon-tagasiside > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-tagasiside > a:before, .sub-menu .menu-item.current-page-ancestor.icon-tagasiside > a:before, .switcher__list .menu-item:hover.icon-tagasiside > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-tagasiside > a:before, .sub-menu .menu-item:hover.icon-tagasiside > a:before {
  background-image: url("../assets/svg/tagasiside-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-parkimine > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-parkimine > a:before, .sub-menu .menu-item.current-menu-item.icon-parkimine > a:before, .switcher__list .menu-item.current-page-ancestor.icon-parkimine > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-parkimine > a:before, .sub-menu .menu-item.current-page-ancestor.icon-parkimine > a:before, .switcher__list .menu-item:hover.icon-parkimine > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-parkimine > a:before, .sub-menu .menu-item:hover.icon-parkimine > a:before {
  background-image: url("../assets/svg/parkimine-active.svg");
}
.switcher__list .menu-item.current-menu-item.icon-birthday--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-birthday--white > a:before, .sub-menu .menu-item.current-menu-item.icon-birthday--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-birthday--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-birthday--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-birthday--white > a:before, .switcher__list .menu-item:hover.icon-birthday--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-birthday--white > a:before, .sub-menu .menu-item:hover.icon-birthday--white > a:before {
  background-image: url("../assets/svg/birthday.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-bassein--white > a:before, .sub-menu .menu-item.current-menu-item.icon-bassein--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-bassein--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-bassein--white > a:before, .switcher__list .menu-item:hover.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-bassein--white > a:before, .sub-menu .menu-item:hover.icon-bassein--white > a:before {
  background-image: url("../assets/svg/bassein-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-bassein--white > a:before, .sub-menu .menu-item.current-menu-item.icon-bassein--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-bassein--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-bassein--white > a:before, .switcher__list .menu-item:hover.icon-bassein--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-bassein--white > a:before, .sub-menu .menu-item:hover.icon-bassein--white > a:before {
  background-image: url("../assets/svg/bassein-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-jousaal--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-jousaal--white > a:before, .sub-menu .menu-item.current-menu-item.icon-jousaal--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-jousaal--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-jousaal--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-jousaal--white > a:before, .switcher__list .menu-item:hover.icon-jousaal--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-jousaal--white > a:before, .sub-menu .menu-item:hover.icon-jousaal--white > a:before {
  background-image: url("../assets/svg/jousaal-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-kursed--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-kursed--white > a:before, .sub-menu .menu-item.current-menu-item.icon-kursed--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-kursed--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-kursed--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-kursed--white > a:before, .switcher__list .menu-item:hover.icon-kursed--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-kursed--white > a:before, .sub-menu .menu-item:hover.icon-kursed--white > a:before {
  background-image: url("../assets/svg/kursed-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-loogastus--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-loogastus--white > a:before, .sub-menu .menu-item.current-menu-item.icon-loogastus--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-loogastus--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-loogastus--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-loogastus--white > a:before, .switcher__list .menu-item:hover.icon-loogastus--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-loogastus--white > a:before, .sub-menu .menu-item:hover.icon-loogastus--white > a:before {
  background-image: url("../assets/svg/loogastus-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-newicon--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-newicon--white > a:before, .sub-menu .menu-item.current-menu-item.icon-newicon--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-newicon--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-newicon--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-newicon--white > a:before, .switcher__list .menu-item:hover.icon-newicon--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-newicon--white > a:before, .sub-menu .menu-item:hover.icon-newicon--white > a:before {
  background-image: url("../assets/svg/newicon-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-saun--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-saun--white > a:before, .sub-menu .menu-item.current-menu-item.icon-saun--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-saun--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-saun--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-saun--white > a:before, .switcher__list .menu-item:hover.icon-saun--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-saun--white > a:before, .sub-menu .menu-item:hover.icon-saun--white > a:before {
  background-image: url("../assets/svg/saun-icon-active-v2.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-personal--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-personal--white > a:before, .sub-menu .menu-item.current-menu-item.icon-personal--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-personal--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-personal--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-personal--white > a:before, .switcher__list .menu-item:hover.icon-personal--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-personal--white > a:before, .sub-menu .menu-item:hover.icon-personal--white > a:before {
  background-image: url("../assets/svg/personal-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-ruhma--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-ruhma--white > a:before, .sub-menu .menu-item.current-menu-item.icon-ruhma--white > a:before, .switcher__list .menu-item.current-page-ancestor.icon-ruhma--white > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-ruhma--white > a:before, .sub-menu .menu-item.current-page-ancestor.icon-ruhma--white > a:before, .switcher__list .menu-item:hover.icon-ruhma--white > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-ruhma--white > a:before, .sub-menu .menu-item:hover.icon-ruhma--white > a:before {
  background-image: url("../assets/svg/ruhma-white.svg");
  opacity: 1;
}
.switcher__list .menu-item.current-menu-item.icon-ruhma--star > a:before, .mainnav-submenu-section__vertical .menu-item.current-menu-item.icon-ruhma--star > a:before, .sub-menu .menu-item.current-menu-item.icon-ruhma--star > a:before, .switcher__list .menu-item.current-page-ancestor.icon-ruhma--star > a:before, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor.icon-ruhma--star > a:before, .sub-menu .menu-item.current-page-ancestor.icon-ruhma--star > a:before, .switcher__list .menu-item:hover.icon-ruhma--star > a:before, .mainnav-submenu-section__vertical .menu-item:hover.icon-ruhma--star > a:before, .sub-menu .menu-item:hover.icon-ruhma--star > a:before {
  background-image: url("../assets/svg/reval-star.svg");
  opacity: 1;
}

.mainnav-submenu-section__vertical .sub-menu {
  display: inline-block;
  width: 100%;
  padding: 0;
}
.mainnav-submenu-section__vertical .menu-item {
  display: block;
  transition: color 250ms ease;
  padding-top: 12px;
  padding-bottom: 12px;
}
.mainnav-submenu-section__vertical .menu-item.menu-item-has-children .sub-menu .menu-item {
  display: none;
}
.mainnav-submenu-section__vertical .menu-item.menu-item-has-children .sub-menu .menu-item.current-menu-item {
  display: inline-block;
  margin-left: 24px;
}
.mainnav-submenu-section__vertical .menu-item:hover, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor {
  color: #CC0C3F;
}
.mainnav-submenu-section__vertical .menu-item.current-menu-item, .mainnav-submenu-section__vertical .menu-item.current-page-ancestor {
  color: #CC0C3F;
  border-bottom: none;
}
.mainnav-submenu-section__vertical .menu-item > a {
  padding: 6px 0;
  position: relative;
  padding-left: 48px;
  white-space: normal;
}
.mainnav-submenu-section__vertical .menu-item > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 36px;
  width: 36px;
}

.switcher--red {
  background: #CC0C3F;
  border-bottom: 0 !important;
  color: #fff;
}
.switcher--red p {
  color: #fff;
}
.switcher--red .menu-item {
  color: white !important;
}
.switcher--red .menu-item:hover, .switcher--red .menu-item.current-page-ancestor {
  color: white !important;
}
.switcher--red .menu-item.current-menu-item {
  color: white !important;
  font-weight: bold;
  border-color: white !important;
}
@media (max-width: 1024px) {
  .switcher--red .menu-item.current-menu-item {
    background: #ffffff !important;
    border-left: 2px solid #ffffff !important;
  }
  .switcher--red .menu-item.current-menu-item > a {
    color: #CC0C3F !important;
  }
  .switcher--red .menu-item.current-menu-item > a:before {
    -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(87%) saturate(2250%) hue-rotate(331deg) brightness(88%) contrast(98%) !important;
    filter: brightness(0) saturate(100%) invert(26%) sepia(87%) saturate(2250%) hue-rotate(331deg) brightness(88%) contrast(98%) !important;
  }
}

.switcher--vaiknespa {
  background: #9E8D71; /* Vaikne Spa brownish-gold. Can be changed! */
  border-bottom: 0 !important;
  color: #fff;
}
.switcher--vaiknespa p {
  color: #fff;
}
.switcher--vaiknespa .menu-item {
  color: white !important;
}
.switcher--vaiknespa .menu-item:hover, .switcher--vaiknespa .menu-item.current-page-ancestor {
  color: white !important;
}
.switcher--vaiknespa .menu-item.current-menu-item {
  color: white !important;
  font-weight: bold;
  border-color: white !important;
}
@media (max-width: 1024px) {
  .switcher--vaiknespa .menu-item.current-menu-item {
    background: #ffffff !important;
    border-left: 2px solid #ffffff !important;
  }
  .switcher--vaiknespa .menu-item.current-menu-item > a {
    color: #9E8D71 !important;
  }
  .switcher--vaiknespa .menu-item.current-menu-item > a:before {
    -webkit-filter: brightness(0) saturate(100%) invert(63%) sepia(13%) saturate(1039%) hue-rotate(3deg) brightness(94%) contrast(89%) !important;
    filter: brightness(0) saturate(100%) invert(63%) sepia(13%) saturate(1039%) hue-rotate(3deg) brightness(94%) contrast(89%) !important;
  }
}
.switcher--vaiknespa a:focus, .switcher--vaiknespa a:active, .switcher--vaiknespa a {
  outline: none !important;
}

.switcher--blue {
  background: #0090D6;
  border-bottom: 0 !important;
}
.switcher--blue p {
  color: #fff;
}
.switcher--blue .menu-item {
  color: white !important;
}
.switcher--blue .menu-item:hover, .switcher--blue .menu-item.current-page-ancestor {
  color: white !important;
}
.switcher--blue .menu-item.current-menu-item {
  color: white !important;
  font-weight: bold;
  border-color: white !important;
}
@media (max-width: 1024px) {
  .switcher--blue .menu-item.current-menu-item {
    background: #ffffff !important;
    border-left: 2px solid #ffffff !important;
  }
  .switcher--blue .menu-item.current-menu-item > a {
    color: #0090D6 !important;
  }
  .switcher--blue .menu-item.current-menu-item > a:before {
    -webkit-filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(1478%) hue-rotate(177deg) brightness(96%) contrast(101%) !important;
    filter: brightness(0) saturate(100%) invert(44%) sepia(87%) saturate(1478%) hue-rotate(177deg) brightness(96%) contrast(101%) !important;
  }
}

.tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 80px;
  text-align: right;
  border: 1px solid #9FA3A7;
  border-radius: 6px;
  padding: 6px 8px 2px;
}
.tag:not(:last-child) {
  margin-right: 12px;
}
.tag:before, .tag:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  height: 0;
  width: 0;
}
.tag:before {
  z-index: 3;
  border-left: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #9FA3A7;
  border-top: 6px solid #9FA3A7;
}
.tag:after {
  z-index: 4;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #FFFFFF;
  border-top: 5px solid #FFFFFF;
}
.tag__name {
  font-size: 12px;
  color: #9FA3A7;
}
.tag__value-wrap {
  display: inline-flex;
  align-items: center;
}
.tag__value {
  font-size: 20px;
  line-height: 1;
  color: #1E2831;
}
.tag__value:not(:last-child) {
  margin-right: 3px;
}
.tag__value--red {
  color: #CC0C3F;
}
.tag__value--small {
  font-size: 10px;
}

.card-wrap {
  padding: 0 6px;
  margin-bottom: 36px;
}
.card-wrap--large-gutter {
  padding: 0 12px;
}

.card {
  position: relative;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding: 36px 18px;
  min-height: 400px;
}
.card--overflow-show {
  overflow: visible;
}
.card--grid {
  padding-bottom: 66px;
  margin: 0 12px 24px;
}
@media (min-width: 640px) {
  .card--medium-gutter {
    margin: 0 12px;
  }
}
@media (max-width: 640px) {
  .card--medium-gutter {
    margin: 0 0 12px;
  }
}
.card--pb78 {
  padding-bottom: 78px;
}
.card--ps12 {
  padding-left: 12px;
  padding-right: 12px;
}
.card--p12 {
  padding: 12px;
}
.card--p0 {
  padding: 0;
}
.card--no-mh {
  min-height: 0;
}
.card--mh140 {
  position: relative;
  min-height: 160px;
}
.card--mh140 .btn, .card--mh140 .message-content-actions .btn-group > a, .message-content-actions .card--mh140 .btn-group > a, .card--mh140 .fep-form .fep-button, .fep-form .card--mh140 .fep-button, .card--mh140 #fep-menu .fep-button, #fep-menu .card--mh140 .fep-button,
.card--mh140 #fep-menu .fep-button-active,
#fep-menu .card--mh140 .fep-button-active {
  position: absolute;
  bottom: 12px;
  transform: translateX(-50%);
}
.card--no-border {
  border: none;
}
.card--link {
  display: block;
  transition: all 0.2s;
  height: 100%;
}
.card--link:hover {
  border-color: #CC0C3F;
  box-shadow: 0 2px 10px -4px #000;
}
.card--link:hover .card__heading {
  color: #CC0C3F;
}
.card--hover {
  transition: all 0.2s;
}
.card--hover:hover {
  border-color: #CC0C3F;
}
.card--hover:hover .card__heading {
  color: #CC0C3F;
}
.card--hover:hover .card__text--gray {
  color: #4D5155;
}
.card--hover:hover .card__hiden-btn {
  transform: scale(1) translate(-50%, -50%);
}
.card--hover:hover .btn:not(.card__hiden-btn), .card--hover:hover .message-content-actions .btn-group > a:not(.card__hiden-btn), .message-content-actions .card--hover:hover .btn-group > a:not(.card__hiden-btn), .card--hover:hover .fep-form .fep-button:not(.card__hiden-btn), .fep-form .card--hover:hover .fep-button:not(.card__hiden-btn), .card--hover:hover #fep-menu .fep-button:not(.card__hiden-btn), #fep-menu .card--hover:hover .fep-button:not(.card__hiden-btn),
.card--hover:hover #fep-menu .fep-button-active:not(.card__hiden-btn),
#fep-menu .card--hover:hover .fep-button-active:not(.card__hiden-btn) {
  transform: scale(0);
}
.card--hover .card__hiden-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: top left;
  transition: all 0.2s;
}
.card--hover .card__hiden-btn--down {
  top: initial;
  bottom: -2px;
}
.card--text-left {
  text-align: left;
}
.card--blue {
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
}
.card--p0 {
  padding: 0;
}
.card--p36 {
  padding: 36px;
}
.card--p48 {
  padding: 48px;
}
.card--mb24 {
  margin-bottom: 24px;
}
.card--ml24 {
  margin-left: 24px;
}
.card--large-ml24 {
  margin-left: 24px;
}
@media (max-width: 1024px) {
  .card--large-ml24 {
    margin-left: 0;
  }
}
.card--mb40 {
  margin-bottom: 40px;
}
.card__df {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}
.card__df--sb {
  justify-content: space-between;
}
.card__df--end {
  justify-content: flex-end;
}
.card__df--mb18 {
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .card__df--medium-up {
    display: block;
    text-align: center;
  }
  .card__df--medium-up .card__image {
    margin: 0 0 18px;
  }
  .card__df--medium-up .card__text--icon-no-stroke {
    display: inline-flex;
  }
}
.card__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
}
.card__top-right {
  position: absolute;
  top: 12px;
  right: 12px;
}
.card__top {
  position: relative;
}
.card__image {
  display: inline-block;
  height: 120px;
  width: 120px;
  border: 2px solid #EBEBEB;
  border-radius: 50%;
  margin-bottom: 18px;
  background-position: center;
  background-size: 150px;
}
.card__image--large {
  height: 150px;
  width: 150px;
}
.card__image--profile {
  background-size: cover;
  background-repeat: no-repeat;
}
.card__image--small {
  height: 72px;
  width: 72px;
}
.card__image--mr24 {
  margin-right: 24px;
}
.card__image--mb30 {
  margin-bottom: 30px;
}
.card__image--mb0 {
  margin-bottom: 0;
}
.card__rtop-item {
  position: absolute;
  top: 0;
  right: 12px;
  transform: translate(0, -50%);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  color: white;
}
.card__rtop-item--bg-EE6F2D {
  background-color: #EE6F2D;
}
.card__rtop-item--bg-252E84 {
  background-color: #252E84;
}
.card__rtop-item--bg-902725 {
  background-color: #902725;
}
.card__rtop-item--bg-vd-red {
  background-color: #CC0C3F;
}
.card__rtop-item--bg-EAA039 {
  background-color: #EAA039;
}
.card__rtop-item--bg-black {
  background-color: black;
}
.card__header-image {
  margin: 10px 0 18px 0;
  height: 48px;
  width: auto;
}
.card__image--regular {
  border: none;
  width: auto;
  max-height: 80px;
  text-align: center;
}
.card__image--regular img {
  max-height: 100%;
  width: auto;
  display: block;
}
.card__icon {
  display: inline-block;
  height: 72px;
  width: 75px;
  margin-bottom: 18px;
}
.card__icon--large {
  height: 120px;
  width: 120px;
}
.card__svg {
  height: 60px;
  width: 60px;
  margin-bottom: 12px;
}
.card__content--mr24 {
  margin-right: 24px;
}
.card__content--mr48 {
  margin-right: 48px;
}
.card__content .name {
  font-size: 18px;
  font-weight: 400;
  color: #1E2831;
}
.card__content .position {
  font-size: 14px;
  color: #CC0C3F;
  margin-bottom: 12px;
}
.card__content .meta {
  display: inline-block;
}
.card__content .meta__email, .card__content .meta__phone {
  text-align: center;
}
.card__content .meta__email > i, .card__content .meta__phone > i {
  font-size: 18px;
  color: #9FA3A7;
  margin-right: 6px;
}
.card__content .meta__email > span, .card__content .meta__phone > span {
  font-size: 14px;
  color: #9FA3A7;
}
.card__heading {
  position: relative;
  z-index: 3;
  font-size: 20px;
  color: #30373E;
  transition: all 0.2s;
}
.card__heading--line-height-small {
  line-height: 1.3;
}
.card__heading--large {
  font-size: 24px;
}
.card__heading--bold {
  font-weight: 400;
}
.card__heading--thin {
  font-weight: 300;
}
.card__heading--white {
  color: #FFFFFF;
}
.card__heading--mb12 {
  margin-bottom: 12px;
}
.card__text {
  color: #9FA3A7;
  transition: all 0.2s;
}
.card__text--large {
  font-size: 20px;
}
.card__text--small {
  font-size: 14px;
}
.card__text--bold {
  font-weight: 400;
}
.card__text--red {
  color: #CC0C3F;
}
.card__text--dark {
  color: #1E2831;
}
.card__text--gray {
  color: #9FA3A7;
}
.card__text--d-gray {
  color: #30373E;
}
.card__text--light {
  color: #D8D8D8;
}
.card__text--white {
  color: #FFFFFF;
}
.card__text--icon {
  display: flex;
  align-items: center;
}
.card__text--icon > svg {
  height: 20px;
  width: 20px;
  stroke: #9FA3A7;
  margin-right: 6px;
}
.card__text--icon-no-stroke {
  display: flex;
  align-items: center;
}
.card__text--icon-no-stroke > svg {
  height: 20px;
  width: 20px;
  fill: #9FA3A7;
  margin-right: 6px;
}
.card__text--mb6 {
  margin-bottom: 6px;
}
.card__text--mb18 {
  margin-bottom: 18px;
}
.card__text--mb24 {
  margin-bottom: 24px;
}
.card__text--mr18 {
  margin-right: 18px;
}
.card__sum {
  min-width: 60px;
  height: 26px;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #FFFFFF;
}
.card__footer {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  background: #EBEBEB;
  padding: 18px 24px;
  margin: 0 -24px -36px;
}
.card__table {
  display: flex;
}
.card__sidebar {
  flex: 0 0 320px;
  border-right: 1px solid #EBEBEB;
}
.card__body {
  flex: 1 1 auto;
}
.card__table-head {
  border-bottom: 1px solid #EBEBEB;
  padding: 12px;
}
.card__table-list {
  list-style: none;
  margin: 0;
}
.card__table-list li {
  display: flex;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.card__table-list li:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}
.card__table-list li:hover {
  background: #EBEBEB;
}
.card__table-list li.new .txt--big {
  font-weight: 500;
}
.card__table-list li.new img {
  border-color: #CC0C3F;
}
.card__table-list li img {
  flex: 0 0 auto;
  align-self: center;
  height: 44px;
  width: 44px;
  border: 2px solid #D8D8D8;
  border-radius: 50%;
  margin-right: 18px;
  transition: all 0.2s;
}
.card__table-list li .txt-wrap {
  flex: 1 1 auto;
  align-self: center;
  text-align: left;
}
.card__table-list li .sent-date {
  flex: 0 0 auto;
  margin-left: 18px;
}
.card__message {
  padding: 12px 24px;
}
.card .message {
  display: flex;
  align-items: flex-start;
}
.card .message:not(:last-child) {
  margin-bottom: 24px;
}
.card .message--right {
  justify-content: flex-end;
}
.card .message--right .message__box {
  order: -1;
}
.card .message--right .message__box:before {
  right: -24px;
  border: 12px solid transparent;
  border-left: 12px solid #FFFFFF;
}
.card .message--right .message__box:after {
  right: -27px;
  border: 13px solid transparent;
  border-left: 13px solid #EBEBEB;
}
.card .message:not(.message--right) .message__box:before {
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #FFFFFF;
}
.card .message:not(.message--right) .message__box:after {
  left: -27px;
  border: 13px solid transparent;
  border-right: 13px solid #EBEBEB;
}
.card .message__meta {
  flex: 0 0 80px;
}
.card .message__meta > img {
  height: 44px;
  width: 44px;
  border: 2px solid #D8D8D8;
  border-radius: 50%;
  margin-top: 3px;
  margin-bottom: 6px;
}
.card .message__box {
  flex: 1;
  position: relative;
  max-width: 600px;
  text-align: left;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  padding: 12px;
}
.card .message__box:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
}
.card .message__box:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12px;
}
.card__meta > img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 12px;
}
.card__meta > span {
  font-size: 14px;
  color: #9FA3A7;
}
.card .txt {
  font-size: 16px;
  line-height: 1;
}
.card .txt--big {
  font-size: 18px;
}
.card .txt--sml {
  font-size: 14px;
}
.card .txt--bold {
  font-weight: 500;
}
.card .txt--light {
  color: #9FA3A7;
}
.card .txt--mb6 {
  margin-bottom: 6px;
}

.card--profile .acf-field .acf-label label {
  display: none;
}

.card--discount {
  padding: 60px;
}
.card--discount.card--link {
  color: #0a0a0a;
}
.card--discount .card__image {
  margin-bottom: 70px;
}
.card--discount .card__content--heading {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.card--discount .card__content--text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 23px;
}
.card--discount .card__content--listing {
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  list-style: none;
}
.card--discount .card__content--listing-item {
  list-style: none;
  display: inline-block;
  text-align: center;
}
.card--discount .card__content--url {
  color: #CC0C3F;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}

.possibilities {
  margin: 6px 0;
}
.possibilities .possibilities__item {
  display: inline-block;
  margin-right: 24px;
  margin-bottom: 12px;
  background-color: #9FA3A7;
  padding: 1px;
  border-radius: 6px;
}
.possibilities .possibilities__item--content {
  background: white;
  padding: 4px 12px 4px 6px;
  border-radius: 6px;
  position: relative;
}
.possibilities .possibilities__item--content:after {
  content: "";
  position: absolute;
  top: -9px;
  right: -11px;
  border-left: 1px solid #9FA3A7;
  transform: rotate(-40deg);
  height: 20px;
  background-color: #fff;
  width: 20px;
}
.possibilities .possibilities__item--title {
  font-size: 13px;
  color: #4D5155;
  margin-bottom: 4px;
}
.possibilities .possibilities__item--red {
  font-size: 22px;
  color: #CC0C3F;
  line-height: 1;
}
.possibilities .possibilities__item--black {
  color: #30373E;
  font-size: 11px;
  display: inline;
}
.possibilities--white .possibilities__item {
  background: transparent;
  border: 1px solid #FFFFFF;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right: none;
}
.possibilities--white .possibilities__item--content {
  background: transparent;
}
.possibilities--white .possibilities__item--content:after {
  top: -10px;
  right: -25px;
  border-left: 1px solid #FFFFFF;
  transform: rotate(-40deg);
  height: 20px;
  background: transparent;
  width: 20px;
}
.possibilities--white .possibilities__item--content:before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -15px;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  border-bottom-right-radius: 6px;
  height: calc(100% - 12px);
  width: 14px;
}
.possibilities--white .possibilities__item--title, .possibilities--white .possibilities__item--black {
  color: rgba(235, 235, 235, 0.75);
}
.possibilities--white .possibilities__item--red {
  color: #FFFFFF;
  font-size: 18px;
}

.yarpp-related {
  padding-top: 40px;
  border-top: 1px solid #EBEBEB;
}
.yarpp-related--title {
  font-size: 36px !important;
  color: #30373E;
  font-weight: 300 !important;
}

.pricing-helper__start, .pricing-helper__wizard, .pricing-helper__end {
  display: none;
}
.pricing-helper__start.active, .pricing-helper__wizard.active, .pricing-helper__end.active {
  display: block;
}
.pricing-helper__start img {
  max-width: calc(100% + 180px);
  padding-top: 48px;
  margin-left: -180px;
}
.pricing-helper__title {
  color: #30373E;
  font-size: 48px;
  line-height: 55px;
  margin-bottom: 20px;
}
.pricing-helper__title--line {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.pricing-helper__title--line:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 200px;
  background: #9FA3A7;
}
.pricing-helper__choices {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-helper__choices--wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.pricing-helper__choice {
  display: inline-block;
  padding: 3px 16px;
  border: 1px solid #9FA3A7;
  border-radius: 4px;
  font-size: 16px;
  color: #4D5155;
  line-height: 23px;
}
.pricing-helper__packages {
  display: flex;
  flex-direction: row;
  margin: 30px 0 0 0;
  list-style: none;
  padding: 0;
  border: 1px solid #9FA3A7;
  border-radius: 6px;
}
.pricing-helper__package {
  flex: 1;
  display: inline-block;
  text-align: center;
  border-right: 1px solid #e2e2e2;
  padding: 30px;
}
.pricing-helper__package:last-of-type {
  border-right: none;
}
.pricing-helper__package.selected {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #CC0C3F;
  background-color: #FCF4F5;
  box-shadow: 0 0 10px 0 rgba(204, 12, 63, 0.3);
  margin: -15px;
}
.pricing-helper__package:first-of-type.selected {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pricing-helper__package:last-of-type.selected {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pricing-helper__package--title {
  color: #30373E;
  font-size: 24px;
  line-height: 26px;
}
.pricing-helper__package--price {
  color: #CC0C3F;
  font-size: 36px;
  line-height: 36px;
}
.pricing-helper__package--monthly {
  color: #4D5155;
  font-size: 18px;
  line-height: 28px;
}
.pricing-helper__package--actions {
  margin-top: 32px;
}

.wizard {
  display: flex;
}
.wizard__indicator {
  flex: 0 0 auto;
  list-style: none;
  border-right: 1px solid #9FA3A7;
  margin: 0 36px 0 0;
}
.wizard__step {
  position: relative;
  font-size: 18px;
  color: #9FA3A7;
  padding: 24px 12px 24px 0;
}
.wizard__step:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  bottom: 50%;
  width: 3px;
  background: transparent;
  transition: all 0.2s;
}
.wizard__step.active:after {
  top: 0;
  bottom: 0;
  background: #CC0C3F;
}
.wizard__form {
  flex: 1 1 auto;
}
.wizard__tab {
  display: none;
}
.wizard__tab.active {
  display: block;
}
.wizard__text {
  font-size: 18px;
  color: #30373E;
  margin-bottom: 18px;
}
.wizard__control {
  display: inline-flex;
  align-items: center;
}
.wizard__control > button:first-of-type {
  margin-right: 18px;
}

.fep-odd-even > div:nth-child(odd),
.fep-odd-even > div:nth-child(even) {
  background-color: transparent;
}

.fep-column-fep-cb {
  display: none;
}

#fep-content {
  margin-top: 48px;
  border: none;
}

#fep-menu .fep-button,
#fep-menu .fep-button-active {
  color: #CC0C3F !important;
}
#fep-menu .fep-button:hover,
#fep-menu .fep-button-active:hover {
  color: #fff !important;
}
#fep-menu .fep-button:hover .fep-font-red,
#fep-menu .fep-button-active:hover .fep-font-red {
  color: #fff;
}

#fep-footer,
#fep-directory-search-form,
.fep-table-caption {
  display: none !important;
}

.fep-table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
.fep-table .fep-table-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  padding: 12px 24px;
}
@media (max-width: 640px) {
  .fep-table .fep-table-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .fep-table .fep-table-row .fep-column-author {
    flex: 1 0 auto;
  }
  .fep-table .fep-table-row .fep-column-title {
    flex: 1 0 100%;
    margin-top: 24px;
  }
}
.fep-table .fep-column-avatar {
  flex: 0 0 auto;
}
.fep-table .fep-column-avatar > img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  margin-right: 18px;
}
.fep-table .fep-column-author {
  flex: 0 0 200px;
  margin-right: 18px;
}
.fep-table .fep-column-author > span {
  display: block;
  text-align: left;
}
.fep-table .fep-column-author .fep-message-author {
  font-size: 16px;
  color: #1E2831;
  text-transform: capitalize;
}
.fep-table .fep-column-author .fep-message-date {
  font-size: 14px;
  color: #9FA3A7;
}
.fep-table .fep-column-title {
  flex: 1 1 auto;
  text-align: left;
}
.fep-table .fep-column-title a {
  font-size: 18px;
  color: #1E2831;
  transition: all 0.2s;
}
.fep-table .fep-column-title a:hover {
  color: #CC0C3F;
}
.fep-table .fep-column-title .fep-message-excerpt {
  font-size: 16px;
  color: #9FA3A7;
}

.fep-font-red {
  transition: all 0.2s;
  color: #CC0C3F;
}

.fep-form .fep-form-field > .fep-label {
  display: none;
}
.fep-form .fep-button {
  color: #FFFFFF !important;
  margin: 0;
}

.ig-container .well {
  border: none !important;
  box-shadow: none !important;
  background-color: #fff !important;
}
.ig-container .list-group-item {
  display: flex !important;
}

.mmessage-container .message-list {
  border: none !important;
}
.mmessage-container .ps-container {
  border: none !important;
  border-left: 1px solid #ddd !important;
}

.message-content-actions .btn-group {
  padding-right: 20px;
}
.message-content-actions .btn-group > a {
  -webkit-appearance: unset;
  border-radius: 6px !important;
  text-decoration: none !important;
}
.message-content-actions .btn-group > a:not(:last-child) {
  margin-right: 12px !important;
}

.card__table-list .list-group-item.active {
  background: #CC0C3F !important;
  border-radius: 0 !important;
  border-color: #FFFFFF !important;
}
.card__table-list .list-group-item.active .sent-date {
  color: #FFFFFF;
}

.popular__posts .blog__top h2 {
  font-size: 36px;
}
.popular__posts .wpp-list {
  list-style-type: none;
  border-left: 1px solid #9FA3A7;
  padding: 20px 0px;
}
.popular__posts .wpp-list li {
  border-left: 3px solid transparent;
  margin-left: -2px;
  padding-left: 20px;
  margin-bottom: 10px;
}
.popular__posts .wpp-list li .wpp-list-item {
  padding: 10px 0px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  color: #9FA3A7;
}
.popular__posts .wpp-list li .wpp-list-item:hover {
  border-top: 1px solid #9FA3A7;
  border-bottom: 1px solid #9FA3A7;
  color: #30373E;
}
.popular__posts .wpp-list li .wpp-list-item .item__number {
  color: #9FA3A7;
  background: #EBEBEB;
  display: inline-block;
  font-size: 12px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  margin-right: 12px;
  vertical-align: baseline;
}
.popular__posts .wpp-list li .wpp-list-item .item__number:hover {
  color: white;
  background: #CC0C3F;
}
.popular__posts .wpp-list li:hover {
  border-left: 3px solid #CC0C3F;
  margin-left: -2px;
}

.select2:hover .select2-selection--single {
  border-color: #CC0C3F;
}
.select2:hover .select2-selection__rendered {
  color: #CC0C3F !important;
}
.select2:hover .select2-selection__arrow:after {
  color: #CC0C3F;
}
.select2 .select2-selection--single {
  height: auto;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  transition: all 0.2s;
}
.select2 .select2-selection__rendered {
  color: #9FA3A7 !important;
  padding: 12px 24px !important;
  transition: all 0.2s;
}
.select2 .select2-selection__arrow {
  height: 100% !important;
}
.select2 .select2-selection__arrow > b {
  display: none;
}
.select2 .select2-selection__arrow:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  line-height: 26px;
  color: #D8D8D8;
  padding: 12px;
  transition: all 0.2s;
  content: "\f140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}

.select2-container--open .select2-dropdown {
  border-color: #CC0C3F !important;
}
.select2-container--open .select2-search__field {
  color: #CC0C3F;
}
.select2-container .select2-dropdown {
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  overflow: hidden;
  margin-top: -54px;
}
.select2-container .select2-search {
  padding: 12px 24px;
}
.select2-container .select2-search__field {
  border: none !important;
  color: #4D5155;
  padding: 0;
}
.select2-container .select2-results__option {
  padding: 6px 24px;
}
.select2-container .select2-results__option--highlighted {
  background-color: #CC0C3F !important;
}

.loader-no-wc,
.loader {
  width: 36px;
  height: 36px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -18px;
  margin-top: -18px;
  text-indent: -9999em;
}
.loader-no-wc::after, .loader-no-wc::before,
.loader::after,
.loader::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.loader-no-wc::after,
.loader::after {
  border: 2px solid transparent;
  transform: translateZ(0);
  animation: rotate360 1s infinite linear;
}
.loader-no-wc.is-trigger,
.loader.is-trigger {
  display: none;
}

.loader--light::before {
  border: 2px solid rgba(216, 216, 216, 0.2);
}
.loader--light::after {
  border-left: 2px solid #D8D8D8;
}

.loader--dark::before {
  border: 2px solid rgba(204, 12, 63, 0.2);
}
.loader--dark::after {
  border-left: 2px solid #CC0C3F;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section {
  position: relative;
  width: 100%;
  height: 400px;
  margin: auto;
}

.backdrop {
  background: -moz-linear-gradient(6.25% 108.33% 45deg, rgb(114, 112, 245) 0%, rgb(75, 54, 195) 100%);
  background: -webkit-linear-gradient(45deg, rgb(114, 112, 245) 0%, rgb(75, 54, 195) 100%);
  background: -webkit-gradient(linear, 6.25% 108.33%, 93.75% -8.33%, color-stop(0, rgb(114, 112, 245)), color-stop(1, rgb(75, 54, 195)));
  background: -o-linear-gradient(45deg, rgb(114, 112, 245) 0%, rgb(75, 54, 195) 100%);
  background: -ms-linear-gradient(45deg, rgb(114, 112, 245) 0%, rgb(75, 54, 195) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#7270F5', endColorstr='#4B36C3' ,GradientType=0)";
  background: linear-gradient(45deg, rgb(114, 112, 245) 0%, rgb(75, 54, 195) 100%);
}

.page-numbers {
  padding-left: 0;
  margin: 22px 0;
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.page-numbers,
.page-numbers span:not(.sr-only) {
  position: relative;
  display: inline-block;
  padding-top: 11px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 11px;
  line-height: 1;
  text-decoration: none;
  color: #3e3e3d;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0);
  margin-left: -1px;
  transition: border-color 0.15s;
  margin: 0;
  vertical-align: middle;
}
.page-numbers.current,
.page-numbers span:not(.sr-only).current {
  color: #fff;
  background-color: #CC0C3F;
}
.page-numbers li,
.page-numbers span:not(.sr-only) li {
  display: inline-block;
  vertical-align: top;
}
.page-numbers.next, .page-numbers.prev,
.page-numbers span:not(.sr-only).next,
.page-numbers span:not(.sr-only).prev {
  background-color: #CC0C3F;
  width: 39px;
  height: 39px;
  padding: 0;
}

.page-numbers .page-numbers.next:before,
.page-numbers .page-numbers.prev:before,
.page-numbers span:not(.sr-only).next:before,
.page-numbers span:not(.sr-only).prev:before {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -20px;
  content: "­";
  opacity: 0.8;
  width: 40px;
  height: 40px;
}

.page-numbers .page-numbers.next:before,
.page-numbers span:not(.sr-only).next:before {
  background: url(../assets/svg/pagination-right.svg) no-repeat 0 0;
}

.page-numbers .page-numbers.prev:before,
.page-numbers span:not(.sr-only).prev:before {
  background: url(../assets/svg/pagination-left.svg) no-repeat 0 0;
}

.promotion__heading {
  color: #FFFFFF;
  font-size: 24px;
}
.promotion__heading--mb24 {
  margin-bottom: 24px;
}
.promotion__text {
  color: rgba(235, 235, 235, 0.75);
  margin-bottom: 18px;
}
.promotion__text--mb48 {
  margin-bottom: 48px;
}
.promotion__text--large {
  color: #FFFFFF;
  font-size: 18px;
}

ul.row {
  list-style: none;
  padding: 0;
}
ul.row li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.instagram--image {
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.instagram--figure {
  position: relative;
  background-color: #CC0C3F;
  background-image: url("../assets/img/logo_instagram.svg");
  background-size: 35%;
  background-position: 52% 50%;
  background-repeat: no-repeat;
  margin: 6px;
  transition: all 0.2s ease-in-out;
}
.instagram--figure:hover .instagram--image {
  opacity: 0;
}

.woocommerce tr.cart-total > td, .woocommerce tr.cart-subtotal > td {
  padding: 9px 12px;
}
.woocommerce .cart-collaterals .cart_totals {
  width: initial;
  float: initial;
}
.woocommerce .cart-collaterals .cart_totals > h2 {
  display: none;
}
.woocommerce .cart-collaterals [data-title=Subtotal], .woocommerce .cart-collaterals [data-title=Total] {
  text-align: right;
}
.woocommerce table.shop_table td.actions {
  text-align: initial;
  padding: 12px;
}
.woocommerce .coupon {
  float: initial !important;
}
.woocommerce .coupon > input {
  width: initial;
}
.woocommerce .quantity > input {
  padding: 6px !important;
}
@media (max-width: 1024px) {
  .woocommerce .quantity > input {
    margin: 0 0 0 auto !important;
  }
}
@media (min-width: 770px) {
  .woocommerce .quantity > input {
    margin-left: 0 !important;
  }
}

.home .hero {
  display: flex;
}
@media (max-width: 1200px) {
  .home .hero {
    display: block;
  }
  .home .hero .hero__section .overlay {
    opacity: 0.4;
  }
  .home .hero .hero__section .switcher {
    bottom: 100%;
    opacity: 0;
  }
  .home .hero .hero__section .row {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .home .hero .hero__section:not(.active) {
    cursor: pointer;
  }
  .home .hero .hero__section:not(.active):hover {
    background: rgb(107.6666666667, 6.3333333333, 33.25);
  }
}
.home .hero__section {
  position: relative;
  flex: 0 0 144px;
  height: 780px;
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
  overflow: hidden;
  padding: 192px 0 96px;
  transition: all 0.6s;
}
@media (max-width: 1200px) {
  .home .hero__section {
    height: auto;
    padding: 140px 0 80px;
  }
}
.home .hero__section.active {
  flex-grow: 1;
}
.home .hero__section.active .overlay {
  opacity: 0.4;
}
.home .hero__section.active .switcher {
  bottom: 100%;
  opacity: 0;
}
.home .hero__section.active .row {
  opacity: 1;
}
.home .hero__section .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
  transition: all 0.6s;
}
.home .hero__section .switcher {
  position: absolute;
  bottom: 100px;
  left: 48px;
  z-index: 3;
  width: 48px;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}
.home .hero__section .switcher__text {
  transform: rotate(-90deg);
  transform-origin: 5px 0 0;
  font-size: 24px;
  color: #FFFFFF;
}
.home .hero__section .switcher__circle {
  height: 48px;
  width: 48px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 46px;
  color: #FFFFFF;
}
.home .hero__section .row {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s;
}
.home .hero__heading {
  margin-bottom: 78px;
}
@media (max-width: 1200px) {
  .home .hero__heading {
    margin-bottom: 54px;
  }
}
@media (max-width: 640px) {
  .home .hero__heading {
    margin-bottom: 48px;
  }
}
.home .hero__schedule {
  padding-left: 60px;
}
.home .options {
  background: linear-gradient(90deg, rgba(239, 239, 242, 0.5) 0%, rgba(255, 255, 255, 0.5) 49.95%, rgba(208, 211, 219, 0.5) 100%);
  overflow: hidden;
  padding-top: 60px;
}
@media (max-width: 1024px) {
  .home .options {
    padding: 60px 0;
  }
}
.home .options__heading {
  text-align: center;
  font-size: 48px;
  line-height: 70px;
  color: #30373E;
}
@media (max-width: 1024px) {
  .home .options__heading {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (max-width: 640px) {
  .home .options__heading {
    font-size: 38px;
    line-height: 54px;
  }
}
.home .options__sub-heading {
  text-align: center;
  font-size: 24px;
  color: #9FA3A7;
}
@media (max-width: 1024px) {
  .home .options__sub-heading {
    font-size: 20px;
    margin-bottom: 36px;
  }
}
.home .options__wrap {
  display: flex;
  border-left: 1px solid #30373E;
  margin-top: 96px;
}
.home .options__menu .menu {
  display: inline-block;
  list-style: none;
  padding-top: 60px;
  margin: 0;
}
.home .options__menu .menu__item {
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 18px;
  color: #9FA3A7;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  padding-right: 12px;
  margin: 12px 0 12px 24px;
  transition: all 0.2s;
}
.home .options__menu .menu__item:before {
  content: " ";
  position: absolute;
  top: 0;
  left: -26px;
  height: 100%;
  width: 3px;
  background: transparent;
  border-radius: 3px;
  transition: all 0.2s;
}
.home .options__menu .menu__item.active {
  color: #CC0C3F;
  border-color: #9FA3A7;
  padding: 24px 12px 24px 0;
}
.home .options__menu .menu__item.active:before {
  background: #CC0C3F;
}
.home .options__content .content {
  display: none;
}
.home .options__content .content.active {
  display: block;
}
.home .options__content .content__image {
  text-align: center;
}
.home .options__content .content__image > img {
  max-width: 300px;
  margin: -60px 0;
}
.home .options__content .content__wrap {
  flex: 1 0 auto;
}
.home .options__content .content__head {
  border-left: 3px solid #CC0C3F;
  padding: 12px 0 12px 24px;
  margin-bottom: 24px;
}
.home .options__content .content__head h2 {
  font-size: 36px;
  line-height: 1;
  color: #30373E;
  margin-bottom: 24px;
}
.home .options__content .content__head p {
  font-size: 16px;
  line-height: 1.5;
  color: #4D5155;
  margin-bottom: 0;
}
.home .options__content .content__links > a {
  display: block;
  font-size: 18px;
  color: #4D5155;
  margin: 0 0 6px 27px;
  transition: all 0.2s;
}
.home .options__content .content__links > a:hover {
  color: #CC0C3F;
}
.home .options__content .content__links > a:hover > i {
  border-color: #CC0C3F;
  color: #CC0C3F;
}
.home .options__content .content__links > a > i {
  display: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid #9FA3A7;
  border-radius: 6px;
  line-height: 20px;
  color: #9FA3A7;
  margin-right: 6px;
  transition: all 0.2s;
}
.home .accordion__links > a {
  display: block;
  font-size: 18px;
  color: #4D5155;
  margin: 0 0 6px 27px;
  transition: all 0.2s;
}
.home .accordion__links > a:hover {
  color: #CC0C3F;
}
.home .accordion__links > a:hover > i {
  border-color: #CC0C3F;
  color: #CC0C3F;
}
.home .accordion__links > a > i {
  display: inline-block;
  height: 20px;
  width: 20px;
  border: 1px solid #9FA3A7;
  border-radius: 6px;
  line-height: 20px;
  color: #9FA3A7;
  margin-right: 6px;
  transition: all 0.2s;
}
.home .blog {
  padding: 60px 0 96px;
}
.home .blog__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .blog__header {
  font-size: 36px;
  color: #9FA3A7;
}
.home .blog__list {
  list-style: none;
  margin: 24px 0 0;
}
.home .blog__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 0 0 48px;
}
.home .blog__item:not(:last-child) {
  margin-bottom: 78px;
}
.home .blog__item .date {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: baseline;
  background: #CC0C3F;
  padding: 5px 24px;
}
.home .blog__item .date__day {
  font-size: 24px;
  color: #FFFFFF;
  margin-right: 4px;
}
.home .blog__item .date__month {
  font-size: 18px;
  color: #FFFFFF;
}
.home .blog__item .content {
  padding-left: 36px;
}
.home .blog__item .content > a {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  color: #CC0C3F;
  margin-bottom: 12px;
}
.home .blog__item .content > p {
  font-size: 14px;
  line-height: 1.5;
  color: #4D5155;
}
.home .blog .useful {
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .home .blog .useful {
    padding-left: 0;
  }
}
.home .blog .useful__list {
  list-style: none;
  padding-top: 48px;
  margin: 0;
}
.home .blog .useful__item {
  list-style: none;
}
.home .blog .useful__item:not(:last-child) {
  margin-bottom: 48px;
}
.home .blog .useful__item a:hover .item-line .line {
  background: #CC0C3F;
}
.home .blog .useful__item a:hover .item-line .text:after {
  opacity: 1;
}
.home .blog .useful__item .item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.home .blog .useful__item .item__icon {
  flex: 0 0 66px;
  height: 66px;
  margin-right: 36px;
}
.home .blog .useful__item .item__content {
  flex: 1 1 auto;
}
.home .blog .useful__item .item__content h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #4D5155;
  margin-bottom: 0;
}
.home .blog .useful__item .item__content p {
  font-size: 14px;
  color: #4D5155;
}
.home .blog .useful__item .item-line {
  display: flex;
  align-items: center;
}
.home .blog .useful__item .item-line .line {
  flex: 1 1 auto;
  height: 1px;
  background: #9FA3A7;
  margin-right: 12px;
  transition: all 0.2s;
}
.home .blog .useful__item .item-line .text {
  position: relative;
  font-size: 16px;
  color: #CC0C3F;
}
.home .blog .useful__item .item-line .text:after {
  content: "\f142";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: all 0.2s;
}

.sportclub .hero {
  position: relative;
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
  padding: 192px 0 96px;
}
.sportclub .hero__heading {
  margin-bottom: 30px;
}
.sportclub .hero__description {
  color: #fff;
}
.sportclub .hero .schedule {
  display: inline-block;
  float: right;
}
@media (max-width: 1024px) {
  .sportclub .hero .schedule {
    float: left;
    width: 100%;
  }
}
.sportclub .about__tabs {
  padding: 72px 0;
}
.sportclub .about__tabs .tab__heading {
  font-size: 36px;
  color: #30373E;
  margin-bottom: 12px;
}
.sportclub .about__tabs .tab__heading-line {
  display: inline-block;
  height: 3px;
  width: 100px;
  background: #CC0C3F;
  margin-bottom: 36px;
}
.sportclub .about__tabs .tab__content p {
  font-size: 16px;
  line-height: 1.5;
  color: #4D5155;
}
.sportclub .about__tabs .tab__content p:not(:last-child) {
  margin-bottom: 24px;
}
.sportclub .about__tabs .tab__content p b {
  text-transform: uppercase;
  font-size: 14px;
}
.sportclub .about__tabs .tab__content p a {
  color: #CC0C3F;
}
.sportclub .about__images {
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .sportclub .about__images {
    padding-left: 0;
  }
}
.sportclub .about__images .image {
  position: relative;
  background: #000000;
  border-radius: 6px;
  overflow: hidden;
  padding: 12px;
  margin: 12px;
}
.sportclub .about__images .image .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}
.sportclub .about__images .image h4 {
  display: table-cell;
  vertical-align: bottom;
  height: 136px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0;
}

.swimclub .hero {
  position: relative;
  background: linear-gradient(0deg, #45536F 0%, #232B3B 100%);
  padding: 192px 0 96px;
}
.swimclub .hero__overlay-schedule {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 40, 49, 0.6);
}
.swimclub .hero__heading {
  margin-bottom: 72px;
}
.swimclub .hero .schedule {
  display: inline-block;
  float: right;
}
@media (max-width: 1024px) {
  .swimclub .hero .schedule {
    float: left;
    width: 100%;
  }
}
.swimclub .about__tabs {
  padding: 72px 0;
}
.swimclub .about__tabs .tab__heading {
  font-size: 36px;
  color: #30373E;
  margin-bottom: 12px;
}
.swimclub .about__tabs .tab__heading-line {
  display: inline-block;
  height: 3px;
  width: 100px;
  background: #CC0C3F;
  margin-bottom: 36px;
}
.swimclub .about__tabs .tab__content p {
  font-size: 16px;
  line-height: 1.5;
  color: #4D5155;
}
.swimclub .about__tabs .tab__content p:not(:last-child) {
  margin-bottom: 24px;
}
.swimclub .about__tabs .tab__content p b {
  text-transform: uppercase;
  font-size: 14px;
}
.swimclub .about__tabs .tab__content p a {
  color: #CC0C3F;
}
.swimclub .about__images {
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .swimclub .about__images {
    padding-left: 0;
  }
}
.swimclub .about__images .image {
  position: relative;
  background: #000000;
  border-radius: 6px;
  overflow: hidden;
  padding: 12px;
  margin: 12px;
}
.swimclub .about__images .image .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}
.swimclub .about__images .image h4 {
  display: table-cell;
  vertical-align: bottom;
  height: 136px;
  position: relative;
  z-index: 2;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0;
}

.page-template-about blockquote {
  display: none;
}
.page-template-about blockquote.active {
  display: block;
}

.tax-product_cat .page__content {
  padding-top: 0;
}
.tax-product_cat .row--p72-24 {
  padding: 62px 24px;
}

.page-template-dashboard .text-nav {
  display: block;
}
.page-template-dashboard .text-nav .nav {
  margin-bottom: 24px;
}
.page-template-dashboard .trainings-card {
  max-height: 270px;
  overflow-y: scroll;
}

.woocommerce-checkout.woocommerce-page #terms,
.woocommerce-checkout.woocommerce-page #mailchimp_woocommerce_newsletter {
  display: inline-block;
  width: auto;
  margin-right: 12px;
  position: relative;
  visibility: visible;
}

.woocommerce-breadcrumb {
  display: none;
}

.woocommerce-loop-product__title {
  line-height: inherit;
}

.products {
  border: 1px solid #9FA3A7;
  padding: 30px !important;
  border-radius: 6px;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .products {
    padding: 12px !important;
  }
}
.products li:first-child .product__card {
  padding-top: 0;
}
.products li:last-child .product__card {
  padding-bottom: 0;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  display: inline-block;
}

.product__card {
  border-bottom: 1px solid #ececec;
  padding: 15px 0;
}
.product__card:last-of-type {
  border-bottom: none;
}
.product__card > a {
  display: flex;
  align-items: center;
}
.product__card > a:hover > .product__title {
  color: #CC0C3F;
}

.product__price {
  flex: 0 0 80px;
  border: 2px solid #CC0C3F;
  display: inline-block;
  padding: 6px 3px 3px;
  text-align: center;
  border-radius: 6px;
  line-height: 1;
  font-weight: 600;
  color: #CC0C3F;
  margin-right: 30px;
}

.product__title {
  display: inline-block;
  font-size: 16px;
  color: #1E2831;
  transition: all 0.2s;
}

.woocommerce .products ul.row {
  margin: 0;
  padding: 0;
}

.entry-summary .entry-title {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 12px !important;
  margin-bottom: 24px !important;
}
.entry-summary .price {
  display: inline-block;
}
.entry-summary .cart {
  display: inline-block;
  float: right;
}

.woocommerce-checkout-payment {
  background: transparent !important;
  border: 1px solid #EBEBEB;
}
.woocommerce-checkout-payment .payment_methods {
  border-bottom: 1px solid #EBEBEB;
}

.woocommerce-cart dl.variation {
  white-space: nowrap;
}
.woocommerce-cart dl.variation dt {
  float: none;
}
.woocommerce-cart dl.variation dd {
  display: inline-block;
}

.woocommerce-checkout .nf-form-cont h3 {
  color: #30373E;
  font-size: 36px;
  line-height: 56px;
}
.woocommerce-checkout .nf-form-cont .nf-field-description {
  margin-bottom: 12px;
}

/*# sourceMappingURL=main.css.map */
