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

/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices[data-type*="select-one"] {
  cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .5;
}

.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00BCD4;
}

.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0;
}

.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

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

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00BCD4;
  border: 1px solid #00a5bb;
  color: #FFFFFF;
  word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}

.choices__list--dropdown.is-active {
  display: block;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: .5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  user-select: none;
  opacity: .5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir="rtl"] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: .5;
}

.choices__input.is-hidden,
.choices[data-type*="select-one"] .choices__input.is-hidden,
.choices[data-type*="select-multiple"] .choices__input.is-hidden {
  display: none;
}

/*=====  End of Choices  ======*/

@keyframes lum-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lum-fadeZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lum-loader-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes lum-loader-before {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lum-loader-after {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  100% {
    transform: scale(1);
  }
}

.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader:before {
  left: 0;
  animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  animation: lum-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button:after {
  transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button:after {
  transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

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

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

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

/**
 * Correct the padding in Firefox.
 */

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

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

.mod-small-only {
  display: block; }
  @media (min-width: 1000px) {
    .mod-small-only {
      display: none; } }

.mod-center {
  text-align: center;
  margin: auto;
  display: block; }

.mod-items-margin > div,
.mod-items-margin > a {
  margin: 10px; }

.mod-pad-bottom {
  padding-bottom: 60px; }

.mod-v-space {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.mod-top-spacer {
  margin-top: 30px !important; }

.mod-force-up {
  margin-top: -30px !important; }

.mod-flex-1 {
  flex: 1; }

.mod-flex-center {
  justify-content: center;
  align-items: center; }

.mod-flex-pull-right {
  margin-left: auto; }

.mod-full-height {
  height: 100%; }

.mod-responsive-image img {
  max-width: 100%;
  height: auto; }

.mod-no-margin {
  margin: 0 !important; }

.mod-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
  z-index: 50; }

.mod-compact-grid {
  padding: 0;
  grid-column-gap: 0 !important; }
  .mod-compact-grid a {
    line-height: 0; }

.mod-pad-img-150 {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  overflow: hidden; }

.mod-pad-img-height-150 {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  overflow: hidden; }

.mod-top-border {
  border-top: 2px solid #b4252d; }

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

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden; }

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

body {
  font-family: "Roboto", sans-serif;
  font-size: 0.875em;
  font-weight: 300;
  flex: 1;
  max-width: 100%;
  overflow-x: hidden; }

html {
  min-height: 100%;
  display: flex; }

body.has-menu {
  overflow: hidden; }

.lum-lightbox {
  z-index: 200; }

.richtext img {
  max-width: 100%;
  height: auto;
  display: bock;
  margin: auto; }

.responsive-object {
  position: relative; }

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

.splash-body {
  background: #fff; }
  @media (min-width: 1000px) {
    .splash-body {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center; } }

.splash-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
  padding-top: 150px;
  justify-content: center;
  max-width: 1800px; }
  .splash-container:after {
    content: "";
    background: url("/static/img/red-logo-shadow.fb673a433684.svg") no-repeat;
    background-size: 100%;
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    margin-left: -50px;
    pointer-events: none;
    margin-top: 25px; }
    @media (min-width: 1000px) {
      .splash-container:after {
        width: 30vh;
        height: 30vh;
        top: 50%;
        margin-top: -15vh;
        margin-left: -15vh; } }
  .splash-container > div {
    border: 5px solid #fff;
    max-width: 800px;
    max-height: 400px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  @media (min-width: 1000px) {
    .splash-container {
      align-content: center;
      padding-top: 0; }
      .splash-container > div {
        width: 50%;
        height: 50%; } }

.splash-property {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  max-height: 400px; }

.splash-property a {
  text-decoration: none;
  color: #fff;
  background-size: 0;
  box-sizing: border-box;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  transition: all 0.2s ease-in-out; }
  .splash-property a:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.7;
    transition: all 0.2s ease-in-out; }
  .splash-property a:hover {
    color: inherit; }
  @media (min-width: 1000px) {
    .splash-property a:hover:after {
      background-position: center;
      background-size: 30vh; } }

.splash-property--red a {
  color: #b4252d; }
  .splash-property--red a:hover {
    color: #fff; }
  .splash-property--red a:hover:after {
    background-color: #b4252d; }

.splash-property--green a {
  color: #39a5a2; }
  .splash-property--green a:hover {
    color: #fff; }
  .splash-property--green a:hover:after {
    background-color: #39a5a2; }

.splash-property__name {
  font-size: 2em;
  text-transform: uppercase;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.8);
  display: block;
  z-index: 100;
  position: relative; }
  @media (min-width: 1000px) {
    .splash-property__name {
      font-size: 4em; } }

.splash-property__tagline {
  font-size: 1.5em;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  z-index: 100;
  position: relative; }
  @media (min-width: 1000px) {
    .splash-property__tagline {
      font-size: 2em; } }

.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative; }

.layout-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 30px; }

/* Header */
.layout-header__main {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 100; }
  .layout-header__main > div {
    display: flex;
    flex-direction: row;
    align-items: flex-start; }

.layout-header__logos {
  display: flex;
  justify-content: start;
  align-items: center;
  flex: 1; }

.layout-header__sublogos {
  display: flex;
  justify-content: start;
  align-items: center;
  flex: 1;
  flex-direction: row; }
  @media (max-width: 1000px) {
    .layout-header__sublogos {
      flex-direction: column;
      align-items: start; } }

.layout-header__logo {
  background: url("/static/img/red_logo.759a0983e858.png") no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 20px 0 20px 20px; }

.layout-header__logo--cibus {
  background: url("/static/img/cibus_tuttofood_pos.71c51d373367.svg") no-repeat;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 20px 0 20px 20px;
  height: 50px;
  width: 240px; }
  @media (max-width: 1000px) {
    .layout-header__logo--cibus {
      height: 40px;
      width: 192px;
      margin: 0 0 0 20px; } }
  @media (max-width: 379px) {
    .layout-header__logo--cibus {
      height: 30px;
      width: 150px;
      margin-bottom: 0; } }

.layout-header__nav {
  flex: 2;
  display: flex;
  position: relative;
  justify-content: flex-end;
  box-shadow: none;
  flex-direction: column;
  align-items: flex-end; }
  @media (max-width: 1000px) {
    .layout-header__nav {
      transition: all 500ms ease-in-out;
      flex-direction: column;
      position: absolute;
      right: 0;
      top: 0;
      background-color: #f5f5f4;
      height: 100vh;
      z-index: 10;
      box-shadow: -2px 0 4px #c4c4bf;
      justify-content: flex-start;
      align-items: center;
      padding: 100px 20px 20px 20px;
      box-sizing: border-box;
      width: 0;
      display: none; }
      .layout-header__nav.is-expanded {
        display: block;
        right: 0;
        width: 90%; }
      .layout-header__nav > .nav-primary {
        align-content: flex-start;
        margin-bottom: 20px; }
        .layout-header__nav > .nav-primary > li {
          width: 100%; }
          .layout-header__nav > .nav-primary > li > a {
            text-align: center;
            display: block;
            padding: 10px 0; } }

.layout-header__nav-expand {
  display: block;
  z-index: 20;
  width: 70px;
  background: transparent;
  border: none;
  height: 120px;
  padding-top: 15px; }
  .layout-header__nav-expand:focus {
    outline: none; }
  .layout-header__nav-expand > span,
  .layout-header__nav-expand > span:before,
  .layout-header__nav-expand > span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: #b4252d;
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out; }
  .layout-header__nav-expand > span:before {
    top: -10px; }
  .layout-header__nav-expand > span:after {
    bottom: -10px; }
  .layout-header__nav-expand.is-active > span {
    background-color: transparent; }
  .layout-header__nav-expand.is-active > span:before,
  .layout-header__nav-expand.is-active > span:after {
    top: 0; }
  .layout-header__nav-expand.is-active > span:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .layout-header__nav-expand.is-active > span:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  @media (min-width: 1000px) {
    .layout-header__nav-expand {
      display: none; } }

.layout-header__nav-tools {
  margin: 0 0 40px 0;
  display: flex;
  align-items: center;
  background-color: #b4252d;
  padding: 0 5px;
  border-radius: 0 0 5px 5px;
  font-size: 0.8em; }
  @media (max-width: 1000px) {
    .layout-header__nav-tools {
      position: absolute;
      top: 0; } }
  .layout-header__nav-tools > a {
    color: #fff;
    text-decoration: none;
    padding: 10px 10px 10px 20px;
    border-radius: 6px;
    display: block;
    position: relative;
    text-align: center; }
    .layout-header__nav-tools > a:before {
      content: "";
      height: 100%;
      width: 1px;
      display: block;
      position: absolute;
      background-color: #de6168;
      box-shadow: 1px 0 0 #8a1c22;
      left: 8px;
      top: 0; }

.layout-header__banner {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 90;
  position: relative; }

/* Banner */
.layout-banner {
  padding: 50px 0; }

.layout-banner__logo {
  background-size: contain;
  height: 150px;
  width: calc(100% - 40px);
  margin: 80px 20px 20px 30px;
  display: block; }
  .layout-banner__logo > span {
    display: none; }

.layout-banner__extra-logo {
  display: block;
  max-width: 80%; }
  @media (min-width: 1000px) {
    .layout-banner__extra-logo {
      margin-right: 40px; } }
  .layout-banner__extra-logo > img {
    display: block;
    max-width: 100%;
    height: auto; }

.layout-banner__site {
  font-size: 2.8em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  color: #b4252d; }
  @media (max-width: 1000px) {
    .layout-banner__site {
      font-size: 2em; } }
  .layout-banner__site > a {
    color: #b4252d;
    text-decoration: none; }

.layout-banner__more-arrow {
  color: #b4252d;
  font-size: 1.3em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-top: 100px;
  margin-bottom: 20px; }
  .layout-banner__more-arrow:after {
    content: "";
    position: absolute;
    width: 138px;
    height: 90px;
    top: 35px;
    left: 50%;
    margin-left: -69px;
    background-size: cover;
    background-image: url("/static/img/chevron-down.70e205625788.svg");
    z-index: 90; }

.layout-banner__buttons {
  display: flex;
  justify-content: center; }
  .layout-banner__buttons > div {
    max-width: 240px;
    margin: 0 30px; }
  .layout-banner__buttons .button, .layout-banner__buttons .button--wide, .layout-banner__buttons .button--small, .layout-banner__buttons .button--cta, .layout-banner__buttons .button--light, .layout-banner__buttons .button--dark, .layout-banner__buttons .button--dark-shallow {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.46); }

/* Sections */
.layout-constrain {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column; }

.layout-constrain--smaller {
  width: 1000px;
  margin: 0 auto; }

.layout-constrain--tight {
  max-width: 700px;
  margin: 0 auto; }

.layout-breathing-room {
  margin: 50px auto; }

.layout-section, .layout-section--darker, .layout-section--darkbg {
  background-size: 0;
  background-color: white;
  position: relative;
  z-index: 20; }
  .layout-section--darker {
    background-color: #f5f5f4; }
  .layout-section--darkbg:after {
    opacity: 0.4 !important; }
  .layout-section:before, .layout-section--darker:before, .layout-section--darkbg:before {
    content: "";
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }
  .layout-section:after, .layout-section--darker:after, .layout-section--darkbg:after {
    content: "";
    background-image: inherit;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background-size: cover;
    display: block; }
  .layout-section--fullbg:after {
    opacity: 1; }

.layout-section__heading, .layout-section__heading--inverted-left, .layout-section__heading--inverted-right, .layout-section__heading--shallow {
  text-align: center;
  color: #b4252d;
  font-size: 2em;
  font-weight: 500;
  margin: 10px 0 10px 0;
  padding: 10px 0 10px 0; }
  .layout-section__heading--inverted-left, .layout-section__heading--inverted-right {
    color: #fff;
    position: relative;
    z-index: 10;
    overflow: hidden; }
    .layout-section__heading--inverted-left:before, .layout-section__heading--inverted-right:before {
      content: "";
      position: absolute;
      width: 80%;
      min-width: 700px;
      background-color: #b4252d;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1; }
  .layout-section__heading--inverted-right:before {
    left: auto;
    right: 0; }
  .layout-section__heading--shallow {
    margin: 20px 0; }

.layout-section__button {
  background-color: #b4252d;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 30px;
  border-color: #b4252d;
  border-width: 2px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  max-width: 300px;
  margin: 0 auto 20px auto; }

.layout-section__copy {
  text-align: center;
  margin: 40px auto;
  font-size: 1.4em; }

/* Grids */
.layout-grid--two {
  display: grid;
  grid-column-gap: 15px; }
  @media (min-width: 1000px) {
    .layout-grid--two {
      grid-template-columns: 1fr 1fr; } }

.layout-grid--three {
  display: grid;
  grid-column-gap: 15px; }
  @media (min-width: 1000px) {
    .layout-grid--three {
      grid-template-columns: 1fr 1fr 1fr; } }

.layout-grid--four {
  display: grid;
  grid-column-gap: 15px; }
  @media (min-width: 500px) {
    .layout-grid--four {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1000px) {
    .layout-grid--four {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }

.layout-grid--flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row; }
  .layout-grid--flex > div {
    flex: 1;
    margin: 20px;
    min-width: 200px; }
  .layout-grid--flex .layout-grid__item--small {
    max-width: 500px; }

.layout-grid--row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row; }

.layout-two-col {
  display: flex;
  flex-direction: row;
  flex: 1; }
  .layout-two-col > div {
    flex: 1;
    margin: 20px;
    display: flex;
    flex-direction: column; }
  .layout-two-col .layout-two-col__sidebar {
    max-width: 250px; }

.layout-expand {
  display: flex;
  flex: 1; }

/* Intro */
.layout-intro {
  margin: 20px 20px 20px 20px; }

.layout-intro--mini {
  margin: 20px 20px 0 20px; }

.layout-intro__heading {
  text-align: center;
  margin: auto;
  font-size: 1.8em; }

.layout-intro__body {
  text-align: center;
  margin: auto; }
  .layout-intro__body p {
    font-size: 1.4em; }
  .layout-intro__body h2 {
    font-size: 1.8em;
    font-weight: normal; }

.layout-intro__button {
  max-width: 400px;
  margin: auto; }

/* Text Page */
.layout-text-page__heading {
  font-size: 2em;
  text-align: center;
  margin: 40px auto; }

.layout-text-page__body {
  font-size: 1.3em;
  font-weight: 300; }
  .layout-text-page__body ul li,
  .layout-text-page__body ol li {
    margin-bottom: 15px; }

.layout-text-page__cta {
  margin: 20px auto;
  max-width: 400px;
  text-align: center; }
  .layout-text-page__cta > a {
    background-color: #b4252d;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0; }

/* Marketplace */
.layout-container--marketplace .layout-header__logo {
  background: url("/static/img/marketplace_logo_portrait.7acc34552197.svg") no-repeat;
  height: 140px;
  flex: none; }
  @media (min-width: 1000px) {
    .layout-container--marketplace .layout-header__logo {
      margin: 5px 0; } }

.layout-container--marketplace .layout-header__logo--iberica {
  background: url("/static/img/logo_iberica.b7bf93f8db54.png") no-repeat;
  width: 200px;
  height: 45px;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 20px 0 20px 20px; }
  @media (min-width: 1000px) {
    .layout-container--marketplace .layout-header__logo--iberica {
      background-position: top left;
      width: 230px;
      height: 55px; } }

.layout-container--marketplace .layout-header {
  background: url("/static/img/marketplace_header_bg.61e988ff8069.jpg") no-repeat center -240px; }

.layout-container--marketplace .layout-banner__logo {
  background: url("/static/img/logo-text-red.4efbf50f1cc9.svg") no-repeat center/contain; }

.layout-container--marketplace .layout-header__nav {
  align-items: center; }

.layout-container--marketplace .layout-header__nav-expand {
  margin-left: auto;
  align-self: center; }

.layout-container--marketplace .layout-header__nav-tools {
  align-self: flex-end; }

.layout-container--marketplace .layout-banner__site {
  color: #b4252d; }

/* Awards */
.layout-container--awards .layout-header__logo {
  background: url("/static/img/logo-awards.73b593a27ee1.svg") no-repeat;
  flex: none; }
  @media (min-width: 1000px) {
    .layout-container--awards .layout-header__logo {
      margin: 20px 0; } }

.layout-container--awards .layout-header__logo--iberica {
  background: url("/static/img/iberica-awards-logo.84be1a766e91.png") no-repeat;
  width: 200px;
  height: 45px;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 0 20px 20px; }
  @media (min-width: 1000px) {
    .layout-container--awards .layout-header__logo--iberica {
      background-position: top left;
      width: 230px;
      height: 75px;
      margin: 40px 0 20px 20px; } }

.layout-container--awards .layout-header {
  background: url("/static/img/awards_header_bg.0ad42bf1c9f9.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.layout-container--awards .layout-header__nav {
  align-items: center; }

.layout-container--awards .layout-header__nav-expand {
  margin-left: auto;
  align-self: center; }

.layout-container--awards .layout-banner__logo {
  background: url("/static/img/logo-text-gold.83291a23e004.svg") no-repeat center/contain; }

.layout-container--awards .layout-header__nav-tools {
  align-self: flex-end; }

.layout-container--awards .layout-banner__site,
.layout-container--awards .layout-intro,
.layout-container--awards .layout-section__heading,
.layout-container--awards .layout-section__heading--inverted-left,
.layout-container--awards .layout-section__heading--inverted-right,
.layout-container--awards .layout-section__heading--shallow,
.layout-container--awards .layout-text-page {
  color: #a5791e; }

.layout-container--awards .layout-section--darker {
  background-color: #a5791e;
  color: #fff; }
  .layout-container--awards .layout-section--darker .layout-section__heading, .layout-container--awards .layout-section--darker .layout-section__heading--inverted-left, .layout-container--awards .layout-section--darker .layout-section__heading--inverted-right, .layout-container--awards .layout-section--darker .layout-section__heading--shallow {
    color: #fff; }

.layout-container--awards .layout-body {
  margin-top: 0px; }

/* Expo */
.layout-container--expo .layout-banner {
  padding: 15px 0 30px 0; }

.layout-container--expo .layout-header {
  background: url("/static/img/expo_header_bg.98569aa6116b.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.layout-container--expo .layout-banner__logo {
  background: url("/static/img/logo-text-red.4efbf50f1cc9.svg") no-repeat center/contain;
  height: 120px;
  margin: 20px; }

.layout-container--expo .layout-banner__title {
  font-size: 12vw;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: #b4252d; }
  @media (min-width: 1000px) {
    .layout-container--expo .layout-banner__title {
      font-size: 6em; } }

.layout-container--expo .layout-banner__title_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  @media (min-width: 1000px) {
    .layout-container--expo .layout-banner__title_wrapper {
      flex-direction: row; } }

.layout-container--expo .layout-banner__subtitle {
  font-size: 7vw;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: #b4252d;
  margin: 0 0 20px 0; }
  @media (min-width: 1000px) {
    .layout-container--expo .layout-banner__subtitle {
      font-size: 3em; } }

.layout-container--expo .layout-banner__buttons {
  text-transform: uppercase; }

.layout-container--expo .layout-section--darker {
  background-color: #b4252d;
  color: #fff; }
  .layout-container--expo .layout-section--darker .layout-section__heading, .layout-container--expo .layout-section--darker .layout-section__heading--inverted-left, .layout-container--expo .layout-section--darker .layout-section__heading--inverted-right, .layout-container--expo .layout-section--darker .layout-section__heading--shallow {
    color: #fff; }

/* Darker Variant */
.layout-container--dark .layout-header__main {
  background-color: rgba(192, 192, 192, 0.8); }

.layout-container--dark .layout-header__banner {
  background-color: rgba(0, 0, 0, 0.5); }

.layout-container--dark .layout-banner__title {
  color: #fff; }

/* Voting */
.layout-container__voting {
  background: #efefef; }

/* Awards specific layout elements */
.layout-awards-next-event {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0; }
  .layout-awards-next-event > h2 {
    color: #a5791e;
    font-size: 1.8em;
    margin-right: 20px;
    font-weight: 400; }

.layout-awards-participate {
  color: #a5791e;
  text-align: center;
  margin: 40px 0; }
  .layout-awards-participate h2 {
    font-size: 2.8em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0; }
  .layout-awards-participate h3 {
    font-size: 2.2em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 10px 0 0 0; }
  .layout-awards-participate div {
    display: flex;
    justify-content: center; }
  .layout-awards-participate div a {
    background-color: #b4252d;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    background-color: #a5791e;
    max-width: 300px;
    margin: 20px; }

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center; }
  .nav-primary > li {
    margin-left: 10px;
    text-align: right; }
  .nav-primary a {
    color: #b4252d;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 1.1em; }

.nav-primary__item--highlight > a {
  background-color: #b4252d;
  color: #fff; }

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

.nav-vertical > li > a {
  text-decoration: none;
  font-size: 1.1em;
  padding: 20px 20px 20px 20px;
  display: block;
  color: #777; }
  .nav-vertical > li > a > svg {
    margin-right: 10px;
    width: 20px !important; }

li.nav-vertical__item--active > a {
  color: #fff;
  background-color: #b4252d; }

.button, .button--wide, .button--small, .button--cta, .button--light, .button--dark, .button--dark-shallow {
  background-color: #b4252d;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 30px;
  border-color: #b4252d;
  border-width: 2px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  max-width: 400px;
  margin: auto; }
  .button:disabled, .button--wide:disabled, .button--small:disabled, .button--cta:disabled, .button--light:disabled, .button--dark:disabled, .button--dark-shallow:disabled {
    background-color: #999; }

.button--wide {
  max-width: 500px; }

.button--small {
  font-size: 1.1em;
  padding: 8px 10px; }

.button--cta {
  font-size: 1.6em;
  text-transform: uppercase;
  padding: 10px; }

.button--light {
  background-color: #ffffff;
  border: solid 2px #ffffff;
  color: #b4252d;
  box-shadow: 2px 3px 10px rgba(68, 68, 68, 0.5);
  transition: box-shadow 0.5s, background 0.5s, border 0.5s; }
  .button--light:hover {
    box-shadow: 2px 3px 10px rgba(68, 68, 68, 0.9);
    background-color: #eee;
    border: solid 2px #eee; }
  .button--light:hover {
    color: #b4252d; }

.button--dark, .button--dark-shallow {
  background-color: #b4252d;
  border: 1px solid #fff;
  box-shadow: 0 0 0 4px #b4252d;
  color: #fff; }
  .button--dark:hover, .button--dark-shallow:hover {
    color: #fff; }

.button--dark-shallow {
  padding: 5px 20px; }

.button--stealthy {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: inherit;
  padding: 10px 20px; }

.product-block, .product-block--row, .product-block--large, .product-block--medium, .product-block--small, .product-block--award {
  margin: 0 auto 20px auto;
  background-color: #f1f1f1;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 20px 30px;
  width: 100%; }
  .product-block--row {
    flex-direction: row;
    flex-wrap: wrap; }

.product-block__col {
  flex-direction: column;
  flex: 1;
  display: flex;
  justify-content: center; }
  .product-block__col > .product-block__seemore {
    max-width: 100px;
    margin-left: auto; }

.product-block__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 250px;
  margin-bottom: 10px;
  text-align: center;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center; }

.product-block__title {
  font-size: 1.3em;
  color: #b4252d;
  padding-bottom: 5px;
  text-transform: uppercase; }

.product-block__producer {
  text-transform: uppercase;
  font-size: 1.1em;
  color: #b4252d;
  border-bottom: 1px solid #b4252d;
  padding-bottom: 10px; }

.product-block__body {
  display: flex;
  flex-direction: column;
  flex: 1; }

.product-block__description {
  text-align: left;
  color: #444;
  display: none;
  padding: 10px 0 20px 0; }
  @media (min-width: 500px) {
    .product-block__description {
      display: block; } }

.product-block__tag {
  margin-left: 20px;
  font-weight: 800;
  color: #444444;
  padding-bottom: 10px; }
  .product-block__tag > span {
    text-transform: uppercase;
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    margin-right: 20px; }

.product-block__seemore {
  border: 0;
  background-color: #b4252d;
  color: #fff;
  padding: 8px 10px;
  margin-top: auto;
  border-radius: 0;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  display: block;
  text-align: center; }

.product-block__request {
  border: 2px solid #b4252d;
  background-color: #fff;
  color: #b4252d;
  padding: 6px 8px;
  margin-top: auto;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  display: block;
  text-align: center; }

.product-block__ratethis {
  font-family: "Roboto", sans-serif;
  background-color: #b18400;
  text-align: center;
  padding: 5px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 14px; }
  .product-block__ratethis:hover {
    color: #ccc; }

.product-block__rating {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase; }
  .product-block__rating > span {
    font-size: 1.4em;
    padding-top: 10px;
    display: block; }

.product-block__rating-stars {
  font-size: 2.2em;
  color: #a5791e;
  margin-bottom: 10px; }

.product-block__booth {
  padding: 10px;
  text-align: center;
  font-size: 1.2em; }
  .product-block__booth > span {
    display: block;
    font-size: 1.4em; }

.product-block--large {
  flex-direction: row;
  flex-wrap: wrap; }
  .product-block--large > .product-block__image,
  .product-block--large .product-block__body {
    flex: 1; }
  .product-block--large > .product-block__image {
    width: auto;
    max-height: none;
    border-bottom: 0; }
  .product-block--large > .product-block__body {
    position: relative;
    padding-left: 60px; }
    .product-block--large > .product-block__body:before {
      left: 0;
      position: absolute;
      top: 50%;
      margin-top: -30px; }
    .product-block--large > .product-block__body > .product-block__title {
      margin-top: 20px; }
  .product-block--large > .product-block__footer {
    flex-basis: 100%; }

.product-block--medium {
  text-align: center; }
  .product-block--medium > .product-block__image {
    flex: 1;
    min-height: 250px; }
  .product-block--medium > .product-block__body {
    min-height: 150px; }

.product-block--small {
  text-align: center; }
  .product-block--small > .product-block__image {
    flex: 1;
    min-height: 250px; }
  .product-block--small > .product-block__body {
    min-height: 150px; }

.product-block--award {
  text-align: center;
  border-color: #b18400;
  margin: 0; }
  .product-block--award > .product-block__image {
    border-color: #b18400;
    height: 166px; }
    .product-block--award > .product-block__image > a img {
      height: 100%; }
  .product-block--award > .product-block__footer .product-block__seemore {
    border-color: #b18400;
    color: #b18400; }
  .product-block--award > .product-block__body:before {
    width: 80px;
    height: 80px;
    top: -40px; }

.producer-block, .producer-block--large, .producer-block--wide, .producer-block--medium, .producer-block--small {
  margin: 20px 0;
  background-color: #f1f1f1;
  display: flex;
  position: relative;
  flex: 1;
  flex-direction: column;
  padding: 20px 30px;
  box-sizing: border-box; }

.producer-block__heading {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.producer-block__logo {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 20px; }

.producer-block__name {
  font-size: 1.3em;
  color: #b4252d;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold; }

.producer-block__region {
  text-transform: uppercase;
  font-size: 1.1em;
  color: #b4252d; }

.producer-block__map {
  margin-left: auto;
  text-align: right;
  display: none; }
  @media (min-width: 500px) {
    .producer-block__map {
      display: block; } }

.producer-block__body {
  width: 100%; }

.producer-block__details {
  max-width: 250px; }

.producer-block__description {
  text-align: left;
  margin: 10px 0;
  color: #444;
  border-top: 1px solid #b4252d;
  padding: 10px 0 20px 0; }

.producer-block__seemore {
  border: 0;
  background-color: #b4252d;
  color: #fff;
  padding: 8px 10px;
  margin-top: auto;
  border-radius: 0;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  float: right; }

.producer-block__social {
  margin: 10px 0;
  flex: 1; }

.producer-block--large, .producer-block--wide {
  flex-direction: row;
  flex-wrap: wrap; }
  .producer-block--large .producer-block__logo, .producer-block--wide .producer-block__logo {
    border-radius: 0;
    background-color: transparent;
    width: auto;
    height: auto; }
  .producer-block--large .producer-block__description, .producer-block--wide .producer-block__description {
    border-top: none;
    flex: 1; }
  .producer-block--large .producer-block__heading, .producer-block--wide .producer-block__heading {
    flex: 1;
    padding: 20px 20px 20px 0; }
  .producer-block--large .producer-block__body, .producer-block--wide .producer-block__body {
    display: flex;
    flex-direction: column;
    flex: 3; }
    @media (min-width: 1000px) {
      .producer-block--large .producer-block__body, .producer-block--wide .producer-block__body {
        padding: 20px 0 20px 20px;
        border-left: 1px solid #b4252d; } }
  .producer-block--large .producer-block__footer, .producer-block--wide .producer-block__footer {
    display: flex; }
  .producer-block--large .producer-block__details, .producer-block--wide .producer-block__details {
    display: flex;
    flex-direction: column; }
  .producer-block--large .producer-block__logo, .producer-block--wide .producer-block__logo {
    flex: 1; }
  .producer-block--large .producer-block__details, .producer-block--wide .producer-block__details,
  .producer-block--large .producer-block__map,
  .producer-block--wide .producer-block__map {
    flex: 1; }
  .producer-block--large .producer-block__region, .producer-block--wide .producer-block__region {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px; }
  .producer-block--large .producer-block__seemore, .producer-block--wide .producer-block__seemore {
    align-self: flex-end; }

.producer-block--small .producer-block__heading {
  flex: 1; }

.producer-block--wide {
  flex-wrap: wrap; }
  .producer-block--wide .producer-block__heading {
    flex: 2; }
  .producer-block--wide .producer-block__body {
    flex: 100%; }
    @media (min-width: 1000px) {
      .producer-block--wide .producer-block__body {
        flex: 4; } }

.category-block {
  background-size: 0;
  position: relative;
  margin: 20px;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid #b4252d;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: bold; }
  .category-block:before {
    content: '';
    float: left;
    padding-top: 100%; }
  .category-block:after {
    content: '';
    border-radius: 30px;
    background-image: inherit;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 0;
    background-size: cover;
    background-position: center; }

.carousel,
.carousel-thumbs {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.carousel-outer {
  position: relative;
  padding: 0 60px; }

.carousel-thumbs .swiper-wrapper {
  margin: 20px 0; }

.swiper-slide {
  padding: 0 50px;
  box-sizing: border-box; }

.swiper-container-autoheight .swiper-slide {
  height: auto;
  min-height: 100%; }

.swiper-slide--small {
  max-width: 275px;
  padding: 0 10px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  height: auto; }

.swiper-slide--full {
  padding: 0; }

.swiper-slide--thumb {
  max-width: 204px;
  box-sizing: border-box;
  padding: 0;
  margin-right: 20px; }
  .swiper-slide--thumb > img {
    border: 2px solid #b4252d; }

.swiper-container-horizontal .swiper-pagination {
  position: relative;
  margin: 10px 0; }

.swiper-pagination-bullet {
  background: #fff;
  width: 20px;
  height: 20px;
  opacity: 1;
  border: 1px solid #b4252d; }
  .swiper-pagination-bullet-active {
    background: #b4252d; }

.swiper-pagination--dark .swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #fff; }
  .swiper-pagination--dark .swiper-pagination-bullet-active {
    background: #fff;
    border: 2px solid #fff; }

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 60px;
  margin-top: -30px;
  background-size: contain; }

.swiper-button-prev {
  background-image: url("/static/img/chevron-left.e6f56eb98e91.svg"); }

.swiper-button-next {
  background-image: url("/static/img/chevron-right.d53f5da2b669.svg"); }

.swiper-button-disabled {
  display: none; }

.swiper-slide-thumb-active > img {
  border: 2px solid #fff; }

.benefits-role {
  margin: 0 auto; }
  .benefits-role > h2 {
    font-size: 1.4em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center; }
  .benefits-role > a {
    max-width: 240px;
    margin: 40px auto 0 auto; }

.benefits-role__list {
  list-style: none;
  margin: 35px 0 0 0;
  padding: 0;
  counter-reset: item; }
  .benefits-role__list > li {
    counter-increment: item;
    border: 2px solid #b4252d;
    padding: 10px;
    position: relative;
    height: 40px;
    margin-left: 35px;
    margin-bottom: 20px;
    padding-left: 50px;
    text-align: left;
    font-size: 1em; }
    .benefits-role__list > li:before {
      display: inline-block;
      content: counter(item);
      background: #b4252d;
      border-radius: 100%;
      width: 70px;
      height: 70px;
      color: #fff;
      text-align: center;
      font-size: 2.2em;
      font-weight: bold;
      line-height: 2em;
      position: absolute;
      bottom: -2px;
      left: -35px; }

.benefits-role__button {
  background-color: #b4252d;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 30px;
  border-color: #b4252d;
  border-width: 2px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  max-width: 200px;
  margin: 20px auto; }

.sponsors__title {
  text-align: center;
  position: relative;
  font-weight: normal;
  overflow: hidden;
  font-size: 1.2em;
  color: #b4252d;
  margin: 30px 0; }
  .sponsors__title:after, .sponsors__title:before {
    content: "";
    height: 1px;
    background-color: #b4252d;
    width: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle; }
  .sponsors__title:after {
    left: 1em;
    margin-right: -50%; }
  .sponsors__title:before {
    right: 1em;
    margin-left: -50%; }

.sponsors__list {
  list-style: none;
  margin: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.sponsors__item > a,
.sponsors__item > div {
  display: flex;
  padding: 20px 20px;
  text-align: center;
  margin-right: 20px;
  height: 100%;
  box-sizing: border-box;
  align-items: center; }

.sponsors__item > a span,
.sponsors__item > div span {
  display: none; }

.sponsors__item img {
  max-width: 100%; }

@media (max-width: 1000px) {
  .sponsors__item > a,
  .sponsors__item > div {
    max-width: 100px;
    padding: 10px;
    margin-right: 0; } }

/* Header */
.producer-header, .producer-header--slim {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  background-color: #999; }

.producer-header__main {
  margin-left: 100px;
  margin-top: 50px;
  flex: 1; }

.producer-header__title {
  font-weight: bold;
  color: #ffffff;
  font-size: 50px;
  text-align: left;
  text-shadow: 1px 1px 2px #000;
  margin: 20px 0 10px 0;
  text-transform: capitalize; }
  .producer-header__title:after {
    content: "";
    display: block;
    width: 98px;
    height: 15px;
    background-image: url("/static/img/divider_white.43c24df85cf1.png");
    background-repeat: no-repeat;
    margin: 10px 0 20px 0; }

.producer-header__chatnow {
  max-width: 200px;
  text-align: center; }

.producer-header__details {
  max-width: 250px;
  text-align: center; }

.producer-header__actions {
  margin-left: 100px;
  flex: 0.2; }
  .producer-header__actions a {
    text-decoration: none; }
  .producer-header__actions > * {
    margin-top: 20px; }
  @media (min-width: 767px) {
    .producer-header__actions {
      margin-top: 173px;
      margin-right: 100px; } }

.producer-header--slim {
  height: auto;
  padding-bottom: 20px; }
  .producer-header--slim .producer-header__main {
    margin-top: 20px; }

/* Body */
.producer__alt-image {
  margin-left: 10px; }

.producer__alt-image > img {
  height: 100%; }

.producer__subhead {
  font-size: 2em;
  color: #b4252d;
  text-transform: uppercase;
  font-weight: normal; }

.producer__description {
  font-size: 16px;
  margin: 40px; }

.producer__fact {
  padding: 10px 10px;
  font-size: 0.9em;
  font-weight: normal;
  color: #b4252d; }
  .producer__fact > span {
    font-weight: bold;
    display: block;
    padding-bottom: 5px;
    margin-right: 10px;
    text-transform: uppercase; }
    .producer__fact > span:after {
      content: ":"; }
    .producer__fact > span > svg {
      margin-right: 10px; }

.producer__details {
  max-width: 520px; }
  .producer__details > div > div {
    flex-basis: 100px;
    flex-grow: 1; }

.producer__map {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  max-width: 300px;
  margin: auto; }

.producer__address {
  display: flex;
  flex-direction: column;
  margin-right: 5px; }

.producer__address-region {
  display: block;
  position: relative;
  padding: 2px 0;
  color: #b4252d;
  margin: auto 0;
  font-size: 18px; }
  .producer__address-region > span {
    text-transform: uppercase; }

.producer__awards {
  max-width: 350px;
  border-radius: 8px;
  text-decoration: none;
  margin: 20px; }
  .producer__awards > .producer__subhead {
    text-align: center;
    margin: 20px;
    font-size: 1.6em; }

.producer__awards-logo, .producer__awards-logo--bellavita, .producer__awards-logo--iberica {
  width: 170px;
  height: 170px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 20px auto;
  z-index: 20; }

.producer__awards--has-awards {
  border: 4px solid #a2832e; }
  .producer__awards--has-awards .producer__subhead {
    color: #a2832e; }
  .producer__awards--has-awards .producer__awards-logo--bellavita {
    background-image: url("/static/img/logo-awards.73b593a27ee1.svg"); }
  .producer__awards--has-awards .producer__awards-logo--iberica {
    background-image: url("/static/img/iberica-awards-logo.84be1a766e91.png"); }

.producer__awards--no-awards {
  border: 4px solid #8b8b8b; }
  .producer__awards--no-awards .producer__subhead {
    color: #8b8b8b; }
  .producer__awards--no-awards .producer__awards-logo--bellavita {
    background-image: url("/static/img/logo-awards-grey.17c3f8e14e2f.svg"); }
  .producer__awards--no-awards .producer__awards-logo--iberica {
    background-image: url("/static/img/iberica-awards-logo.84be1a766e91.png"); }

.producer__social {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  align-items: center;
  align-content: center; }
  .producer__social > a {
    margin-bottom: 5px;
    width: 15%;
    margin-right: 1%; }

.producer__categories {
  flex: 1;
  position: relative; }
  .producer__categories > h3 {
    margin: 0;
    font-size: 20px;
    padding: 2px 0;
    text-transform: uppercase;
    z-index: 10;
    position: relative; }
  .producer__categories > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
    position: relative; }
  .producer__categories > ul li {
    font-size: 16px; }

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

.producer__products-link {
  margin-bottom: 30px; }

/* News */
.producer__news {
  position: relative; }
  .producer__news .carousel:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 55px);
    border-radius: 10px;
    border: 2px solid #b4252d;
    background-color: #fff;
    box-sizing: border-box; }
  .producer__news .swiper-slide {
    padding: 20px;
    width: auto !important;
    flex-basis: 100%; }
  .producer__news .swiper-pagination {
    margin-top: 20px; }

.producer__news-title {
  font-size: 1.2em;
  padding: 5px 0;
  margin: 0;
  font-weight: bold; }

.producer__news-button {
  font-weight: bold;
  color: #000;
  margin-top: 10px;
  text-decoration: none;
  display: block; }

.producer__brochure {
  max-width: 300px; }
  .producer__brochure > a {
    display: flex;
    flex-direction: column;
    height: 300px;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #b4252d;
    background-color: #fff;
    text-align: center;
    color: #b4252d;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    align-items: center;
    justify-content: center;
    background-size: 0;
    position: relative; }
    .producer__brochure > a img {
      padding: 20px 0; }
    .producer__brochure > a span {
      position: relative;
      z-index: 10; }

.product-detail {
  display: flex;
  flex-wrap: wrap;
  margin: 20px; }

.product-detail__body {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 300px; }

.product-detail__heading {
  color: #b4252d;
  font-size: 2em;
  font-weight: bold;
  margin: 0; }

.product-detail__button {
  background-color: #b4252d;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 30px;
  border-color: #b4252d;
  border-width: 2px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  max-width: 300px; }

.form__fieldset {
  padding: 0;
  border: none;
  max-width: 800px;
  padding: 10px;
  margin: auto; }
  .form__fieldset legend {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding: 10px 0;
    color: #b4252d;
    border-bottom: 1px solid #b4252d;
    width: 100%; }
  .form__fieldset:not(:last-of-type) {
    margin-bottom: 2rem; }

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

.form__field, .form__field--half {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 0; }
  .form__field--half {
    width: 100%; }
    .form__field--half:nth-child(1) {
      margin-right: 10px; }
    @media (min-width: 1000px) {
      .form__field--half {
        width: auto; } }
  .form__field--hide-label .form__label {
    display: none; }

.form__label {
  font-size: 1em;
  margin-bottom: 8px;
  color: #777; }

.form__help-text {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #777;
  font-style: italic; }

.form__input, .form__input--error, .choices__inner {
  padding: 10px;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border: 1px solid #ddd;
  background-color: #fff; }

.form__radio {
  list-style: none;
  margin: 0;
  padding: 0; }
  .form__radio > li {
    padding: 5px; }
    .form__radio > li input {
      margin-right: 10px; }

.form__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .form__checks > li {
    padding: 5px; }
    .form__checks > li > label {
      display: flex; }
    .form__checks > li input {
      margin-right: 10px; }

.form__checkbox {
  display: flex;
  flex-direction: row; }
  .form__checkbox > label {
    margin-left: 10px;
    order: 2; }

.form__inline-button {
  border: 0;
  background-color: #b4252d;
  color: #fff;
  padding: 8px 10px;
  margin-top: auto;
  border-radius: 0;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  display: inline-block;
  margin: -5px 10px; }

.form__secondary-action {
  border: 0;
  background-color: #b4252d;
  color: #fff;
  padding: 8px 10px;
  margin-top: auto;
  border-radius: 0;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  display: inline-block; }

.form__input--error {
  border-color: #b4252d; }

.errorlist {
  list-style: none;
  margin: 10px;
  padding: 0;
  color: #b4252d; }

.form__buttons {
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  margin: auto;
  justify-content: center; }
  .form__buttons > * {
    margin: 0 15px; }

.form__submit {
  max-width: 400px; }

.form--inverted .form__label {
  color: #fff; }

.form--inverted .form__input, .form--inverted .form__input--error, .form--inverted .choices__inner {
  padding: 10px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  color: #fff; }
  .form--inverted .form__input::-webkit-input-placeholder, .form--inverted .form__input--error::-webkit-input-placeholder, .form--inverted .choices__inner::-webkit-input-placeholder {
    color: #fff; }
  .form--inverted .form__input::-ms-input-placeholder, .form--inverted .form__input--error::-ms-input-placeholder, .form--inverted .choices__inner::-ms-input-placeholder {
    color: #fff; }
  .form--inverted .form__input::placeholder, .form--inverted .form__input--error::placeholder, .form--inverted .choices__inner::placeholder {
    color: #fff; }

/* Choices Overrides */
.choices {
  margin-bottom: 0; }

.choices__inner {
  min-height: auto;
  padding: 6px;
  box-sizing: border-box; }

.choices__input {
  background-color: #fff; }

.choices[data-type*="select-one"] select.choices__input {
  display: block !important;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0; }

.tabs, .tabs--centered, .tabs--stretch {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0; }
  .tabs--centered {
    justify-content: center; }
  .tabs--stretch > li {
    flex: 1; }

.tabs__tab > button {
  border: 1px solid #777;
  margin-right: 10px;
  padding: 10px 20px;
  margin-bottom: -1px;
  background-color: #f5f5f4;
  width: 100%; }

.tabs__tab.is-active > button {
  background-color: #fff;
  border-bottom: 1px solid #fff; }

.tabs__tab--round {
  margin: 0 10px; }
  .tabs__tab--round > button {
    background-color: #fff;
    color: #b4252d;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0; }
  .tabs__tab--round.is-active > button {
    background-color: #b4252d;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0; }

.tabs__tab--fullsquare {
  margin-right: 10px; }
  .tabs__tab--fullsquare > button {
    background-color: #fff;
    border: 1px solid #b4252d;
    font-size: 1.2em;
    font-weight: bold;
    color: #b4252d; }
  .tabs__tab--fullsquare.is-active > button {
    background-color: #b4252d;
    color: #fff; }

.tabbable--bordered {
  padding: 10px;
  border: 1px solid #777; }

.paginator {
  display: flex;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center; }

.paginator__page > a {
  padding: 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: black;
  display: block;
  margin: 5px; }

.paginator__page.is-active a {
  background-color: #b4252d;
  border: 1px solid #b4252d;
  color: white; }

.paginator__next svg,
.paginator__prev svg {
  height: 30px;
  width: 30px !important;
  color: #b4252d; }

.is-stuck .search {
  margin-top: 20px; }
  .is-stuck .search .search-categories {
    display: none; }

.search > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 20px 20px 20px; }
  .search > form > div {
    width: 100%; }

.search-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center; }
  .search-categories > li > input {
    display: none; }
  .search-categories > li {
    margin-right: 10px;
    margin-bottom: 10px; }
  .search-categories > li > label,
  .search-categories > li > a {
    border: 2px solid #b4252d;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; }
  .search-categories > li > label:hover > span,
  .search-categories > li > a:hover > span {
    opacity: 1;
    bottom: 52px; }
  .search-categories > li > label > span,
  .search-categories > li > a > span {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    background-color: #b4252d;
    padding: 5px 10px;
    color: #fff;
    bottom: 40px;
    width: 200%;
    pointer-events: none;
    text-align: center;
    z-index: 20;
    font-size: 0.8em; }
    .search-categories > li > label > span:after,
    .search-categories > li > a > span:after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -8px;
      width: 0;
      height: 0;
      border-top: solid 8px #b4252d;
      border-left: solid 8px transparent;
      border-right: solid 8px transparent; }
  .search-categories > li > label > img,
  .search-categories > li > a > img {
    width: 80%;
    height: 80%; }
  .search-categories > li > input:checked + label,
  .search-categories > li.is-active > a {
    background-color: #b4252d; }
    .search-categories > li > input:checked + label > img,
    .search-categories > li.is-active > a > img {
      -webkit-filter: brightness(0) invert(1);
              filter: brightness(0) invert(1); }

.search-categories__all {
  position: relative; }
  .search-categories__all > a:after {
    content: "";
    position: absolute;
    width: 30%;
    height: 30%;
    background-color: #b4252d;
    border-radius: 100%; }
  .search-categories__all.is-active > a {
    background-color: #b4252d; }
    .search-categories__all.is-active > a:after {
      background-color: #fff; }

.search-meta-categories {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center; }
  .search-meta-categories > li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #b4252d;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 30px; }
    @media (min-width: 1000px) {
      .search-meta-categories > li a {
        width: 110px;
        height: 110px;
        margin: 0 10px;
        padding: 10px;
        font-size: 1.3rem; } }
  .search-meta-categories > li > a:hover > span {
    opacity: 1;
    bottom: 40px; }
    @media (min-width: 1000px) {
      .search-meta-categories > li > a:hover > span {
        bottom: 110px; } }
  .search-meta-categories > li > a > span {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    background-color: white;
    padding: 5px 10px;
    color: #000;
    bottom: 0px;
    width: 100%;
    pointer-events: none;
    text-align: center;
    z-index: 20;
    font-size: 0.8em; }
    @media (min-width: 1000px) {
      .search-meta-categories > li > a > span {
        bottom: 80px;
        width: 200%; } }
    .search-meta-categories > li > a > span:after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -8px;
      width: 0;
      height: 0;
      border-top: solid 8px white;
      border-left: solid 8px transparent;
      border-right: solid 8px transparent; }

.search-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .search-fields > * {
    min-width: 120px;
    margin-top: 5px; }

.search-fields__query {
  flex: 1;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #b4252d;
  display: flex;
  overflow: hidden;
  align-items: center;
  max-width: 730px; }
  .search-fields__query > svg {
    padding: 10px 20px;
    color: #b4252d; }
  .search-fields__query > input {
    padding: 10px;
    flex: 1;
    font-size: 1em;
    border: 0; }
    @media (min-width: 1000px) {
      .search-fields__query > input {
        font-size: 1.3em;
        bottom: 80px;
        width: 200%; } }
  .search-fields__query > button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
    color: #b4252d;
    padding: 0 20px;
    font-size: 1.2rem; }
    .search-fields__query > button > span {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; }

.search-fields__region {
  flex: 0.2;
  border-radius: 30px;
  overflow: hidden;
  background-color: #b4252d;
  margin-left: 20px;
  position: relative;
  display: flex; }
  .search-fields__region > svg {
    color: #fff;
    position: absolute;
    right: 20px;
    top: 15px; }
  .search-fields__region > select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #b4252d;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    border: 0; }

.search-button {
  margin-left: 20px; }

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

.award-form__nominations {
  font-size: 1.2em;
  text-align: center; }

.panel, .panel--warning, .panel--notice, .panel--success {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden; }

.panel__icon > svg {
  height: 110%;
  width: auto !important;
  position: absolute;
  top: -2%;
  left: -2%;
  z-index: 0; }

.panel__title {
  position: relative;
  font-size: 1.2em;
  padding: 10px 0;
  margin-left: 100px; }

.panel__body {
  margin-left: 100px;
  padding: 10px 0;
  position: relative; }

.panel__actions {
  margin-left: 100px;
  padding: 10px 0;
  position: relative; }

.panel__action-primary {
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  text-decoration: none; }

.panel__action-secondary {
  background-color: transparent;
  border: none;
  text-decoration: underline;
  padding: 10px;
  color: #000;
  cursor: pointer; }

.panel--warning {
  background-color: #f9e2ed; }
  .panel--warning .panel__icon > svg {
    color: #f1b7d4; }
  .panel--warning .panel__title {
    border-bottom: 2px solid #8e1b54; }
  .panel--warning .panel__action-primary {
    background-color: #8e1b54; }

.panel--notice {
  background-color: #f5f9e7; }
  .panel--notice .panel__icon > svg {
    color: #e5f0bd; }
  .panel--notice .panel__title {
    border-bottom: 2px solid #98b72a; }
  .panel--notice .panel__action-primary {
    background-color: #98b72a; }

.panel--success {
  background-color: #c2f2a1; }
  .panel--success .panel__icon > svg {
    color: #a5ec74; }
  .panel--success .panel__title {
    border-bottom: 2px solid #408212; }
  .panel--success .panel__action-primary {
    background-color: #408212; }

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

.messages__message--success {
  background-color: #c2f2a1;
  padding: 20px;
  border-bottom: 2px solid #6cdc1e;
  margin: 10px 0; }

.messages__message--warning {
  background-color: #f1b7d4;
  padding: 20px;
  border-bottom: 2px solid #d93687;
  margin: 10px 0; }

.messages__message--error {
  background-color: #f9dfda;
  padding: 20px;
  border-bottom: 2px solid #e46b56;
  margin: 10px 0; }

.newsletter-form {
  background-color: #b4252d;
  color: #fff; }
  .newsletter-form > h2 {
    font-weight: normal;
    text-align: center;
    font-size: 2em;
    text-transform: uppercase;
    padding: 40px 20px;
    margin: 0; }
  .newsletter-form > form {
    margin: auto; }

.package {
  text-align: center;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  border: 2px solid #b4252d;
  background: #b4252d; }
  .package > label {
    display: flex;
    flex-direction: column;
    flex: 1; }
  .package > input {
    display: none; }
  .package > input:checked + label {
    background-color: #b4252d;
    color: #fff; }

.package__title {
  margin: 0;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 1.2em; }

.package__features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-bottom: 0;
  display: flex;
  flex-direction: column; }
  .package__features > li {
    margin: 0 10px;
    padding: 10px 0;
    font-size: 1.1em;
    border-bottom: 1px solid #000; }

.package__price {
  background-color: #fff;
  border-top: 0;
  padding: 5px;
  font-weight: bold;
  font-size: 1.3em; }

.package__price-orig {
  font-weight: normal;
  position: relative; }
  .package__price-orig:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid #000;
    height: 50%;
    width: 100%;
    opacity: 0.6; }

.package__buy {
  text-align: center;
  margin: 20px 0; }
  .package__buy > a {
    background-color: #b4252d;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0; }

.news-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0; }
  .news-list > li:nth-child(even) {
    background-color: #f5f5f4; }

.news-item {
  padding: 20px;
  display: flex;
  align-items: center; }

.news-item__info {
  flex: 1; }

.news-item__title {
  font-size: 1.2em;
  font-weight: bold; }

.news-item__buttons > a {
  padding: 5px;
  background-color: #b4252d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-left: 20px;
  text-decoration: none;
  cursor: pointer; }

.lang-switcher {
  display: flex;
  margin: 0;
  padding: 0; }
  .lang-switcher button {
    border: 0;
    background-color: transparent;
    color: #fff;
    padding: 5px 5px; }
    .lang-switcher button.is-current {
      background-color: #fff;
      color: #b4252d; }

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

.divider {
  border-bottom: 1px solid #999;
  margin: 30px 0 30px 0;
  text-align: center;
  line-height: 0.1em;
  font-size: 1.4em; }
  .divider > span {
    background-color: #fff;
    padding: 5px; }

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row; }
  .social-links > li {
    flex: 1;
    max-width: 60px;
    margin-right: 10px; }
  .social-links > li a {
    display: block;
    padding: 8px;
    color: #fff;
    font-size: 20px;
    text-align: center; }
    .social-links > li a > span {
      display: none; }
    .social-links > li a:hover {
      color: #fff; }

.social-links__facebook {
  background-color: #3b5998; }

.social-links__twitter {
  background-color: #00aced; }

.social-links__linkedin {
  background-color: #0077B5; }

.social-links__instagram {
  background-color: #774f4f; }

.social-links__youtube {
  background-color: #cc181e; }

.social-links__pinterest {
  background-color: #C92228; }

.network-bar {
  background-color: #b4252d;
  color: #fff;
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap; }

.network-bar__logo {
  background: url("/static/img/logo-text-white.c39aa8f6036e.svg") no-repeat center;
  background-size: contain;
  width: 80px;
  height: 40px;
  margin: 0 20px;
  display: none; }
  @media (min-width: 1000px) {
    .network-bar__logo {
      display: block; } }

.network-bar__sites {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: auto; }
  .network-bar__sites > li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 11px 10px 9px 10px;
    font-size: 0.9em;
    text-transform: uppercase; }

.network-bar__search {
  background-color: #fff;
  color: #b4252d;
  text-align: center;
  border: 2px solid #b4252d;
  padding: 0;
  border-radius: 6px;
  display: flex;
  margin: 0 10px; }
  @media (min-width: 1000px) {
    .network-bar__search {
      margin: 0 20px 0 auto; } }
  .network-bar__search > button {
    padding: 4px 8px;
    border: 0;
    background: transparent;
    color: #b4252d; }
  .network-bar__search > input {
    border: 0;
    display: block;
    border-radius: 6px;
    padding: 8px;
    flex: 1;
    font-size: 1.1em; }
  .network-bar__search > button span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }

.network-bar__link a {
  padding: 10px;
  color: #fff;
  text-decoration: none; }

.event-awards-logo {
  margin: 10px 30px;
  text-decoration: none;
  background-image: url("/static/img/gold-pasta.999fb912d987.svg");
  background-size: 100%;
  width: 200px;
  height: 200px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .event-awards-logo > span {
    font-size: 1.6em; }

.judging {
  background-color: #fff;
  width: 100%;
  min-height: 100%;
  display: flex;
  border-bottom: 8px solid #b4252d;
  align-items: flex-start;
  flex-direction: column;
  overflow: auto;
  box-sizing: border-box; }

/* Session Selection */
.judging-select {
  max-width: 400px;
  width: 100%;
  margin: auto; }
  .judging-select > button {
    background-color: #b4252d;
    color: #fff;
    display: block;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.4em;
    border-radius: 30px;
    border-color: #b4252d;
    border-width: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    max-width: 350px;
    margin: auto; }

.judging-select__field {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 0; }
  .judging-select__field > label {
    font-size: 1em;
    margin-bottom: 8px;
    color: #777; }
  .judging-select__field > select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  .judging-select__field > select,
  .judging-select__field input {
    padding: 10px;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    border: 1px solid #ddd;
    background-color: #fff; }

/* Product selection */
.judging-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  color: #444; }
  .judging-products > li {
    width: 150px;
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center; }
    .judging-products > li.is-voted:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(165, 121, 30, 0.9); }
    .judging-products > li.is-voted:after {
      content: "VOTED";
      position: absolute;
      top: 80px;
      left: auto;
      color: #fff;
      font-size: 3em;
      -webkit-transform: rotate(15deg);
              transform: rotate(15deg);
      font-weight: bold; }

.judging-products__product-image {
  flex: 1; }

.judging-products__product-title {
  text-align: center;
  font-size: 1.1em; }

.judging-products__product-number {
  text-align: center;
  font-size: 1.4em;
  padding: 10px 30px;
  margin: 10px;
  background-color: #a5791e;
  color: #fff;
  z-index: 20; }

.judging-products__booth-number {
  text-align: center;
  font-size: 1.2em;
  padding: 10px 20px;
  z-index: 20; }

/* Voting Screen */
.judging-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box; }
  .judging-vote > div {
    width: 100%; }

.judging-vote__back {
  width: 40px;
  height: 60px;
  background-size: contain;
  background-image: url("/static/img/chevron-left.e6f56eb98e91.svg");
  border: 0;
  margin-right: 40px; }
  .judging-vote__back > span {
    display: none; }

.judging-vote__product {
  display: flex;
  align-items: center;
  margin: 20px; }

.judging-vote__product-image {
  margin-right: 20px; }

.judging-vote__product-title {
  font-size: 1.6em;
  font-weight: bold;
  flex: 1; }

.judging-vote__submit {
  background-color: #b4252d;
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 10px 20px;
  text-align: center;
  font-size: 1.4em;
  border-radius: 30px;
  border-color: #b4252d;
  border-width: 2px;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  font-size: 1.4em;
  margin: 20px auto;
  display: block;
  max-width: 250px; }

/* Voting criteria boxes */
.judging-criterion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0 0 0; }
  .judging-criterion:nth-child(even) {
    background-color: #f5f5f5; }

.judging-criterion__label {
  font-size: 1.2em;
  padding: 0 10px;
  min-width: 350px; }

.judging-criterion__options {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .judging-criterion__options > li {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 1px 1px 0 #bfc5af;
    background-color: #dfe4d2;
    color: #555;
    font-weight: bold; }
    .judging-criterion__options > li.is-selected {
      background-color: #deae4b;
      box-shadow: 1px 1px 0 #a5791e;
      color: #fff; }

.judging-criterion__error {
  width: 100%;
  color: #b7341d;
  font-weight: bold;
  padding: 10px; }

.judging-add {
  margin: 10px; }
  .judging-add > label {
    font-size: 1em;
    margin-bottom: 8px;
    color: #777;
    padding: 10px; }
  .judging-add > input {
    padding: 10px;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    border: 1px solid #ddd;
    background-color: #fff;
    margin-right: 10px; }
  .judging-add > button {
    border: 0;
    background-color: #b4252d;
    color: #fff;
    padding: 8px 10px;
    margin-top: auto;
    border-radius: 0;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    padding: 10px; }

.winning-products, .winning-products--minimal, .winning-products--runnersup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px; }
  .winning-products--minimal > .winning-products__category {
    max-width: 31%; }
  .winning-products--runnersup .winning-products-item {
    color: #444;
    padding: 10px 10px 0 10px; }
  .winning-products--runnersup .winning-products-item__producer {
    font-size: 1.4em; }
  .winning-products--runnersup .winning-products-item__product {
    font-size: 1.2em; }

.winning-products__category {
  min-width: 300px;
  flex: 1;
  margin: 0 1%;
  display: flex;
  flex-direction: column; }
  .winning-products__category > h3 {
    text-align: center;
    background-color: #b4252d;
    font-weight: 400;
    padding: 10px;
    margin: 5px 0 0 0;
    color: #fff; }
  .winning-products__category > h4 {
    text-align: center;
    background-color: #a5791e;
    font-weight: 400;
    padding: 10px;
    margin: 5px 0;
    color: #fff;
    position: relative; }
    .winning-products__category > h4 > img {
      position: absolute;
      right: 10px;
      width: 100px;
      top: -90%; }
  .winning-products__category > ul {
    list-style: none;
    margin: 0;
    padding: 0; }

.winning-products__show {
  color: #fff;
  text-align: center;
  padding: 5px;
  margin: auto;
  display: block; }

.winning-products-item {
  text-align: left;
  background-color: #fff;
  color: #a5791e;
  padding: 20px;
  display: flex;
  margin: 5px 0;
  flex: 1; }
  .winning-products-item--centered {
    justify-content: center; }
    .winning-products-item--centered > .winning-products-item__body {
      flex: none; }

.winning-products-item__image {
  width: 100px;
  text-align: center;
  margin-right: 10px; }

.winning-products-item__body {
  flex: 1; }

.winning-products-item__producer {
  font-size: 1.8em;
  padding-bottom: 10px; }
  .winning-products-item__producer > a {
    text-decoration: none;
    color: #a5791e; }

.winning-products-item__product {
  font-size: 1.4em;
  padding-bottom: 10px; }
  .winning-products-item__product > a {
    text-decoration: none;
    color: #a5791e; }

.package-upgrade__current > div {
  padding: 10px 0; }

.package-upgrade__current > div span {
  font-weight: 500;
  width: 250px;
  display: inline-block; }

.package-upgrade__promo-button {
  border: 0;
  background: 0;
  text-decoration: underline;
  font-size: 0.8em;
  margin: 10px auto;
  display: block; }

.package-upgrade__promo-field {
  display: none;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap; }
  .package-upgrade__promo-field > button {
    border: 0;
    background-color: #b4252d;
    color: #fff;
    padding: 8px 10px;
    margin-top: auto;
    border-radius: 0;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    padding: 12px 10px; }

.package-upgrade__promo-error,
.package-upgrade__promo-success {
  display: none;
  width: 100%;
  padding: 5px;
  text-align: center; }

.grouped-listing__grouper {
  font-weight: bold; }

.news-detail {
  margin: 20px; }

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

.news-detail__heading {
  color: #b4252d;
  font-size: 2em;
  font-weight: bold;
  margin: 0; }

.news-detail__date {
  font-weight: bold; }

.event-agenda__sessions {
  border: 2px solid #b4252d;
  margin: 10px 10px 0 0; }

.event-agenda-session {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
  color: #b4252d;
  width: 100%; }

.event-agenda-session__image {
  margin-bottom: 10px;
  overflow: hidden; }

.event-agenda-session__title {
  font-size: 1.4em;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  font-weight: bold; }

.event-agenda-session__time {
  font-size: 1.4em;
  font-weight: bold; }

.editor-counter {
  padding: 10px; }

.upcoming-events-title {
  color: #b4252d;
  text-transform: uppercase;
  text-align: center;
  font-size: 2em;
  border: 1px solid #b4252d;
  border-width: 1px 0;
  padding: 5px 0;
  margin: 0; }

.upcoming-events-next {
  position: relative;
  background-size: 0;
  padding: 20px 0 30px 0; }
  .upcoming-events-next:before {
    content: "";
    background-image: inherit;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1; }

.upcoming-events-next__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media (min-width: 1000px) {
    .upcoming-events-next__title-wrapper {
      flex-direction: row; } }

.upcoming-events-next__extra-logo {
  display: block;
  max-width: 80%; }
  @media (min-width: 1000px) {
    .upcoming-events-next__extra-logo {
      margin-right: 40px; } }
  .upcoming-events-next__extra-logo > img {
    display: block;
    max-width: 100%;
    height: auto; }

.upcoming-events-next__title {
  font-size: 4em;
  text-align: center;
  text-transform: uppercase;
  color: #b4252d;
  margin: 0; }
  .upcoming-events-next__title > a {
    color: #b4252d;
    text-decoration: none;
    font-size: 1.8em; }
    @media (max-width: 1000px) {
      .upcoming-events-next__title > a {
        font-size: 1.2em; } }
  @media (max-width: 1000px) {
    .upcoming-events-next__title {
      font-size: 3em;
      padding-top: 20px; } }

.upcoming-events-next__date {
  font-size: 1.8em;
  text-align: center;
  text-transform: uppercase;
  color: #b4252d;
  margin: 0 0 20px 0;
  font-weight: 400; }
  @media (min-width: 1000px) {
    .upcoming-events-next__date {
      font-size: 3em; } }

.upcoming-events-next__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .upcoming-events-next__button > * {
    margin: 0 10px 0 0;
    flex: 1;
    max-width: 250px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.46);
    text-transform: uppercase; }

.upcoming-events-list {
  background: linear-gradient(#b4252d 0, #b4252d 70px, #fff 70px);
  position: relative;
  padding: 20px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media (min-width: 1000px) {
    .upcoming-events-list .upcoming-events-item:nth-child(even) {
      margin-top: 30px; }
    .upcoming-events-list .upcoming-events-item:nth-child(odd) {
      margin-bottom: 30px; } }

.upcoming-events-item {
  min-width: 210px;
  max-width: 300px;
  background-color: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 20px 0 120px 0;
  text-decoration: none;
  flex: 1; }

.upcoming-events-item__title {
  font-size: 1.5em;
  color: #b4252d;
  text-transform: uppercase;
  text-align: center;
  margin: 0; }

.upcoming-events-item__date {
  font-size: 1.3em;
  color: #b4252d;
  text-transform: uppercase;
  text-align: center; }

.full-image-link {
  color: #fff;
  width: 400px;
  height: 200px;
  font-size: 3em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  min-width: auto;
  background-size: cover; }
  @media (max-width: 1000px) {
    .full-image-link {
      min-width: 100%;
      margin-bottom: 10px; } }
  .full-image-link > span {
    display: block;
    z-index: 10; }
  .full-image-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    opacity: 0.5; }

.special-logos {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 20px 0; }
  .special-logos img {
    max-width: 100%;
    height: auto; }
  .special-logos > div {
    flex: 1; }
  .special-logos > div h2 {
    font-weight: normal;
    color: #b4252d;
    font-size: 1.2em;
    margin: 0 0 10px 0; }
  .special-logos > div ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; }

.special-logos__institutional {
  border-right: 1px solid #b4252d;
  margin: 10px;
  padding: 0 30px 0 10px; }
  .special-logos__institutional > h2 {
    text-align: right; }
  .special-logos__institutional > ul {
    justify-content: flex-end; }
    .special-logos__institutional > ul > li {
      margin-left: 10px; }
  @media (max-width: 1000px) {
    .special-logos__institutional {
      border-right: 0; }
      .special-logos__institutional > h2 {
        text-align: center; }
      .special-logos__institutional > ul {
        justify-content: center; } }

.special-logos__cooperation {
  margin: 10px;
  margin-bottom: 20px;
  padding: 0 10px; }
  .special-logos__cooperation > ul {
    display: flex; }
  .special-logos__cooperation > ul li {
    margin-right: 10px; }
  @media (max-width: 1000px) {
    .special-logos__cooperation > h2 {
      text-align: center; }
    .special-logos__cooperation > ul {
      justify-content: center; } }

.special-logos--single {
  margin: 0 0 0 0; }
  .special-logos--single .special-logos__cooperation {
    margin: 0;
    text-align: center; }
    .special-logos--single .special-logos__cooperation > ul {
      justify-content: center; }
    .special-logos--single .special-logos__cooperation > ul li {
      margin: 0 30px; }

.event-block-link {
  font-size: 2em;
  color: #b4252d;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #b4252d;
  margin: 10px;
  transition: all 0.2s ease-in-out;
  background-position: center center; }
  @media (min-width: 1000px) {
    .event-block-link {
      font-size: 2.3em; } }
  .event-block-link:hover {
    color: #fff; }
  .event-block-link:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.7;
    transition: all 0.2s ease-in-out; }
  .event-block-link:hover:after {
    background-color: #b4252d; }
  .event-block-link > span {
    display: block;
    z-index: 20;
    position: relative;
    margin: 80px 0; }

.event-intro__date {
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  margin: 30px 0 0 0;
  text-transform: uppercase;
  text-align: center; }

.event-intro__intro {
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  margin: 0 0 20px 0; }

.event-intro__video-button {
  margin: 100px auto;
  border: 2px solid #fff; }

.event-venue-info-form > h2 {
  text-transform: uppercase;
  text-align: center;
  margin: 0; }

.event-venue-info-map {
  margin: 0 0 20px 0;
  height: 100%; }
  .event-venue-info-map > div {
    width: 100%;
    height: 100%; }

.event-venue-info-panels {
  margin: 0 !important;
  display: flex;
  flex-direction: column; }
  .event-venue-info-panels > div {
    position: relative; }
    .event-venue-info-panels > div > .rich-text {
      font-size: 1em;
      text-align: center; }

.event-venue-info-panels__title {
  font-size: 1.4em;
  text-align: center;
  font-weight: normal;
  margin: 10px 0 0 0; }

.event-venue-info-gallery .carousel-thumbs .swiper-wrapper {
  margin: 20px 0 0 0; }

.event-venue-info-gallery .carousel-thumbs .swiper-slide {
  max-width: 104px;
  margin-right: 10px; }

.quote-wrapper {
  position: relative;
  margin: 50px 0; }
  .quote-wrapper > div > div {
    padding: 0 80px; }
  .quote-wrapper:before {
    content: "";
    background-image: url("/static/img/quote-symbol.a7671806661e.png");
    position: absolute;
    height: 80px;
    width: 67px;
    left: 0;
    top: 0; }
  .quote-wrapper:after {
    content: "";
    background-image: url("/static/img/quote-symbol.a7671806661e.png");
    position: absolute;
    height: 80px;
    width: 67px;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1); }

.quote {
  color: #b4252d;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 20px; }

.quote__body {
  margin-bottom: 20px; }
  .quote__body p {
    margin: 0; }

.quote__source {
  font-weight: bold; }

.news-card {
  border: 1px solid #ccc;
  margin: 0 10px 10px 0;
  padding-bottom: 10px;
  overflow: hidden; }

.news-card__image {
  display: flex;
  align-items: center;
  justify-content: center; }
  .news-card__image > a img {
    display: block; }

.news-card__category {
  background-color: #b4252d;
  color: #fff;
  text-align: center;
  padding: 8px;
  text-transform: uppercase;
  font-weight: bold; }

.news-card__body {
  padding: 0 10px 10px 10px; }

.news-card__title > a {
  color: #000;
  text-decoration: none; }

.news-card__date {
  font-weight: bold;
  color: #717171; }

.news-video-card {
  position: relative;
  margin-right: 10px; }
  .news-video-card:after {
    content: "";
    background-color: #b4252d;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    background-size: cover;
    display: block; }

.news-video-card__body {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100%; }
  .news-video-card__body > a {
    border: 1px solid #fff;
    width: 70%;
    margin: 10px auto; }

.news-video-card__title {
  font-size: 1.6em;
  margin: 0; }

.news-page__image {
  margin: 20px auto;
  overflow: hidden; }
  .news-page__image img {
    max-width: 100%;
    height: auto; }

.news-page__body {
  font-size: 1.2em;
  max-width: 900px;
  margin: auto;
  min-height: 500px;
  width: 100%; }
  .news-page__body img {
    margin: auto;
    display: block;
    max-width: 100%;
    height: auto; }

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px; }

.team-member__image > img {
  border-radius: 100%; }

.team-member__name {
  color: #b4252d;
  font-size: 1.6em;
  font-weight: bold;
  border-bottom: 2px solid #b4252d;
  min-width: 70%;
  text-align: center;
  padding: 15px 0; }

.team-member__title {
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 0; }

.footer {
  background: #ededed; }

.footer__links {
  display: flex;
  margin: 0;
  padding: 30px 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; }
  .footer__links > li {
    margin: 10px 20px; }
  .footer__links > li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #333; }

.footer__social {
  display: flex;
  margin: 0;
  padding: 30px 0;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap; }
  .footer__social > li {
    flex: none;
    width: 40px;
    height: 40px;
    margin: 10px 20px;
    border-radius: 100%;
    text-align: center; }
  .footer__social > li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }

.footer__details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 30px 0;
  text-align: center; }

.categories-block {
  margin-bottom: 100px; }
  .categories-block > a {
    margin: 10px auto;
    box-shadow: 2px 3px 10px rgba(68, 68, 68, 0.5); }


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