/**********************************
RESET
**********************************/
@media  {
  img {
    image-rendering: -webkit-optimize-contrast !important;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    img {
      image-rendering: unset !important;
    }
  }
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

body {
  line-height: 1;
}

html, body, button, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

table img {
  max-width: none;
}

textarea, input, select {
  font-size: inherit;
  font-family: inherit;
  border-radius: 0;
}

sup {
  vertical-align: top;
  position: relative;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: 0.2s ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.is-animating > .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hide-image .fancybox-image {
  opacity: 0;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
  border: 2px solid rgba(0, 0, 0, 0);
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-hidden {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**********************************
SWIPER
**********************************/
/**
 * Swiper 4.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 5, 2018
 */
.swiper-container, .swiper-container-css {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .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-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 27px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #03188B;
  border-radius: 50%;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.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'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
  left: 20px;
  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'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
  right: 20px;
  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;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  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;
  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%;
  transform: translate3d(0, -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%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.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%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  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-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  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: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  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");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.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 {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  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 {
  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-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  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-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

/**********************************
MY CLASSES
**********************************/
.button, a {
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.half {
  width: 48% !important;
}

.two-period {
  width: 64% !important;
}

.period {
  width: 32% !important;
}

.extratiny {
  width: 60px !important;
}

.tiny {
  width: 80px !important;
}

.little {
  width: 100px !important;
}

.small {
  width: 120px !important;
}

.normal {
  width: 160px !important;
}

.medium {
  width: 200px !important;
}

.bigmedium {
  width: 250px !important;
}

.middle {
  width: 280px !important;
}

.middleplus {
  width: 300px !important;
}

.moremiddle {
  width: 350px !important;
}

.big {
  width: 400px !important;
}

.morebig {
  width: 450px !important;
}

.extrabig {
  width: 500px !important;
}

.huge {
  width: 575px !important;
}

.extramax {
  width: 610px !important;
}

.max {
  width: 690px !important;
}

.full {
  width: 100% !important;
}

.smalllong {
  height: 35px !important;
}

.nolong {
  height: 50px !important;
}

.long {
  height: 100px !important;
}

.biglong {
  height: 200px !important;
}

.extralong {
  height: 300px !important;
}

.maxlong {
  height: 500px !important;
}

.overflow {
  overflow: auto;
}

.overflow-x {
  overflow-x: auto;
}

.overflow-y {
  overflow-y: auto;
}

.nowrap {
  white-space: nowrap !important;
}

.break-word {
  word-break: break-word !important;
}

.pointer {
  cursor: pointer !important;
}

.rotate-180 {
  transform: rotate(180deg);
}

.no-bord {
  border: 0 !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.top {
  top: 0 !important;
}

.right {
  right: 0 !important;
}

.bottom {
  bottom: 0 !important;
}

.left {
  left: 0 !important;
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.z-index-5 {
  z-index: 5 !important;
}

.z-index-99 {
  z-index: 99 !important;
}

.z-index-999 {
  z-index: 999 !important;
}

.z-index-9999 {
  z-index: 9999 !important;
}

.z-index-99999 {
  z-index: 99999 !important;
}

.sticky-top {
  position: sticky !important;
  top: calc(60px + 5.5em);
  z-index: 1;
}

.cols:after, .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* html .cols {
  height: 1%;
}

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

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

.format-text .f-left {
  margin-bottom: 1em;
  float: none !important;
}
@media (min-width: calc(768px)) {
  .format-text .f-left {
    margin-right: 3em;
    float: left !important;
  }
}

.format-text .f-right {
  margin-bottom: 1em;
  float: none !important;
}
@media (min-width: calc(768px)) {
  .format-text .f-right {
    margin-left: 3em;
    float: right !important;
  }
}

.format-text code {
  background-color: #d9d9d9;
  padding: 0.1em 0.8em;
  display: inline-block;
  border-radius: 0.15em;
}

.format-text pre {
  border: 1px solid #666666;
  background-color: #d9d9d9;
  padding: 0.8em;
  line-height: 1.8;
  display: inline-block;
  border-radius: 0.15em;
}

.format-text {
  line-height: 1.3;
}

.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}
@media (min-width: calc(576px)) {
  .t-right--s {
    text-align: right !important;
  }
}
@media (min-width: calc(768px)) {
  .t-right--m {
    text-align: right !important;
  }
}
@media (min-width: calc(1120px)) {
  .t-right--l {
    text-align: right !important;
  }
}
@media (min-width: calc(1420px)) {
  .t-right--xl {
    text-align: right !important;
  }
}
@media (min-width: calc(1680px)) {
  .t-right--xxl {
    text-align: right !important;
  }
}

.t-justify {
  text-align: justify !important;
}

.v-top, tr.v-top th, tr.v-top td {
  vertical-align: top !important;
}

.v-center, tr.v-center th, tr.v-center td {
  vertical-align: middle !important;
}

.v-bott, tr.v-bott th, tr.v-bott td {
  vertical-align: bottom !important;
}

hr {
  border: none;
  border-bottom: 1px solid #666666;
}

pre {
  background-color: #ffffff;
  color: #333333;
}

/**********************************
BORDER
**********************************/
.border1 {
  border-width: 1px;
  border-style: solid;
}

.border2 {
  border-width: 2px;
  border-style: solid;
}

.border3 {
  border-width: 3px;
  border-style: solid;
}

.border4 {
  border-width: 4px;
  border-style: solid;
}

.border5 {
  border-width: 5px;
  border-style: solid;
}

/**********************************
RADIUS
**********************************/
.radius1 {
  border-radius: 0.15em;
}

.radius-1em {
  border-radius: 1em;
}

.radius-2em {
  border-radius: 2em;
}

.radius-full {
  border-radius: 100vw;
}

.circle {
  border-radius: 50%;
}

.circle-img {
  display: inline-block;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

/**********************************
SIRKY
**********************************/
.w1 {
  width: 10px !important;
}

.w2 {
  width: 20px !important;
}

.w3 {
  width: 30px !important;
}

.w4 {
  width: 40px !important;
}

.w5 {
  width: 50px !important;
}

.w6 {
  width: 60px !important;
}

.w7 {
  width: 70px !important;
}

.w8 {
  width: 80px !important;
}

.w9 {
  width: 90px !important;
}

.w10 {
  width: 100px !important;
}

.w20 {
  width: 200px !important;
}

.w30 {
  width: 300px !important;
}

.w40 {
  width: 400px !important;
}

.w50 {
  width: 500px !important;
}

.wauto {
  width: auto !important;
}

.full {
  width: 100% !important;
}

.extratiny, .w-ico {
  width: 10px;
}

/**********************************
VYSKY
**********************************/
.hgt-auto {
  height: auto !important;
}

.hgt1 {
  height: 10px !important;
}

.hgt2 {
  height: 20px !important;
}

.hgt3 {
  height: 30px !important;
}

.hgt4 {
  height: 40px !important;
}

.hgt5 {
  height: 50px !important;
}

.hgt6 {
  height: 60px !important;
}

.hgt7 {
  height: 70px !important;
}

.hgt8 {
  height: 80px !important;
}

.hgt9 {
  height: 90px !important;
}

.hgt10 {
  height: 100px !important;
}

.hgt20 {
  height: 200px !important;
}

.hgt30 {
  height: 300px !important;
}

.hgt40 {
  height: 400px !important;
}

.hgt50 {
  height: 500px !important;
}

/**********************************
ODSTINY
**********************************/
.blue {
  color: #0d67b2 !important;
}

.blue-bg, tr.blue-bg td, tr.blue-bg th {
  background-color: #0d67b2 !important;
}

.blue-border {
  border-color: #0d67b2 !important;
}

.blue-10 {
  color: rgb(230.8, 239.8, 247.3) !important;
}

.blue-bg-10, tr.blue-bg-10 td, tr.blue-bg-10 th {
  background-color: rgb(230.8, 239.8, 247.3) !important;
}

.blue-border-10 {
  border-color: rgb(230.8, 239.8, 247.3) !important;
}

.blue-20 {
  color: rgb(206.6, 224.6, 239.6) !important;
}

.blue-bg-20, tr.blue-bg-20 td, tr.blue-bg-20 th {
  background-color: rgb(206.6, 224.6, 239.6) !important;
}

.blue-border-20 {
  border-color: rgb(206.6, 224.6, 239.6) !important;
}

.blue-30 {
  color: rgb(182.4, 209.4, 231.9) !important;
}

.blue-bg-30, tr.blue-bg-30 td, tr.blue-bg-30 th {
  background-color: rgb(182.4, 209.4, 231.9) !important;
}

.blue-border-30 {
  border-color: rgb(182.4, 209.4, 231.9) !important;
}

.blue-40 {
  color: rgb(158.2, 194.2, 224.2) !important;
}

.blue-bg-40, tr.blue-bg-40 td, tr.blue-bg-40 th {
  background-color: rgb(158.2, 194.2, 224.2) !important;
}

.blue-border-40 {
  border-color: rgb(158.2, 194.2, 224.2) !important;
}

.blue-50 {
  color: rgb(134, 179, 216.5) !important;
}

.blue-bg-50, tr.blue-bg-50 td, tr.blue-bg-50 th {
  background-color: rgb(134, 179, 216.5) !important;
}

.blue-border-50 {
  border-color: rgb(134, 179, 216.5) !important;
}

.blue-60 {
  color: rgb(109.8, 163.8, 208.8) !important;
}

.blue-bg-60, tr.blue-bg-60 td, tr.blue-bg-60 th {
  background-color: rgb(109.8, 163.8, 208.8) !important;
}

.blue-border-60 {
  border-color: rgb(109.8, 163.8, 208.8) !important;
}

.blue-70 {
  color: rgb(85.6, 148.6, 201.1) !important;
}

.blue-bg-70, tr.blue-bg-70 td, tr.blue-bg-70 th {
  background-color: rgb(85.6, 148.6, 201.1) !important;
}

.blue-border-70 {
  border-color: rgb(85.6, 148.6, 201.1) !important;
}

.blue-80 {
  color: rgb(61.4, 133.4, 193.4) !important;
}

.blue-bg-80, tr.blue-bg-80 td, tr.blue-bg-80 th {
  background-color: rgb(61.4, 133.4, 193.4) !important;
}

.blue-border-80 {
  border-color: rgb(61.4, 133.4, 193.4) !important;
}

.blue-90 {
  color: rgb(37.2, 118.2, 185.7) !important;
}

.blue-bg-90, tr.blue-bg-90 td, tr.blue-bg-90 th {
  background-color: rgb(37.2, 118.2, 185.7) !important;
}

.blue-border-90 {
  border-color: rgb(37.2, 118.2, 185.7) !important;
}

.blue-110 {
  color: rgb(11.7, 92.7, 160.2) !important;
}

.blue-bg-110, tr.blue-bg-110 td, tr.blue-bg-110 th {
  background-color: rgb(11.7, 92.7, 160.2) !important;
}

.blue-border-110 {
  border-color: rgb(11.7, 92.7, 160.2) !important;
}

.blue-120 {
  color: rgb(10.4, 82.4, 142.4) !important;
}

.blue-bg-120, tr.blue-bg-120 td, tr.blue-bg-120 th {
  background-color: rgb(10.4, 82.4, 142.4) !important;
}

.blue-border-120 {
  border-color: rgb(10.4, 82.4, 142.4) !important;
}

.blue-130 {
  color: rgb(9.1, 72.1, 124.6) !important;
}

.blue-bg-130, tr.blue-bg-130 td, tr.blue-bg-130 th {
  background-color: rgb(9.1, 72.1, 124.6) !important;
}

.blue-border-130 {
  border-color: rgb(9.1, 72.1, 124.6) !important;
}

.blue-140 {
  color: rgb(7.8, 61.8, 106.8) !important;
}

.blue-bg-140, tr.blue-bg-140 td, tr.blue-bg-140 th {
  background-color: rgb(7.8, 61.8, 106.8) !important;
}

.blue-border-140 {
  border-color: rgb(7.8, 61.8, 106.8) !important;
}

.blue-150 {
  color: rgb(6.5, 51.5, 89) !important;
}

.blue-bg-150, tr.blue-bg-150 td, tr.blue-bg-150 th {
  background-color: rgb(6.5, 51.5, 89) !important;
}

.blue-border-150 {
  border-color: rgb(6.5, 51.5, 89) !important;
}

.blue-160 {
  color: rgb(5.2, 41.2, 71.2) !important;
}

.blue-bg-160, tr.blue-bg-160 td, tr.blue-bg-160 th {
  background-color: rgb(5.2, 41.2, 71.2) !important;
}

.blue-border-160 {
  border-color: rgb(5.2, 41.2, 71.2) !important;
}

.blue-170 {
  color: rgb(3.9, 30.9, 53.4) !important;
}

.blue-bg-170, tr.blue-bg-170 td, tr.blue-bg-170 th {
  background-color: rgb(3.9, 30.9, 53.4) !important;
}

.blue-border-170 {
  border-color: rgb(3.9, 30.9, 53.4) !important;
}

.blue-180 {
  color: rgb(2.6, 20.6, 35.6) !important;
}

.blue-bg-180, tr.blue-bg-180 td, tr.blue-bg-180 th {
  background-color: rgb(2.6, 20.6, 35.6) !important;
}

.blue-border-180 {
  border-color: rgb(2.6, 20.6, 35.6) !important;
}

.blue-190 {
  color: rgb(1.3, 10.3, 17.8) !important;
}

.blue-bg-190, tr.blue-bg-190 td, tr.blue-bg-190 th {
  background-color: rgb(1.3, 10.3, 17.8) !important;
}

.blue-border-190 {
  border-color: rgb(1.3, 10.3, 17.8) !important;
}

.blue2 {
  color: #83bce6 !important;
}

.blue2-bg, tr.blue2-bg td, tr.blue2-bg th {
  background-color: #83bce6 !important;
}

.blue2-border {
  border-color: #83bce6 !important;
}

.blue2-10 {
  color: rgb(242.6, 248.3, 252.5) !important;
}

.blue2-bg-10, tr.blue2-bg-10 td, tr.blue2-bg-10 th {
  background-color: rgb(242.6, 248.3, 252.5) !important;
}

.blue2-border-10 {
  border-color: rgb(242.6, 248.3, 252.5) !important;
}

.blue2-20 {
  color: rgb(230.2, 241.6, 250) !important;
}

.blue2-bg-20, tr.blue2-bg-20 td, tr.blue2-bg-20 th {
  background-color: rgb(230.2, 241.6, 250) !important;
}

.blue2-border-20 {
  border-color: rgb(230.2, 241.6, 250) !important;
}

.blue2-30 {
  color: rgb(217.8, 234.9, 247.5) !important;
}

.blue2-bg-30, tr.blue2-bg-30 td, tr.blue2-bg-30 th {
  background-color: rgb(217.8, 234.9, 247.5) !important;
}

.blue2-border-30 {
  border-color: rgb(217.8, 234.9, 247.5) !important;
}

.blue2-40 {
  color: rgb(205.4, 228.2, 245) !important;
}

.blue2-bg-40, tr.blue2-bg-40 td, tr.blue2-bg-40 th {
  background-color: rgb(205.4, 228.2, 245) !important;
}

.blue2-border-40 {
  border-color: rgb(205.4, 228.2, 245) !important;
}

.blue2-50 {
  color: rgb(193, 221.5, 242.5) !important;
}

.blue2-bg-50, tr.blue2-bg-50 td, tr.blue2-bg-50 th {
  background-color: rgb(193, 221.5, 242.5) !important;
}

.blue2-border-50 {
  border-color: rgb(193, 221.5, 242.5) !important;
}

.blue2-60 {
  color: rgb(180.6, 214.8, 240) !important;
}

.blue2-bg-60, tr.blue2-bg-60 td, tr.blue2-bg-60 th {
  background-color: rgb(180.6, 214.8, 240) !important;
}

.blue2-border-60 {
  border-color: rgb(180.6, 214.8, 240) !important;
}

.blue2-70 {
  color: rgb(168.2, 208.1, 237.5) !important;
}

.blue2-bg-70, tr.blue2-bg-70 td, tr.blue2-bg-70 th {
  background-color: rgb(168.2, 208.1, 237.5) !important;
}

.blue2-border-70 {
  border-color: rgb(168.2, 208.1, 237.5) !important;
}

.blue2-80 {
  color: rgb(155.8, 201.4, 235) !important;
}

.blue2-bg-80, tr.blue2-bg-80 td, tr.blue2-bg-80 th {
  background-color: rgb(155.8, 201.4, 235) !important;
}

.blue2-border-80 {
  border-color: rgb(155.8, 201.4, 235) !important;
}

.blue2-90 {
  color: rgb(143.4, 194.7, 232.5) !important;
}

.blue2-bg-90, tr.blue2-bg-90 td, tr.blue2-bg-90 th {
  background-color: rgb(143.4, 194.7, 232.5) !important;
}

.blue2-border-90 {
  border-color: rgb(143.4, 194.7, 232.5) !important;
}

.blue2-110 {
  color: rgb(117.9, 169.2, 207) !important;
}

.blue2-bg-110, tr.blue2-bg-110 td, tr.blue2-bg-110 th {
  background-color: rgb(117.9, 169.2, 207) !important;
}

.blue2-border-110 {
  border-color: rgb(117.9, 169.2, 207) !important;
}

.blue2-120 {
  color: rgb(104.8, 150.4, 184) !important;
}

.blue2-bg-120, tr.blue2-bg-120 td, tr.blue2-bg-120 th {
  background-color: rgb(104.8, 150.4, 184) !important;
}

.blue2-border-120 {
  border-color: rgb(104.8, 150.4, 184) !important;
}

.blue2-130 {
  color: rgb(91.7, 131.6, 161) !important;
}

.blue2-bg-130, tr.blue2-bg-130 td, tr.blue2-bg-130 th {
  background-color: rgb(91.7, 131.6, 161) !important;
}

.blue2-border-130 {
  border-color: rgb(91.7, 131.6, 161) !important;
}

.blue2-140 {
  color: rgb(78.6, 112.8, 138) !important;
}

.blue2-bg-140, tr.blue2-bg-140 td, tr.blue2-bg-140 th {
  background-color: rgb(78.6, 112.8, 138) !important;
}

.blue2-border-140 {
  border-color: rgb(78.6, 112.8, 138) !important;
}

.blue2-150 {
  color: rgb(65.5, 94, 115) !important;
}

.blue2-bg-150, tr.blue2-bg-150 td, tr.blue2-bg-150 th {
  background-color: rgb(65.5, 94, 115) !important;
}

.blue2-border-150 {
  border-color: rgb(65.5, 94, 115) !important;
}

.blue2-160 {
  color: rgb(52.4, 75.2, 92) !important;
}

.blue2-bg-160, tr.blue2-bg-160 td, tr.blue2-bg-160 th {
  background-color: rgb(52.4, 75.2, 92) !important;
}

.blue2-border-160 {
  border-color: rgb(52.4, 75.2, 92) !important;
}

.blue2-170 {
  color: rgb(39.3, 56.4, 69) !important;
}

.blue2-bg-170, tr.blue2-bg-170 td, tr.blue2-bg-170 th {
  background-color: rgb(39.3, 56.4, 69) !important;
}

.blue2-border-170 {
  border-color: rgb(39.3, 56.4, 69) !important;
}

.blue2-180 {
  color: rgb(26.2, 37.6, 46) !important;
}

.blue2-bg-180, tr.blue2-bg-180 td, tr.blue2-bg-180 th {
  background-color: rgb(26.2, 37.6, 46) !important;
}

.blue2-border-180 {
  border-color: rgb(26.2, 37.6, 46) !important;
}

.blue2-190 {
  color: rgb(13.1, 18.8, 23) !important;
}

.blue2-bg-190, tr.blue2-bg-190 td, tr.blue2-bg-190 th {
  background-color: rgb(13.1, 18.8, 23) !important;
}

.blue2-border-190 {
  border-color: rgb(13.1, 18.8, 23) !important;
}

.lightblue {
  color: #bcdcf8 !important;
}

.lightblue-bg, tr.lightblue-bg td, tr.lightblue-bg th {
  background-color: #bcdcf8 !important;
}

.lightblue-border {
  border-color: #bcdcf8 !important;
}

.lightblue-10 {
  color: rgb(248.3, 251.5, 254.3) !important;
}

.lightblue-bg-10, tr.lightblue-bg-10 td, tr.lightblue-bg-10 th {
  background-color: rgb(248.3, 251.5, 254.3) !important;
}

.lightblue-border-10 {
  border-color: rgb(248.3, 251.5, 254.3) !important;
}

.lightblue-20 {
  color: rgb(241.6, 248, 253.6) !important;
}

.lightblue-bg-20, tr.lightblue-bg-20 td, tr.lightblue-bg-20 th {
  background-color: rgb(241.6, 248, 253.6) !important;
}

.lightblue-border-20 {
  border-color: rgb(241.6, 248, 253.6) !important;
}

.lightblue-30 {
  color: rgb(234.9, 244.5, 252.9) !important;
}

.lightblue-bg-30, tr.lightblue-bg-30 td, tr.lightblue-bg-30 th {
  background-color: rgb(234.9, 244.5, 252.9) !important;
}

.lightblue-border-30 {
  border-color: rgb(234.9, 244.5, 252.9) !important;
}

.lightblue-40 {
  color: rgb(228.2, 241, 252.2) !important;
}

.lightblue-bg-40, tr.lightblue-bg-40 td, tr.lightblue-bg-40 th {
  background-color: rgb(228.2, 241, 252.2) !important;
}

.lightblue-border-40 {
  border-color: rgb(228.2, 241, 252.2) !important;
}

.lightblue-50 {
  color: rgb(221.5, 237.5, 251.5) !important;
}

.lightblue-bg-50, tr.lightblue-bg-50 td, tr.lightblue-bg-50 th {
  background-color: rgb(221.5, 237.5, 251.5) !important;
}

.lightblue-border-50 {
  border-color: rgb(221.5, 237.5, 251.5) !important;
}

.lightblue-60 {
  color: rgb(214.8, 234, 250.8) !important;
}

.lightblue-bg-60, tr.lightblue-bg-60 td, tr.lightblue-bg-60 th {
  background-color: rgb(214.8, 234, 250.8) !important;
}

.lightblue-border-60 {
  border-color: rgb(214.8, 234, 250.8) !important;
}

.lightblue-70 {
  color: rgb(208.1, 230.5, 250.1) !important;
}

.lightblue-bg-70, tr.lightblue-bg-70 td, tr.lightblue-bg-70 th {
  background-color: rgb(208.1, 230.5, 250.1) !important;
}

.lightblue-border-70 {
  border-color: rgb(208.1, 230.5, 250.1) !important;
}

.lightblue-80 {
  color: rgb(201.4, 227, 249.4) !important;
}

.lightblue-bg-80, tr.lightblue-bg-80 td, tr.lightblue-bg-80 th {
  background-color: rgb(201.4, 227, 249.4) !important;
}

.lightblue-border-80 {
  border-color: rgb(201.4, 227, 249.4) !important;
}

.lightblue-90 {
  color: rgb(194.7, 223.5, 248.7) !important;
}

.lightblue-bg-90, tr.lightblue-bg-90 td, tr.lightblue-bg-90 th {
  background-color: rgb(194.7, 223.5, 248.7) !important;
}

.lightblue-border-90 {
  border-color: rgb(194.7, 223.5, 248.7) !important;
}

.lightblue-110 {
  color: rgb(169.2, 198, 223.2) !important;
}

.lightblue-bg-110, tr.lightblue-bg-110 td, tr.lightblue-bg-110 th {
  background-color: rgb(169.2, 198, 223.2) !important;
}

.lightblue-border-110 {
  border-color: rgb(169.2, 198, 223.2) !important;
}

.lightblue-120 {
  color: rgb(150.4, 176, 198.4) !important;
}

.lightblue-bg-120, tr.lightblue-bg-120 td, tr.lightblue-bg-120 th {
  background-color: rgb(150.4, 176, 198.4) !important;
}

.lightblue-border-120 {
  border-color: rgb(150.4, 176, 198.4) !important;
}

.lightblue-130 {
  color: rgb(131.6, 154, 173.6) !important;
}

.lightblue-bg-130, tr.lightblue-bg-130 td, tr.lightblue-bg-130 th {
  background-color: rgb(131.6, 154, 173.6) !important;
}

.lightblue-border-130 {
  border-color: rgb(131.6, 154, 173.6) !important;
}

.lightblue-140 {
  color: rgb(112.8, 132, 148.8) !important;
}

.lightblue-bg-140, tr.lightblue-bg-140 td, tr.lightblue-bg-140 th {
  background-color: rgb(112.8, 132, 148.8) !important;
}

.lightblue-border-140 {
  border-color: rgb(112.8, 132, 148.8) !important;
}

.lightblue-150 {
  color: #5e6e7c !important;
}

.lightblue-bg-150, tr.lightblue-bg-150 td, tr.lightblue-bg-150 th {
  background-color: #5e6e7c !important;
}

.lightblue-border-150 {
  border-color: #5e6e7c !important;
}

.lightblue-160 {
  color: rgb(75.2, 88, 99.2) !important;
}

.lightblue-bg-160, tr.lightblue-bg-160 td, tr.lightblue-bg-160 th {
  background-color: rgb(75.2, 88, 99.2) !important;
}

.lightblue-border-160 {
  border-color: rgb(75.2, 88, 99.2) !important;
}

.lightblue-170 {
  color: rgb(56.4, 66, 74.4) !important;
}

.lightblue-bg-170, tr.lightblue-bg-170 td, tr.lightblue-bg-170 th {
  background-color: rgb(56.4, 66, 74.4) !important;
}

.lightblue-border-170 {
  border-color: rgb(56.4, 66, 74.4) !important;
}

.lightblue-180 {
  color: rgb(37.6, 44, 49.6) !important;
}

.lightblue-bg-180, tr.lightblue-bg-180 td, tr.lightblue-bg-180 th {
  background-color: rgb(37.6, 44, 49.6) !important;
}

.lightblue-border-180 {
  border-color: rgb(37.6, 44, 49.6) !important;
}

.lightblue-190 {
  color: rgb(18.8, 22, 24.8) !important;
}

.lightblue-bg-190, tr.lightblue-bg-190 td, tr.lightblue-bg-190 th {
  background-color: rgb(18.8, 22, 24.8) !important;
}

.lightblue-border-190 {
  border-color: rgb(18.8, 22, 24.8) !important;
}

.lightblue2 {
  color: #e5f3ff !important;
}

.lightblue2-bg, tr.lightblue2-bg td, tr.lightblue2-bg th {
  background-color: #e5f3ff !important;
}

.lightblue2-border {
  border-color: #e5f3ff !important;
}

.lightblue2-10 {
  color: rgb(252.4, 253.8, 255) !important;
}

.lightblue2-bg-10, tr.lightblue2-bg-10 td, tr.lightblue2-bg-10 th {
  background-color: rgb(252.4, 253.8, 255) !important;
}

.lightblue2-border-10 {
  border-color: rgb(252.4, 253.8, 255) !important;
}

.lightblue2-20 {
  color: rgb(249.8, 252.6, 255) !important;
}

.lightblue2-bg-20, tr.lightblue2-bg-20 td, tr.lightblue2-bg-20 th {
  background-color: rgb(249.8, 252.6, 255) !important;
}

.lightblue2-border-20 {
  border-color: rgb(249.8, 252.6, 255) !important;
}

.lightblue2-30 {
  color: rgb(247.2, 251.4, 255) !important;
}

.lightblue2-bg-30, tr.lightblue2-bg-30 td, tr.lightblue2-bg-30 th {
  background-color: rgb(247.2, 251.4, 255) !important;
}

.lightblue2-border-30 {
  border-color: rgb(247.2, 251.4, 255) !important;
}

.lightblue2-40 {
  color: rgb(244.6, 250.2, 255) !important;
}

.lightblue2-bg-40, tr.lightblue2-bg-40 td, tr.lightblue2-bg-40 th {
  background-color: rgb(244.6, 250.2, 255) !important;
}

.lightblue2-border-40 {
  border-color: rgb(244.6, 250.2, 255) !important;
}

.lightblue2-50 {
  color: #f2f9ff !important;
}

.lightblue2-bg-50, tr.lightblue2-bg-50 td, tr.lightblue2-bg-50 th {
  background-color: #f2f9ff !important;
}

.lightblue2-border-50 {
  border-color: #f2f9ff !important;
}

.lightblue2-60 {
  color: rgb(239.4, 247.8, 255) !important;
}

.lightblue2-bg-60, tr.lightblue2-bg-60 td, tr.lightblue2-bg-60 th {
  background-color: rgb(239.4, 247.8, 255) !important;
}

.lightblue2-border-60 {
  border-color: rgb(239.4, 247.8, 255) !important;
}

.lightblue2-70 {
  color: rgb(236.8, 246.6, 255) !important;
}

.lightblue2-bg-70, tr.lightblue2-bg-70 td, tr.lightblue2-bg-70 th {
  background-color: rgb(236.8, 246.6, 255) !important;
}

.lightblue2-border-70 {
  border-color: rgb(236.8, 246.6, 255) !important;
}

.lightblue2-80 {
  color: rgb(234.2, 245.4, 255) !important;
}

.lightblue2-bg-80, tr.lightblue2-bg-80 td, tr.lightblue2-bg-80 th {
  background-color: rgb(234.2, 245.4, 255) !important;
}

.lightblue2-border-80 {
  border-color: rgb(234.2, 245.4, 255) !important;
}

.lightblue2-90 {
  color: rgb(231.6, 244.2, 255) !important;
}

.lightblue2-bg-90, tr.lightblue2-bg-90 td, tr.lightblue2-bg-90 th {
  background-color: rgb(231.6, 244.2, 255) !important;
}

.lightblue2-border-90 {
  border-color: rgb(231.6, 244.2, 255) !important;
}

.lightblue2-110 {
  color: rgb(206.1, 218.7, 229.5) !important;
}

.lightblue2-bg-110, tr.lightblue2-bg-110 td, tr.lightblue2-bg-110 th {
  background-color: rgb(206.1, 218.7, 229.5) !important;
}

.lightblue2-border-110 {
  border-color: rgb(206.1, 218.7, 229.5) !important;
}

.lightblue2-120 {
  color: rgb(183.2, 194.4, 204) !important;
}

.lightblue2-bg-120, tr.lightblue2-bg-120 td, tr.lightblue2-bg-120 th {
  background-color: rgb(183.2, 194.4, 204) !important;
}

.lightblue2-border-120 {
  border-color: rgb(183.2, 194.4, 204) !important;
}

.lightblue2-130 {
  color: rgb(160.3, 170.1, 178.5) !important;
}

.lightblue2-bg-130, tr.lightblue2-bg-130 td, tr.lightblue2-bg-130 th {
  background-color: rgb(160.3, 170.1, 178.5) !important;
}

.lightblue2-border-130 {
  border-color: rgb(160.3, 170.1, 178.5) !important;
}

.lightblue2-140 {
  color: rgb(137.4, 145.8, 153) !important;
}

.lightblue2-bg-140, tr.lightblue2-bg-140 td, tr.lightblue2-bg-140 th {
  background-color: rgb(137.4, 145.8, 153) !important;
}

.lightblue2-border-140 {
  border-color: rgb(137.4, 145.8, 153) !important;
}

.lightblue2-150 {
  color: rgb(114.5, 121.5, 127.5) !important;
}

.lightblue2-bg-150, tr.lightblue2-bg-150 td, tr.lightblue2-bg-150 th {
  background-color: rgb(114.5, 121.5, 127.5) !important;
}

.lightblue2-border-150 {
  border-color: rgb(114.5, 121.5, 127.5) !important;
}

.lightblue2-160 {
  color: rgb(91.6, 97.2, 102) !important;
}

.lightblue2-bg-160, tr.lightblue2-bg-160 td, tr.lightblue2-bg-160 th {
  background-color: rgb(91.6, 97.2, 102) !important;
}

.lightblue2-border-160 {
  border-color: rgb(91.6, 97.2, 102) !important;
}

.lightblue2-170 {
  color: rgb(68.7, 72.9, 76.5) !important;
}

.lightblue2-bg-170, tr.lightblue2-bg-170 td, tr.lightblue2-bg-170 th {
  background-color: rgb(68.7, 72.9, 76.5) !important;
}

.lightblue2-border-170 {
  border-color: rgb(68.7, 72.9, 76.5) !important;
}

.lightblue2-180 {
  color: rgb(45.8, 48.6, 51) !important;
}

.lightblue2-bg-180, tr.lightblue2-bg-180 td, tr.lightblue2-bg-180 th {
  background-color: rgb(45.8, 48.6, 51) !important;
}

.lightblue2-border-180 {
  border-color: rgb(45.8, 48.6, 51) !important;
}

.lightblue2-190 {
  color: rgb(22.9, 24.3, 25.5) !important;
}

.lightblue2-bg-190, tr.lightblue2-bg-190 td, tr.lightblue2-bg-190 th {
  background-color: rgb(22.9, 24.3, 25.5) !important;
}

.lightblue2-border-190 {
  border-color: rgb(22.9, 24.3, 25.5) !important;
}

.yellow {
  color: #f0c208 !important;
}

.yellow-bg, tr.yellow-bg td, tr.yellow-bg th {
  background-color: #f0c208 !important;
}

.yellow-border {
  border-color: #f0c208 !important;
}

.yellow-10 {
  color: rgb(253.5, 248.9, 230.3) !important;
}

.yellow-bg-10, tr.yellow-bg-10 td, tr.yellow-bg-10 th {
  background-color: rgb(253.5, 248.9, 230.3) !important;
}

.yellow-border-10 {
  border-color: rgb(253.5, 248.9, 230.3) !important;
}

.yellow-20 {
  color: rgb(252, 242.8, 205.6) !important;
}

.yellow-bg-20, tr.yellow-bg-20 td, tr.yellow-bg-20 th {
  background-color: rgb(252, 242.8, 205.6) !important;
}

.yellow-border-20 {
  border-color: rgb(252, 242.8, 205.6) !important;
}

.yellow-30 {
  color: rgb(250.5, 236.7, 180.9) !important;
}

.yellow-bg-30, tr.yellow-bg-30 td, tr.yellow-bg-30 th {
  background-color: rgb(250.5, 236.7, 180.9) !important;
}

.yellow-border-30 {
  border-color: rgb(250.5, 236.7, 180.9) !important;
}

.yellow-40 {
  color: rgb(249, 230.6, 156.2) !important;
}

.yellow-bg-40, tr.yellow-bg-40 td, tr.yellow-bg-40 th {
  background-color: rgb(249, 230.6, 156.2) !important;
}

.yellow-border-40 {
  border-color: rgb(249, 230.6, 156.2) !important;
}

.yellow-50 {
  color: rgb(247.5, 224.5, 131.5) !important;
}

.yellow-bg-50, tr.yellow-bg-50 td, tr.yellow-bg-50 th {
  background-color: rgb(247.5, 224.5, 131.5) !important;
}

.yellow-border-50 {
  border-color: rgb(247.5, 224.5, 131.5) !important;
}

.yellow-60 {
  color: rgb(246, 218.4, 106.8) !important;
}

.yellow-bg-60, tr.yellow-bg-60 td, tr.yellow-bg-60 th {
  background-color: rgb(246, 218.4, 106.8) !important;
}

.yellow-border-60 {
  border-color: rgb(246, 218.4, 106.8) !important;
}

.yellow-70 {
  color: rgb(244.5, 212.3, 82.1) !important;
}

.yellow-bg-70, tr.yellow-bg-70 td, tr.yellow-bg-70 th {
  background-color: rgb(244.5, 212.3, 82.1) !important;
}

.yellow-border-70 {
  border-color: rgb(244.5, 212.3, 82.1) !important;
}

.yellow-80 {
  color: rgb(243, 206.2, 57.4) !important;
}

.yellow-bg-80, tr.yellow-bg-80 td, tr.yellow-bg-80 th {
  background-color: rgb(243, 206.2, 57.4) !important;
}

.yellow-border-80 {
  border-color: rgb(243, 206.2, 57.4) !important;
}

.yellow-90 {
  color: rgb(241.5, 200.1, 32.7) !important;
}

.yellow-bg-90, tr.yellow-bg-90 td, tr.yellow-bg-90 th {
  background-color: rgb(241.5, 200.1, 32.7) !important;
}

.yellow-border-90 {
  border-color: rgb(241.5, 200.1, 32.7) !important;
}

.yellow-110 {
  color: rgb(216, 174.6, 7.2) !important;
}

.yellow-bg-110, tr.yellow-bg-110 td, tr.yellow-bg-110 th {
  background-color: rgb(216, 174.6, 7.2) !important;
}

.yellow-border-110 {
  border-color: rgb(216, 174.6, 7.2) !important;
}

.yellow-120 {
  color: rgb(192, 155.2, 6.4) !important;
}

.yellow-bg-120, tr.yellow-bg-120 td, tr.yellow-bg-120 th {
  background-color: rgb(192, 155.2, 6.4) !important;
}

.yellow-border-120 {
  border-color: rgb(192, 155.2, 6.4) !important;
}

.yellow-130 {
  color: rgb(168, 135.8, 5.6) !important;
}

.yellow-bg-130, tr.yellow-bg-130 td, tr.yellow-bg-130 th {
  background-color: rgb(168, 135.8, 5.6) !important;
}

.yellow-border-130 {
  border-color: rgb(168, 135.8, 5.6) !important;
}

.yellow-140 {
  color: rgb(144, 116.4, 4.8) !important;
}

.yellow-bg-140, tr.yellow-bg-140 td, tr.yellow-bg-140 th {
  background-color: rgb(144, 116.4, 4.8) !important;
}

.yellow-border-140 {
  border-color: rgb(144, 116.4, 4.8) !important;
}

.yellow-150 {
  color: #786104 !important;
}

.yellow-bg-150, tr.yellow-bg-150 td, tr.yellow-bg-150 th {
  background-color: #786104 !important;
}

.yellow-border-150 {
  border-color: #786104 !important;
}

.yellow-160 {
  color: rgb(96, 77.6, 3.2) !important;
}

.yellow-bg-160, tr.yellow-bg-160 td, tr.yellow-bg-160 th {
  background-color: rgb(96, 77.6, 3.2) !important;
}

.yellow-border-160 {
  border-color: rgb(96, 77.6, 3.2) !important;
}

.yellow-170 {
  color: rgb(72, 58.2, 2.4) !important;
}

.yellow-bg-170, tr.yellow-bg-170 td, tr.yellow-bg-170 th {
  background-color: rgb(72, 58.2, 2.4) !important;
}

.yellow-border-170 {
  border-color: rgb(72, 58.2, 2.4) !important;
}

.yellow-180 {
  color: rgb(48, 38.8, 1.6) !important;
}

.yellow-bg-180, tr.yellow-bg-180 td, tr.yellow-bg-180 th {
  background-color: rgb(48, 38.8, 1.6) !important;
}

.yellow-border-180 {
  border-color: rgb(48, 38.8, 1.6) !important;
}

.yellow-190 {
  color: rgb(24, 19.4, 0.8) !important;
}

.yellow-bg-190, tr.yellow-bg-190 td, tr.yellow-bg-190 th {
  background-color: rgb(24, 19.4, 0.8) !important;
}

.yellow-border-190 {
  border-color: rgb(24, 19.4, 0.8) !important;
}

.orange {
  color: #eb6615 !important;
}

.orange-bg, tr.orange-bg td, tr.orange-bg th {
  background-color: #eb6615 !important;
}

.orange-border {
  border-color: #eb6615 !important;
}

.orange-10 {
  color: rgb(253, 239.7, 231.6) !important;
}

.orange-bg-10, tr.orange-bg-10 td, tr.orange-bg-10 th {
  background-color: rgb(253, 239.7, 231.6) !important;
}

.orange-border-10 {
  border-color: rgb(253, 239.7, 231.6) !important;
}

.orange-20 {
  color: rgb(251, 224.4, 208.2) !important;
}

.orange-bg-20, tr.orange-bg-20 td, tr.orange-bg-20 th {
  background-color: rgb(251, 224.4, 208.2) !important;
}

.orange-border-20 {
  border-color: rgb(251, 224.4, 208.2) !important;
}

.orange-30 {
  color: rgb(249, 209.1, 184.8) !important;
}

.orange-bg-30, tr.orange-bg-30 td, tr.orange-bg-30 th {
  background-color: rgb(249, 209.1, 184.8) !important;
}

.orange-border-30 {
  border-color: rgb(249, 209.1, 184.8) !important;
}

.orange-40 {
  color: rgb(247, 193.8, 161.4) !important;
}

.orange-bg-40, tr.orange-bg-40 td, tr.orange-bg-40 th {
  background-color: rgb(247, 193.8, 161.4) !important;
}

.orange-border-40 {
  border-color: rgb(247, 193.8, 161.4) !important;
}

.orange-50 {
  color: rgb(245, 178.5, 138) !important;
}

.orange-bg-50, tr.orange-bg-50 td, tr.orange-bg-50 th {
  background-color: rgb(245, 178.5, 138) !important;
}

.orange-border-50 {
  border-color: rgb(245, 178.5, 138) !important;
}

.orange-60 {
  color: rgb(243, 163.2, 114.6) !important;
}

.orange-bg-60, tr.orange-bg-60 td, tr.orange-bg-60 th {
  background-color: rgb(243, 163.2, 114.6) !important;
}

.orange-border-60 {
  border-color: rgb(243, 163.2, 114.6) !important;
}

.orange-70 {
  color: rgb(241, 147.9, 91.2) !important;
}

.orange-bg-70, tr.orange-bg-70 td, tr.orange-bg-70 th {
  background-color: rgb(241, 147.9, 91.2) !important;
}

.orange-border-70 {
  border-color: rgb(241, 147.9, 91.2) !important;
}

.orange-80 {
  color: rgb(239, 132.6, 67.8) !important;
}

.orange-bg-80, tr.orange-bg-80 td, tr.orange-bg-80 th {
  background-color: rgb(239, 132.6, 67.8) !important;
}

.orange-border-80 {
  border-color: rgb(239, 132.6, 67.8) !important;
}

.orange-90 {
  color: rgb(237, 117.3, 44.4) !important;
}

.orange-bg-90, tr.orange-bg-90 td, tr.orange-bg-90 th {
  background-color: rgb(237, 117.3, 44.4) !important;
}

.orange-border-90 {
  border-color: rgb(237, 117.3, 44.4) !important;
}

.orange-110 {
  color: rgb(211.5, 91.8, 18.9) !important;
}

.orange-bg-110, tr.orange-bg-110 td, tr.orange-bg-110 th {
  background-color: rgb(211.5, 91.8, 18.9) !important;
}

.orange-border-110 {
  border-color: rgb(211.5, 91.8, 18.9) !important;
}

.orange-120 {
  color: rgb(188, 81.6, 16.8) !important;
}

.orange-bg-120, tr.orange-bg-120 td, tr.orange-bg-120 th {
  background-color: rgb(188, 81.6, 16.8) !important;
}

.orange-border-120 {
  border-color: rgb(188, 81.6, 16.8) !important;
}

.orange-130 {
  color: rgb(164.5, 71.4, 14.7) !important;
}

.orange-bg-130, tr.orange-bg-130 td, tr.orange-bg-130 th {
  background-color: rgb(164.5, 71.4, 14.7) !important;
}

.orange-border-130 {
  border-color: rgb(164.5, 71.4, 14.7) !important;
}

.orange-140 {
  color: rgb(141, 61.2, 12.6) !important;
}

.orange-bg-140, tr.orange-bg-140 td, tr.orange-bg-140 th {
  background-color: rgb(141, 61.2, 12.6) !important;
}

.orange-border-140 {
  border-color: rgb(141, 61.2, 12.6) !important;
}

.orange-150 {
  color: rgb(117.5, 51, 10.5) !important;
}

.orange-bg-150, tr.orange-bg-150 td, tr.orange-bg-150 th {
  background-color: rgb(117.5, 51, 10.5) !important;
}

.orange-border-150 {
  border-color: rgb(117.5, 51, 10.5) !important;
}

.orange-160 {
  color: rgb(94, 40.8, 8.4) !important;
}

.orange-bg-160, tr.orange-bg-160 td, tr.orange-bg-160 th {
  background-color: rgb(94, 40.8, 8.4) !important;
}

.orange-border-160 {
  border-color: rgb(94, 40.8, 8.4) !important;
}

.orange-170 {
  color: rgb(70.5, 30.6, 6.3) !important;
}

.orange-bg-170, tr.orange-bg-170 td, tr.orange-bg-170 th {
  background-color: rgb(70.5, 30.6, 6.3) !important;
}

.orange-border-170 {
  border-color: rgb(70.5, 30.6, 6.3) !important;
}

.orange-180 {
  color: rgb(47, 20.4, 4.2) !important;
}

.orange-bg-180, tr.orange-bg-180 td, tr.orange-bg-180 th {
  background-color: rgb(47, 20.4, 4.2) !important;
}

.orange-border-180 {
  border-color: rgb(47, 20.4, 4.2) !important;
}

.orange-190 {
  color: rgb(23.5, 10.2, 2.1) !important;
}

.orange-bg-190, tr.orange-bg-190 td, tr.orange-bg-190 th {
  background-color: rgb(23.5, 10.2, 2.1) !important;
}

.orange-border-190 {
  border-color: rgb(23.5, 10.2, 2.1) !important;
}

.green {
  color: #67b385 !important;
}

.green-bg, tr.green-bg td, tr.green-bg th {
  background-color: #67b385 !important;
}

.green-border {
  border-color: #67b385 !important;
}

.green-10 {
  color: rgb(239.8, 247.4, 242.8) !important;
}

.green-bg-10, tr.green-bg-10 td, tr.green-bg-10 th {
  background-color: rgb(239.8, 247.4, 242.8) !important;
}

.green-border-10 {
  border-color: rgb(239.8, 247.4, 242.8) !important;
}

.green-20 {
  color: rgb(224.6, 239.8, 230.6) !important;
}

.green-bg-20, tr.green-bg-20 td, tr.green-bg-20 th {
  background-color: rgb(224.6, 239.8, 230.6) !important;
}

.green-border-20 {
  border-color: rgb(224.6, 239.8, 230.6) !important;
}

.green-30 {
  color: rgb(209.4, 232.2, 218.4) !important;
}

.green-bg-30, tr.green-bg-30 td, tr.green-bg-30 th {
  background-color: rgb(209.4, 232.2, 218.4) !important;
}

.green-border-30 {
  border-color: rgb(209.4, 232.2, 218.4) !important;
}

.green-40 {
  color: rgb(194.2, 224.6, 206.2) !important;
}

.green-bg-40, tr.green-bg-40 td, tr.green-bg-40 th {
  background-color: rgb(194.2, 224.6, 206.2) !important;
}

.green-border-40 {
  border-color: rgb(194.2, 224.6, 206.2) !important;
}

.green-50 {
  color: #b3d9c2 !important;
}

.green-bg-50, tr.green-bg-50 td, tr.green-bg-50 th {
  background-color: #b3d9c2 !important;
}

.green-border-50 {
  border-color: #b3d9c2 !important;
}

.green-60 {
  color: rgb(163.8, 209.4, 181.8) !important;
}

.green-bg-60, tr.green-bg-60 td, tr.green-bg-60 th {
  background-color: rgb(163.8, 209.4, 181.8) !important;
}

.green-border-60 {
  border-color: rgb(163.8, 209.4, 181.8) !important;
}

.green-70 {
  color: rgb(148.6, 201.8, 169.6) !important;
}

.green-bg-70, tr.green-bg-70 td, tr.green-bg-70 th {
  background-color: rgb(148.6, 201.8, 169.6) !important;
}

.green-border-70 {
  border-color: rgb(148.6, 201.8, 169.6) !important;
}

.green-80 {
  color: rgb(133.4, 194.2, 157.4) !important;
}

.green-bg-80, tr.green-bg-80 td, tr.green-bg-80 th {
  background-color: rgb(133.4, 194.2, 157.4) !important;
}

.green-border-80 {
  border-color: rgb(133.4, 194.2, 157.4) !important;
}

.green-90 {
  color: rgb(118.2, 186.6, 145.2) !important;
}

.green-bg-90, tr.green-bg-90 td, tr.green-bg-90 th {
  background-color: rgb(118.2, 186.6, 145.2) !important;
}

.green-border-90 {
  border-color: rgb(118.2, 186.6, 145.2) !important;
}

.green-110 {
  color: rgb(92.7, 161.1, 119.7) !important;
}

.green-bg-110, tr.green-bg-110 td, tr.green-bg-110 th {
  background-color: rgb(92.7, 161.1, 119.7) !important;
}

.green-border-110 {
  border-color: rgb(92.7, 161.1, 119.7) !important;
}

.green-120 {
  color: rgb(82.4, 143.2, 106.4) !important;
}

.green-bg-120, tr.green-bg-120 td, tr.green-bg-120 th {
  background-color: rgb(82.4, 143.2, 106.4) !important;
}

.green-border-120 {
  border-color: rgb(82.4, 143.2, 106.4) !important;
}

.green-130 {
  color: rgb(72.1, 125.3, 93.1) !important;
}

.green-bg-130, tr.green-bg-130 td, tr.green-bg-130 th {
  background-color: rgb(72.1, 125.3, 93.1) !important;
}

.green-border-130 {
  border-color: rgb(72.1, 125.3, 93.1) !important;
}

.green-140 {
  color: rgb(61.8, 107.4, 79.8) !important;
}

.green-bg-140, tr.green-bg-140 td, tr.green-bg-140 th {
  background-color: rgb(61.8, 107.4, 79.8) !important;
}

.green-border-140 {
  border-color: rgb(61.8, 107.4, 79.8) !important;
}

.green-150 {
  color: rgb(51.5, 89.5, 66.5) !important;
}

.green-bg-150, tr.green-bg-150 td, tr.green-bg-150 th {
  background-color: rgb(51.5, 89.5, 66.5) !important;
}

.green-border-150 {
  border-color: rgb(51.5, 89.5, 66.5) !important;
}

.green-160 {
  color: rgb(41.2, 71.6, 53.2) !important;
}

.green-bg-160, tr.green-bg-160 td, tr.green-bg-160 th {
  background-color: rgb(41.2, 71.6, 53.2) !important;
}

.green-border-160 {
  border-color: rgb(41.2, 71.6, 53.2) !important;
}

.green-170 {
  color: rgb(30.9, 53.7, 39.9) !important;
}

.green-bg-170, tr.green-bg-170 td, tr.green-bg-170 th {
  background-color: rgb(30.9, 53.7, 39.9) !important;
}

.green-border-170 {
  border-color: rgb(30.9, 53.7, 39.9) !important;
}

.green-180 {
  color: rgb(20.6, 35.8, 26.6) !important;
}

.green-bg-180, tr.green-bg-180 td, tr.green-bg-180 th {
  background-color: rgb(20.6, 35.8, 26.6) !important;
}

.green-border-180 {
  border-color: rgb(20.6, 35.8, 26.6) !important;
}

.green-190 {
  color: rgb(10.3, 17.9, 13.3) !important;
}

.green-bg-190, tr.green-bg-190 td, tr.green-bg-190 th {
  background-color: rgb(10.3, 17.9, 13.3) !important;
}

.green-border-190 {
  border-color: rgb(10.3, 17.9, 13.3) !important;
}

.red {
  color: #E60B22 !important;
}

.red-bg, tr.red-bg td, tr.red-bg th {
  background-color: #E60B22 !important;
}

.red-border {
  border-color: #E60B22 !important;
}

.red-10 {
  color: rgb(252.5, 230.6, 232.9) !important;
}

.red-bg-10, tr.red-bg-10 td, tr.red-bg-10 th {
  background-color: rgb(252.5, 230.6, 232.9) !important;
}

.red-border-10 {
  border-color: rgb(252.5, 230.6, 232.9) !important;
}

.red-20 {
  color: rgb(250, 206.2, 210.8) !important;
}

.red-bg-20, tr.red-bg-20 td, tr.red-bg-20 th {
  background-color: rgb(250, 206.2, 210.8) !important;
}

.red-border-20 {
  border-color: rgb(250, 206.2, 210.8) !important;
}

.red-30 {
  color: rgb(247.5, 181.8, 188.7) !important;
}

.red-bg-30, tr.red-bg-30 td, tr.red-bg-30 th {
  background-color: rgb(247.5, 181.8, 188.7) !important;
}

.red-border-30 {
  border-color: rgb(247.5, 181.8, 188.7) !important;
}

.red-40 {
  color: rgb(245, 157.4, 166.6) !important;
}

.red-bg-40, tr.red-bg-40 td, tr.red-bg-40 th {
  background-color: rgb(245, 157.4, 166.6) !important;
}

.red-border-40 {
  border-color: rgb(245, 157.4, 166.6) !important;
}

.red-50 {
  color: rgb(242.5, 133, 144.5) !important;
}

.red-bg-50, tr.red-bg-50 td, tr.red-bg-50 th {
  background-color: rgb(242.5, 133, 144.5) !important;
}

.red-border-50 {
  border-color: rgb(242.5, 133, 144.5) !important;
}

.red-60 {
  color: rgb(240, 108.6, 122.4) !important;
}

.red-bg-60, tr.red-bg-60 td, tr.red-bg-60 th {
  background-color: rgb(240, 108.6, 122.4) !important;
}

.red-border-60 {
  border-color: rgb(240, 108.6, 122.4) !important;
}

.red-70 {
  color: rgb(237.5, 84.2, 100.3) !important;
}

.red-bg-70, tr.red-bg-70 td, tr.red-bg-70 th {
  background-color: rgb(237.5, 84.2, 100.3) !important;
}

.red-border-70 {
  border-color: rgb(237.5, 84.2, 100.3) !important;
}

.red-80 {
  color: rgb(235, 59.8, 78.2) !important;
}

.red-bg-80, tr.red-bg-80 td, tr.red-bg-80 th {
  background-color: rgb(235, 59.8, 78.2) !important;
}

.red-border-80 {
  border-color: rgb(235, 59.8, 78.2) !important;
}

.red-90 {
  color: rgb(232.5, 35.4, 56.1) !important;
}

.red-bg-90, tr.red-bg-90 td, tr.red-bg-90 th {
  background-color: rgb(232.5, 35.4, 56.1) !important;
}

.red-border-90 {
  border-color: rgb(232.5, 35.4, 56.1) !important;
}

.red-110 {
  color: rgb(207, 9.9, 30.6) !important;
}

.red-bg-110, tr.red-bg-110 td, tr.red-bg-110 th {
  background-color: rgb(207, 9.9, 30.6) !important;
}

.red-border-110 {
  border-color: rgb(207, 9.9, 30.6) !important;
}

.red-120 {
  color: rgb(184, 8.8, 27.2) !important;
}

.red-bg-120, tr.red-bg-120 td, tr.red-bg-120 th {
  background-color: rgb(184, 8.8, 27.2) !important;
}

.red-border-120 {
  border-color: rgb(184, 8.8, 27.2) !important;
}

.red-130 {
  color: rgb(161, 7.7, 23.8) !important;
}

.red-bg-130, tr.red-bg-130 td, tr.red-bg-130 th {
  background-color: rgb(161, 7.7, 23.8) !important;
}

.red-border-130 {
  border-color: rgb(161, 7.7, 23.8) !important;
}

.red-140 {
  color: rgb(138, 6.6, 20.4) !important;
}

.red-bg-140, tr.red-bg-140 td, tr.red-bg-140 th {
  background-color: rgb(138, 6.6, 20.4) !important;
}

.red-border-140 {
  border-color: rgb(138, 6.6, 20.4) !important;
}

.red-150 {
  color: rgb(115, 5.5, 17) !important;
}

.red-bg-150, tr.red-bg-150 td, tr.red-bg-150 th {
  background-color: rgb(115, 5.5, 17) !important;
}

.red-border-150 {
  border-color: rgb(115, 5.5, 17) !important;
}

.red-160 {
  color: rgb(92, 4.4, 13.6) !important;
}

.red-bg-160, tr.red-bg-160 td, tr.red-bg-160 th {
  background-color: rgb(92, 4.4, 13.6) !important;
}

.red-border-160 {
  border-color: rgb(92, 4.4, 13.6) !important;
}

.red-170 {
  color: rgb(69, 3.3, 10.2) !important;
}

.red-bg-170, tr.red-bg-170 td, tr.red-bg-170 th {
  background-color: rgb(69, 3.3, 10.2) !important;
}

.red-border-170 {
  border-color: rgb(69, 3.3, 10.2) !important;
}

.red-180 {
  color: rgb(46, 2.2, 6.8) !important;
}

.red-bg-180, tr.red-bg-180 td, tr.red-bg-180 th {
  background-color: rgb(46, 2.2, 6.8) !important;
}

.red-border-180 {
  border-color: rgb(46, 2.2, 6.8) !important;
}

.red-190 {
  color: rgb(23, 1.1, 3.4) !important;
}

.red-bg-190, tr.red-bg-190 td, tr.red-bg-190 th {
  background-color: rgb(23, 1.1, 3.4) !important;
}

.red-border-190 {
  border-color: rgb(23, 1.1, 3.4) !important;
}

.white {
  color: #ffffff !important;
}

.white-bg, tr.white-bg td, tr.white-bg th {
  background-color: #ffffff !important;
}

.white-border {
  border-color: #ffffff !important;
}

.white-10 {
  color: white !important;
}

.white-bg-10, tr.white-bg-10 td, tr.white-bg-10 th {
  background-color: white !important;
}

.white-border-10 {
  border-color: white !important;
}

.white-20 {
  color: white !important;
}

.white-bg-20, tr.white-bg-20 td, tr.white-bg-20 th {
  background-color: white !important;
}

.white-border-20 {
  border-color: white !important;
}

.white-30 {
  color: white !important;
}

.white-bg-30, tr.white-bg-30 td, tr.white-bg-30 th {
  background-color: white !important;
}

.white-border-30 {
  border-color: white !important;
}

.white-40 {
  color: white !important;
}

.white-bg-40, tr.white-bg-40 td, tr.white-bg-40 th {
  background-color: white !important;
}

.white-border-40 {
  border-color: white !important;
}

.white-50 {
  color: white !important;
}

.white-bg-50, tr.white-bg-50 td, tr.white-bg-50 th {
  background-color: white !important;
}

.white-border-50 {
  border-color: white !important;
}

.white-60 {
  color: white !important;
}

.white-bg-60, tr.white-bg-60 td, tr.white-bg-60 th {
  background-color: white !important;
}

.white-border-60 {
  border-color: white !important;
}

.white-70 {
  color: white !important;
}

.white-bg-70, tr.white-bg-70 td, tr.white-bg-70 th {
  background-color: white !important;
}

.white-border-70 {
  border-color: white !important;
}

.white-80 {
  color: white !important;
}

.white-bg-80, tr.white-bg-80 td, tr.white-bg-80 th {
  background-color: white !important;
}

.white-border-80 {
  border-color: white !important;
}

.white-90 {
  color: white !important;
}

.white-bg-90, tr.white-bg-90 td, tr.white-bg-90 th {
  background-color: white !important;
}

.white-border-90 {
  border-color: white !important;
}

.white-110 {
  color: rgb(229.5, 229.5, 229.5) !important;
}

.white-bg-110, tr.white-bg-110 td, tr.white-bg-110 th {
  background-color: rgb(229.5, 229.5, 229.5) !important;
}

.white-border-110 {
  border-color: rgb(229.5, 229.5, 229.5) !important;
}

.white-120 {
  color: #cccccc !important;
}

.white-bg-120, tr.white-bg-120 td, tr.white-bg-120 th {
  background-color: #cccccc !important;
}

.white-border-120 {
  border-color: #cccccc !important;
}

.white-130 {
  color: rgb(178.5, 178.5, 178.5) !important;
}

.white-bg-130, tr.white-bg-130 td, tr.white-bg-130 th {
  background-color: rgb(178.5, 178.5, 178.5) !important;
}

.white-border-130 {
  border-color: rgb(178.5, 178.5, 178.5) !important;
}

.white-140 {
  color: #999999 !important;
}

.white-bg-140, tr.white-bg-140 td, tr.white-bg-140 th {
  background-color: #999999 !important;
}

.white-border-140 {
  border-color: #999999 !important;
}

.white-150 {
  color: rgb(127.5, 127.5, 127.5) !important;
}

.white-bg-150, tr.white-bg-150 td, tr.white-bg-150 th {
  background-color: rgb(127.5, 127.5, 127.5) !important;
}

.white-border-150 {
  border-color: rgb(127.5, 127.5, 127.5) !important;
}

.white-160 {
  color: #666666 !important;
}

.white-bg-160, tr.white-bg-160 td, tr.white-bg-160 th {
  background-color: #666666 !important;
}

.white-border-160 {
  border-color: #666666 !important;
}

.white-170 {
  color: rgb(76.5, 76.5, 76.5) !important;
}

.white-bg-170, tr.white-bg-170 td, tr.white-bg-170 th {
  background-color: rgb(76.5, 76.5, 76.5) !important;
}

.white-border-170 {
  border-color: rgb(76.5, 76.5, 76.5) !important;
}

.white-180 {
  color: #333333 !important;
}

.white-bg-180, tr.white-bg-180 td, tr.white-bg-180 th {
  background-color: #333333 !important;
}

.white-border-180 {
  border-color: #333333 !important;
}

.white-190 {
  color: rgb(25.5, 25.5, 25.5) !important;
}

.white-bg-190, tr.white-bg-190 td, tr.white-bg-190 th {
  background-color: rgb(25.5, 25.5, 25.5) !important;
}

.white-border-190 {
  border-color: rgb(25.5, 25.5, 25.5) !important;
}

.grey {
  color: #666666 !important;
}

.grey-bg, tr.grey-bg td, tr.grey-bg th {
  background-color: #666666 !important;
}

.grey-border {
  border-color: #666666 !important;
}

.grey-10 {
  color: rgb(239.7, 239.7, 239.7) !important;
}

.grey-bg-10, tr.grey-bg-10 td, tr.grey-bg-10 th {
  background-color: rgb(239.7, 239.7, 239.7) !important;
}

.grey-border-10 {
  border-color: rgb(239.7, 239.7, 239.7) !important;
}

.grey-20 {
  color: rgb(224.4, 224.4, 224.4) !important;
}

.grey-bg-20, tr.grey-bg-20 td, tr.grey-bg-20 th {
  background-color: rgb(224.4, 224.4, 224.4) !important;
}

.grey-border-20 {
  border-color: rgb(224.4, 224.4, 224.4) !important;
}

.grey-30 {
  color: rgb(209.1, 209.1, 209.1) !important;
}

.grey-bg-30, tr.grey-bg-30 td, tr.grey-bg-30 th {
  background-color: rgb(209.1, 209.1, 209.1) !important;
}

.grey-border-30 {
  border-color: rgb(209.1, 209.1, 209.1) !important;
}

.grey-40 {
  color: rgb(193.8, 193.8, 193.8) !important;
}

.grey-bg-40, tr.grey-bg-40 td, tr.grey-bg-40 th {
  background-color: rgb(193.8, 193.8, 193.8) !important;
}

.grey-border-40 {
  border-color: rgb(193.8, 193.8, 193.8) !important;
}

.grey-50 {
  color: rgb(178.5, 178.5, 178.5) !important;
}

.grey-bg-50, tr.grey-bg-50 td, tr.grey-bg-50 th {
  background-color: rgb(178.5, 178.5, 178.5) !important;
}

.grey-border-50 {
  border-color: rgb(178.5, 178.5, 178.5) !important;
}

.grey-60 {
  color: rgb(163.2, 163.2, 163.2) !important;
}

.grey-bg-60, tr.grey-bg-60 td, tr.grey-bg-60 th {
  background-color: rgb(163.2, 163.2, 163.2) !important;
}

.grey-border-60 {
  border-color: rgb(163.2, 163.2, 163.2) !important;
}

.grey-70 {
  color: rgb(147.9, 147.9, 147.9) !important;
}

.grey-bg-70, tr.grey-bg-70 td, tr.grey-bg-70 th {
  background-color: rgb(147.9, 147.9, 147.9) !important;
}

.grey-border-70 {
  border-color: rgb(147.9, 147.9, 147.9) !important;
}

.grey-80 {
  color: rgb(132.6, 132.6, 132.6) !important;
}

.grey-bg-80, tr.grey-bg-80 td, tr.grey-bg-80 th {
  background-color: rgb(132.6, 132.6, 132.6) !important;
}

.grey-border-80 {
  border-color: rgb(132.6, 132.6, 132.6) !important;
}

.grey-90 {
  color: rgb(117.3, 117.3, 117.3) !important;
}

.grey-bg-90, tr.grey-bg-90 td, tr.grey-bg-90 th {
  background-color: rgb(117.3, 117.3, 117.3) !important;
}

.grey-border-90 {
  border-color: rgb(117.3, 117.3, 117.3) !important;
}

.grey-110 {
  color: rgb(91.8, 91.8, 91.8) !important;
}

.grey-bg-110, tr.grey-bg-110 td, tr.grey-bg-110 th {
  background-color: rgb(91.8, 91.8, 91.8) !important;
}

.grey-border-110 {
  border-color: rgb(91.8, 91.8, 91.8) !important;
}

.grey-120 {
  color: rgb(81.6, 81.6, 81.6) !important;
}

.grey-bg-120, tr.grey-bg-120 td, tr.grey-bg-120 th {
  background-color: rgb(81.6, 81.6, 81.6) !important;
}

.grey-border-120 {
  border-color: rgb(81.6, 81.6, 81.6) !important;
}

.grey-130 {
  color: rgb(71.4, 71.4, 71.4) !important;
}

.grey-bg-130, tr.grey-bg-130 td, tr.grey-bg-130 th {
  background-color: rgb(71.4, 71.4, 71.4) !important;
}

.grey-border-130 {
  border-color: rgb(71.4, 71.4, 71.4) !important;
}

.grey-140 {
  color: rgb(61.2, 61.2, 61.2) !important;
}

.grey-bg-140, tr.grey-bg-140 td, tr.grey-bg-140 th {
  background-color: rgb(61.2, 61.2, 61.2) !important;
}

.grey-border-140 {
  border-color: rgb(61.2, 61.2, 61.2) !important;
}

.grey-150 {
  color: #333333 !important;
}

.grey-bg-150, tr.grey-bg-150 td, tr.grey-bg-150 th {
  background-color: #333333 !important;
}

.grey-border-150 {
  border-color: #333333 !important;
}

.grey-160 {
  color: rgb(40.8, 40.8, 40.8) !important;
}

.grey-bg-160, tr.grey-bg-160 td, tr.grey-bg-160 th {
  background-color: rgb(40.8, 40.8, 40.8) !important;
}

.grey-border-160 {
  border-color: rgb(40.8, 40.8, 40.8) !important;
}

.grey-170 {
  color: rgb(30.6, 30.6, 30.6) !important;
}

.grey-bg-170, tr.grey-bg-170 td, tr.grey-bg-170 th {
  background-color: rgb(30.6, 30.6, 30.6) !important;
}

.grey-border-170 {
  border-color: rgb(30.6, 30.6, 30.6) !important;
}

.grey-180 {
  color: rgb(20.4, 20.4, 20.4) !important;
}

.grey-bg-180, tr.grey-bg-180 td, tr.grey-bg-180 th {
  background-color: rgb(20.4, 20.4, 20.4) !important;
}

.grey-border-180 {
  border-color: rgb(20.4, 20.4, 20.4) !important;
}

.grey-190 {
  color: rgb(10.2, 10.2, 10.2) !important;
}

.grey-bg-190, tr.grey-bg-190 td, tr.grey-bg-190 th {
  background-color: rgb(10.2, 10.2, 10.2) !important;
}

.grey-border-190 {
  border-color: rgb(10.2, 10.2, 10.2) !important;
}

.grey2 {
  color: #bbbbbb !important;
}

.grey2-bg, tr.grey2-bg td, tr.grey2-bg th {
  background-color: #bbbbbb !important;
}

.grey2-border {
  border-color: #bbbbbb !important;
}

.grey2-10 {
  color: rgb(248.2, 248.2, 248.2) !important;
}

.grey2-bg-10, tr.grey2-bg-10 td, tr.grey2-bg-10 th {
  background-color: rgb(248.2, 248.2, 248.2) !important;
}

.grey2-border-10 {
  border-color: rgb(248.2, 248.2, 248.2) !important;
}

.grey2-20 {
  color: rgb(241.4, 241.4, 241.4) !important;
}

.grey2-bg-20, tr.grey2-bg-20 td, tr.grey2-bg-20 th {
  background-color: rgb(241.4, 241.4, 241.4) !important;
}

.grey2-border-20 {
  border-color: rgb(241.4, 241.4, 241.4) !important;
}

.grey2-30 {
  color: rgb(234.6, 234.6, 234.6) !important;
}

.grey2-bg-30, tr.grey2-bg-30 td, tr.grey2-bg-30 th {
  background-color: rgb(234.6, 234.6, 234.6) !important;
}

.grey2-border-30 {
  border-color: rgb(234.6, 234.6, 234.6) !important;
}

.grey2-40 {
  color: rgb(227.8, 227.8, 227.8) !important;
}

.grey2-bg-40, tr.grey2-bg-40 td, tr.grey2-bg-40 th {
  background-color: rgb(227.8, 227.8, 227.8) !important;
}

.grey2-border-40 {
  border-color: rgb(227.8, 227.8, 227.8) !important;
}

.grey2-50 {
  color: #dddddd !important;
}

.grey2-bg-50, tr.grey2-bg-50 td, tr.grey2-bg-50 th {
  background-color: #dddddd !important;
}

.grey2-border-50 {
  border-color: #dddddd !important;
}

.grey2-60 {
  color: rgb(214.2, 214.2, 214.2) !important;
}

.grey2-bg-60, tr.grey2-bg-60 td, tr.grey2-bg-60 th {
  background-color: rgb(214.2, 214.2, 214.2) !important;
}

.grey2-border-60 {
  border-color: rgb(214.2, 214.2, 214.2) !important;
}

.grey2-70 {
  color: rgb(207.4, 207.4, 207.4) !important;
}

.grey2-bg-70, tr.grey2-bg-70 td, tr.grey2-bg-70 th {
  background-color: rgb(207.4, 207.4, 207.4) !important;
}

.grey2-border-70 {
  border-color: rgb(207.4, 207.4, 207.4) !important;
}

.grey2-80 {
  color: rgb(200.6, 200.6, 200.6) !important;
}

.grey2-bg-80, tr.grey2-bg-80 td, tr.grey2-bg-80 th {
  background-color: rgb(200.6, 200.6, 200.6) !important;
}

.grey2-border-80 {
  border-color: rgb(200.6, 200.6, 200.6) !important;
}

.grey2-90 {
  color: rgb(193.8, 193.8, 193.8) !important;
}

.grey2-bg-90, tr.grey2-bg-90 td, tr.grey2-bg-90 th {
  background-color: rgb(193.8, 193.8, 193.8) !important;
}

.grey2-border-90 {
  border-color: rgb(193.8, 193.8, 193.8) !important;
}

.grey2-110 {
  color: rgb(168.3, 168.3, 168.3) !important;
}

.grey2-bg-110, tr.grey2-bg-110 td, tr.grey2-bg-110 th {
  background-color: rgb(168.3, 168.3, 168.3) !important;
}

.grey2-border-110 {
  border-color: rgb(168.3, 168.3, 168.3) !important;
}

.grey2-120 {
  color: rgb(149.6, 149.6, 149.6) !important;
}

.grey2-bg-120, tr.grey2-bg-120 td, tr.grey2-bg-120 th {
  background-color: rgb(149.6, 149.6, 149.6) !important;
}

.grey2-border-120 {
  border-color: rgb(149.6, 149.6, 149.6) !important;
}

.grey2-130 {
  color: rgb(130.9, 130.9, 130.9) !important;
}

.grey2-bg-130, tr.grey2-bg-130 td, tr.grey2-bg-130 th {
  background-color: rgb(130.9, 130.9, 130.9) !important;
}

.grey2-border-130 {
  border-color: rgb(130.9, 130.9, 130.9) !important;
}

.grey2-140 {
  color: rgb(112.2, 112.2, 112.2) !important;
}

.grey2-bg-140, tr.grey2-bg-140 td, tr.grey2-bg-140 th {
  background-color: rgb(112.2, 112.2, 112.2) !important;
}

.grey2-border-140 {
  border-color: rgb(112.2, 112.2, 112.2) !important;
}

.grey2-150 {
  color: rgb(93.5, 93.5, 93.5) !important;
}

.grey2-bg-150, tr.grey2-bg-150 td, tr.grey2-bg-150 th {
  background-color: rgb(93.5, 93.5, 93.5) !important;
}

.grey2-border-150 {
  border-color: rgb(93.5, 93.5, 93.5) !important;
}

.grey2-160 {
  color: rgb(74.8, 74.8, 74.8) !important;
}

.grey2-bg-160, tr.grey2-bg-160 td, tr.grey2-bg-160 th {
  background-color: rgb(74.8, 74.8, 74.8) !important;
}

.grey2-border-160 {
  border-color: rgb(74.8, 74.8, 74.8) !important;
}

.grey2-170 {
  color: rgb(56.1, 56.1, 56.1) !important;
}

.grey2-bg-170, tr.grey2-bg-170 td, tr.grey2-bg-170 th {
  background-color: rgb(56.1, 56.1, 56.1) !important;
}

.grey2-border-170 {
  border-color: rgb(56.1, 56.1, 56.1) !important;
}

.grey2-180 {
  color: rgb(37.4, 37.4, 37.4) !important;
}

.grey2-bg-180, tr.grey2-bg-180 td, tr.grey2-bg-180 th {
  background-color: rgb(37.4, 37.4, 37.4) !important;
}

.grey2-border-180 {
  border-color: rgb(37.4, 37.4, 37.4) !important;
}

.grey2-190 {
  color: rgb(18.7, 18.7, 18.7) !important;
}

.grey2-bg-190, tr.grey2-bg-190 td, tr.grey2-bg-190 th {
  background-color: rgb(18.7, 18.7, 18.7) !important;
}

.grey2-border-190 {
  border-color: rgb(18.7, 18.7, 18.7) !important;
}

.dark {
  color: #333333 !important;
}

.dark-bg, tr.dark-bg td, tr.dark-bg th {
  background-color: #333333 !important;
}

.dark-border {
  border-color: #333333 !important;
}

.dark-10 {
  color: rgb(234.6, 234.6, 234.6) !important;
}

.dark-bg-10, tr.dark-bg-10 td, tr.dark-bg-10 th {
  background-color: rgb(234.6, 234.6, 234.6) !important;
}

.dark-border-10 {
  border-color: rgb(234.6, 234.6, 234.6) !important;
}

.dark-20 {
  color: rgb(214.2, 214.2, 214.2) !important;
}

.dark-bg-20, tr.dark-bg-20 td, tr.dark-bg-20 th {
  background-color: rgb(214.2, 214.2, 214.2) !important;
}

.dark-border-20 {
  border-color: rgb(214.2, 214.2, 214.2) !important;
}

.dark-30 {
  color: rgb(193.8, 193.8, 193.8) !important;
}

.dark-bg-30, tr.dark-bg-30 td, tr.dark-bg-30 th {
  background-color: rgb(193.8, 193.8, 193.8) !important;
}

.dark-border-30 {
  border-color: rgb(193.8, 193.8, 193.8) !important;
}

.dark-40 {
  color: rgb(173.4, 173.4, 173.4) !important;
}

.dark-bg-40, tr.dark-bg-40 td, tr.dark-bg-40 th {
  background-color: rgb(173.4, 173.4, 173.4) !important;
}

.dark-border-40 {
  border-color: rgb(173.4, 173.4, 173.4) !important;
}

.dark-50 {
  color: #999999 !important;
}

.dark-bg-50, tr.dark-bg-50 td, tr.dark-bg-50 th {
  background-color: #999999 !important;
}

.dark-border-50 {
  border-color: #999999 !important;
}

.dark-60 {
  color: rgb(132.6, 132.6, 132.6) !important;
}

.dark-bg-60, tr.dark-bg-60 td, tr.dark-bg-60 th {
  background-color: rgb(132.6, 132.6, 132.6) !important;
}

.dark-border-60 {
  border-color: rgb(132.6, 132.6, 132.6) !important;
}

.dark-70 {
  color: rgb(112.2, 112.2, 112.2) !important;
}

.dark-bg-70, tr.dark-bg-70 td, tr.dark-bg-70 th {
  background-color: rgb(112.2, 112.2, 112.2) !important;
}

.dark-border-70 {
  border-color: rgb(112.2, 112.2, 112.2) !important;
}

.dark-80 {
  color: rgb(91.8, 91.8, 91.8) !important;
}

.dark-bg-80, tr.dark-bg-80 td, tr.dark-bg-80 th {
  background-color: rgb(91.8, 91.8, 91.8) !important;
}

.dark-border-80 {
  border-color: rgb(91.8, 91.8, 91.8) !important;
}

.dark-90 {
  color: rgb(71.4, 71.4, 71.4) !important;
}

.dark-bg-90, tr.dark-bg-90 td, tr.dark-bg-90 th {
  background-color: rgb(71.4, 71.4, 71.4) !important;
}

.dark-border-90 {
  border-color: rgb(71.4, 71.4, 71.4) !important;
}

.dark-110 {
  color: rgb(45.9, 45.9, 45.9) !important;
}

.dark-bg-110, tr.dark-bg-110 td, tr.dark-bg-110 th {
  background-color: rgb(45.9, 45.9, 45.9) !important;
}

.dark-border-110 {
  border-color: rgb(45.9, 45.9, 45.9) !important;
}

.dark-120 {
  color: rgb(40.8, 40.8, 40.8) !important;
}

.dark-bg-120, tr.dark-bg-120 td, tr.dark-bg-120 th {
  background-color: rgb(40.8, 40.8, 40.8) !important;
}

.dark-border-120 {
  border-color: rgb(40.8, 40.8, 40.8) !important;
}

.dark-130 {
  color: rgb(35.7, 35.7, 35.7) !important;
}

.dark-bg-130, tr.dark-bg-130 td, tr.dark-bg-130 th {
  background-color: rgb(35.7, 35.7, 35.7) !important;
}

.dark-border-130 {
  border-color: rgb(35.7, 35.7, 35.7) !important;
}

.dark-140 {
  color: rgb(30.6, 30.6, 30.6) !important;
}

.dark-bg-140, tr.dark-bg-140 td, tr.dark-bg-140 th {
  background-color: rgb(30.6, 30.6, 30.6) !important;
}

.dark-border-140 {
  border-color: rgb(30.6, 30.6, 30.6) !important;
}

.dark-150 {
  color: rgb(25.5, 25.5, 25.5) !important;
}

.dark-bg-150, tr.dark-bg-150 td, tr.dark-bg-150 th {
  background-color: rgb(25.5, 25.5, 25.5) !important;
}

.dark-border-150 {
  border-color: rgb(25.5, 25.5, 25.5) !important;
}

.dark-160 {
  color: rgb(20.4, 20.4, 20.4) !important;
}

.dark-bg-160, tr.dark-bg-160 td, tr.dark-bg-160 th {
  background-color: rgb(20.4, 20.4, 20.4) !important;
}

.dark-border-160 {
  border-color: rgb(20.4, 20.4, 20.4) !important;
}

.dark-170 {
  color: rgb(15.3, 15.3, 15.3) !important;
}

.dark-bg-170, tr.dark-bg-170 td, tr.dark-bg-170 th {
  background-color: rgb(15.3, 15.3, 15.3) !important;
}

.dark-border-170 {
  border-color: rgb(15.3, 15.3, 15.3) !important;
}

.dark-180 {
  color: rgb(10.2, 10.2, 10.2) !important;
}

.dark-bg-180, tr.dark-bg-180 td, tr.dark-bg-180 th {
  background-color: rgb(10.2, 10.2, 10.2) !important;
}

.dark-border-180 {
  border-color: rgb(10.2, 10.2, 10.2) !important;
}

.dark-190 {
  color: rgb(5.1, 5.1, 5.1) !important;
}

.dark-bg-190, tr.dark-bg-190 td, tr.dark-bg-190 th {
  background-color: rgb(5.1, 5.1, 5.1) !important;
}

.dark-border-190 {
  border-color: rgb(5.1, 5.1, 5.1) !important;
}

.light {
  color: #f5f5f5 !important;
}

.light-bg, tr.light-bg td, tr.light-bg th {
  background-color: #f5f5f5 !important;
}

.light-border {
  border-color: #f5f5f5 !important;
}

.light-10 {
  color: #fefefe !important;
}

.light-bg-10, tr.light-bg-10 td, tr.light-bg-10 th {
  background-color: #fefefe !important;
}

.light-border-10 {
  border-color: #fefefe !important;
}

.light-20 {
  color: #fdfdfd !important;
}

.light-bg-20, tr.light-bg-20 td, tr.light-bg-20 th {
  background-color: #fdfdfd !important;
}

.light-border-20 {
  border-color: #fdfdfd !important;
}

.light-30 {
  color: #fcfcfc !important;
}

.light-bg-30, tr.light-bg-30 td, tr.light-bg-30 th {
  background-color: #fcfcfc !important;
}

.light-border-30 {
  border-color: #fcfcfc !important;
}

.light-40 {
  color: #fbfbfb !important;
}

.light-bg-40, tr.light-bg-40 td, tr.light-bg-40 th {
  background-color: #fbfbfb !important;
}

.light-border-40 {
  border-color: #fbfbfb !important;
}

.light-50 {
  color: #fafafa !important;
}

.light-bg-50, tr.light-bg-50 td, tr.light-bg-50 th {
  background-color: #fafafa !important;
}

.light-border-50 {
  border-color: #fafafa !important;
}

.light-60 {
  color: #f9f9f9 !important;
}

.light-bg-60, tr.light-bg-60 td, tr.light-bg-60 th {
  background-color: #f9f9f9 !important;
}

.light-border-60 {
  border-color: #f9f9f9 !important;
}

.light-70 {
  color: #f8f8f8 !important;
}

.light-bg-70, tr.light-bg-70 td, tr.light-bg-70 th {
  background-color: #f8f8f8 !important;
}

.light-border-70 {
  border-color: #f8f8f8 !important;
}

.light-80 {
  color: #f7f7f7 !important;
}

.light-bg-80, tr.light-bg-80 td, tr.light-bg-80 th {
  background-color: #f7f7f7 !important;
}

.light-border-80 {
  border-color: #f7f7f7 !important;
}

.light-90 {
  color: #f6f6f6 !important;
}

.light-bg-90, tr.light-bg-90 td, tr.light-bg-90 th {
  background-color: #f6f6f6 !important;
}

.light-border-90 {
  border-color: #f6f6f6 !important;
}

.light-110 {
  color: rgb(220.5, 220.5, 220.5) !important;
}

.light-bg-110, tr.light-bg-110 td, tr.light-bg-110 th {
  background-color: rgb(220.5, 220.5, 220.5) !important;
}

.light-border-110 {
  border-color: rgb(220.5, 220.5, 220.5) !important;
}

.light-120 {
  color: #c4c4c4 !important;
}

.light-bg-120, tr.light-bg-120 td, tr.light-bg-120 th {
  background-color: #c4c4c4 !important;
}

.light-border-120 {
  border-color: #c4c4c4 !important;
}

.light-130 {
  color: rgb(171.5, 171.5, 171.5) !important;
}

.light-bg-130, tr.light-bg-130 td, tr.light-bg-130 th {
  background-color: rgb(171.5, 171.5, 171.5) !important;
}

.light-border-130 {
  border-color: rgb(171.5, 171.5, 171.5) !important;
}

.light-140 {
  color: #939393 !important;
}

.light-bg-140, tr.light-bg-140 td, tr.light-bg-140 th {
  background-color: #939393 !important;
}

.light-border-140 {
  border-color: #939393 !important;
}

.light-150 {
  color: rgb(122.5, 122.5, 122.5) !important;
}

.light-bg-150, tr.light-bg-150 td, tr.light-bg-150 th {
  background-color: rgb(122.5, 122.5, 122.5) !important;
}

.light-border-150 {
  border-color: rgb(122.5, 122.5, 122.5) !important;
}

.light-160 {
  color: #626262 !important;
}

.light-bg-160, tr.light-bg-160 td, tr.light-bg-160 th {
  background-color: #626262 !important;
}

.light-border-160 {
  border-color: #626262 !important;
}

.light-170 {
  color: rgb(73.5, 73.5, 73.5) !important;
}

.light-bg-170, tr.light-bg-170 td, tr.light-bg-170 th {
  background-color: rgb(73.5, 73.5, 73.5) !important;
}

.light-border-170 {
  border-color: rgb(73.5, 73.5, 73.5) !important;
}

.light-180 {
  color: #313131 !important;
}

.light-bg-180, tr.light-bg-180 td, tr.light-bg-180 th {
  background-color: #313131 !important;
}

.light-border-180 {
  border-color: #313131 !important;
}

.light-190 {
  color: rgb(24.5, 24.5, 24.5) !important;
}

.light-bg-190, tr.light-bg-190 td, tr.light-bg-190 th {
  background-color: rgb(24.5, 24.5, 24.5) !important;
}

.light-border-190 {
  border-color: rgb(24.5, 24.5, 24.5) !important;
}

.darkgrey {
  color: #535353 !important;
}

.darkgrey-bg, tr.darkgrey-bg td, tr.darkgrey-bg th {
  background-color: #535353 !important;
}

.darkgrey-border {
  border-color: #535353 !important;
}

.darkgrey-10 {
  color: rgb(237.8, 237.8, 237.8) !important;
}

.darkgrey-bg-10, tr.darkgrey-bg-10 td, tr.darkgrey-bg-10 th {
  background-color: rgb(237.8, 237.8, 237.8) !important;
}

.darkgrey-border-10 {
  border-color: rgb(237.8, 237.8, 237.8) !important;
}

.darkgrey-20 {
  color: rgb(220.6, 220.6, 220.6) !important;
}

.darkgrey-bg-20, tr.darkgrey-bg-20 td, tr.darkgrey-bg-20 th {
  background-color: rgb(220.6, 220.6, 220.6) !important;
}

.darkgrey-border-20 {
  border-color: rgb(220.6, 220.6, 220.6) !important;
}

.darkgrey-30 {
  color: rgb(203.4, 203.4, 203.4) !important;
}

.darkgrey-bg-30, tr.darkgrey-bg-30 td, tr.darkgrey-bg-30 th {
  background-color: rgb(203.4, 203.4, 203.4) !important;
}

.darkgrey-border-30 {
  border-color: rgb(203.4, 203.4, 203.4) !important;
}

.darkgrey-40 {
  color: rgb(186.2, 186.2, 186.2) !important;
}

.darkgrey-bg-40, tr.darkgrey-bg-40 td, tr.darkgrey-bg-40 th {
  background-color: rgb(186.2, 186.2, 186.2) !important;
}

.darkgrey-border-40 {
  border-color: rgb(186.2, 186.2, 186.2) !important;
}

.darkgrey-50 {
  color: darkgray !important;
}

.darkgrey-bg-50, tr.darkgrey-bg-50 td, tr.darkgrey-bg-50 th {
  background-color: darkgray !important;
}

.darkgrey-border-50 {
  border-color: darkgray !important;
}

.darkgrey-60 {
  color: rgb(151.8, 151.8, 151.8) !important;
}

.darkgrey-bg-60, tr.darkgrey-bg-60 td, tr.darkgrey-bg-60 th {
  background-color: rgb(151.8, 151.8, 151.8) !important;
}

.darkgrey-border-60 {
  border-color: rgb(151.8, 151.8, 151.8) !important;
}

.darkgrey-70 {
  color: rgb(134.6, 134.6, 134.6) !important;
}

.darkgrey-bg-70, tr.darkgrey-bg-70 td, tr.darkgrey-bg-70 th {
  background-color: rgb(134.6, 134.6, 134.6) !important;
}

.darkgrey-border-70 {
  border-color: rgb(134.6, 134.6, 134.6) !important;
}

.darkgrey-80 {
  color: rgb(117.4, 117.4, 117.4) !important;
}

.darkgrey-bg-80, tr.darkgrey-bg-80 td, tr.darkgrey-bg-80 th {
  background-color: rgb(117.4, 117.4, 117.4) !important;
}

.darkgrey-border-80 {
  border-color: rgb(117.4, 117.4, 117.4) !important;
}

.darkgrey-90 {
  color: rgb(100.2, 100.2, 100.2) !important;
}

.darkgrey-bg-90, tr.darkgrey-bg-90 td, tr.darkgrey-bg-90 th {
  background-color: rgb(100.2, 100.2, 100.2) !important;
}

.darkgrey-border-90 {
  border-color: rgb(100.2, 100.2, 100.2) !important;
}

.darkgrey-110 {
  color: rgb(74.7, 74.7, 74.7) !important;
}

.darkgrey-bg-110, tr.darkgrey-bg-110 td, tr.darkgrey-bg-110 th {
  background-color: rgb(74.7, 74.7, 74.7) !important;
}

.darkgrey-border-110 {
  border-color: rgb(74.7, 74.7, 74.7) !important;
}

.darkgrey-120 {
  color: rgb(66.4, 66.4, 66.4) !important;
}

.darkgrey-bg-120, tr.darkgrey-bg-120 td, tr.darkgrey-bg-120 th {
  background-color: rgb(66.4, 66.4, 66.4) !important;
}

.darkgrey-border-120 {
  border-color: rgb(66.4, 66.4, 66.4) !important;
}

.darkgrey-130 {
  color: rgb(58.1, 58.1, 58.1) !important;
}

.darkgrey-bg-130, tr.darkgrey-bg-130 td, tr.darkgrey-bg-130 th {
  background-color: rgb(58.1, 58.1, 58.1) !important;
}

.darkgrey-border-130 {
  border-color: rgb(58.1, 58.1, 58.1) !important;
}

.darkgrey-140 {
  color: rgb(49.8, 49.8, 49.8) !important;
}

.darkgrey-bg-140, tr.darkgrey-bg-140 td, tr.darkgrey-bg-140 th {
  background-color: rgb(49.8, 49.8, 49.8) !important;
}

.darkgrey-border-140 {
  border-color: rgb(49.8, 49.8, 49.8) !important;
}

.darkgrey-150 {
  color: rgb(41.5, 41.5, 41.5) !important;
}

.darkgrey-bg-150, tr.darkgrey-bg-150 td, tr.darkgrey-bg-150 th {
  background-color: rgb(41.5, 41.5, 41.5) !important;
}

.darkgrey-border-150 {
  border-color: rgb(41.5, 41.5, 41.5) !important;
}

.darkgrey-160 {
  color: rgb(33.2, 33.2, 33.2) !important;
}

.darkgrey-bg-160, tr.darkgrey-bg-160 td, tr.darkgrey-bg-160 th {
  background-color: rgb(33.2, 33.2, 33.2) !important;
}

.darkgrey-border-160 {
  border-color: rgb(33.2, 33.2, 33.2) !important;
}

.darkgrey-170 {
  color: rgb(24.9, 24.9, 24.9) !important;
}

.darkgrey-bg-170, tr.darkgrey-bg-170 td, tr.darkgrey-bg-170 th {
  background-color: rgb(24.9, 24.9, 24.9) !important;
}

.darkgrey-border-170 {
  border-color: rgb(24.9, 24.9, 24.9) !important;
}

.darkgrey-180 {
  color: rgb(16.6, 16.6, 16.6) !important;
}

.darkgrey-bg-180, tr.darkgrey-bg-180 td, tr.darkgrey-bg-180 th {
  background-color: rgb(16.6, 16.6, 16.6) !important;
}

.darkgrey-border-180 {
  border-color: rgb(16.6, 16.6, 16.6) !important;
}

.darkgrey-190 {
  color: rgb(8.3, 8.3, 8.3) !important;
}

.darkgrey-bg-190, tr.darkgrey-bg-190 td, tr.darkgrey-bg-190 th {
  background-color: rgb(8.3, 8.3, 8.3) !important;
}

.darkgrey-border-190 {
  border-color: rgb(8.3, 8.3, 8.3) !important;
}

.black {
  color: #222222 !important;
}

.black-bg, tr.black-bg td, tr.black-bg th {
  background-color: #222222 !important;
}

.black-border {
  border-color: #222222 !important;
}

.black-10 {
  color: rgb(232.9, 232.9, 232.9) !important;
}

.black-bg-10, tr.black-bg-10 td, tr.black-bg-10 th {
  background-color: rgb(232.9, 232.9, 232.9) !important;
}

.black-border-10 {
  border-color: rgb(232.9, 232.9, 232.9) !important;
}

.black-20 {
  color: rgb(210.8, 210.8, 210.8) !important;
}

.black-bg-20, tr.black-bg-20 td, tr.black-bg-20 th {
  background-color: rgb(210.8, 210.8, 210.8) !important;
}

.black-border-20 {
  border-color: rgb(210.8, 210.8, 210.8) !important;
}

.black-30 {
  color: rgb(188.7, 188.7, 188.7) !important;
}

.black-bg-30, tr.black-bg-30 td, tr.black-bg-30 th {
  background-color: rgb(188.7, 188.7, 188.7) !important;
}

.black-border-30 {
  border-color: rgb(188.7, 188.7, 188.7) !important;
}

.black-40 {
  color: rgb(166.6, 166.6, 166.6) !important;
}

.black-bg-40, tr.black-bg-40 td, tr.black-bg-40 th {
  background-color: rgb(166.6, 166.6, 166.6) !important;
}

.black-border-40 {
  border-color: rgb(166.6, 166.6, 166.6) !important;
}

.black-50 {
  color: rgb(144.5, 144.5, 144.5) !important;
}

.black-bg-50, tr.black-bg-50 td, tr.black-bg-50 th {
  background-color: rgb(144.5, 144.5, 144.5) !important;
}

.black-border-50 {
  border-color: rgb(144.5, 144.5, 144.5) !important;
}

.black-60 {
  color: rgb(122.4, 122.4, 122.4) !important;
}

.black-bg-60, tr.black-bg-60 td, tr.black-bg-60 th {
  background-color: rgb(122.4, 122.4, 122.4) !important;
}

.black-border-60 {
  border-color: rgb(122.4, 122.4, 122.4) !important;
}

.black-70 {
  color: rgb(100.3, 100.3, 100.3) !important;
}

.black-bg-70, tr.black-bg-70 td, tr.black-bg-70 th {
  background-color: rgb(100.3, 100.3, 100.3) !important;
}

.black-border-70 {
  border-color: rgb(100.3, 100.3, 100.3) !important;
}

.black-80 {
  color: rgb(78.2, 78.2, 78.2) !important;
}

.black-bg-80, tr.black-bg-80 td, tr.black-bg-80 th {
  background-color: rgb(78.2, 78.2, 78.2) !important;
}

.black-border-80 {
  border-color: rgb(78.2, 78.2, 78.2) !important;
}

.black-90 {
  color: rgb(56.1, 56.1, 56.1) !important;
}

.black-bg-90, tr.black-bg-90 td, tr.black-bg-90 th {
  background-color: rgb(56.1, 56.1, 56.1) !important;
}

.black-border-90 {
  border-color: rgb(56.1, 56.1, 56.1) !important;
}

.black-110 {
  color: rgb(30.6, 30.6, 30.6) !important;
}

.black-bg-110, tr.black-bg-110 td, tr.black-bg-110 th {
  background-color: rgb(30.6, 30.6, 30.6) !important;
}

.black-border-110 {
  border-color: rgb(30.6, 30.6, 30.6) !important;
}

.black-120 {
  color: rgb(27.2, 27.2, 27.2) !important;
}

.black-bg-120, tr.black-bg-120 td, tr.black-bg-120 th {
  background-color: rgb(27.2, 27.2, 27.2) !important;
}

.black-border-120 {
  border-color: rgb(27.2, 27.2, 27.2) !important;
}

.black-130 {
  color: rgb(23.8, 23.8, 23.8) !important;
}

.black-bg-130, tr.black-bg-130 td, tr.black-bg-130 th {
  background-color: rgb(23.8, 23.8, 23.8) !important;
}

.black-border-130 {
  border-color: rgb(23.8, 23.8, 23.8) !important;
}

.black-140 {
  color: rgb(20.4, 20.4, 20.4) !important;
}

.black-bg-140, tr.black-bg-140 td, tr.black-bg-140 th {
  background-color: rgb(20.4, 20.4, 20.4) !important;
}

.black-border-140 {
  border-color: rgb(20.4, 20.4, 20.4) !important;
}

.black-150 {
  color: #111111 !important;
}

.black-bg-150, tr.black-bg-150 td, tr.black-bg-150 th {
  background-color: #111111 !important;
}

.black-border-150 {
  border-color: #111111 !important;
}

.black-160 {
  color: rgb(13.6, 13.6, 13.6) !important;
}

.black-bg-160, tr.black-bg-160 td, tr.black-bg-160 th {
  background-color: rgb(13.6, 13.6, 13.6) !important;
}

.black-border-160 {
  border-color: rgb(13.6, 13.6, 13.6) !important;
}

.black-170 {
  color: rgb(10.2, 10.2, 10.2) !important;
}

.black-bg-170, tr.black-bg-170 td, tr.black-bg-170 th {
  background-color: rgb(10.2, 10.2, 10.2) !important;
}

.black-border-170 {
  border-color: rgb(10.2, 10.2, 10.2) !important;
}

.black-180 {
  color: rgb(6.8, 6.8, 6.8) !important;
}

.black-bg-180, tr.black-bg-180 td, tr.black-bg-180 th {
  background-color: rgb(6.8, 6.8, 6.8) !important;
}

.black-border-180 {
  border-color: rgb(6.8, 6.8, 6.8) !important;
}

.black-190 {
  color: rgb(3.4, 3.4, 3.4) !important;
}

.black-bg-190, tr.black-bg-190 td, tr.black-bg-190 th {
  background-color: rgb(3.4, 3.4, 3.4) !important;
}

.black-border-190 {
  border-color: rgb(3.4, 3.4, 3.4) !important;
}

/**********************************
COLORS
**********************************/
.black {
  color: #222222 !important;
}

.white {
  color: #ffffff !important;
}

.white-10 {
  color: rgba(255, 255, 255, 0.1) !important;
}

.white-20 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.white-30 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.white-40 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.white-80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.white-90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blue {
  color: #0d67b2 !important;
}

.green {
  color: #67b385 !important;
}

.yellow {
  color: #f0c208 !important;
}

.red {
  color: #E60B22 !important;
}

.orange {
  color: #eb6615 !important;
}

.dark {
  color: #333333 !important;
}

.light {
  color: #f5f5f5 !important;
}

.light {
  color: #d9d9d9 !important;
}

.darkgrey {
  color: #535353 !important;
}

/**********************************
BG
**********************************/
.black-bg {
  background-color: #222222 !important;
}

.dark-bg {
  background-color: #333333 !important;
}

.lightgrey-bg {
  background-color: #d9d9d9 !important;
}

.lightgrey-bg2 {
  background-color: rgb(239.8, 239.8, 239.8) !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.blue-bg {
  background-color: #0d67b2 !important;
}

.green-bg {
  background-color: #67b385 !important;
}

.yellow-bg {
  background-color: #f0c208 !important;
}

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

.orange-bg {
  background-color: #eb6615 !important;
}

.transparent-bg-light-30 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

/**********************************
BORDER
**********************************/
.black-border {
  border-color: #222222 !important;
}

.white-border {
  border-color: #ffffff !important;
}

.blue-border {
  border-color: #0d67b2 !important;
}

.green-border {
  border-color: #67b385 !important;
}

.darkgreen-border {
  border-color: rgb(51.5, 89.5, 66.5) !important;
}

.yellow-border {
  border-color: #f0c208 !important;
}

.red-border {
  border-color: #E60B22 !important;
}

.orange-border {
  border-color: #eb6615 !important;
}

/**********************************
SHADOW
**********************************/
.shadow {
  box-shadow: rgba(51, 51, 51, 0.05) 0 0 15px !important;
}

/**********************************
LINKS
**********************************/
a {
  text-decoration: none;
  color: #222222;
}

a:hover {
  text-decoration: underline;
}

/**********************************
P
**********************************/
p {
  line-height: 1.5;
  padding-bottom: 1.5em;
}
p:last-child {
  padding-bottom: 0;
}

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

/**********************************
LINE HEIGHT
**********************************/
.line-height-1 {
  line-height: 1 !important;
}

.line-height-1-1 {
  line-height: 1.1 !important;
}

.line-height-1-2 {
  line-height: 1.2 !important;
}

.line-height-1-3 {
  line-height: 1.3 !important;
}

.line-height-1-4 {
  line-height: 1.4 !important;
}

.line-height-1-5 {
  line-height: 1.5 !important;
}

/**********************************
UL, OL
**********************************/
ul.def, ol.def {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding-bottom: 1.5em;
}
ul.def:last-child, ol.def:last-child {
  padding-bottom: 0;
}
@media (min-width: calc(1120px)) {
  ul.def.col-2, ol.def.col-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  ul.def.col-2 > *, ol.def.col-2 > * {
    width: calc(50% - 0.5em);
  }
}
ul.def--row, ol.def--row {
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media (max-width: 768px) {
  ul.def--row, ol.def--row {
    justify-content: flex-start !important;
  }
}

ul.def li, ol.def li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
}

ul.def:not(.noli) li::before {
  content: "done";
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  color: #83bce6;
  position: absolute;
  top: 0.2em;
  left: 0;
}

ul.def.def--blue li::before {
  color: #0d67b2;
}

ol.def {
  margin-left: 2em;
}
ol.def li {
  padding-left: 0;
}
ol.def ol {
  margin: 1em 0 1em 2em;
}

/**********************************
TEXT DECORATION
**********************************/
.underline {
  text-decoration: underline !important;
}

.no-underline {
  text-decoration: none !important;
}

.line-through {
  text-decoration: line-through !important;
}

:hover.hover-underline, :hover > .hover-underline {
  text-decoration: underline !important;
}

:hover.hover-no-underline, :hover > .hover-no-underline {
  text-decoration: none !important;
}

/**********************************
FONT WEIGHT
**********************************/
strong {
  font-weight: 600;
}

b {
  font-weight: 700;
}

.no-bold {
  font-weight: 400 !important;
}

.semibold {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.extrabold {
  font-weight: 900 !important;
}

.italic {
  font-style: italic !important;
}

/**********************************
UPPER/LOWER
**********************************/
.upper {
  text-transform: uppercase !important;
}

.lower {
  text-transform: lowercase !important;
}

.no-transform {
  text-transform: none !important;
}

/**********************************
FONT SIZE
**********************************/
.small-font {
  font-size: 90%;
}

.small-font2 {
  font-size: 80%;
}

.small-font3 {
  font-size: 70%;
}

.small-font4 {
  font-size: 60%;
}

.small-font5 {
  font-size: 50%;
}

.big-font {
  font-size: 110%;
}

.big-font2 {
  font-size: 120%;
}

.big-font3 {
  font-size: 130%;
}

.big-font4 {
  font-size: 140%;
}

.big-font5 {
  font-size: 150%;
}

.big-font6 {
  font-size: 160%;
}

.big-font7 {
  font-size: 170%;
}

.big-font8 {
  font-size: 180%;
}

.big-font9 {
  font-size: 190%;
}

.big-font10 {
  font-size: 200%;
}

.font-1em {
  font-size: 1em;
}

.font-2em {
  font-size: 2em;
}

.font-3em {
  font-size: 3em;
}

.font-4em {
  font-size: 4em;
}

.font-5em {
  font-size: 5em;
}

.font-6em {
  font-size: 6em;
}

.font-7em {
  font-size: 7em;
}

.font-8em {
  font-size: 8em;
}

.font-9em {
  font-size: 9em;
}

.font-10em {
  font-size: 10em;
}

/**********************************
HEADINGS
**********************************/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 0.5em;
  margin-top: 1em;
  line-height: 1.1;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

h2, .h2 {
  font-size: 1.5em;
  margin-bottom: 1.2em;
  padding-bottom: 0.75rem;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  color: #0d67b2;
  text-transform: uppercase;
}
h2::before, .h2::before {
  content: "";
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0d67b2;
}
@media (min-width: calc(1120px)) {
  h2, .h2 {
    font-size: 1.5em;
  }
}
@media (min-width: calc(1420px)) {
  h2, .h2 {
    font-size: 1.7em;
  }
}
@media (min-width: calc(1680px)) {
  h2, .h2 {
    font-size: 1.7em;
  }
}
h2.h2--white, .h2.h2--white {
  color: #ffffff;
}
h2.h2--white::before, .h2.h2--white::before {
  background-color: #83bce6;
}
h2.h2--center, .h2.h2--center {
  text-align: center;
}
h2.h2--center::before, .h2.h2--center::before {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  h2.h2--mobile-center, .h2.h2--mobile-center {
    text-align: center;
  }
  h2.h2--mobile-center::before, .h2.h2--mobile-center::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
h2.small-font, .h2.small-font {
  font-size: 1.3em;
}
h2.small-font2, .h2.small-font2 {
  font-size: 1.1em;
}

h3, .h3 {
  font-size: 1.2em;
  margin-bottom: 0.75em;
  font-weight: 600;
  line-height: 1.2;
  color: #0d67b2;
  position: relative;
}
@media (min-width: calc(1420px)) {
  h3, .h3 {
    font-size: 1.3em;
  }
}
h3.h3--center, .h3.h3--center {
  text-align: center;
}
h3.h3--center::before, .h3.h3--center::before {
  left: 50%;
  transform: translateX(-50%);
}
h3.small-font, .h3.small-font {
  font-size: 1.1em;
}
h3.small-font2, .h3.small-font2 {
  font-size: 1em;
}

h4 {
  font-size: 1.1em;
  color: #0d67b2;
  font-weight: 600;
}
@media (min-width: calc(1120px)) {
  h4 {
    font-size: 1.15em;
  }
}
@media (min-width: calc(1420px)) {
  h4 {
    font-size: 1.25em;
  }
}
@media (min-width: calc(1680px)) {
  h4 {
    font-size: 1.35em;
  }
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

.subtitle {
  font-size: 1em;
  padding-bottom: 0.75em;
  margin-bottom: 2em;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: calc(1120px)) {
  .subtitle {
    font-size: 1.2em;
  }
}
.subtitle::before {
  content: "";
  width: 2em;
  height: 3px;
  background-color: #67b385;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 100vw;
}
.subtitle.subtitle--green {
  color: #67b385;
}
.subtitle.subtitle--green::before {
  background-color: #67b385;
}
.subtitle.subtitle--white {
  color: #ffffff;
}
.subtitle.subtitle--white::before {
  background-color: #ffffff;
}
.subtitle.subtitle--orange {
  color: #eb6615;
}
.subtitle.subtitle--orange::before {
  background-color: #eb6615;
}
.subtitle.subtitle--center {
  text-align: center;
}
.subtitle.subtitle--center::before {
  left: 50%;
  transform: translateX(-50%);
}
.subtitle.small-font {
  font-size: 1.3em;
}
.subtitle.small-font2 {
  font-size: 1.1em;
}

.h-ico {
  display: flex;
  align-items: center;
}
.h-ico .h-ico-ico {
  margin-right: 0.3em;
  font-size: 1.4em;
}

.h-lbord {
  position: relative;
}

.h-lbord-title {
  padding-right: 0.5em;
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  border-left: 3px solid #67b385;
}

/**********************************
FORMS
**********************************/
::-moz-placeholder {
  color: rgb(178.5, 178.5, 178.5);
  opacity: 1;
  font-weight: 400;
}
::placeholder, .select-placeholder {
  color: rgb(178.5, 178.5, 178.5);
  opacity: 1;
  font-weight: 400;
}

button {
  cursor: pointer;
}

label, .label {
  font-weight: 400;
  padding: 0 0 0.4rem 0;
  display: block;
  line-height: 1.3;
  color: #333333;
}

input, textarea, select {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #333333;
  min-height: 4rem;
  display: inline-block;
  padding: 0 2rem;
  line-height: 1;
  transition: box-shadow 0.2s;
  font-weight: 500;
  max-width: 100% !important;
  border-radius: 2rem;
}
input:focus, textarea:focus, select:focus {
  box-shadow: rgba(34, 34, 34, 0.6) 0 0 15px;
}

.input-height {
  min-height: calc(2.5rem + 2px);
  display: flex;
  align-items: center;
}

.input-flat {
  min-height: 2rem;
}

textarea {
  padding: 2rem !important;
}

.check {
  width: auto;
  border: 0;
  margin: 0 0 -1px 0;
  padding: 0;
  background: none;
}

textarea {
  overflow: auto;
  height: auto;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 32px;
  outline: 0;
  line-height: 32px;
  position: relative;
  width: auto;
  background: url(../img/icons/arr_down.svg) no-repeat right 0.5rem center #ffffff;
}

select:required:invalid {
  color: gray;
}

option[value=""][disabled] {
  display: none;
}

select::-ms-expand { /* for IE 11 */
  display: none;
}

option {
  color: #222222;
}

option:disabled {
  color: #666666;
  font-weight: normal;
  font-style: italic;
}

input[type=checkbox], input[type=radio] {
  visibility: hidden;
  display: none;
}

label.checkbox {
  cursor: pointer;
  padding: 0 0 0 40px;
  overflow: visible;
  position: relative;
  text-transform: none;
  font-size: 1em;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
label.checkbox--solo {
  padding: 0;
  height: 32px;
  width: 32px;
}

label.checkbox:before {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #666;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 32px;
  height: 32px;
  font-size: 15px !important;
  border-radius: 16px;
}

label.checkbox:after {
  opacity: 0;
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  background: transparent;
  top: calc(50% - 2px);
  left: 8px;
  border: 3px solid #333333;
  border-top: none;
  border-right: none;
  transform: translateY(-50%) rotate(-45deg);
  font-size: 15px !important;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
  opacity: 1;
}

.input-ico-out {
  position: relative;
}
.input-ico-out input, .input-ico-out select {
  padding-left: 3rem;
}
.input-ico-out--suffix input, .input-ico-out--suffix select {
  padding-left: 1.5rem;
  padding-right: 3rem;
}
.input-ico-out--prefix-suffix input, .input-ico-out--prefix-suffix select {
  padding-left: 3rem;
  padding-right: 3rem;
}

.input-ico-ico {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}

.input-ico-ico--suffix {
  right: 0.7rem;
  left: auto;
}

.input-txt-ico {
  color: #67b385;
  padding-right: 0.5rem;
}

.input-group {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.input-group-unit {
  color: #666666;
}

.plusminus {
  display: flex;
}
.plusminus .button {
  min-height: 32px;
  padding-inline: 0.25em;
}
.plusminus input {
  text-align: center;
  min-width: 50px;
}

/**********************************
BUTTONS
**********************************/
.button {
  max-width: 100%;
  cursor: pointer;
  color: #ffffff;
  padding: 0 2em;
  line-height: 1.3;
  display: inline-flex !important;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: #0d67b2;
  gap: 0.75em;
  min-height: 3rem;
  border-radius: 100vw;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  font-weight: 500;
}
@media (min-width: calc(1120px)) {
  .button {
    min-height: 4rem;
  }
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  background: rgb(9.75, 77.25, 133.5);
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 0;
}
.button:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .button:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .button:hover {
    transform: scale(1.08);
  }
}
.button * {
  position: relative;
  z-index: 1;
}

.button-ico {
  flex: 0 0 auto;
  line-height: 1;
}
.button-ico img {
  display: block;
}

.button.button--big {
  font-size: 1em;
  padding: 1rem 1.8rem;
}

.button.button--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.85em;
  min-height: 0;
}

.button.button--short {
  padding-inline: 0.5rem;
}

.button-multiple {
  max-width: 100%;
  cursor: pointer;
  display: inline-flex !important;
  border-radius: 100vw;
  overflow: hidden;
  border: 1px solid #0d67b2;
}

.button-multiple-item {
  cursor: pointer;
  padding: 0.5rem;
  display: inline-flex !important;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  gap: 0.5em;
  font-size: 0.9rem;
}
.button-multiple-item:first-child {
  padding-left: 1.3rem;
}
.button-multiple-item:last-child {
  padding-right: 1.3rem;
}
.button-multiple-item:hover {
  text-decoration: none;
  background-color: #d9d9d9;
}

.button--colored {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.button--colored:hover {
  opacity: 1;
}

.button--white {
  background-color: #ffffff;
  color: #0d67b2;
}
@media (min-width: calc(1120px)) {
  .button--white:hover {
    color: #ffffff;
  }
}

.button--yellow {
  background-color: #f0c208;
  color: #222222;
}
.button--yellow::before {
  background: #786104;
}
@media (min-width: calc(1120px)) {
  .button--yellow:hover {
    color: #ffffff;
  }
}

.textbutton {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border-bottom: 1px solid currentColor;
}
.textbutton:hover {
  text-decoration: none;
  border-color: transparent;
  transition: none;
}

.textbutton-ico {
  flex: 0 0 auto;
}

.buttonmenu-out {
  position: relative;
  display: flex;
  flex-direction: column;
}
.buttonmenu-out:hover {
  background-color: rgb(91.8, 91.8, 91.8);
}
.buttonmenu-out img {
  width: 24px;
  display: block;
}

.buttonmenu-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #222222;
  padding: 0.75rem 0;
  cursor: pointer;
  font-size: 0.9em;
  white-space: nowrap;
}
.buttonmenu-item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.buttonmenu-item--act {
  background-color: transparent;
}
.buttonmenu-item:not(.buttonmenu-item--act):hover {
  text-decoration: none;
}
.buttonmenu-item:not(.buttonmenu-item--act):hover .buttonmenu-item-title {
  text-decoration: underline;
}

.buttonmenu {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  background-color: #ffffff;
  box-shadow: rgba(34, 34, 34, 0.2) 0 0 10px;
  min-width: 100%;
}

.buttonmenu-in {
  padding: 0 1.5rem;
}
.buttonmenu-in--2 {
  background-color: #f5f5f5;
  padding-block: 0.5rem;
}
.buttonmenu-in--2 .buttonmenu-item {
  padding: 0.3rem 0;
  border: 0;
}

.buttonmenu-out:hover .buttonmenu {
  display: block;
}

/**********************************
REPORTS
**********************************/
.report {
  margin-bottom: 1em;
}

.report-in {
  padding: 1em;
  margin-bottom: 0.5em;
  font-weight: 600;
  display: flex;
  gap: 0.5em;
  align-items: center;
  line-height: 1.3;
}
.report-in.err {
  background-color: rgb(247.5, 181.8, 188.7);
  color: #E60B22;
  border-bottom: 3px solid #E60B22;
}
.report-in.ok {
  background-color: rgb(209.4, 232.2, 218.4);
  color: rgb(82.4, 143.2, 106.4);
  border-bottom: 3px solid #67b385;
}
.report-in.info {
  background-color: rgb(252, 242.8, 205.6);
  color: rgb(192, 155.2, 6.4);
  border-bottom: 3px solid #f0c208;
}
.report-in.wrn {
  background-color: rgb(250.5, 236.7, 180.9);
  color: rgb(192, 155.2, 6.4);
  border-bottom: 3px solid #f0c208;
}

.formerror,
.form-err,
.form-error {
  color: #E60B22 !important;
}
.formerror label, .formerror label a,
.form-err label,
.form-err label a,
.form-error label,
.form-error label a {
  color: #E60B22 !important;
}
.formerror input, .formerror select, .formerror textarea, .formerror label.checkbox::before,
.form-err input,
.form-err select,
.form-err textarea,
.form-err label.checkbox::before,
.form-error input,
.form-error select,
.form-error textarea,
.form-error label.checkbox::before {
  border-color: #E60B22 !important;
  color: #E60B22 !important;
}

input.formerror, select.formerror, textarea.formerror,
input.form-err, select.form-err, textarea.form-err,
input.form-error, select.form-error, textarea.form-error {
  border-color: #E60B22 !important;
}

/**********************************
ICONS
**********************************/
.material-icons, .material-icons-outlined, .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.material-icons img, .material-icons-outlined img, .material-icons-round img {
  max-height: 24px;
}

.big-icon {
  font-size: 32px;
}

.text-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 1em;
  height: 1em;
  min-width: 24px;
  min-height: 24px;
  border-radius: 0.15em;
}

.text-icon-in {
  width: 100%;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: max(0.8em, 18px);
  font-weight: 400;
  color: #333333;
  margin-bottom: -0.1em;
}

.md-text-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: max(0.3em, 9px);
  font-weight: 600;
  color: #ffffff;
  background-color: #333333;
  border-radius: 0.15em;
}

.md-text-icon--top {
  top: 0;
  transform: translate(-50%, 0);
}

.md-text-icon--bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0);
}

.md-text-icon--left {
  left: 0;
  transform: translate(0, -50%);
}
.md-text-icon--left.md-text-icon--top, .md-text-icon--left.md-text-icon--bottom {
  transform: translate(0, 0);
}

.md-text-icon--right {
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.md-text-icon--right.md-text-icon--top, .md-text-icon--right.md-text-icon--bottom {
  transform: translate(0, 0);
}

.transform-icons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.transform-icons .transform-ico {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block;
}

.transform-icons .transform-ico--default {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.transform-icons .transform-ico--transformed {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: rotate(-180deg) scale(0.5);
  opacity: 0;
}

.transform-icons.act .transform-ico--default {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}

.transform-icons.act .transform-ico--transformed {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/**********************************
HIDDEN
**********************************/
@media (max-width: 400px) {
  .hidden-xs-smaller {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hidden-s-smaller {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-m-smaller {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  .hidden-l-smaller {
    display: none !important;
  }
}

@media (max-width: 1420px) {
  .hidden-xl-smaller {
    display: none !important;
  }
}

@media (max-width: 1680px) {
  .hidden-xxl-smaller {
    display: none !important;
  }
}

@media (min-width: calc(576px)) {
  .hidden-xs-bigger {
    display: none !important;
  }
}

@media (min-width: calc(768px)) {
  .hidden-s-bigger {
    display: none !important;
  }
}

@media (min-width: calc(1120px)) {
  .hidden-m-bigger {
    display: none !important;
  }
}

@media (min-width: calc(1420px)) {
  .hidden-l-bigger {
    display: none !important;
  }
}

@media (min-width: calc(1680px)) {
  .hidden-xl-bigger {
    display: none !important;
  }
}

/**********************************
FLEX
**********************************/
.flex {
  display: flex;
}
@media (max-width: 400px) {
  .flex--xs {
    flex-direction: column;
  }
  .flex--xs > * {
    flex: 1 !important;
  }
  .flex--xs .order-1 {
    order: -1;
  }
}
@media (max-width: 576px) {
  .flex--s {
    flex-direction: column;
  }
  .flex--s > * {
    flex: 1 !important;
  }
  .flex--s .order-1 {
    order: -1;
  }
}
@media (max-width: 768px) {
  .flex--m {
    flex-direction: column;
  }
  .flex--m > * {
    flex: 1 !important;
  }
  .flex--m .order-1 {
    order: -1;
  }
}
@media (max-width: 1120px) {
  .flex--l {
    flex-direction: column;
  }
  .flex--l > * {
    flex: 1 !important;
  }
  .flex--l .order-1 {
    order: -1;
  }
}
@media (max-width: 1420px) {
  .flex--xl {
    flex-direction: column;
  }
  .flex--xl > * {
    flex: 1 !important;
  }
  .flex--xl .order-1 {
    order: -1;
  }
}
@media (max-width: 1680px) {
  .flex--xxl {
    flex-direction: column;
  }
  .flex--xxl > * {
    flex: 1 !important;
  }
}
.flex > .col-1 {
  flex: 1;
}
.flex > .col-2 {
  flex: 2;
}
.flex > .col-3 {
  flex: 3;
}
.flex > .col-4 {
  flex: 4;
}
.flex > .col-5 {
  flex: 5;
}
.flex > .col-6 {
  flex: 6;
}
.flex > .col-7 {
  flex: 7;
}
.flex > .col-8 {
  flex: 8;
}
.flex > .col-9 {
  flex: 9;
}
.flex > .col-10 {
  flex: 10;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.a-stretch {
  align-items: stretch !important;
}

.a-start {
  align-items: flex-start !important;
}

.a-center {
  align-items: center !important;
}

.a-end {
  align-items: flex-end !important;
}

.as-end {
  align-self: flex-end !important;
}

.j-start {
  justify-content: flex-start !important;
}

.j-center {
  justify-content: center !important;
}

.j-end {
  justify-content: flex-end !important;
}

.space-between {
  justify-content: space-between !important;
}

.space-around {
  justify-content: space-around !important;
}

.flex-true {
  flex: 1 1 auto !important;
}

.flex-false {
  flex: 0 0 auto !important;
}

.no-grow {
  flex-grow: 0 !important;
}

.no-shrink {
  flex-shrink: 0 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

/**********************************
SPACING
**********************************/
/*** gap ***/
.gap-0 {
  gap: 0px !important;
}

.gap-1 {
  gap: 1px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-3 {
  gap: 3px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-25 {
  gap: 25px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-50 {
  gap: 50px !important;
}

.gap-01em {
  gap: 0.1em !important;
}

.gap-02em {
  gap: 0.2em !important;
}

.gap-03em {
  gap: 0.3em !important;
}

.gap-04em {
  gap: 0.4em !important;
}

.gap-05em {
  gap: 0.5em !important;
}

.gap-06em {
  gap: 0.6em !important;
}

.gap-07em {
  gap: 0.7em !important;
}

.gap-08em {
  gap: 0.8em !important;
}

.gap-09em {
  gap: 0.9em !important;
}

.gap-1em {
  gap: 1em !important;
}

.gap-2em {
  gap: 2em !important;
}

.gap-3em {
  gap: 3em !important;
}

.gap-4em {
  gap: 4em !important;
}

.gap-5em {
  gap: 5em !important;
}

.gap-6em {
  gap: 6em !important;
}

.gap-7em {
  gap: 7em !important;
}

.gap-8em {
  gap: 8em !important;
}

.gap-9em {
  gap: 9em !important;
}

.gap-10em {
  gap: 10em !important;
}

/*** xgap ***/
.xgap-0 {
  -moz-column-gap: 0px !important;
       column-gap: 0px !important;
}

.xgap-1 {
  -moz-column-gap: 1px !important;
       column-gap: 1px !important;
}

.xgap-2 {
  -moz-column-gap: 2px !important;
       column-gap: 2px !important;
}

.xgap-3 {
  -moz-column-gap: 3px !important;
       column-gap: 3px !important;
}

.xgap-4 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.xgap-5 {
  -moz-column-gap: 5px !important;
       column-gap: 5px !important;
}

.xgap-10 {
  -moz-column-gap: 10px !important;
       column-gap: 10px !important;
}

.xgap-15 {
  -moz-column-gap: 15px !important;
       column-gap: 15px !important;
}

.xgap-20 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.xgap-25 {
  -moz-column-gap: 25px !important;
       column-gap: 25px !important;
}

.xgap-30 {
  -moz-column-gap: 30px !important;
       column-gap: 30px !important;
}

.xgap-40 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.xgap-50 {
  -moz-column-gap: 50px !important;
       column-gap: 50px !important;
}

.xgap-01em {
  -moz-column-gap: 0.1em !important;
       column-gap: 0.1em !important;
}

.xgap-02em {
  -moz-column-gap: 0.2em !important;
       column-gap: 0.2em !important;
}

.xgap-03em {
  -moz-column-gap: 0.3em !important;
       column-gap: 0.3em !important;
}

.xgap-04em {
  -moz-column-gap: 0.4em !important;
       column-gap: 0.4em !important;
}

.xgap-05em {
  -moz-column-gap: 0.5em !important;
       column-gap: 0.5em !important;
}

.xgap-06em {
  -moz-column-gap: 0.6em !important;
       column-gap: 0.6em !important;
}

.xgap-07em {
  -moz-column-gap: 0.7em !important;
       column-gap: 0.7em !important;
}

.xgap-08em {
  -moz-column-gap: 0.8em !important;
       column-gap: 0.8em !important;
}

.xgap-09em {
  -moz-column-gap: 0.9em !important;
       column-gap: 0.9em !important;
}

.xgap-1em {
  -moz-column-gap: 1em !important;
       column-gap: 1em !important;
}

.xgap-2em {
  -moz-column-gap: 2em !important;
       column-gap: 2em !important;
}

.xgap-3em {
  -moz-column-gap: 3em !important;
       column-gap: 3em !important;
}

.xgap-4em {
  -moz-column-gap: 4em !important;
       column-gap: 4em !important;
}

.xgap-5em {
  -moz-column-gap: 5em !important;
       column-gap: 5em !important;
}

.xgap-6em {
  -moz-column-gap: 6em !important;
       column-gap: 6em !important;
}

.xgap-7em {
  -moz-column-gap: 7em !important;
       column-gap: 7em !important;
}

.xgap-8em {
  -moz-column-gap: 8em !important;
       column-gap: 8em !important;
}

.xgap-9em {
  -moz-column-gap: 9em !important;
       column-gap: 9em !important;
}

.xgap-10em {
  -moz-column-gap: 10em !important;
       column-gap: 10em !important;
}

/*** ygap ***/
.ygap-0 {
  row-gap: 0px !important;
}

.ygap-1 {
  row-gap: 1px !important;
}

.ygap-2 {
  row-gap: 2px !important;
}

.ygap-3 {
  row-gap: 3px !important;
}

.ygap-4 {
  row-gap: 4px !important;
}

.ygap-5 {
  row-gap: 5px !important;
}

.ygap-10 {
  row-gap: 10px !important;
}

.ygap-15 {
  row-gap: 15px !important;
}

.ygap-20 {
  row-gap: 20px !important;
}

.ygap-25 {
  row-gap: 25px !important;
}

.ygap-30 {
  row-gap: 30px !important;
}

.ygap-40 {
  row-gap: 40px !important;
}

.ygap-50 {
  row-gap: 50px !important;
}

.ygap-01em {
  row-gap: 0.1em !important;
}

.ygap-02em {
  row-gap: 0.2em !important;
}

.ygap-03em {
  row-gap: 0.3em !important;
}

.ygap-04em {
  row-gap: 0.4em !important;
}

.ygap-05em {
  row-gap: 0.5em !important;
}

.ygap-06em {
  row-gap: 0.6em !important;
}

.ygap-07em {
  row-gap: 0.7em !important;
}

.ygap-08em {
  row-gap: 0.8em !important;
}

.ygap-09em {
  row-gap: 0.9em !important;
}

.ygap-1em {
  row-gap: 1em !important;
}

.ygap-2em {
  row-gap: 2em !important;
}

.ygap-3em {
  row-gap: 3em !important;
}

.ygap-4em {
  row-gap: 4em !important;
}

.ygap-5em {
  row-gap: 5em !important;
}

.ygap-6em {
  row-gap: 6em !important;
}

.ygap-7em {
  row-gap: 7em !important;
}

.ygap-8em {
  row-gap: 8em !important;
}

.ygap-9em {
  row-gap: 9em !important;
}

.ygap-10em {
  row-gap: 10em !important;
}

.mg-inline-auto {
  margin-inline: auto !important;
}

.mg-block-auto {
  margin-block: auto !important;
}

/*** tmg ***/
.tmg-big {
  margin-top: 2rem !important;
}
@media (min-width: calc(768px)) {
  .tmg-big {
    margin-top: 3rem !important;
  }
}
@media (min-width: calc(1120px)) {
  .tmg-big {
    margin-top: 4rem !important;
  }
}
@media (min-width: calc(1420px)) {
  .tmg-big {
    margin-top: 6rem !important;
  }
}

.tmg-auto {
  margin-top: auto !important;
}

.tmg--1 {
  margin-top: -1px !important;
}

.tmg--2 {
  margin-top: -2px !important;
}

.tmg--3 {
  margin-top: -3px !important;
}

.tmg--4 {
  margin-top: -4px !important;
}

.tmg--5 {
  margin-top: -5px !important;
}

.tmg-0 {
  margin-top: 0px !important;
}

.tmg-1 {
  margin-top: 1px !important;
}

.tmg-2 {
  margin-top: 2px !important;
}

.tmg-3 {
  margin-top: 3px !important;
}

.tmg-4 {
  margin-top: 4px !important;
}

.tmg-5 {
  margin-top: 5px !important;
}

.tmg-10 {
  margin-top: 10px !important;
}

.tmg-15 {
  margin-top: 15px !important;
}

.tmg-20 {
  margin-top: 20px !important;
}

.tmg-25 {
  margin-top: 25px !important;
}

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

.tmg-40 {
  margin-top: 40px !important;
}

.tmg-50 {
  margin-top: 50px !important;
}

.tmg-60 {
  margin-top: 60px !important;
}

.tmg-70 {
  margin-top: 70px !important;
}

.tmg-80 {
  margin-top: 80px !important;
}

.tmg-90 {
  margin-top: 90px !important;
}

.tmg-100 {
  margin-top: 100px !important;
}

.tmg-01em {
  margin-top: 0.1em !important;
}

.tmg-02em {
  margin-top: 0.2em !important;
}

.tmg-03em {
  margin-top: 0.3em !important;
}

.tmg-04em {
  margin-top: 0.4em !important;
}

.tmg-05em {
  margin-top: 0.5em !important;
}

.tmg-06em {
  margin-top: 0.6em !important;
}

.tmg-07em {
  margin-top: 0.7em !important;
}

.tmg-08em {
  margin-top: 0.8em !important;
}

.tmg-09em {
  margin-top: 0.9em !important;
}

.tmg-1em {
  margin-top: 1em !important;
}

.tmg-2em {
  margin-top: 2em !important;
}

.tmg-3em {
  margin-top: 3em !important;
}

.tmg-4em {
  margin-top: 4em !important;
}

.tmg-5em {
  margin-top: 5em !important;
}

.tmg-6em {
  margin-top: 6em !important;
}

.tmg-7em {
  margin-top: 7em !important;
}

.tmg-8em {
  margin-top: 8em !important;
}

.tmg-9em {
  margin-top: 9em !important;
}

.tmg-10em {
  margin-top: 10em !important;
}

/*** rmg ***/
.rmg-auto {
  margin-right: auto !important;
}

.rmg-0 {
  margin-right: 0px !important;
}

.rmg-1 {
  margin-right: 1px !important;
}

.rmg-2 {
  margin-right: 2px !important;
}

.rmg-3 {
  margin-right: 3px !important;
}

.rmg-4 {
  margin-right: 4px !important;
}

.rmg-5 {
  margin-right: 5px !important;
}

.rmg-10 {
  margin-right: 10px !important;
}

.rmg-15 {
  margin-right: 15px !important;
}

.rmg-20 {
  margin-right: 20px !important;
}

.rmg-25 {
  margin-right: 25px !important;
}

.rmg-30 {
  margin-right: 30px !important;
}

.rmg-40 {
  margin-right: 40px !important;
}

.rmg-50 {
  margin-right: 50px !important;
}

.rmg-60 {
  margin-right: 60px !important;
}

.rmg-70 {
  margin-right: 70px !important;
}

.rmg-80 {
  margin-right: 80px !important;
}

.rmg-90 {
  margin-right: 90px !important;
}

.rmg-100 {
  margin-right: 100px !important;
}

.rmg-01em {
  margin-right: 0.1em !important;
}

.rmg-02em {
  margin-right: 0.2em !important;
}

.rmg-03em {
  margin-right: 0.3em !important;
}

.rmg-04em {
  margin-right: 0.4em !important;
}

.rmg-05em {
  margin-right: 0.5em !important;
}

.rmg-06em {
  margin-right: 0.6em !important;
}

.rmg-07em {
  margin-right: 0.7em !important;
}

.rmg-08em {
  margin-right: 0.8em !important;
}

.rmg-09em {
  margin-right: 0.9em !important;
}

.rmg-1em {
  margin-right: 1em !important;
}

.rmg-2em {
  margin-right: 2em !important;
}

.rmg-3em {
  margin-right: 3em !important;
}

.rmg-4em {
  margin-right: 4em !important;
}

.rmg-5em {
  margin-right: 5em !important;
}

.rmg-6em {
  margin-right: 6em !important;
}

.rmg-7em {
  margin-right: 7em !important;
}

.rmg-8em {
  margin-right: 8em !important;
}

.rmg-9em {
  margin-right: 9em !important;
}

.rmg-10em {
  margin-right: 10em !important;
}

/*** bmg ***/
.bmg-auto {
  margin-bottom: auto !important;
}

.bmg-0 {
  margin-bottom: 0px !important;
}

.bmg-1 {
  margin-bottom: 1px !important;
}

.bmg-2 {
  margin-bottom: 2px !important;
}

.bmg-3 {
  margin-bottom: 3px !important;
}

.bmg-4 {
  margin-bottom: 4px !important;
}

.bmg-5 {
  margin-bottom: 5px !important;
}

.bmg-6 {
  margin-bottom: 6px !important;
}

.bmg-7 {
  margin-bottom: 7px !important;
}

.bmg-8 {
  margin-bottom: 8px !important;
}

.bmg-9 {
  margin-bottom: 9px !important;
}

.bmg-10 {
  margin-bottom: 10px !important;
}

.bmg-15 {
  margin-bottom: 15px !important;
}

.bmg-20 {
  margin-bottom: 20px !important;
}

.bmg-25 {
  margin-bottom: 25px !important;
}

.bmg-30 {
  margin-bottom: 30px !important;
}

.bmg-40 {
  margin-bottom: 40px !important;
}

.bmg-50 {
  margin-bottom: 50px !important;
}

.bmg-60 {
  margin-bottom: 60px !important;
}

.bmg-70 {
  margin-bottom: 70px !important;
}

.bmg-80 {
  margin-bottom: 80px !important;
}

.bmg-90 {
  margin-bottom: 90px !important;
}

.bmg-100 {
  margin-bottom: 100px !important;
}

.bmg-01em {
  margin-bottom: 0.1em !important;
}

.bmg-02em {
  margin-bottom: 0.2em !important;
}

.bmg-03em {
  margin-bottom: 0.3em !important;
}

.bmg-04em {
  margin-bottom: 0.4em !important;
}

.bmg-05em {
  margin-bottom: 0.5em !important;
}

.bmg-06em {
  margin-bottom: 0.6em !important;
}

.bmg-07em {
  margin-bottom: 0.7em !important;
}

.bmg-08em {
  margin-bottom: 0.8em !important;
}

.bmg-09em {
  margin-bottom: 0.9em !important;
}

.bmg-1em {
  margin-bottom: 1em !important;
}

.bmg-2em {
  margin-bottom: 2em !important;
}

.bmg-3em {
  margin-bottom: 3em !important;
}

.bmg-4em {
  margin-bottom: 4em !important;
}

.bmg-5em {
  margin-bottom: 5em !important;
}

.bmg-6em {
  margin-bottom: 6em !important;
}

.bmg-7em {
  margin-bottom: 7em !important;
}

.bmg-8em {
  margin-bottom: 8em !important;
}

.bmg-9em {
  margin-bottom: 9em !important;
}

.bmg-10em {
  margin-bottom: 10em !important;
}

/*** lmg ***/
.lmg-auto {
  margin-left: auto !important;
}

.lmg-0 {
  margin-left: 0px !important;
}

.lmg-1 {
  margin-left: 1px !important;
}

.lmg-2 {
  margin-left: 2px !important;
}

.lmg-3 {
  margin-left: 3px !important;
}

.lmg-4 {
  margin-left: 4px !important;
}

.lmg-5 {
  margin-left: 5px !important;
}

.lmg-10 {
  margin-left: 10px !important;
}

.lmg-15 {
  margin-left: 15px !important;
}

.lmg-20 {
  margin-left: 20px !important;
}

.lmg-25 {
  margin-left: 25px !important;
}

.lmg-30 {
  margin-left: 30px !important;
}

.lmg-40 {
  margin-left: 40px !important;
}

.lmg-50 {
  margin-left: 50px !important;
}

.lmg-60 {
  margin-left: 60px !important;
}

.lmg-70 {
  margin-left: 70px !important;
}

.lmg-80 {
  margin-left: 80px !important;
}

.lmg-90 {
  margin-left: 90px !important;
}

.lmg-100 {
  margin-left: 100px !important;
}

.lmg-01em {
  margin-left: 0.1em !important;
}

.lmg-02em {
  margin-left: 0.2em !important;
}

.lmg-03em {
  margin-left: 0.3em !important;
}

.lmg-04em {
  margin-left: 0.4em !important;
}

.lmg-05em {
  margin-left: 0.5em !important;
}

.lmg-06em {
  margin-left: 0.6em !important;
}

.lmg-07em {
  margin-left: 0.7em !important;
}

.lmg-08em {
  margin-left: 0.8em !important;
}

.lmg-09em {
  margin-left: 0.9em !important;
}

.lmg-1em {
  margin-left: 1em !important;
}

.lmg-2em {
  margin-left: 2em !important;
}

.lmg-3em {
  margin-left: 3em !important;
}

.lmg-4em {
  margin-left: 4em !important;
}

.lmg-5em {
  margin-left: 5em !important;
}

.lmg-6em {
  margin-left: 6em !important;
}

.lmg-7em {
  margin-left: 7em !important;
}

.lmg-8em {
  margin-left: 8em !important;
}

.lmg-9em {
  margin-left: 9em !important;
}

.lmg-10em {
  margin-left: 10em !important;
}

/*** tpd ***/
.tpd-0 {
  padding-top: 0px !important;
}

.tpd-5 {
  padding-top: 5px !important;
}

.tpd-10 {
  padding-top: 10px !important;
}

.tpd-20 {
  padding-top: 20px !important;
}

.tpd-30 {
  padding-top: 30px !important;
}

.tpd-40 {
  padding-top: 40px !important;
}

.tpd-50 {
  padding-top: 50px !important;
}

.tpd-01em {
  padding-top: 0.1em !important;
}

.tpd-02em {
  padding-top: 0.2em !important;
}

.tpd-03em {
  padding-top: 0.3em !important;
}

.tpd-04em {
  padding-top: 0.4em !important;
}

.tpd-05em {
  padding-top: 0.5em !important;
}

.tpd-06em {
  padding-top: 0.6em !important;
}

.tpd-07em {
  padding-top: 0.7em !important;
}

.tpd-08em {
  padding-top: 0.8em !important;
}

.tpd-09em {
  padding-top: 0.9em !important;
}

.tpd-1em {
  padding-top: 1em !important;
}

/*** rpd ***/
.rpd-0 {
  padding-right: 0px !important;
}

.rpd-5 {
  padding-right: 5px !important;
}

.rpd-10 {
  padding-right: 10px !important;
}

.rpd-20 {
  padding-right: 20px !important;
}

.rpd-30 {
  padding-right: 30px !important;
}

.rpd-40 {
  padding-right: 40px !important;
}

.rpd-50 {
  padding-right: 50px !important;
}

.rpd-60 {
  padding-right: 60px !important;
}

.rpd-70 {
  padding-right: 70px !important;
}

.rpd-80 {
  padding-right: 80px !important;
}

.rpd-90 {
  padding-right: 90px !important;
}

.rpd-100 {
  padding-right: 100px !important;
}

.rpd-01em {
  padding-right: 0.1em !important;
}

.rpd-02em {
  padding-right: 0.2em !important;
}

.rpd-03em {
  padding-right: 0.3em !important;
}

.rpd-04em {
  padding-right: 0.4em !important;
}

.rpd-05em {
  padding-right: 0.5em !important;
}

.rpd-06em {
  padding-right: 0.6em !important;
}

.rpd-07em {
  padding-right: 0.7em !important;
}

.rpd-08em {
  padding-right: 0.8em !important;
}

.rpd-09em {
  padding-right: 0.9em !important;
}

.rpd-1em {
  padding-right: 1em !important;
}

/*** bpd ***/
.bpd-0 {
  padding-bottom: 0px !important;
}

.bpd-5 {
  padding-bottom: 5px !important;
}

.bpd-10 {
  padding-bottom: 10px !important;
}

.bpd-20 {
  padding-bottom: 20px !important;
}

.bpd-30 {
  padding-bottom: 30px !important;
}

.bpd-40 {
  padding-bottom: 40px !important;
}

.bpd-50 {
  padding-bottom: 50px !important;
}

.bpd-01em {
  padding-bottom: 0.1em !important;
}

.bpd-02em {
  padding-bottom: 0.2em !important;
}

.bpd-03em {
  padding-bottom: 0.3em !important;
}

.bpd-04em {
  padding-bottom: 0.4em !important;
}

.bpd-05em {
  padding-bottom: 0.5em !important;
}

.bpd-06em {
  padding-bottom: 0.6em !important;
}

.bpd-07em {
  padding-bottom: 0.7em !important;
}

.bpd-08em {
  padding-bottom: 0.8em !important;
}

.bpd-09em {
  padding-bottom: 0.9em !important;
}

.bpd-1em {
  padding-bottom: 1em !important;
}

.bpd-2em {
  padding-bottom: 2em !important;
}

.bpd-3em {
  padding-bottom: 3em !important;
}

/*** lpd ***/
.lpd-0 {
  padding-left: 0px !important;
}

.lpd-5 {
  padding-left: 5px !important;
}

.lpd-10 {
  padding-left: 10px !important;
}

.lpd-20 {
  padding-left: 20px !important;
}

.lpd-30 {
  padding-left: 30px !important;
}

.lpd-40 {
  padding-left: 40px !important;
}

.lpd-50 {
  padding-left: 50px !important;
}

.lpd-60 {
  padding-left: 60px !important;
}

.lpd-70 {
  padding-left: 70px !important;
}

.lpd-80 {
  padding-left: 80px !important;
}

.lpd-90 {
  padding-left: 90px !important;
}

.lpd-100 {
  padding-left: 100px !important;
}

.lpd-01em {
  padding-left: 0.1em !important;
}

.lpd-02em {
  padding-left: 0.2em !important;
}

.lpd-03em {
  padding-left: 0.3em !important;
}

.lpd-04em {
  padding-left: 0.4em !important;
}

.lpd-05em {
  padding-left: 0.5em !important;
}

.lpd-06em {
  padding-left: 0.6em !important;
}

.lpd-07em {
  padding-left: 0.7em !important;
}

.lpd-08em {
  padding-left: 0.8em !important;
}

.lpd-09em {
  padding-left: 0.9em !important;
}

.lpd-1em {
  padding-left: 1em !important;
}

/*** padding ***/
.padd-0 {
  padding: 0px !important;
}

.padd-1 {
  padding: 1px !important;
}

.padd-2 {
  padding: 2px !important;
}

.padd-3 {
  padding: 3px !important;
}

.padd-4 {
  padding: 4px !important;
}

.padd-5 {
  padding: 5px !important;
}

.padd-10 {
  padding: 10px !important;
}

.padd-20 {
  padding: 20px !important;
}

.padd-30 {
  padding: 30px !important;
}

.padd-40 {
  padding: 40px !important;
}

.padd-50 {
  padding: 50px !important;
}

.padd-01em {
  padding: 0.1em !important;
}

.padd-02em {
  padding: 0.2em !important;
}

.padd-03em {
  padding: 0.3em !important;
}

.padd-04em {
  padding: 0.4em !important;
}

.padd-05em {
  padding: 0.5em !important;
}

.padd-06em {
  padding: 0.6em !important;
}

.padd-07em {
  padding: 0.7em !important;
}

.padd-08em {
  padding: 0.8em !important;
}

.padd-09em {
  padding: 0.9em !important;
}

.padd-1em {
  padding: 1em !important;
}

.padd-2em {
  padding: 2em !important;
}

/**********************************
LAYOUT
**********************************/
html {
  height: 100%;
  font-size: 1em;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  background-color: #ffffff;
  font-weight: 400;
  padding-top: 70px;
  font-size: 1em;
  min-height: 100%;
  overscroll-behavior-y: none;
}
@media (min-width: calc(576px)) {
  body {
    padding-top: 85px;
  }
}
@media (min-width: calc(1120px)) {
  body {
    padding-top: 100px;
  }
}
@media (min-width: calc(1420px)) {
  body {
    font-size: 1.05em;
    padding-top: 130px;
  }
}
@media (min-width: calc(1680px)) {
  body {
    font-size: 1.15em;
    padding-top: 154px;
  }
}
@media (max-width: 1120px) {
  body.menu-act {
    overflow: hidden;
  }
}

.preloader {
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-color: #f2f9ff;
}
.preloader img {
  display: block;
  width: min(30vw, 200px);
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: clip;
}

.content-width-out {
  margin: 0 auto;
  width: 100%;
  max-width: 2172px;
}

.content-width {
  margin: 0 auto;
  position: relative;
  width: 90%;
  max-width: 1772px;
}
@media (max-width: 1120px) {
  .content-width--mobilefull {
    width: 100%;
  }
}

@media (min-width: calc(1120px)) {
  .content-width--padd {
    padding-inline: 3em;
  }
}
@media (min-width: calc(1420px)) {
  .content-width--padd {
    padding-inline: 4em;
  }
}
@media (min-width: calc(1680px)) {
  .content-width--padd {
    padding-inline: 5em;
  }
}

.section-content-out {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-image: linear-gradient(to bottom, #fff 0%, transparent 100%), linear-gradient(to top, #fff 0, #fff 15rem, transparent 100%), url(../img/bg2.jpg);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-size: 100% 500px, 100% 500px, max(1600px, 100%) auto;
  background-position: top, bottom, top;
}
.section-content-out--bg {
  background-image: url(../img/bg.jpg);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: auto 1000px;
}
.section-content-out--bg--s {
  background-size: auto 700px;
}

.section-content--first {
  padding-top: 0;
  position: relative;
  z-index: 3;
}
@media (min-width: calc(768px)) {
  .section-content--first {
    margin-top: -1rem;
  }
}
@media (min-width: calc(1120px)) {
  .section-content--first {
    margin-top: -2rem;
  }
}
@media (min-width: calc(1420px)) {
  .section-content--first {
    margin-top: -3rem;
  }
}
@media (min-width: calc(1420px)) {
  .section-content--first {
    margin-top: -4rem;
  }
}

.section-content--padd {
  padding: 2rem 0 2rem 0;
}
@media (min-width: calc(1120px)) {
  .section-content--padd {
    padding: 3rem 0 3rem 0;
  }
}
@media (min-width: calc(1420px)) {
  .section-content--padd {
    padding: 4rem 0 4rem 0;
  }
}
@media (min-width: calc(1420px)) {
  .section-content--padd {
    padding: 5rem 0 5rem 0;
  }
}

.section-content-in {
  padding-inline: 30px;
}
@media (min-width: calc(576px)) {
  .section-content-in {
    padding-inline: 40px;
  }
}
@media (min-width: calc(768px)) {
  .section-content-in {
    padding-inline: 50px;
  }
}
@media (min-width: calc(1120px)) {
  .section-content-in {
    padding-inline: 70px;
  }
}
@media (min-width: calc(1420px)) {
  .section-content-in {
    padding-inline: 80px;
  }
}
@media (min-width: calc(1680px)) {
  .section-content-in {
    padding-inline: 90px;
  }
}

.section-content-bg {
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 -10px 10px -10px rgba(51, 51, 51, 0.05);
}
@media (min-width: calc(576px)) {
  .section-content-bg {
    padding: 55px 40px;
  }
}
@media (min-width: calc(768px)) {
  .section-content-bg {
    padding: 60px 50px;
  }
}
@media (min-width: calc(1120px)) {
  .section-content-bg {
    padding: 70px;
  }
}
@media (min-width: calc(1420px)) {
  .section-content-bg {
    padding: 80px;
  }
}
@media (min-width: calc(1680px)) {
  .section-content-bg {
    padding: 90px;
  }
}

.kotva {
  position: relative;
  top: -80px;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
}
@media (min-width: calc(1120px)) {
  .kotva {
    top: -120px;
  }
}
@media (min-width: calc(1420px)) {
  .kotva {
    top: -150px;
  }
}

/**********************************
TOPBAR
**********************************/
/**********************************
HEADER
**********************************/
.head-out {
  background-color: white;
  width: 100%;
  position: fixed;
  top: 0;
}

.head {
  position: relative;
  transition: all 0.2s;
}

.head-in {
  display: flex;
  align-items: center;
  height: 70px;
  transition: all 0.2s;
}
@media (min-width: calc(576px)) {
  .head-in {
    height: 85px;
  }
}
@media (min-width: calc(1120px)) {
  .head-in {
    height: 100px;
    padding-top: 1em;
  }
}
@media (min-width: calc(1420px)) {
  .head-in {
    height: 130px;
  }
}
@media (min-width: calc(1680px)) {
  .head-in {
    height: 154px;
  }
}

.logo {
  display: block;
  width: 100px;
  transition: all 0.2s;
  position: absolute;
  bottom: -10px;
  transform: translateX(-6%);
}
@media (min-width: calc(576px)) {
  .logo {
    width: 120px;
  }
}
@media (min-width: calc(1120px)) {
  .logo {
    width: 140px;
    bottom: -15px;
  }
}
@media (min-width: calc(1420px)) {
  .logo {
    width: 170px;
    bottom: -25px;
  }
}
@media (min-width: calc(1680px)) {
  .logo {
    width: 200px;
  }
}
.logo img {
  width: 100%;
  display: block;
}
@media (min-width: calc(1120px)) {
  .logo:hover img {
    animation: shake 0.4s ease;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px) rotate(-1deg);
  }
  40% {
    transform: translateX(4px) rotate(1deg);
  }
  60% {
    transform: translateX(-3px) rotate(-0.5deg);
  }
  80% {
    transform: translateX(3px) rotate(0.5deg);
  }
}
.head-contact {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .head-contact {
    display: none;
  }
}
@media (min-width: calc(576px)) {
  .head-contact {
    margin-left: 150px;
  }
}
@media (min-width: calc(1120px)) {
  .head-contact {
    margin-left: 160px;
  }
}
@media (min-width: calc(1420px)) {
  .head-contact {
    margin-left: 200px;
  }
}
@media (min-width: calc(1680px)) {
  .head-contact {
    margin-left: 250px;
  }
}
.head-contact a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
}
.head-contact a:hover {
  text-decoration: none;
  /*& .head-contact-title {
      text-decoration: underline;
  }*/
}

.head-r {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
}

.head-social {
  display: flex;
  gap: 0.5em;
  flex: 0 0 auto;
}
@media (max-width: 1120px) {
  .head-social {
    padding-inline: 3.2rem;
    margin-top: 2rem;
  }
}
.head-social-item {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.head-social-item:hover {
  transform: scale(1.075);
}
.head-social-item img {
  display: block;
  height: 40px;
}
@media (min-width: calc(1420px)) {
  .head-social-item img {
    height: 50px;
  }
}

.head--sticky .head-out {
  box-shadow: 0 10px 10px -10px rgba(51, 51, 51, 0.05);
}
@media (min-width: calc(1120px)) {
  .head--sticky .head-out .head-in {
    height: 80px;
  }
}
@media (min-width: calc(1420px)) {
  .head--sticky .head-out .head-in {
    height: 90px;
  }
}
@media (min-width: calc(1680px)) {
  .head--sticky .head-out .head-in {
    height: 100px;
  }
}
@media (min-width: calc(1120px)) {
  .head--sticky .head-out .logo {
    width: 120px;
  }
}
@media (min-width: calc(1420px)) {
  .head--sticky .head-out .logo {
    width: 140px;
  }
}
@media (min-width: calc(1680px)) {
  .head--sticky .head-out .logo {
    width: 150px;
  }
}

.head-pic {
  position: relative;
  padding-bottom: 2px;
}
.head-pic::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: -1;
  background-image: url(../img/vlna_back.svg);
}
.head-pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  z-index: 1;
  background-image: url(../img/vlna_front.svg);
}

.head-pic-in {
  position: relative;
  background-color: #ffffff;
}

.head-pic-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
@media (max-width: 768px) {
  .head-pic-img {
    min-height: 300px;
    -o-object-position: center left;
       object-position: center left;
  }
}
@media (max-width: 576px) {
  .head-pic-img {
    min-height: 500px;
  }
}

.head-pic-desc {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  padding-inline: 30px;
}
@media (min-width: calc(1120px)) {
  .head-pic-desc {
    padding-bottom: 3rem;
  }
}

.head-pic-uptitle {
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: calc(1120px)) {
  .head-pic-uptitle {
    font-size: 1em;
  }
}
.head-pic-uptitle::after {
  content: "";
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #ffffff;
}
.head-pic-uptitle b {
  font-weight: 600;
}

.head-pic-title {
  font-weight: 800;
  font-size: 2.5em;
  line-height: 1;
}
@media (min-width: calc(576px)) {
  .head-pic-title {
    font-size: 3em;
  }
}
@media (min-width: calc(768px)) {
  .head-pic-title {
    font-size: 3.5em;
  }
}
@media (max-width: 768px) {
  .head-pic-title--tw {
    min-height: 2.5em;
  }
}

.head-pic--detail .head-pic-title {
  font-size: 2em;
}
@media (min-width: calc(576px)) {
  .head-pic--detail .head-pic-title {
    font-size: 2.5em;
  }
}
@media (min-width: calc(768px)) {
  .head-pic--detail .head-pic-title {
    font-size: 3em;
  }
}

.head-pic-subtitle {
  font-weight: 400;
  text-shadow: rgba(34, 34, 34, 0.4) 0 0 15px;
  font-size: 0.9em;
}
@media (min-width: calc(576px)) {
  .head-pic-subtitle {
    font-size: 1em;
  }
}
@media (min-width: calc(768px)) {
  .head-pic-subtitle {
    font-size: 1.1em;
  }
}
.head-pic-subtitle b {
  font-weight: 600;
}

.head-pic-buttons {
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
@media (min-width: calc(1120px)) {
  .head-pic-buttons {
    margin-top: 2em;
  }
}
@media (max-width: 576px) {
  .head-pic-buttons > * {
    width: 80%;
  }
}

.head-pic-more {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  color: #ffffff;
  font-size: 0.9em;
}
@media (min-width: calc(1120px)) {
  .head-pic-more {
    bottom: 8rem;
  }
}
@media (min-width: calc(1420px)) {
  .head-pic-more {
    bottom: 11rem;
  }
}
.head-pic-more:hover {
  text-decoration: none;
}

.head-boxes {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
}

.head-boxes-item {
  padding: 0.75rem 2rem 0.75rem 1rem;
  border-radius: 15px;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
  height: 100%;
}
.head-boxes-item:nth-child(1) {
  z-index: 1;
}
.head-boxes-item:nth-child(2) {
  z-index: 2;
}
.head-boxes-item:nth-child(3) {
  z-index: 3;
}
@media (min-width: calc(1120px)) {
  .head-boxes-item {
    border-radius: 25px;
  }
}
@media (min-width: calc(1420px)) {
  .head-boxes-item {
    border-radius: 35px;
  }
}
.head-boxes-item:not(.head-boxes-item--last) {
  margin-right: -80px;
  padding-right: calc(2rem + 80px);
}
.head-boxes-item-ico {
  background-color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 100vw;
  aspect-ratio: 1/1;
  width: 28px;
  position: relative;
  flex: 0 0 auto;
}
@media (min-width: calc(1120px)) {
  .head-boxes-item-ico {
    width: 33px;
  }
}
@media (min-width: calc(1420px)) {
  .head-boxes-item-ico {
    width: 38px;
  }
}
@media (min-width: calc(1680px)) {
  .head-boxes-item-ico {
    width: 48px;
  }
}
.head-boxes-item-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  background: rgb(9.75, 77.25, 133.5);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 1;
}
.head-boxes-item-ico span {
  font-size: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: calc(1120px)) {
  .head-boxes-item-ico span {
    font-size: 28px;
  }
}
@media (min-width: calc(1420px)) {
  .head-boxes-item-ico span {
    font-size: 32px;
  }
}
@media (min-width: calc(1680px)) {
  .head-boxes-item-ico span {
    font-size: 36px;
  }
}
.head-boxes-item-desc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.head-boxes-item-title {
  font-size: 0.9em;
  font-weight: 600;
}
.head-boxes-item-txt {
  font-size: 0.75em;
}
.head-boxes-item:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .head-boxes-item:hover {
    transform: translate(-4px) scale(1.02);
  }
  .head-boxes-item:hover .head-boxes-item-ico::before {
    transform: scale(1);
    opacity: 1;
  }
  .head-boxes-item:hover .head-boxes-item-ico span {
    color: #ffffff !important;
  }
}

@media (max-width: 1120px) {
  .head-pic--detail {
    margin-bottom: 1rem;
  }
}
.head-pic--detail::before {
  background: none;
}
.head-pic--detail::after {
  background-image: url(../img/vlna_front_solo.svg);
}
@media (max-width: 576px) {
  .head-pic--detail::after {
    height: 170px;
    background-size: 130% auto;
    background-position: left -50px bottom;
  }
}
.head-pic--detail .swiper-wrapper {
  height: 200px;
}
@media (min-width: calc(768px)) {
  .head-pic--detail .swiper-wrapper {
    height: 260px;
  }
}
@media (min-width: calc(1120px)) {
  .head-pic--detail .swiper-wrapper {
    height: 280px;
  }
}
@media (min-width: calc(1420px)) {
  .head-pic--detail .swiper-wrapper {
    height: 350px;
  }
}
@media (min-width: calc(1680px)) {
  .head-pic--detail .swiper-wrapper {
    height: 400px;
  }
}
.head-pic--detail .swiper-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.head-pic--detail .head-pic-desc {
  padding: 0 2rem;
  top: 0;
  bottom: auto;
  height: 200px;
}
@media (min-width: calc(768px)) {
  .head-pic--detail .head-pic-desc {
    padding: 0 3rem;
    top: 1rem;
  }
}
@media (min-width: calc(1120px)) {
  .head-pic--detail .head-pic-desc {
    padding: 0 4rem;
    top: 3rem;
    height: 150px;
  }
}
@media (min-width: calc(1420px)) {
  .head-pic--detail .head-pic-desc {
    padding: 0 5rem;
    top: 5rem;
  }
}
@media (min-width: calc(1680px)) {
  .head-pic--detail .head-pic-desc {
    padding: 0 6rem;
    top: 6rem;
  }
}
.head-pic--detail .head-pic-title {
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}
@media (min-width: calc(1120px)) {
  .head-pic--detail .head-pic-title {
    font-size: 1em;
  }
}
.head-pic--detail .head-pic-title::after {
  content: "";
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #ffffff;
}
.head-pic--detail {
  /*& .head-pic-desc {
      position: static;
      color: $blue;
      padding-block: 6rem;

      & * {
          text-shadow: none;
      }
  }*/
}

/**********************************
MENU
**********************************/
@media (max-width: 1120px) {
  .menu-out {
    width: 360px;
    overflow-y: auto !important;
    position: fixed;
    top: 0;
    right: calc((360px + 10%) * -1);
    max-width: 100%;
    height: 100dvh;
    background-color: #f2f9ff;
    transition: right 0.15s ease-in-out;
    padding-bottom: 2rem;
  }
  .menu-out.mobile-down {
    display: block;
    right: 0;
    transition: right 0.15s ease-in-out;
  }
}
@media (min-width: calc(1120px)) {
  .menu-out {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
@media (min-width: calc(1420px)) {
  .menu-out {
    gap: 2rem;
  }
}
@media (min-width: calc(1680px)) {
  .menu-out {
    gap: 3.5rem;
  }
}

.menu {
  font-size: 1.3em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s;
  gap: 1rem;
}
@media (min-width: calc(1120px)) {
  .menu {
    font-size: 1em;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }
}
@media (min-width: calc(1420px)) {
  .menu {
    gap: 0.75rem;
    font-size: 1em;
  }
}
@media (min-width: calc(1680px)) {
  .menu {
    gap: 1.25rem;
  }
}

.menu-item > a {
  white-space: nowrap;
  border-radius: 100vw;
  border: 1px solid transparent;
  padding: 0 3.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  min-height: 50px;
}
@media (min-width: calc(1120px)) {
  .menu-item > a {
    height: 40px;
    font-weight: 400;
    padding-inline: 0.75rem;
  }
}
@media (min-width: calc(1420px)) {
  .menu-item > a {
    height: 50px;
    padding-inline: 1.2rem;
  }
}
.menu-item:hover > a {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .menu-item > a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100vw;
    background: rgba(34, 34, 34, 0.05);
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
  }
  .menu-item:hover > a::before {
    transform: scale(1);
    opacity: 1;
  }
}
.menu-item.act > a {
  color: #0d67b2;
}
@media (max-width: 1120px) {
  .menu-item.act > a {
    border: 0;
    border-radius: 0;
  }
  .menu-item.act > a::before {
    content: "";
    height: 100%;
    width: 5px;
    background-color: #0d67b2;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (min-width: calc(1120px)) {
  .menu-item.act > a {
    border-color: #83bce6;
  }
}

.submenu-oc {
  color: #222222;
  font-size: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.submenu-active .submenu-oc {
  transform: rotate(45deg);
}

.submenu {
  display: flex;
  flex-direction: column;
  font-size: 0.85em;
  gap: 0;
}
@media (max-width: 1120px) {
  .submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    will-change: max-height;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }
  .submenu-open {
    opacity: 1;
    visibility: visible;
  }
}
.submenu-item a {
  display: block;
  padding: 0.5rem 3.2rem 0.5rem 3.2rem;
  line-height: 1.3;
}
.submenu-item a span {
  padding-left: 1rem;
  display: block;
  position: relative;
}
.submenu-item a:hover {
  color: #222222;
  text-decoration: none;
}
.submenu-item.act a span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  background-color: #83bce6;
  height: 1.2em;
}

@media (min-width: calc(1120px)) {
  .submenu-oc {
    display: none;
  }
  .submenu {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-20px);
    position: absolute;
    padding: 0;
    margin-left: -0.8rem;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    border-radius: 0.5rem;
    gap: 0;
    max-height: none !important;
  }
  .submenu-item a {
    display: block;
    padding: 0.75rem 2rem 0.75rem 1rem;
    color: rgba(34, 34, 34, 0.85);
  }
  .submenu-item:first-child a {
    padding-top: 2rem;
  }
  .submenu-item:last-child a {
    padding-bottom: 2rem;
  }
  .submenu:hover .submenu-item a {
    color: rgba(34, 34, 34, 0.5);
  }
  .submenu:hover .submenu-item a:hover {
    color: #222222;
  }
  .menu-item--submenu:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}
.showmenu-out {
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  color: #222222;
  margin-left: auto;
}
@media (min-width: calc(1120px)) {
  .showmenu-out {
    display: none;
  }
}

.showmenu-ico {
  font-size: 42px;
}

.canvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(34, 34, 34, 0.8);
  transition: all 0.15s ease-in-out;
}

.canvas-menu.act {
  visibility: visible;
  opacity: 1;
  display: block;
}
@media (min-width: calc(1120px)) {
  .canvas-menu.act {
    display: none;
  }
}

.hidemenu {
  padding-inline: 2em;
  height: 65px;
  background-color: #f2f9ff;
  color: #333333;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1em;
  position: sticky;
  top: 0;
  z-index: 2;
}
.hidemenu span {
  font-size: 42px;
}
@media (min-width: calc(1120px)) {
  .hidemenu {
    display: none;
  }
}

/**********************************
MAIN
**********************************/
/**********************************
FOOTER
**********************************/
.mapa-out {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 20px;
}
@media (min-width: calc(1120px)) {
  .mapa-out {
    border-radius: 30px;
    aspect-ratio: 5/2;
  }
}
@media (min-width: calc(1420px)) {
  .mapa-out {
    border-radius: 40px;
  }
}

.mapa {
  width: 100%;
  height: 100%;
}

.mapa-overlay-desc {
  display: none;
}

@media (min-width: calc(1120px)) {
  .mapa-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .mapa-overlay-desc {
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    backface-visibility: hidden;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    margin-top: 2rem;
    display: block;
  }
  .mapa-out:hover .mapa-overlay-desc {
    opacity: 1;
  }
}
.footer {
  padding: 3rem 3rem 7rem 3rem;
  background-color: #0d67b2;
  color: #ffffff;
  margin-top: -5rem;
  position: relative;
  z-index: 3;
  border-radius: 30px 30px 0 0;
  background-image: url(../img/foot.png?v=1);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}
@media (min-width: calc(1120px)) {
  .footer {
    padding: 4rem 7rem 10rem 7rem;
  }
}
@media (min-width: calc(1420px)) {
  .footer {
    padding: 6rem 10rem 15rem 10rem;
  }
}

.footer-in {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}
@media (min-width: calc(768px)) {
  .footer-in {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    text-align: left;
  }
}
@media (min-width: calc(1120px)) {
  .footer-in {
    font-size: 1.1em;
    gap: 6rem;
  }
}
.footer-in > * {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-in > * > * {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-contact {
    align-items: center;
  }
}

.foot-contact-item {
  color: #ffffff;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.2em;
}
.foot-contact-item:hover {
  text-decoration: none;
}
.foot-contact-item:hover .foot-contact-title {
  text-decoration: underline;
}

.foot-contact-title {
  font-weight: 600;
}

.foot-contact-ico {
  font-size: 32px;
}

.footer-logo {
  max-width: 30vw;
  display: block;
}
@media (max-width: 768px) {
  .footer-logo {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .footcopy {
    padding-top: 1.5rem;
  }
}

/**********************************
SECTION
**********************************/
/**********************************
ZINDEXY
**********************************/
.popup, .popup-cart {
  z-index: 190;
}

.canvas {
  z-index: 189;
}

.menu-out {
  z-index: 139;
}

.canvas-menu {
  z-index: 138;
}

.showmenu-out {
  z-index: 137;
}

.menu-act .head-out, .menu-act .head {
  z-index: 137;
}

.topbarsubmenu, .flagsmenu-out, .topbar .buttonmenu-out {
  z-index: 101;
}

.head-out, .head {
  z-index: 99;
  transition: all 0.15s ease-in-out;
}

.objednavka-cena-out {
  z-index: 79;
}

@media (min-width: calc(1120px)) {
  .slider-arrows a {
    z-index: 5;
  }
}

.form-dropdown, .colorline {
  z-index: 1;
}

/**********************************
FORMS
**********************************/
.form-row-out {
  position: relative;
  margin: 0 0 1em 0;
}
.form-row-out:last-child {
  margin-bottom: 0;
}

.form-row {
  display: flex;
  position: relative;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 1em;
}
.form-row:not(.form-row--no-mobile-wrap) {
  flex-direction: column;
}
.form-row > * {
  flex: 1;
}
.form-row > *.col-1 {
  flex: 1;
}
.form-row > *.col-2 {
  flex: 2;
}
.form-row > *.col-3 {
  flex: 3;
}
.form-row > *.col-4 {
  flex: 4;
}
.form-row > *.col-5 {
  flex: 5;
}
.form-row > *.col-6 {
  flex: 6;
}
.form-row > *.col-7 {
  flex: 7;
}
.form-row > *.col-8 {
  flex: 8;
}
.form-row > *.col-9 {
  flex: 9;
}
.form-row > *.col-10 {
  flex: 10;
}
@media (min-width: calc(768px)) {
  .form-row:not(.form-row--column) {
    flex-direction: row;
    align-items: center;
  }
}
.form-row input, .form-row select, .form-row textarea, .form-row label {
  width: 100%;
}

.form-item {
  position: relative;
}
.form-item--other {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: calc(768px)) {
  .form-item--other {
    align-self: flex-end;
  }
}
.form-item--column {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}

.form-row-title {
  font-weight: 700;
  font-size: 1.2em;
  width: 250px;
  flex: 0 0 auto;
}

.buttons-row {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 1em;
  align-items: center;
}
.buttons-row > * {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .buttons-row > * {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .buttons-row > * > * {
    width: 100%;
    margin: 0 !important;
  }
}
@media (min-width: calc(576px)) {
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) > * > * {
    width: auto;
  }
}
@media (min-width: calc(768px)) {
  .buttons-row--col-m {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-m > * > * {
    width: auto;
  }
}
@media (min-width: calc(1120px)) {
  .buttons-row--col-l {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-l > * > * {
    width: auto;
  }
}
@media (min-width: calc(1420px)) {
  .buttons-row--col-xl {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-xl > * > * {
    width: auto;
  }
}

.buttons-row-c {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.buttons-row-c > * {
  width: 100%;
}
@media (min-width: calc(576px)) {
  .buttons-row-c {
    flex-direction: row;
    justify-content: center;
  }
  .buttons-row-c > * {
    width: auto;
  }
}

.buttons-row--bg {
  background: #ffffff;
  box-shadow: rgba(51, 51, 51, 0.2) 0 0 15px;
  border-radius: 0.15em;
  padding: 1em;
}

/**********************************
FORM DROPDOWN
**********************************/
.form-dropdown {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(102, 102, 102, 0.2) 0 0 5px;
  max-height: 20em;
  overflow: auto;
  font-size: 0.9em;
}

.form-dropdown ul li a {
  display: block;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(83, 83, 83, 0.1);
  color: #535353;
  text-decoration: none;
  line-height: 1.2;
}
.form-dropdown ul li a:hover {
  background-color: rgba(83, 83, 83, 0.1);
}
.form-dropdown ul li a.active {
  background-color: rgba(83, 83, 83, 0.2);
}

.form-dropdown-info {
  padding: 0.5rem 1rem;
  margin-top: 0.5em;
  font-size: 0.9em;
  line-height: 1.3;
  color: #eb6615;
  display: inline-block;
}

.form-dropdown-loader {
  animation: animate 1.5s linear infinite;
  clip: rect(0, 24px, 24px, 12px);
  height: 24px;
  width: 24px;
  position: absolute;
  right: 12px;
  top: calc(50% - 12px);
  display: none;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(220deg);
  }
}
.form-dropdown-loader::after {
  animation: animate2 1.5s ease-in-out infinite;
  clip: rect(0, 24px, 24px, 12px);
  content: "";
  border-radius: 50%;
  height: 24px;
  width: 24px;
  position: absolute;
}

.form-dropdown-loader--dark::after {
  animation: animate2_dark 1.5s ease-in-out infinite;
}

@keyframes animate2 {
  0% {
    box-shadow: inset #ffffff 0 0 0 4px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #ffffff 0 0 0 2px;
  }
  100% {
    box-shadow: inset #ffffff 0 0 0 4px;
    transform: rotate(140deg);
  }
}
@keyframes animate2_dark {
  0% {
    box-shadow: inset #333333 0 0 0 4px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #333333 0 0 0 2px;
  }
  100% {
    box-shadow: inset #333333 0 0 0 4px;
    transform: rotate(140deg);
  }
}
/**********************************
TABLES
**********************************/
.table-fixed {
  table-layout: fixed;
}

.min-content {
  width: -moz-min-content;
  width: min-content;
}
@media (min-width: calc(768px)) {
  .min-content {
    width: 1px;
    white-space: nowrap;
  }
}

.transparent tr, .transparent td, .transparent th {
  background-color: none !important;
  border: 0 !important;
}

.table1 {
  width: 100%;
  line-height: 1.3;
}

.table1 td {
  padding: 0.5rem;
  vertical-align: middle;
  text-align: left;
}

.table1 th {
  vertical-align: top;
  padding: 0.5rem;
  text-align: left;
}

.table1 thead th {
  background-color: #0d67b2;
  color: #222222;
  font-weight: normal;
  padding: 0.5em 0.5rem;
  font-size: 0.7em;
  text-transform: uppercase;
}

.table1 tbody tr:nth-child(odd) td, .table1 tbody tr:nth-child(odd) th {
  background-color: #f5f5f5;
}

/*** table2 ***/
table.table2 {
  border-collapse: collapse;
}

table.table2 th, table.table2 td {
  vertical-align: middle;
  padding: 5px 5px 5px 0;
}

table.table2 th {
  vertical-align: middle;
  text-align: left;
}

table.table2 thead th {
  background: #999;
  color: white;
  width: auto;
}

section.dark-bg .table1 td,
section.dark-bg .table1 th {
  border-bottom: 1px solid #333333;
  background-color: rgb(71.4, 71.4, 71.4);
}
section.dark-bg .table1 tr:nth-child(even) td,
section.dark-bg .table1 tr:nth-child(even) th {
  background-color: rgb(91.8, 91.8, 91.8);
}
section.dark-bg .table1 thead th {
  background-color: #333333;
  color: #ffffff;
}

.table-overflow {
  overflow: auto;
  max-width: 100%;
}

/**********************************
TABLE MOBILE
**********************************/
@media (max-width: 1120px) {
  .table-mobile {
    width: 100%;
    table-layout: fixed;
  }
  .table-mobile thead th {
    display: none;
  }
  .table-mobile tbody tr, .table-mobile tbody td, .table-mobile tbody th {
    display: block;
    width: 100% !important;
  }
  .table-mobile tbody tr, .table-mobile tbody td, .table-mobile tbody th,
  .table-mobile tfoot tr, .table-mobile tfoot td, .table-mobile tfoot th {
    text-align: right !important;
  }
  .table-mobile tbody tr {
    background-color: #f5f5f5 !important;
    position: relative;
    padding: 2em;
    border-radius: 1.5rem;
  }
  .table-mobile tbody tr td, .table-mobile tbody tr th {
    padding: 0.5em 0.75em !important;
    display: flex;
    justify-content: space-between;
    height: auto !important;
    position: relative;
  }
  .table-mobile tbody tr td:not(:last-child), .table-mobile tbody tr th:not(:last-child) {
    border-bottom: 1px solid rgb(219.5, 219.5, 219.5);
  }
  .table-mobile tbody tr td[data-title]::before, .table-mobile tbody tr th[data-title]::before {
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
    font-weight: 700;
    text-align: left;
  }
  .table-mobile tbody tr td.table-mobile-thead {
    padding: 1em 0.75em !important;
    background-color: #0d67b2 !important;
    color: #ffffff;
  }
  .table-mobile tbody tr td.table-mobile-thead[data-title]::before {
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
    font-weight: 700;
    text-align: left;
  }
}
@media (max-width: 1120px) {
  .table-mobile tbody {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .table-mobile tbody {
    grid-template-columns: repeat(1, 1fr);
  }
}

/**********************************
OTHERS
**********************************/
.bounce-down {
  animation: bounceDown 5s infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(6px);
  }
  70% {
    transform: translateY(0);
  }
}
.line {
  height: 0;
  line-height: 0;
  font-size: 1em;
  border-bottom: 1px solid #f5f5f5;
  width: 100%;
  display: block;
}

.blok {
  padding: 1rem;
  border-radius: 1.5em;
}
@media (min-width: calc(768px)) {
  .blok {
    border-radius: 3em;
    padding: 2.5em;
  }
}
@media (min-width: calc(1120px)) {
  .blok {
    border-radius: 3em;
    padding: 2rem;
  }
}
@media (min-width: calc(1420px)) {
  .blok {
    padding: 3rem;
  }
}
@media (min-width: calc(1680px)) {
  .blok {
    padding: 4rem;
  }
}

.maxw-1 {
  max-width: 70rem;
  margin-inline: auto;
}

.img-carousel {
  padding-inline: 2rem;
}
@media (min-width: calc(576px)) {
  .img-carousel {
    padding-inline: 3rem;
  }
}
@media (min-width: 2172px) {
  .img-carousel {
    padding-inline: 0;
  }
}

.img-carousel-item {
  width: 80%;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: calc(576px)) {
  .img-carousel-item {
    width: 45%;
  }
}
@media (min-width: calc(768px)) {
  .img-carousel-item {
    width: 40%;
  }
}
@media (min-width: calc(1420px)) {
  .img-carousel-item {
    width: 30%;
  }
}
.img-carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-carousel-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: rgba(34, 34, 34, 0.4);
  color: #ffffff;
  display: block;
  text-align: center;
}

.gsap {
  will-change: transform, opacity;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/**********************************
POPUP
**********************************/
.canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transition: visibility 0s 0.3s, opacity 0.3s linear;
  background: rgba(51, 51, 51, 0.9);
  display: block;
}

.popup {
  background-color: #ffffff;
  color: #333333;
  position: fixed;
  overflow-y: scroll;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  max-width: 90%;
  width: 90%;
}
@media (min-width: calc(768px)) {
  .popup {
    top: 5%;
    width: 98%;
    height: auto;
    position: absolute;
    overflow-y: visible;
  }
}
@media (min-width: calc(1420px)) {
  .popup {
    top: 10%;
    left: 50%;
    width: 90%;
  }
}
.popup.popup-10 {
  width: 10em;
}
.popup.popup-20 {
  width: 20em;
}
.popup.popup-30 {
  width: 30em;
}
.popup.popup-40 {
  width: 40em;
}
.popup.popup-50 {
  width: 50em;
}
.popup.popup-60 {
  width: 60em;
}
.popup.popup-70 {
  width: 70em;
}
.popup.popup-80 {
  width: 80em;
}
.popup.popup-90 {
  width: 90em;
}
.popup.popup-100 {
  width: 100em;
}
.popup.popup-110 {
  width: 110em;
}
.popup.popup-120 {
  width: 120em;
}
.popup.popup-130 {
  width: 130em;
}
.popup.popup-140 {
  width: 150em;
}
.popup.popup-150 {
  width: 150em;
}
.popup.popup--center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup.popup--center .popup-in {
  overflow: auto;
  max-height: calc(90vh - 2em);
}
@media (min-width: calc(576px)) {
  .popup.popup--center .popup-in {
    max-height: calc(90vh - 4em);
  }
}

.popup-in {
  padding: 1em;
}
@media (min-width: calc(576px)) {
  .popup-in {
    padding: 2em;
  }
}

.popup-close {
  display: block;
  color: #ffffff;
  padding: 0.5em 1em;
  background-color: #0d67b2;
  text-align: right;
}

.loader {
  animation: animate 1.5s linear infinite;
  clip: rect(0, 80px, 80px, 40px);
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  z-index: 999999999;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(220deg);
  }
}
.loader::after {
  animation: animate2 1.5s ease-in-out infinite;
  clip: rect(0, 80px, 80px, 40px);
  content: "";
  border-radius: 50%;
  height: 80px;
  width: 80px;
  position: absolute;
}

.loader.loader--dark::after {
  animation: animate2_dark 1.5s ease-in-out infinite;
}

@keyframes animate2 {
  0% {
    box-shadow: inset #ffffff 0 0 0 17px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #ffffff 0 0 0 2px;
  }
  100% {
    box-shadow: inset #ffffff 0 0 0 17px;
    transform: rotate(140deg);
  }
}
@keyframes animate2_dark {
  0% {
    box-shadow: inset #333333 0 0 0 17px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #333333 0 0 0 2px;
  }
  100% {
    box-shadow: inset #333333 0 0 0 17px;
    transform: rotate(140deg);
  }
}
/**********************************
ICODESC
**********************************/
.icodesc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: calc(1120px)) {
  .icodesc {
    gap: 1.5rem;
  }
}
@media (min-width: calc(1420px)) {
  .icodesc {
    gap: 2rem;
  }
}
@media (max-width: 400px) {
  .icodesc--xs {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .icodesc--s {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .icodesc--m {
    flex-direction: column;
  }
}
@media (max-width: 1120px) {
  .icodesc--l {
    flex-direction: column;
  }
}

.icodesc--1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.icodesc--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.icodesc-item-out {
  flex: 1 1 200px;
}

.icodesc-item {
  display: flex;
  gap: 1em;
  align-items: center;
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  height: 100%;
}
@media (min-width: calc(1120px)) {
  .icodesc-item {
    border-radius: 30px;
    padding: 1.5rem;
  }
}
@media (min-width: calc(1420px)) {
  .icodesc-item {
    padding: 2rem;
  }
}
.icodesc-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(232.75, 232.75, 232.75);
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 0;
  border-radius: 20px;
}
@media (min-width: calc(1120px)) {
  .icodesc-item::before {
    border-radius: 30px;
  }
}
.icodesc-item:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .icodesc-item:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .icodesc-item:hover {
    transform: scale(1.08);
  }
}
.icodesc-item * {
  position: relative;
  z-index: 1;
}

.icodesc-item-ico {
  display: grid;
  place-content: center;
  background-color: #83bce6;
  color: #ffffff;
  border-radius: 100vw;
  font-size: 36px;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}
@media (min-width: calc(1420px)) {
  .icodesc-item-ico {
    font-size: 48px;
    width: 72px;
    height: 72px;
  }
}

.icodesc-item-desc {
  display: flex;
  gap: 0.75em;
  flex-direction: column;
}
.icodesc-item-desc strong {
  font-weight: 600;
  line-height: 1.1;
  font-size: 1.1em;
}
.icodesc-item-desc strong b {
  font-weight: 700;
}
.icodesc-item-desc span {
  line-height: 1.3;
  color: #666666;
  font-size: 0.75em;
}

.icodesc--column .icodesc-item {
  flex-direction: column;
  text-align: center;
}

/**********************************
POINTS
**********************************/
.points {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: calc(400px)) {
  .points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: calc(576px)) {
  .points {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: calc(1420px)) {
  .points {
    gap: 1.5rem;
    padding-inline: 60px;
  }
}
@media (min-width: calc(1680px)) {
  .points {
    padding-inline: 90px;
  }
}

.points-item {
  border-radius: 20px;
  border: 1px solid #e5f3ff;
  padding: 1rem 0.5rem;
  color: #0d67b2;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1em;
  background-color: rgba(249.8, 252.6, 255, 0.9);
}
@media (min-width: calc(768px)) {
  .points-item {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: calc(1120px)) {
  .points-item {
    padding: 2rem 1.5rem;
  }
}
.points-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #83bce6;
  border-radius: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.points-item-ico {
  display: grid;
  place-items: center;
  padding: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  font-size: 26px;
  font-weight: 400;
  width: 48px;
  background-color: #ffffff;
}
.points-item-ico span {
  font-size: 26px;
}
@media (min-width: calc(1420px)) {
  .points-item-ico {
    width: 64px;
    font-size: 32px;
  }
  .points-item-ico span {
    font-size: 36px;
  }
}

/**********************************
ITEMS
**********************************/
@media (max-width: 1120px) {
  .items-out:not(.items--col) {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .items-out:not(.items--col)::-webkit-scrollbar {
    display: none;
  }
}

.items {
  display: flex;
  gap: 1rem;
}
@media (min-width: calc(1420px)) {
  .items {
    gap: 1.5rem;
  }
}

.items-item-out {
  flex: 1 0 60%;
  scroll-snap-align: start;
}
@media (min-width: calc(400px)) {
  .items-item-out {
    flex-basis: 40%;
  }
}
@media (min-width: calc(576px)) {
  .items-item-out {
    flex-basis: 28%;
  }
}
@media (min-width: calc(768px)) {
  .items-item-out {
    flex-basis: 22%;
  }
}
@media (min-width: calc(1120px)) {
  .items-item-out {
    flex: 1;
  }
}

.items-spacer {
  width: 1px;
  flex: 0 0 auto;
}
@media (min-width: calc(1120px)) {
  .items-spacer {
    display: none;
  }
}

.items-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e5f3ff;
  box-shadow: 0 10px 5px -10px rgba(51, 51, 51, 0.1);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.items-item:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .items-item {
    border-radius: 30px;
  }
  .items-item:hover {
    transform: scale(1.04);
  }
  .items-item:hover .items-item-ico::before {
    transform: scale(1);
    opacity: 1;
  }
  .items-item:hover .items-item-ico span {
    color: #ffffff !important;
  }
  .items-item:hover .items-item-img img {
    transform: scale(1);
  }
}

.items-item-img {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: calc(768px)) {
  .items-item-img {
    border-radius: 25px;
  }
}
@media (min-width: calc(1120px)) {
  .items-item-img {
    border-radius: 30px;
  }
}
.items-item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5/4;
  max-height: 200px;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.06);
  transform-origin: bottom center;
}

.items-item-desc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 0.5rem 1.5rem 0.5rem;
}
@media (min-width: calc(1420px)) {
  .items-item-desc {
    padding: 3rem 2rem 2rem 2rem;
  }
}

.items-item-ico {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-content: center;
  background-color: #83bce6;
  color: #ffffff;
  border-radius: 100vw;
  width: 56px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  transform: translate(-50%, -50%);
  border: 5px solid #e5f3ff;
}
@media (min-width: calc(1420px)) {
  .items-item-ico {
    width: 64px;
  }
}
.items-item-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  background: rgb(9.75, 77.25, 133.5);
  transform: scale(0.6);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 1;
}
.items-item-ico span {
  font-size: 34px;
  position: relative;
  z-index: 1;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: calc(1120px)) {
  .items-item-ico span {
    font-size: 32px;
  }
}
@media (min-width: calc(1420px)) {
  .items-item-ico span {
    font-size: 40px;
  }
}
@media (min-width: calc(1680px)) {
  .items-item-ico span {
    font-size: 48px;
  }
}

.items-item-title {
  color: #0d67b2;
  font-size: clamp(1.15em, 0.7em + 0.3vw, 1.3em);
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.items-item-txt {
  font-size: 0.9em;
  line-height: 1.3;
  text-align: center;
  color: rgba(51, 51, 51, 0.8);
}

@media (max-width: 1120px) {
  .items--col .items {
    flex-wrap: wrap;
  }
  .items--col .items > * {
    flex: 1 1 250px;
  }
}
.items--col .items .items-item-title {
  font-size: 1.3em;
}

/**********************************
PEREX
**********************************/
.perex {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding-bottom: 1rem;
}
@media (min-width: calc(768px)) {
  .perex {
    flex-direction: row;
    gap: 3em;
  }
}
@media (min-width: calc(1120px)) {
  .perex {
    gap: 6em;
    padding-bottom: 3rem;
  }
}

.perex-img img {
  width: 100%;
  aspect-ratio: 8/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: calc(768px)) {
  .perex-img {
    flex: 2;
  }
  .perex-img img {
    width: 100%;
    aspect-ratio: 5/8;
  }
}

@media (min-width: calc(768px)) {
  .perex-txt {
    padding-top: 8em;
    flex: 3;
  }
}
@media (min-width: calc(1120px)) {
  .perex-txt {
    padding-top: 12.5em;
  }
}

.perex2-out {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
@media (min-width: calc(576px)) {
  .perex2-out {
    padding-bottom: 12rem;
  }
}
@media (min-width: calc(768px)) {
  .perex2-out {
    padding-bottom: 14rem;
  }
}
@media (min-width: calc(1120px)) {
  .perex2-out {
    padding-top: 8rem;
    padding-bottom: 16rem;
  }
}
@media (min-width: calc(1420px)) {
  .perex2-out {
    padding-bottom: 18rem;
  }
}
@media (min-width: calc(1680px)) {
  .perex2-out {
    padding-bottom: 20rem;
  }
}

.perex2 {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: calc(768px)) {
  .perex2 {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .perex2-img {
    order: -1;
  }
}
.perex2-img img {
  width: 100%;
  aspect-ratio: 8/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (min-width: calc(768px)) {
  .perex2-img {
    width: 37%;
    flex: 0 0 auto;
    margin-left: -17%;
    transform: translateY(3rem);
    align-self: flex-end;
  }
  .perex2-img img {
    aspect-ratio: 5/8;
  }
}

.perex2-box {
  padding: 1.5rem;
}
@media (min-width: calc(768px)) {
  .perex2-box {
    width: 37%;
    flex: 0 0 auto;
    margin-left: -17%;
    transform: translateY(3rem);
    align-self: flex-start;
    margin-top: 5rem;
  }
}
@media (min-width: calc(1120px)) {
  .perex2-box {
    padding: 3rem;
  }
}

.perex2-txt {
  background-color: #ffffff;
  padding: 30px;
  flex: 0 0 auto;
}
@media (min-width: calc(576px)) {
  .perex2-txt {
    padding: 40px;
  }
}
@media (min-width: calc(768px)) {
  .perex2-txt {
    padding: 50px;
    padding-right: calc(17% + 50px);
  }
}
@media (min-width: calc(1120px)) {
  .perex2-txt {
    padding: 70px;
    padding-right: calc(17% + 70px);
  }
}
@media (min-width: calc(1420px)) {
  .perex2-txt {
    padding: 80px;
    padding-right: calc(17% + 80px);
  }
}
@media (min-width: calc(1680px)) {
  .perex2-txt {
    padding: 90px;
    padding-right: calc(17% + 90px);
  }
}
@media (min-width: calc(768px)) {
  .perex2-txt {
    width: 80%;
  }
}
.perex2-txt--black {
  background-color: #333333;
  background-image: url(../pics/black_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

/**********************************
SLIDER
**********************************/
.swiper-slide img {
  display: block;
  margin: 0;
  width: 100%;
}

.slider-arrows a {
  display: none;
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  border-width: 0 0 0.2em 0.2em;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: calc(1120px)) {
  .slider-arrows a {
    display: block;
    width: 2.5em;
    height: 2.5em;
  }
}
.slider-arrows a:hover {
  border-color: rgb(255, 255, 255);
}

.slider-arrows--left {
  left: 1em;
  transform: translateY(-100%) rotate(45deg);
}
@media (min-width: calc(1120px)) {
  .slider-arrows--left {
    left: 3em;
  }
}
@media (min-width: calc(1420px)) {
  .slider-arrows--left {
    left: 4em;
  }
}
@media (min-width: calc(1680px)) {
  .slider-arrows--left {
    left: 5em;
  }
}

.slider-arrows--right {
  right: 1em;
  transform: translateY(-100%) rotate(-135deg);
}
@media (min-width: calc(1120px)) {
  .slider-arrows--right {
    right: 3em;
  }
}
@media (min-width: calc(1420px)) {
  .slider-arrows--right {
    right: 4em;
  }
}
@media (min-width: calc(1680px)) {
  .slider-arrows--right {
    right: 5em;
  }
}

/*** headslider ***/
.headslider {
  position: relative;
}

.headslider .swiper-wrapper {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
@media (min-width: calc(1120px)) {
  .headslider .swiper-wrapper {
    border-radius: 30px 30px 0 0;
  }
}
@media (min-width: calc(1420px)) {
  .headslider .swiper-wrapper {
    border-radius: 40px 40px 0 0;
  }
}

@media (min-width: calc(768px)) {
  .headslider .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 75%);
  }
}

.headslider .swiper-slide img,
.headslider .swiper-slide video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 25s ease;
  min-height: 600px;
  height: calc(100vh - 100px);
}
@media (min-width: calc(1120px)) {
  .headslider .swiper-slide img,
  .headslider .swiper-slide video {
    min-height: 650px;
    height: 90vh;
  }
}
@media (min-width: calc(1420px)) {
  .headslider .swiper-slide img,
  .headslider .swiper-slide video {
    min-height: 800px;
  }
}

.headslider .swiper-slide-active img {
  transform: scale(1.3) translate(0, 0);
}

/* zoom pres slide class */
.carousel-button {
  border-radius: 100vw;
  background-color: #83bce6;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  position: relative;
  min-height: 3rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: calc(1120px)) {
  .carousel-button {
    min-height: 4rem;
  }
}
.carousel-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  background: rgb(9.75, 77.25, 133.5);
  transform: scale(0.4);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
  z-index: 0;
}
.carousel-button:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .carousel-button:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .carousel-button:hover {
    transform: scale(1.08);
  }
}
.carousel-button * {
  position: relative;
  z-index: 1;
}
.carousel-button:hover {
  text-decoration: none;
}

/**********************************
CIKCAK
**********************************/
.cikcak {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, -0.5rem + 6.25vw, 8rem);
}

.cikcak-item {
  padding-top: clamp(4rem, -0.5rem + 6.25vw, 10rem);
  background-size: clamp(281px, 150px + 30vw, 700px) auto;
  background-repeat: no-repeat;
}
.cikcak-item:nth-child(1) {
  background-image: url(../img/shape2.svg);
  background-position: right top;
}
.cikcak-item:nth-child(2) {
  background-image: url(../img/shape1.svg);
  background-position: left top;
}
.cikcak-item:nth-child(3) {
  background-image: url(../img/shape2.svg);
  background-position: right top;
}
.cikcak-item:nth-child(4) {
  background-image: url(../img/shape1.svg);
  background-position: left top;
}
.cikcak-item:nth-child(5) {
  background-image: url(../img/shape2.svg);
  background-position: right top;
}
@media (min-width: calc(768px)) {
  .cikcak-item:nth-child(even) .cikcak-item-pic {
    order: -1;
  }
}

.cikcak-item-in {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, -0.5rem + 6.25vw, 8rem);
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .cikcak-item-in .cikcak-item-pic {
    order: -1;
  }
}
@media (min-width: calc(768px)) {
  .cikcak-item-in {
    flex-direction: row;
  }
}
.cikcak-item-in > * {
  flex: 1;
}

.cikcak-item-pic {
  border-radius: 30px;
  overflow: hidden;
}
.cikcak-item-pic img {
  display: block;
}

@media (max-width: 768px) {
  .cikcak-item-desc {
    text-align: center;
  }
}

/**********************************
GALLERY
**********************************/
.fotogalerie {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.fotogalerie-row {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .fotogalerie-row {
    flex-wrap: wrap;
  }
  .fotogalerie-row .fotogalerie-item:nth-child(1) {
    width: calc(60% - 0.5em);
  }
  .fotogalerie-row .fotogalerie-item:nth-child(2) {
    width: calc(40% - 0.5em);
  }
  .fotogalerie-row .fotogalerie-item:nth-child(3) {
    width: calc(40% - 0.5em);
  }
  .fotogalerie-row .fotogalerie-item:nth-child(4) {
    width: calc(60% - 0.5em);
  }
}
@media (min-width: calc(576px)) {
  .fotogalerie-row .fotogalerie-item:nth-child(1) {
    flex: 7;
  }
  .fotogalerie-row .fotogalerie-item:nth-child(2) {
    flex: 4;
  }
  .fotogalerie-row .fotogalerie-item:nth-child(3) {
    flex: 5;
  }
  .fotogalerie-row .fotogalerie-item:nth-child(4) {
    flex: 6;
  }
  .fotogalerie-row:nth-child(2n) .fotogalerie-item:nth-child(1) {
    flex: 4;
  }
  .fotogalerie-row:nth-child(2n) .fotogalerie-item:nth-child(2) {
    flex: 6;
  }
  .fotogalerie-row:nth-child(2n) .fotogalerie-item:nth-child(3) {
    flex: 7;
  }
  .fotogalerie-row:nth-child(2n) .fotogalerie-item:nth-child(4) {
    flex: 5;
  }
  .fotogalerie-row:nth-child(3n) .fotogalerie-item:nth-child(1) {
    flex: 8;
  }
  .fotogalerie-row:nth-child(3n) .fotogalerie-item:nth-child(2) {
    flex: 7;
  }
  .fotogalerie-row:nth-child(3n) .fotogalerie-item:nth-child(3) {
    flex: 6;
  }
  .fotogalerie-row:nth-child(3n) .fotogalerie-item:nth-child(4) {
    flex: 7;
  }
  .fotogalerie-row:nth-child(4n) .fotogalerie-item:nth-child(1) {
    flex: 4;
  }
  .fotogalerie-row:nth-child(4n) .fotogalerie-item:nth-child(2) {
    flex: 5;
  }
  .fotogalerie-row:nth-child(4n) .fotogalerie-item:nth-child(3) {
    flex: 5;
  }
  .fotogalerie-row:nth-child(4n) .fotogalerie-item:nth-child(4) {
    flex: 4;
  }
}

.fotogalerie-item {
  height: 150px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: calc(400px)) {
  .fotogalerie-item {
    height: 200px;
  }
}
@media (min-width: calc(576px)) {
  .fotogalerie-item {
    height: 180px;
  }
}
@media (min-width: calc(768px)) {
  .fotogalerie-item {
    height: 200px;
  }
}
@media (min-width: calc(1120px)) {
  .fotogalerie-item {
    height: 300px;
  }
}
@media (min-width: calc(1420px)) {
  .fotogalerie-item {
    height: 400px;
  }
}
.fotogalerie-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************************
FOTOGALERIE2
**********************************/
.fotogalerie2 {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (min-width: calc(768px)) {
  .fotogalerie2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media (min-width: calc(1420px)) {
  .fotogalerie2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
}

.fotogalerie2-item {
  height: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.fotogalerie2-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fotogalerie2-item:hover {
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media (min-width: calc(1120px)) {
  .fotogalerie2-item:hover {
    transform: scale(1.02);
  }
}

.fotogalerie2-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: rgba(34, 34, 34, 0.4);
  color: #ffffff;
  display: block;
  text-align: center;
}

/**********************************
LOGOGALLERY
**********************************/
.logogal {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
@media (min-width: calc(768px)) {
  .logogal {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (min-width: calc(1420px)) {
  .logogal {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.logogal-item {
  border-radius: 20px;
  border: 1px solid #f5f5f5;
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  padding: 1rem;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 250px;
  background-color: #ffffff;
}
.logogal-item img {
  display: block;
}
.logogal-item:hover {
  text-decoration: none;
}
@media (min-width: calc(1120px)) {
  .logogal-item:hover {
    border-color: #d9d9d9;
    transform: scale(1.06);
  }
}

/**********************************
DETAIL
**********************************/
/*.vypis-tag {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    padding: 0.1em 0.4em;
    font-size: 0.6em;
    font-weight: bold;
}*/
tbody tr.row-akce {
  background-color: rgba(230, 11, 34, 0.2) !important;
}
tbody tr.row-akce td {
  background-color: transparent !important;
}
@media (max-width: 1120px) {
  tbody tr.row-akce td {
    border-color: rgba(230, 11, 34, 0.2) !important;
  }
}

.byt-detail {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: calc(768px)) {
  .byt-detail {
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
  }
}
.byt-detail-l {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.byt-detail-r {
  flex: 1;
}

.detail-img-out {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.detail-img-item img {
  border-radius: 3em;
}

.detail-img-thumbs {
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
@media (min-width: calc(1120px)) {
  .detail-img-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.detail-img-thumbs-item {
  aspect-ratio: 4/2;
  background-position: center center;
  background-size: cover;
  border-radius: 0.5em;
  position: relative;
  overflow: hidden;
}

.vlastnosti {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1em;
}
@media (min-width: calc(1120px)) {
  .vlastnosti {
    gap: 2em;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
@media (min-width: calc(1420px)) {
  .vlastnosti {
    gap: 2em;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.vlastnosti-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  text-align: center;
  padding: 1.5em;
  border-radius: 1.5em;
  background-color: rgba(255, 255, 255, 0.2);
}

.vlastnosti-title {
  font-size: 0.8em;
  text-transform: uppercase;
  color: #666666;
}

.vlastnosti-desc {
  font-size: 1.2em;
  font-weight: 600;
}
@media (min-width: calc(1120px)) {
  .vlastnosti-desc {
    font-size: 1.5em;
  }
}
@media (min-width: calc(1420px)) {
  .vlastnosti-desc {
    font-size: 1.7em;
  }
}

.cena {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  margin-top: 3em;
  margin-bottom: 1em;
}
.cena-title {
  font-size: 0.8em;
  text-transform: uppercase;
  color: #666666;
}
.cena-desc {
  font-weight: 600;
  font-size: 2em;
}
@media (min-width: calc(1120px)) {
  .cena-desc {
    font-size: 2.2em;
  }
}
@media (min-width: calc(1420px)) {
  .cena-desc {
    font-size: 2.5em;
  }
}

/**********************************
ENDCLASSES
**********************************/
.hidden, .submithidden {
  display: none;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}/*# sourceMappingURL=style.css.map */