@charset "UTF-8";
*, *::after, *::before {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-family: Arial;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}
html.fonts-loaded body {
  font-family: "klavika";
}
html.fonts-loaded body h1, html.fonts-loaded body h2, html.fonts-loaded body h3, html.fonts-loaded body h4, html.fonts-loaded body h5, html.fonts-loaded body h6 {
  font-family: "klavika";
}
#app {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 16px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  min-height: 100%;
  font-weight: 300;
}
.disableScroll {
  overflow: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
  line-height: 1.1rem;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  h1, h2, h3, h4, h5, p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
a {
  text-decoration: none;
  color: #000;
}
.main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
}
@media (max-width: 900px) {
  .main {
    margin-top: 80px;
  }
}
.main__pages {
  width: 100%;
}
@media (max-width: 900px) {
  .main__pages {
    height: calc(100vh - 80px);
    padding: 0 1rem;
  }
}
.subpage {
  height: 100%;
  padding: 2rem 0rem;
}
@media (min-width: 900px) {
  .subpage {
    padding: 4rem;
  }
}
.hoverText {
  display: flex;
}
.hoverText__item {
  transition: all 0.4s;
}
.hoverText__empty {
  width: 0.7rem;
}
.hoverText:hover .hoverText__item:nth-child(odd) {
  transform: translateY(15%);
}
.hoverText:hover .hoverText__item:nth-child(even) {
  transform: translateY(-15%);
}
.slide-leave-active, .slide-enter-active {
  transition: 0.5s;
}
.slide-enter {
  transform: translate(100%, 0);
}
.slide-leave-to {
  transform: translate(-100%, 0);
}
.link {
  padding-bottom: 2px;
  border-bottom: 2px solid #e1393c;
}
.col {
  width: 100%;
  margin: 0.5rem;
}
.col--1 {
  width: 10%;
}
.col--2 {
  width: 20%;
}
.col--3 {
  width: 30%;
}
.col--4 {
  width: 40%;
}
.col--5 {
  width: 50%;
}
.col--6 {
  width: 60%;
}
.col--7 {
  width: 70%;
}
.col--8 {
  width: 80%;
}
.col--9 {
  width: 90%;
}
.m__none {
  margin: 0;
}
.m__t--0 {
  margin-top: 0;
}
.m__t--1 {
  margin-top: 1rem;
}
.m__t--2 {
  margin-top: 2rem;
}
.m__t--3 {
  margin-top: 3rem;
}
.m__t--4 {
  margin-top: 4rem;
}
.m__t--5 {
  margin-top: 5rem;
}
.m__b--0 {
  margin-bottom: 0;
}
.m__b--1 {
  margin-bottom: 1rem;
}
.m__b--2 {
  margin-bottom: 2rem;
}
.m__b--3 {
  margin-bottom: 3rem;
}
.m__b--4 {
  margin-bottom: 4rem;
}
.m__b--5 {
  margin-bottom: 5rem;
}
.m__r--0 {
  margin-right: 0;
}
.m__r--1 {
  margin-right: 1rem;
}
.m__r--2 {
  margin-right: 2rem;
}
.m__r--3 {
  margin-right: 3rem;
}
.m__r--4 {
  margin-right: 4rem;
}
.m__r--5 {
  margin-right: 5rem;
}
.m__l--0 {
  margin-left: 0;
}
.m__l--1 {
  margin-left: 1rem;
}
.m__l--2 {
  margin-left: 2rem;
}
.m__l--3 {
  margin-left: 3rem;
}
.m__l--4 {
  margin-left: 4rem;
}
.m__l--5 {
  margin-left: 5rem;
}
.checkbox {
  height: 0;
  width: 0;
  opacity: 0;
}
.checkbox__wrapper {
  margin-top: 2em;
}
.checkbox__row {
  display: flex;
  align-items: center;
}
.checkbox__download {
  margin-left: 1rem;
  color: #000;
}
.checkbox__disable {
  opacity: 0.5;
  pointer-events: none;
}
.checkbox + label {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0.6em 0;
  align-items: center;
  cursor: pointer;
  color: #9e9e9e;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid #9e9e9e;
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox + label:hover {
  color: #000;
}
.checkbox + label:hover + label {
  color: #000;
}
.checkbox:checked + label > ins {
  height: 100%;
}
.checkbox:checked + label > span {
  border: 0.5em solid #e1393c;
  background: #e1393c;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox__error {
  color: #e1393c;
}
@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #212121;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #212121;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
.pagination__title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pagination__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .pagination__row {
    margin-bottom: 2rem;
  }
}
.pagination__item {
  margin-right: 2rem;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 900px) {
  .pagination__item {
    width: unset;
    margin-bottom: 0;
  }
}
.pagination__item--active::after {
  width: 70% !important;
}
.pagination__item::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  transition: all 0.5s;
  height: 3px;
  background: #e1393c;
}
.pagination__item:hover::after {
  width: 70%;
}
.registration {
  width: 100%;
}
.registration__box-headline {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.registration__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.registration__column {
  margin: 0 1em;
}
.registration__input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}
.registration__label {
  margin-bottom: 0.5em;
}
.registration__input {
  height: 30px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e1393c;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1rem;
}
.registration__input:focus {
  outline: none;
}
.registration__error {
  margin-top: 0.25em;
  color: #e1393c;
}
.registration__btn {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-transform: uppercase;
  justify-content: flex-end;
  font-weight: 700;
}
.registration__btn .btn {
  margin-left: 1rem;
}
.registration__btn--disable {
  opacity: 0.5;
  pointer-events: none;
}
.registration__miniature {
  width: 40%;
}
.p-main-page {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  margin-top: 8em;
}
@media (min-width: 900px) {
  .p-main-page {
    height: 100vh;
    margin-top: 0;
  }
}
.p-main-page__section {
  scroll-snap-align: center;
}
@media (min-width: 900px) {
  .p-main-page__section {
    height: 100vh;
  }
}
.p-main-page__section:last-child {
  margin-bottom: 8em;
}
span {
  display: flex;
}
span a {
  margin-left: 4px;
}
.phototext {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 900px) {
  .phototext {
    align-items: center;
  }
}
.phototext__photo {
  max-width: 100%;
}
@media (min-width: 900px) {
  .phototext__photo {
    max-width: 50%;
  }
}
.phototext__text {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .phototext__text {
    max-width: 33%;
  }
}
.phototext__text--btn {
  align-self: flex-end;
}
.btn {
  background: url("../themes/owca-website/assets/images/btn.svg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  width: 60px;
  height: 60px;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.btn:hover .btn__arrows {
  animation: nextarrow 0.7s forwards;
}
.btn__arrows {
  max-width: 40%;
}
.btn__module {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 145px;
  cursor: pointer;
}
.btn__module:hover .btn__arrows {
  animation: nextarrow 0.7s forwards;
}
.btn__text {
  text-align: right;
  margin-right: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}
@keyframes nextarrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(60px);
    opacity: 0;
  }
  90% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.btn {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  width: 60px;
  height: 60px;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.btn:hover .btn__arrows {
  animation: nextarrow 0.7s forwards;
}
.btn--reverse {
  transform: rotate(180deg);
}
.btn__arrows {
  max-width: 40%;
}
.btn__module {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 145px;
  cursor: pointer;
}
.btn__module:hover .btn__arrows {
  animation: nextarrow 0.7s forwards;
}
.btn__module--reverse {
  flex-direction: row-reverse;
}
.btn__text {
  text-align: right;
  margin-right: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}
@keyframes nextarrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(60px);
    opacity: 0;
  }
  90% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.menu__toolbar {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
  z-index: 99999999;
  height: 70px;
  width: 100%;
}
@media (min-width: 900px) {
  .menu__toolbar {
    width: 6%;
    height: 100vh;
    flex-direction: column;
  }
}
.menu__logo {
  width: 100%;
}
.menu__logo img {
  width: 30%;
}
@media (min-width: 500px) {
  .menu__logo img {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .menu__logo img {
    width: 15%;
  }
}
@media (min-width: 900px) {
  .menu__logo img {
    width: 30%;
  }
}
@media (min-width: 1280px) {
  .menu__logo img {
    width: 100%;
  }
}
.menu__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: unset;
}
@media (min-width: 900px) {
  .menu__btn {
    transform: rotate(-90deg);
  }
}
.menu__btn-text {
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
}
.menu__btn-text--active {
  transform: translateY(-300%);
}
.menu__btn-text p {
  transition: all 0.5s;
}
.menu__btn-text:hover p:nth-child(odd) {
  transform: translateY(15%);
}
.menu__btn-text:hover p:nth-child(even) {
  transform: translateY(-15%);
}
.menu__btn-img {
  position: absolute;
  cursor: pointer;
  transition: all 0.5s;
  transform: translateY(-300%);
}
.menu__btn-img--active {
  transform: translateY(0%);
}
.menu__nav {
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  box-shadow: unset;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
@media (min-width: 900px) {
  .menu__nav {
    left: -44%;
    width: 50%;
    box-shadow: -15px 0px 20px 12px rgba(0, 0, 0, 0.6);
  }
}
.menu__nav--active {
  left: 0%;
}
.menu__item {
  margin: 0.8rem 0;
  text-transform: uppercase;
  color: #000;
  font-size: 1.4rem;
  position: relative;
}
.menu__item--active::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 70%;
  background: #e1393c;
}
.page-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}
.page-text__line {
  width: 40%;
  height: 4px;
  background: #e1393c;
  margin-bottom: 1rem;
}
@media (min-width: 900px) {
  .page-text__line {
    width: 20%;
  }
}
.page-text__title {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: unset;
  background: none;
  top: 0;
  left: -3%;
  transform: unset;
  transform-origin: 0px 0px;
  width: 100%;
}
@media (min-width: 900px) {
  .page-text__title {
    transform: rotate(270deg) translateX(-100%);
    position: absolute;
    font-size: 3rem;
    left: 8%;
    width: unset;
  }
}
@media (min-width: 1280px) {
  .page-text__title {
    left: 13%;
  }
}
@media (min-width: 1920px) {
  .page-text__title {
    left: 15%;
  }
}
.page-text__subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (min-width: 900px) {
  .page-text__subtitle {
    font-size: 2rem;
  }
}
.page-text__subtitle--message {
  line-height: 1.5em;
}
.page-text__text {
  margin-bottom: 1rem;
}
.page-text__text a {
  color: #000;
}
.page-text__content {
  width: 100%;
}
@media (min-width: 900px) {
  .page-text__content {
    width: 60%;
  }
}
.page-text__btn {
  display: flex;
  justify-content: flex-end;
}
.page-text__btn--left {
  justify-content: flex-start;
}
/* Accordion styles */
.tabs {
  overflow: hidden;
}
.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab-label-download::after {
  content: none !important;
}
.tab-download {
  font-weight: 400;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  /* background: #2c3e50; */
  font-weight: bold;
  cursor: pointer;
  color: #000;
  border-bottom: 1px solid #e1393c;
  /* Icon */
}
.tab-label p {
  transition: all 0.35s;
}
.tab-label:hover p {
  transform: translateX(2%);
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {
  background: #1a252f;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
.patrons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
}
.patrons__item {
  width: 100%;
  margin-right: 0;
  text-align: center;
  transition: all 1s;
  opacity: 1;
  position: relative;
}
@media (min-width: 900px) {
  .patrons__item {
    margin-right: 2rem;
    width: calc(100% / 3 - 2rem);
  }
}
.patrons__item--disable {
  opacity: 0.3;
}
.patrons__item--active {
  cursor: pointer;
  opacity: 1;
}
.patrons__item--active .patrons__subtitle {
  right: -40px;
  opacity: 1;
}
.patrons__text {
  text-align: right;
  text-transform: uppercase;
  margin-top: 3rem;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-name: example;
  opacity: 0;
  animation-fill-mode: forwards;
}
@media (max-width: 900px) {
  .patrons__text p {
    font-size: 0.8rem;
  }
}
@keyframes example {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}
.gallery__images {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.gallery__item {
  height: auto;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media (min-width: 900px) {
  .gallery__item {
    width: calc(100% / 3 - 1rem);
    margin: 0.5rem;
  }
}
.gallery__pagination-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.gallery__pagination-years {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .gallery__pagination-years {
    margin-bottom: 2rem;
  }
}
.gallery__pagination-item {
  margin-right: 2rem;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 900px) {
  .gallery__pagination-item {
    width: unset;
    margin-bottom: 0;
  }
}
.gallery__pagination-item--active::after {
  width: 70% !important;
}
.gallery__pagination-item::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 0;
  transition: all 0.5s;
  height: 3px;
  background: #e1393c;
}
.gallery__pagination-item:hover::after {
  width: 70%;
}
.tshirts {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.tshirts__selects {
  width: 100%;
  margin: 0;
}
.tshirts__select--disabled {
  pointer-events: none;
  opacity: 0.3;
}
.tshirts__item-name {
  display: flex;
  font-weight: bold;
}
.tshirts__item-name span {
  color: #fc770f;
  margin-left: 5px;
}
.tshirts__item-price {
  margin-top: 0.5em;
  display: flex;
  font-weight: bold;
}
.tshirts__item-price span {
  color: #fc770f;
  margin-left: 5px;
}
.tshirts__item-photo {
  margin: 0 auto;
  display: block;
  margin-top: 1em;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}
.gadgets__items {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.gadgets__item {
  width: calc(100% / 3 - 2em);
  margin: 1em;
}
.gadgets__name {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-start;
  font-weight: bold;
}
.gadgets__name span {
  color: #fc770f;
}
.gadgets__price {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-start;
  font-weight: bold;
}
.gadgets__price span {
  color: #fc770f;
  margin-left: 5px;
}
.prices__price {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-start;
}
.prices__price span {
  font-weight: bold;
  color: #fc770f;
  margin-left: 5px;
}
.prices__price--discount {
  text-decoration: line-through;
  opacity: 0.4;
}
.prices__items {
  margin-top: 1em;
}
.prices__item {
  margin-left: 0.5em;
}
.prices__discount {
  font-size: 20px;
}
.prices__sum {
  font-size: 20px;
}
.loading {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.loading__img {
  width: 70%;
}
.loading__text {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  color: #383838;
  font-size: 2rem;
}
.loading__wrapper {
  width: 65%;
  text-align: center;
}
@media (min-width: 900px) {
  .loading__wrapper {
    width: 15%;
  }
}
.one {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0s;
  animation: dot 1.3s infinite;
  animation-delay: 0s;
}
.two {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.2s;
  animation: dot 1.3s infinite;
  animation-delay: 0.2s;
}
.three {
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.3s;
  animation: dot 1.3s infinite;
  animation-delay: 0.3s;
}
@-webkit-keyframes dot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.errors {
  margin-bottom: 2em;
}
.errors__headline {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.errors__items {
  margin-bottom: 0.5em;
}
.errors__item {
  display: flex;
  align-items: center;
  margin-left: 1em;
}
.errors__dot {
  width: 6px;
  height: 6px;
  background: #e1393c;
  border-radius: 10px;
  margin-right: 5px;
}
.download-files {
  display: flex;
  align-items: center;
}
.download-files--margin {
  margin-top: 2em;
}
.download-files__icon {
  margin-left: 10px;
  width: 30px;
}
.types-registrations {
  margin-bottom: 4em;
}
.types-registrations__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.types-registrations__item {
  margin: 0 1em;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 0.2;
  width: 100%;
}
@media (min-width: 1000px) {
  .types-registrations__item {
    width: calc(100% / 2 - 2em);
  }
}
.types-registrations__item--active {
  opacity: 1;
}
.paymentstable {
  margin-bottom: 2em;
}
.paymentstable__title {
  font-size: 20px;
  margin-bottom: 1em;
}
.paymentstable__headline {
  font-weight: 700;
  border-bottom: 1px solid #515a6b;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.paymentstable__item {
  margin: 0 1em;
}
.paymentstable__item span {
  margin: 0;
}
.paymentstable__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.paymentstable__items--border {
  border-bottom: 1px solid rgba(81, 90, 107, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}
table tr {
  border-bottom: 1px solid rgba(81, 90, 107, 0.2);
  text-align: left;
  padding: 0.35em;
}
table th, table td {
  padding: 0.625em;
}
table th {
  letter-spacing: 0.1em;
  font-weight: 700;
}
thead tr {
  border-bottom: 1px solid #515a6b;
}
@media screen and (max-width: 600px) {
  .paymentstable__tohide {
    display: none;
  }
  .prices__price {
    margin-top: 0;
    float: right;
  }
  table {
    border: 0;
  }
  table caption {
    font-size: 1.3em;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  table td:last-child {
    border-bottom: 0;
  }
}
/* general styling */
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}
fieldset[disabled] .multiselect {
  pointer-events: none;
}
.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block;
}
.multiselect__spinner:after, .multiselect__spinner:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid transparent;
  border-top-color: #31ac5f;
  box-shadow: 0 0 0 1px transparent;
}
.multiselect__spinner:before {
  animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite;
}
.multiselect__spinner:after {
  animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite;
}
.multiselect__loading-enter-active, .multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}
.multiselect__loading-enter, .multiselect__loading-leave-active {
  opacity: 0;
}
.multiselect, .multiselect__input, .multiselect__single {
  font-family: inherit;
  font-size: 16px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #35495e;
}
.multiselect * {
  box-sizing: border-box;
}
.multiselect:focus {
  outline: none;
}
.multiselect--disabled {
  background: #ededed;
  pointer-events: none;
  opacity: 0.6;
}
.multiselect--active {
  z-index: 50;
}
.multiselect--active:not(.multiselect--above) .multiselect__current, .multiselect--active:not(.multiselect--above) .multiselect__input, .multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.multiselect--active .multiselect__select {
  transform: rotate(180deg);
}
.multiselect--above.multiselect--active .multiselect__current, .multiselect--above.multiselect--active .multiselect__input, .multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.multiselect__input, .multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 0 0 0 5px;
  width: 100%;
  transition: border 0.1s ease;
  box-sizing: border-box;
  margin-bottom: 8px;
  vertical-align: top;
}
.multiselect__input:-ms-input-placeholder {
  color: #35495e;
}
.multiselect__input::placeholder {
  color: #35495e;
}
.multiselect__tag ~ .multiselect__input, .multiselect__tag ~ .multiselect__single {
  width: auto;
}
.multiselect__input:hover, .multiselect__single:hover {
  border-color: #cfcfcf;
}
.multiselect__input:focus, .multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}
.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px;
}
.multiselect__tags-wrap {
  display: inline;
}
.multiselect__tags {
  min-height: 40px;
  display: block;
  padding: 8px 40px 0 8px;
  border-bottom: 1px solid #e1393c;
  background: #fff;
  font-size: 14px;
}
.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #31ac5f;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: normal;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 5px;
}
.multiselect__tag-icon:after {
  content: "×";
  color: #266d4d;
  font-size: 14px;
}
.multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
  background: #369a6e;
}
.multiselect__tag-icon:focus:after, .multiselect__tag-icon:hover:after {
  color: #fff;
}
.multiselect__current {
  min-height: 40px;
  overflow: hidden;
  padding: 8px 30px 0 12px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}
.multiselect__current, .multiselect__select {
  line-height: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}
.multiselect__select {
  position: absolute;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  text-align: center;
  transition: transform 0.2s ease;
}
.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
}
.multiselect__placeholder {
  color: #adadad;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 2px;
}
.multiselect--active .multiselect__placeholder {
  display: none;
}
.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}
.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}
.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8;
}
.multiselect__content::webkit-scrollbar {
  display: none;
}
.multiselect__element {
  display: block;
}
.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px;
}
.multiselect__option--highlight {
  background: #d4d4d4;
  outline: none;
  color: #fff;
}
.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #31ac5f;
  color: #fff;
}
.multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: 700;
}
.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver;
}
.multiselect__option--selected.multiselect__option--highlight {
  background: #e1393c;
  color: #fff;
}
.multiselect__option--selected.multiselect__option--highlight:after {
  background: #e1393c;
  content: attr(data-deselect);
  color: #fff;
}
.multiselect--disabled .multiselect__current, .multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}
.multiselect__option--disabled {
  background: #ededed !important;
  color: #a6a6a6 !important;
  cursor: text;
  pointer-events: none;
}
.multiselect__option--group {
  background: #ededed;
  color: #35495e;
}
.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: #fff;
}
.multiselect__option--group.multiselect__option--highlight:after {
  background: #35495e;
}
.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede;
}
.multiselect__option--group-selected.multiselect__option--highlight {
  background: #e1393c;
  color: #fff;
}
.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #e1393c;
  content: attr(data-deselect);
  color: #fff;
}
.multiselect-enter-active, .multiselect-leave-active {
  transition: all 0.15s ease;
}
.multiselect-enter, .multiselect-leave-active {
  opacity: 0;
}
.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}
[dir="rtl"] .multiselect {
  text-align: right;
}
[dir="rtl"] .multiselect__select {
  right: auto;
  left: 1px;
}
[dir="rtl"] .multiselect__tags {
  padding: 8px 8px 0 40px;
}
[dir="rtl"] .multiselect__content {
  text-align: right;
}
[dir="rtl"] .multiselect__option:after {
  right: auto;
  left: 0;
}
[dir="rtl"] .multiselect__clear {
  right: auto;
  left: 12px;
}
[dir="rtl"] .multiselect__spinner {
  right: auto;
  left: 1px;
}
@keyframes spinning {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(2turn);
  }
}
