@charset "UTF-8";

: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;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
  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);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation: 0.2s ease-out 0.1s both f-zoomInUp;
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

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

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

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

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

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  -webkit-animation: 0.2s ease both f-fadeIn;
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

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

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: 0.5s ease both f-fadeSlowIn;
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

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

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

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

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

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

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

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

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

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

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

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

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

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

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

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

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

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: 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;
  -webkit-transform: var(--f-button-transform);
  transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
  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%;
  -webkit-transform: translateY(-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%;
  -webkit-transform: translateX(-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 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

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

html.with-fancybox body {
  -ms-touch-action: none;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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-transform-origin: top left;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  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;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

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

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

.fancybox__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  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: "";
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
  align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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: -webkit-grab;
  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: -webkit-grabbing;
  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;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
  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;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
  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-outline-color: #000;
  --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;
}

.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 {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  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;
  -ms-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;
  -ms-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) {
  -webkit-animation: 0.25s ease 0.1s backwards f-fadeIn;
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
  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) {
  -webkit-animation: 0.15s ease forwards f-fadeOut;
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
  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%;
  -ms-flex-negative: 1;
  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;
  -webkit-clip-path: inset(50%) !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;
  -ms-flex: 0 0 auto;
  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;
  -ms-user-select: none;
  user-select: none;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  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: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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: -webkit-max-content;
  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) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 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) {
  -webkit-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));
  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 > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  -webkit-filter: none;
  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;
  -ms-touch-action: manipulation;
  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);
  -webkit-animation: f-fadeIn 0.2s ease-out;
  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 {
  -ms-flex-wrap: wrap;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  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;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

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

.fancybox__toolbar__column.is-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  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;
  -ms-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: -ms-flexbox;
  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: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  transform-origin: 0;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-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;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide:focus {
  outline: none;
}

body.no-scroll,
body.active-mobile-nav {
  overflow: hidden;
}

.nmp-last-el h1:last-child,
.nmp-last-el h2:last-child,
.nmp-last-el h3:last-child,
.nmp-last-el h4:last-child,
.nmp-last-el h5:last-child,
.nmp-last-el h6:last-child,
.nmp-last-el ul:last-child,
.nmp-last-el ol:last-child,
.nmp-last-el p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.has-section-bottom-margin {
  margin-bottom: calc(50px - 0px);
}

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

.no-top-padding {
  padding-top: 0 !important;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.no-padding-l-r {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.top-section-element {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.top-section-element:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #f01c1c;
  --orange: #FFA400;
  --yellow: #ffc107;
  --green: #20d452;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #20d452;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #f01c1c;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.33333333%;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -ms-flex: 0 0 16.66666667%;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -ms-flex: 0 0 41.66666667%;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.33333333%;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -ms-flex: 0 0 66.66666667%;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.33333333%;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -ms-flex: 0 0 91.66666667%;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0, 98.4, 204) !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}

.bg-success {
  background-color: #20d452 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(25.3114754098, 167.6885245902, 64.8606557377) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #f01c1c !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(203.5495867769, 13.4504132231, 13.4504132231) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #20d452 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #f01c1c !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

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

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

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

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

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

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

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

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

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

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: rgb(0, 86.1, 178.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #20d452 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: rgb(21.9672131148, 145.5327868852, 56.2909836066) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #f01c1c !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: rgb(179.6301652893, 11.8698347107, 11.8698347107) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

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

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.8rem;
}

h3,
.h3 {
  font-size: 1.6rem;
}

h4,
.h4 {
  font-size: 1.4rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

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

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #20d452;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(32, 212, 82, 0.9);
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #20d452;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2320d452' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #20d452;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2320d452' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #20d452;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #20d452;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #20d452;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(68.1967213115, 226.8032786885, 112.2540983607);
  background-color: rgb(68.1967213115, 226.8032786885, 112.2540983607);
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #20d452;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #20d452;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #f01c1c;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(240, 28, 28, 0.9);
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #f01c1c;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f01c1c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f01c1c' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #f01c1c;
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #f01c1c;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23f01c1c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f01c1c' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #f01c1c;
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #f01c1c;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #f01c1c;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #f01c1c;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(243.1611570248, 75.8388429752, 75.8388429752);
  background-color: rgb(243.1611570248, 75.8388429752, 75.8388429752);
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #f01c1c;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #f01c1c;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #f01c1c;
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 0.25);
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary,
body .gform_wrapper.gravity-theme .gform_button_select_files {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover,
body .gform_wrapper.gravity-theme .gform_button_select_files:hover {
  color: #fff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}

.btn-primary:focus,
body .gform_wrapper.gravity-theme .gform_button_select_files:focus,
.btn-primary.focus,
body .gform_wrapper.gravity-theme .focus.gform_button_select_files {
  color: #fff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
  box-shadow: 0 0 0 0 rgba(38.25, 142.8, 255, 0.5);
}

.btn-primary.disabled,
body .gform_wrapper.gravity-theme .disabled.gform_button_select_files,
.btn-primary:disabled,
body .gform_wrapper.gravity-theme .gform_button_select_files:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
body .gform_wrapper.gravity-theme .gform_button_select_files:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
body .gform_wrapper.gravity-theme .gform_button_select_files:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
body .gform_wrapper.gravity-theme .show > .dropdown-toggle.gform_button_select_files {
  color: #fff;
  background-color: rgb(0, 98.4, 204);
  border-color: rgb(0, 92.25, 191.25);
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
body .gform_wrapper.gravity-theme .gform_button_select_files:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
body .gform_wrapper.gravity-theme .gform_button_select_files:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
body .gform_wrapper.gravity-theme .show > .dropdown-toggle.gform_button_select_files:focus {
  box-shadow: 0 0 0 0 rgba(38.25, 142.8, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  box-shadow: 0 0 0 0 rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-success:hover {
  color: #fff;
  background-color: rgb(26.9836065574, 178.7663934426, 69.1454918033);
  border-color: rgb(25.3114754098, 167.6885245902, 64.8606557377);
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: rgb(26.9836065574, 178.7663934426, 69.1454918033);
  border-color: rgb(25.3114754098, 167.6885245902, 64.8606557377);
  box-shadow: 0 0 0 0 rgba(65.45, 218.45, 107.95, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(25.3114754098, 167.6885245902, 64.8606557377);
  border-color: rgb(23.6393442623, 156.6106557377, 60.5758196721);
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(65.45, 218.45, 107.95, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0 rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0 rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #f01c1c;
  border-color: #f01c1c;
}

.btn-danger:hover {
  color: #fff;
  background-color: rgb(215.5092975207, 14.2407024793, 14.2407024793);
  border-color: rgb(203.5495867769, 13.4504132231, 13.4504132231);
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: rgb(215.5092975207, 14.2407024793, 14.2407024793);
  border-color: rgb(203.5495867769, 13.4504132231, 13.4504132231);
  box-shadow: 0 0 0 0 rgba(242.25, 62.05, 62.05, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #f01c1c;
  border-color: #f01c1c;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(203.5495867769, 13.4504132231, 13.4504132231);
  border-color: rgb(191.5898760331, 12.6601239669, 12.6601239669);
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(242.25, 62.05, 62.05, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0 rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0 rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #20d452;
  border-color: #20d452;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(32, 212, 82, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #20d452;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(32, 212, 82, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #f01c1c;
  border-color: #f01c1c;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #f01c1c;
  border-color: #f01c1c;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(240, 28, 28, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #f01c1c;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #f01c1c;
  border-color: #f01c1c;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(240, 28, 28, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(183.6, 218.04, 255);
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(158.1, 204.84, 255);
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 63.96, 132.6);
  border-color: rgb(0, 63.96, 132.6);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(16.64, 110.24, 42.64);
  background-color: rgb(192.56, 242.96, 206.56);
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: rgb(16.64, 110.24, 42.64);
  background-color: rgb(171.1821804511, 238.8378195489, 189.9754135338);
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(16.64, 110.24, 42.64);
  border-color: rgb(16.64, 110.24, 42.64);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(124.8, 14.56, 14.56);
  background-color: rgb(250.8, 191.44, 191.44);
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: rgb(124.8, 14.56, 14.56);
  background-color: rgb(249.2194214876, 167.5205785124, 167.5205785124);
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(124.8, 14.56, 14.56);
  border-color: rgb(124.8, 14.56, 14.56);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

@media (max-width: 767.98px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}

html {
  color: #3d5566;
  font-size: 14px;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  position: relative;
}

/**
Disable W3C & Bootstrap standard styles for the abbr tag
 */

abbr[title].required {
  border-bottom: none;
  text-decoration: none;
}

.monofont {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

#site-header.has-fixed-top-navbar {
  padding-top: 85px;
}

@media screen and (max-width: 1199.98px) and (max-width: 782px) {
  body.admin-bar #site-header nav.navbar.fixed-top {
    top: 46px !important;
  }
}

#site-footer {
  background: #f4f5f7;
}

#site-footer #wc-footer-main {
  padding: 65px 15px 80px;
}

#site-footer .wc-footer-image {
  margin-bottom: 20px;
}

#site-footer .footer-menu-title {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

#site-footer .footer-menu a {
  display: block;
  color: #212529;
  line-height: 1.7;
}

#site-footer .footer-menu a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#site-footer .footer-menu {
  margin-bottom: 20px;
}

#site-footer .location .footer-location-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

#site-footer .location .location-line-1,
#site-footer .location .location-line-2,
#site-footer .location a {
  display: block;
}

#site-footer .location a {
  color: #212529;
}

#site-footer .location a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#site-footer .location {
  margin-bottom: 10px;
}

#site-footer .opening-hours {
  margin-bottom: 20px;
}

#site-footer .opening-hours-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#site-footer .opening-hours span {
  display: block;
}

#site-footer .wc-footer-social {
  margin-bottom: 20px;
}

#site-footer .wc-footer-social span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

#site-footer .wc-footer-social a {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
  color: #212529;
}

#site-footer .wc-footer-social a:hover {
  text-decoration: none;
  color: rgb(225.3581081081, 228.25, 231.1418918919);
}

#wc-bottom-bar {
  padding: 20px 0;
  background: #fff;
}

@media (max-width: 575.98px) {
  #wc-bottom-bar .wc-footer-copyright {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }
}

#wc-bottom-bar .bottom-bar-menu {
  width: 100%;
  text-align: center;
}

#wc-bottom-bar .bottom-bar-menu a {
  color: #212529;
  margin: 10px;
  font-size: 1rem;
}

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: rgb(225.3581081081, 228.25, 231.1418918919);
  text-decoration: none;
}

html {
  overflow-x: initial;
  width: auto;
}

html body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body .main-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.sections-holder section.white {
  background-color: #fff;
}

.sections-holder section.white .content-has-section-color {
  background-color: #fff;
}

.sections-holder section.dark-blue h1,
.sections-holder section.dark-blue h2,
.sections-holder section.dark-blue h3,
.sections-holder section.dark-blue h4,
.sections-holder section.dark-blue h5,
.sections-holder section.dark-blue h6,
.sections-holder section.dark-blue p,
.sections-holder section.dark-blue li,
.sections-holder section.dark-blue a,
.sections-holder section.dark-blue strong,
.sections-holder section.dark-blue i,
.sections-holder section.dark-blue .text {
  color: #fff;
}

.sections-holder section.dark-blue .slides-counter {
  color: #fff;
}

.sections-holder section.dark-blue .not-white-text {
  color: #d0d6da;
}

.sections-holder section.dark-blue .not-white-text p {
  color: inherit;
}

.sections-holder section.dark-blue {
  padding-top: calc(50px - 0px);
}

.sections-holder section.dark-blue {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.payoff-section .main-text-row {
  color: #fff;
}

.sections-holder section.dark-blue.news-section {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.vacancies-section {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.full-slider-section {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.full-slider-section {
  margin-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.full-slider-section .slider-controls-line .progress-holder {
  background-color: #fff;
}

.sections-holder section.dark-blue.team-section h1,
.sections-holder section.dark-blue.team-section h2,
.sections-holder section.dark-blue.team-section h3,
.sections-holder section.dark-blue.team-section h4,
.sections-holder section.dark-blue.team-section h5,
.sections-holder section.dark-blue.team-section h6,
.sections-holder section.dark-blue.team-section p,
.sections-holder section.dark-blue.team-section li,
.sections-holder section.dark-blue.team-section a,
.sections-holder section.dark-blue.team-section strong,
.sections-holder section.dark-blue.team-section i,
.sections-holder section.dark-blue.team-section .text {
  color: #fff;
}

.sections-holder section.dark-blue.team-section .slides-counter {
  color: #fff;
}

.sections-holder section.dark-blue.team-section .not-white-text {
  color: #d0d6da;
}

.sections-holder section.dark-blue.team-section .not-white-text p {
  color: inherit;
}

.sections-holder section.dark-blue.team-section {
  margin-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.team-section {
  padding-top: calc(50px - 0px);
}

.sections-holder section.dark-blue.team-section {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.review-section {
  margin-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.review-section {
  padding-top: calc(50px - 0px);
}

.sections-holder section.dark-blue.review-section {
  padding-bottom: calc(50px - 0px);
}

.sections-holder section.dark-blue.cta-section {
  padding-top: calc(50px - 30px);
}

.sections-holder section.dark-blue.cta-section {
  padding-bottom: calc(50px - 30px);
}

.sections-holder section.dark-blue .multiline-subtitle {
  color: #fff;
}

.sections-holder section.dark-blue .timeline-block .dot {
  background-color: #0C2A40;
}

.sections-holder section.dark-blue {
  background-color: #0C2A40;
}

.sections-holder section.dark-blue .content-has-section-color {
  background-color: #0C2A40;
}

* {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

::-moz-selection {
  background: #FFA400;
  color: black-or-white(#FFA400, 65);
}

::selection {
  background: #FFA400;
  color: black-or-white(#FFA400, 65);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 15px;
  padding: 0;
  text-transform: uppercase;
}

h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  font-size: inherit;
  font-family: inherit;
  font-weight: 700;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  font-family: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.sub-title {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 450;
  line-height: 1;
  margin-bottom: 15px;
  padding-left: 7px;
  text-transform: uppercase;
}

.sub-title:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 2px;
  height: 11px;
  background-color: #FFA400;
  border-radius: 10px;
}

a {
  color: #FFA400;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #007bff;
}

p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 30px;
}

.single-article-content .content-inner-wrapper ul,
.content-wrapper ul,
.product-description ul,
.description ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.single-article-content .content-inner-wrapper ul li,
.content-wrapper ul li,
.product-description ul li,
.description ul li {
  position: relative;
  padding-left: 23px;
}

.single-article-content .content-inner-wrapper ul li + li,
.content-wrapper ul li + li,
.product-description ul li + li,
.description ul li + li {
  margin-top: 12px;
}

.single-article-content .content-inner-wrapper ul li:before,
.content-wrapper ul li:before,
.product-description ul li:before,
.description ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background-color: #FFA400;
}

.svg-bg-cta {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-bg-cta-dims {
  width: 1600px;
  height: 466px;
}

.svg-bg-cta-white {
  background: url("sprites.svg") no-repeat;
  background-position: 26.3028111129% 14.4945567652%;
}

.svg-bg-cta-white-dims {
  width: 1600px;
  height: 466px;
}

.svg-close {
  background: url("sprites.svg") no-repeat;
  background-position: 41.7591021793% 25.4644808743%;
}

.svg-close-dims {
  width: 20px;
  height: 21px;
}

.svg-delete {
  background: url("sprites.svg") no-repeat;
  background-position: 41.9981739924% 26.0169260169%;
}

.svg-delete-dims {
  width: 16px;
  height: 18px;
}

.svg-download {
  background: url("sprites.svg") no-repeat;
  background-position: 42.2233820459% 26.522807976%;
}

.svg-download-dims {
  width: 19px;
  height: 20px;
}

.svg-download-white {
  background: url("sprites.svg") no-repeat;
  background-position: 42.4546758837% 27.0543270543%;
}

.svg-download-white-dims {
  width: 16px;
  height: 18px;
}

.svg-el-image-highlight {
  background: url("sprites.svg") no-repeat;
  background-position: 44.7285655682% 30.4741769858%;
}

.svg-el-image-highlight-dims {
  width: 370px;
  height: 370px;
}

.svg-file {
  background: url("sprites.svg") no-repeat;
  background-position: 47.4830464267% 37.6673040153%;
}

.svg-file-dims {
  width: 15px;
  height: 20px;
}

.svg-folder-open {
  background: url("sprites.svg") no-repeat;
  background-position: 47.7160010441% 38.1927381927%;
}

.svg-folder-open-dims {
  width: 21px;
  height: 18px;
}

.svg-icon-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 47.94627722% 38.6841386841%;
}

.svg-icon-arrow-down-dims {
  width: 14px;
  height: 18px;
}

.svg-icon-arrow-right-white {
  background: url("sprites.svg") no-repeat;
  background-position: 48.1539465101% 39.1328061085%;
}

.svg-icon-arrow-right-white-dims {
  width: 18px;
  height: 14px;
}

.svg-icon-btn-arrow {
  background: url("sprites.svg") no-repeat;
  background-position: 48.3534534456% 39.4973559396%;
}

.svg-icon-btn-arrow-dims {
  width: 12.4px;
  height: 12.4px;
}

.svg-icon-btn-arrow-dblue {
  background: url("sprites.svg") no-repeat;
  background-position: 48.5229317133% 39.8517145505%;
}

.svg-icon-btn-arrow-dblue-dims {
  width: 12.4px;
  height: 12.4px;
}

.svg-icon-btn-arrow-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 48.692409981% 40.2060731614%;
}

.svg-icon-btn-arrow-orange-dims {
  width: 12.4px;
  height: 12.4px;
}

.svg-icon-btn-white,
.mobile-filters-controls .state .btn span:after {
  background: url("sprites.svg") no-repeat;
  background-position: 48.8338762215% 40.5670665213%;
}

.svg-icon-btn-white-dims,
.mobile-filters-controls .state .btn span:after {
  width: 8px;
  height: 13px;
}

.svg-icon-calendar {
  background: url("sprites.svg") no-repeat;
  background-position: 48.9891743837% 40.9885308575%;
}

.svg-icon-calendar-dims {
  width: 16px;
  height: 19px;
}

.svg-icon-cart {
  background: url("sprites.svg") no-repeat;
  background-position: 49.2621130991% 41.5527610716%;
}

.svg-icon-cart-dims {
  width: 26px;
  height: 23px;
}

.svg-icon-cart-solid-white {
  background: url("sprites.svg") no-repeat;
  background-position: 49.5628343991% 42.12164228%;
}

.svg-icon-cart-solid-white-dims {
  width: 20px;
  height: 17.8px;
}

.svg-icon-check {
  background: url("sprites.svg") no-repeat;
  background-position: 49.758894826% 42.4993193575%;
}

.svg-icon-check-dims {
  width: 10px;
  height: 8px;
}

.svg-icon-check-filter-white {
  background: url("sprites.svg") no-repeat;
  background-position: 49.9087353325% 42.7870193619%;
}

.svg-icon-check-filter-white-dims {
  width: 13px;
  height: 14px;
}

.svg-icon-check-green {
  background: url("sprites.svg") no-repeat;
  background-position: 50.0978218338% 43.1452711911%;
}

.svg-icon-check-green-dims {
  width: 16px;
  height: 12px;
}

.svg-icon-check-thin {
  background: url("sprites.svg") no-repeat;
  background-position: 50.2835538752% 43.4664123178%;
}

.svg-icon-check-thin-dims {
  width: 12.5px;
  height: 11.5px;
}

.svg-icon-chevron-down {
  background: url("sprites.svg") no-repeat;
  background-position: 50.4365958556% 43.7278911565%;
}

.svg-icon-chevron-down-dims {
  width: 10px;
  height: 6px;
}

.svg-icon-chevron-down-sorting-select {
  background: url("sprites.svg") no-repeat;
  background-position: 50.5834039502% 43.9054929501%;
}

.svg-icon-chevron-down-sorting-select-dims {
  width: 12.5px;
  height: 7.2px;
}

.svg-icon-chevron-down-white {
  background: url("sprites.svg") no-repeat;
  background-position: 50.7363482341% 44.1088435374%;
}

.svg-icon-chevron-down-white-dims {
  width: 10px;
  height: 6px;
}

.svg-icon-chevron-filter-down {
  background: url("sprites.svg") no-repeat;
  background-position: 50.8799374267% 44.2841589548%;
}

.svg-icon-chevron-filter-down-dims {
  width: 12px;
  height: 7px;
}

.svg-icon-chevron-filter-down-grey {
  background: url("sprites.svg") no-repeat;
  background-position: 51.036370747% 44.4746869897%;
}

.svg-icon-chevron-filter-down-grey-dims {
  width: 12px;
  height: 7px;
}

.svg-icon-chevron-right {
  background: url("sprites.svg") no-repeat;
  background-position: 51.143467389% 44.6737266218%;
}

.svg-icon-chevron-right-dims {
  width: 4.6px;
  height: 7.7px;
}

.svg-icon-close-red {
  background: url("sprites.svg") no-repeat;
  background-position: 51.2579846174% 44.944126465%;
}

.svg-icon-close-red-dims {
  width: 12px;
  height: 12px;
}

.svg-icon-cross-filter {
  background: url("sprites.svg") no-repeat;
  background-position: 51.4016864549% 45.2588555858%;
}

.svg-icon-cross-filter-dims {
  width: 10.1px;
  height: 11px;
}

.svg-icon-cross-white {
  background: url("sprites.svg") no-repeat;
  background-position: 51.5712609206% 45.6082924168%;
}

.svg-icon-cross-white-dims {
  width: 14px;
  height: 15px;
}

.svg-icon-cross-yellow {
  background: url("sprites.svg") no-repeat;
  background-position: 51.7538140566% 46.0174577196%;
}

.svg-icon-cross-yellow-dims {
  width: 14px;
  height: 15px;
}

.svg-icon-department {
  background: url("sprites.svg") no-repeat;
  background-position: 51.9431403234% 46.4266230224%;
}

.svg-icon-department-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-email-field {
  background: url("sprites.svg") no-repeat;
  background-position: 52.1387584768% 46.8357883252%;
}

.svg-icon-email-field-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-facebook,
.socials-wrapper .social.icon-facebook:before {
  background: url("sprites.svg") no-repeat;
  background-position: 52.2934584311% 47.2449536279%;
}

.svg-icon-facebook-dims,
.socials-wrapper .social.icon-facebook:before {
  width: 9px;
  height: 15px;
}

.svg-icon-instagram,
.socials-wrapper .social.icon-instagram:before {
  background: url("sprites.svg") no-repeat;
  background-position: 52.458588757% 47.6671214188%;
}

.svg-icon-instagram-dims,
.socials-wrapper .social.icon-instagram:before {
  width: 16px;
  height: 16px;
}

.svg-icon-linkedin,
.socials-wrapper .social.icon-linkedin:before {
  background: url("sprites.svg") no-repeat;
  background-position: 52.6604068858% 48.0905619203%;
}

.svg-icon-linkedin-dims,
.socials-wrapper .social.icon-linkedin:before {
  width: 15px;
  height: 15px;
}

.svg-icon-location {
  background: url("sprites.svg") no-repeat;
  background-position: 52.8422425033% 48.4997272231%;
}

.svg-icon-location-dims {
  width: 13px;
  height: 15px;
}

.svg-icon-mail {
  background: url("sprites.svg") no-repeat;
  background-position: 53.03939473% 48.9355895197%;
}

.svg-icon-mail-dims {
  width: 17px;
  height: 17px;
}

.svg-icon-pagination-next {
  background: url("sprites.svg") no-repeat;
  background-position: 53.2611531438% 49.3591491683%;
}

.svg-icon-pagination-next-dims {
  width: 17px;
  height: 14px;
}

.svg-icon-pagination-prev {
  background: url("sprites.svg") no-repeat;
  background-position: 53.4829115575% 49.7409326425%;
}

.svg-icon-pagination-prev-dims {
  width: 17px;
  height: 14px;
}

.svg-icon-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 53.7046699713% 50.1637554585%;
}

.svg-icon-phone-dims {
  width: 17px;
  height: 17px;
}

.svg-icon-play {
  background: url("sprites.svg") no-repeat;
  background-position: 53.8842544317% 50.5587353502%;
}

.svg-icon-play-dims {
  width: 11px;
  height: 12px;
}

.svg-icon-search {
  background: url("sprites.svg") no-repeat;
  background-position: 54.0840292276% 50.983069361%;
}

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

.svg-icon-time {
  background: url("sprites.svg") no-repeat;
  background-position: 54.303599374% 51.4457174032%;
}

.svg-icon-time-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-tooltip {
  background: url("sprites.svg") no-repeat;
  background-position: 54.4992175274% 51.8548827059%;
}

.svg-icon-tooltip-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-trash {
  background: url("sprites.svg") no-repeat;
  background-position: 54.6755837147% 52.2469458988%;
}

.svg-icon-trash-dims {
  width: 12.3px;
  height: 13.8px;
}

.svg-icon-youtube,
.socials-wrapper .social.icon-youtube:before {
  background: url("sprites.svg") no-repeat;
  background-position: 54.9001696464% 52.6172300981%;
}

.svg-icon-youtube-dims,
.socials-wrapper .social.icon-youtube:before {
  width: 20px;
  height: 13px;
}

.svg-login-background {
  background: url("sprites.svg") no-repeat;
  background-position: 69.488739109% 61.0047095761%;
}

.svg-login-background-dims {
  width: 1600px;
  height: 496px;
}

.svg-page-404 {
  background: url("sprites.svg") no-repeat;
  background-position: 93.3365369214% 78.4749034749%;
}

.svg-page-404-dims {
  width: 1440px;
  height: 573px;
}

.svg-plus-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 94.7951995826% 82.2276822277%;
}

.svg-plus-orange-dims {
  width: 17px;
  height: 18px;
}

.svg-separator-img-2 {
  background: url("sprites.svg") no-repeat;
  background-position: 97.5230954612% 84.6132365261%;
}

.svg-separator-img-2-dims {
  width: 214px;
  height: 100px;
}

.svg-separator-img-4 {
  background: url("sprites.svg") no-repeat;
  background-position: 98.3860385776% 91.227047508%;
}

.svg-separator-img-4-dims {
  width: 62px;
  height: 250px;
}

.svg-sub-menu-el {
  background: url("sprites.svg") no-repeat;
  background-position: 99.4344337761% 98.8015200234%;
}

.svg-sub-menu-el-dims {
  width: 80px;
  height: 260px;
}

.svg-upload {
  background: url("sprites.svg") no-repeat;
  background-position: 99.6348461137% 99.4263862333%;
}

.svg-upload-dims {
  width: 15px;
  height: 20px;
}

.svg-upload-file {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-upload-file-dims {
  width: 28px;
  height: 21px;
}

.btn.arrow.extended-padding,
.btn.full-width.extended-padding {
  padding-top: 17px;
  padding-bottom: 17px;
}

.btn {
  display: inline-block;
  position: relative;
  background-color: #FFA400;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn span {
  color: inherit;
  font: inherit;
}

.btn:hover {
  color: #fff;
  background-color: #E19100;
  border-color: #E19100;
}

.btn:disabled {
  opacity: 0.7;
}

.btn.full-width {
  width: 100%;
  padding: 12px 25px;
}

.btn.full-width:before {
  display: none;
}

.btn.full-width span {
  position: relative;
}

.btn.full-width span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.btn.full-width.arrow span {
  padding-right: 20px;
}

.btn.full-width.arrow span:before {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow.svg);
}

.btn.full-width.arrow:hover span:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn.full-width.cart span {
  padding-right: 35px;
}

.btn.full-width.cart span:before {
  width: 20px;
  height: 17px;
  background-size: 20px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cart-solid-white.svg);
}

.btn.full-width.text-transform-initial {
  font-size: 18px;
  text-transform: initial;
}

.btn.arrow {
  padding: 12px 48px 12px 25px;
}

.btn.arrow:before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow.svg);
}

.btn.arrow:hover {
  color: #fff;
}

.btn.arrow:hover:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn.btn-ghost {
  background-color: transparent;
}

.btn.btn-ghost:hover {
  border-color: #FFA400;
  background-color: #FFA400;
}

.btn.btn-ghost.dark-text {
  color: #0C2A40;
}

.btn.btn-ghost.dark-text:hover {
  color: #fff;
}

.btn.dark-blue {
  background-color: #123147;
  border-color: #123147;
}

.btn.dark-blue:hover {
  border-color: #123147;
  background-color: rgb(7.6853932584, 20.9213483146, 30.3146067416);
}

.btn.has-bigger-padding {
  padding-left: 30px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.square-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 45px;
  height: 45px;
  border: 2px solid #FFA400;
  border-radius: 5px;
}

.square-btn:after {
  content: "";
  margin: auto;
}

.square-btn.solid {
  background-color: #FFA400;
}

.square-btn.phone:after {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone.svg);
}

.square-btn.mail:after {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mail.svg);
}

.square-btn.cross-white:after {
  width: 14px;
  height: 15px;
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-white.svg);
}

.square-btn.arrow-down:after {
  width: 14px;
  height: 18px;
  background-size: 14px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down.svg);
}

.square-btn.play {
  cursor: pointer;
}

.square-btn.play:after {
  width: 11px;
  height: 12px;
  background-size: 11px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-play.svg);
}

.square-btn.cart {
  position: relative;
}

.square-btn.cart:after {
  width: 26px;
  height: 23px;
  background-size: 26px 23px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cart.svg);
}

.square-btn.cart .cart-items-quantity {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 21px;
  height: 21px;
  background-color: #FFA400;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  -webkit-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}

.btn-link {
  display: inline-block;
  position: relative;
  color: #0C2A40;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-right: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-link span {
  color: inherit;
  font: inherit;
}

.btn-link.white {
  color: #fff;
}

.btn-link.white:hover,
.btn-link.white:focus {
  color: #fff;
}

.btn-link.orange {
  color: #FFA400;
}

.btn-link:before {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  transition: all 0.3s ease-in-out;
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow-orange.svg);
}

.btn-link.icon.calendar:before {
  top: 0;
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
}

.btn-link:hover:not(.icon):before,
.btn-link:focus:not(.icon):before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-link:hover,
.btn-link:focus {
  color: #0C2A40;
  text-decoration: none;
}

.pagination-wrapper ul.page-numbers {
  padding-top: 20px;
  margin-bottom: 30px;
}

.pagination-wrapper .page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination-wrapper .page-numbers li .page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 45px;
  background-color: transparent;
  border-radius: 5px;
  color: #3d5566;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 15px;
}

.pagination-wrapper .page-numbers li .page-numbers .arrow-list-icon {
  position: relative;
  width: 25px;
  height: 36px;
}

.pagination-wrapper .page-numbers li .page-numbers .arrow-list-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.pagination-wrapper .page-numbers li .page-numbers.next {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after {
  width: 17px;
  height: 14px;
  background-size: 17px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pagination-next.svg);
}

.pagination-wrapper .page-numbers li .page-numbers.prev {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after {
  width: 17px;
  height: 14px;
  background-size: 17px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pagination-prev.svg);
}

.pagination-wrapper .page-numbers li .current {
  position: relative;
  width: 45px;
  background-color: #FFA400;
  color: #fff;
}

.pagination-wrapper .page-numbers li a {
  text-decoration: none;
}

.preloader-ajax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  background-color: rgba(88, 96, 131, 0.05);
  text-align: center;
}

.preloader-ajax .preloader-zenith {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 49px;
  height: 49px;
  margin: 0 auto;
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  box-shadow: 3px 3px 1px #FFA400;
  -webkit-animation: cssload-spin 690ms infinite linear;
  animation: cssload-spin 690ms infinite linear;
}

@-webkit-keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.header-small-slider-wrapper {
  position: relative;
  margin-bottom: calc(50px - 30px);
}

.header-small-slider-wrapper:before {
  width: auto;
  height: auto;
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  content: "";
  position: absolute;
  top: 40px;
  bottom: -15px;
  left: -15px;
  right: 35px;
  max-width: 70%;
  background-size: cover;
}

.header-small-slider-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-small-slider-wrapper .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}

.header-small-slider-wrapper .slick-arrow.slick-prev {
  left: 0;
}

.header-small-slider-wrapper .slick-arrow.slick-next {
  right: 0;
}

.header-small-slider {
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .header-small-slider .slick-list {
    padding-right: 10%;
  }
}

.header-small-slider .slick-list {
  overflow: hidden;
}

.header-small-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.header-small-slider .slick-track .slick-slide {
  height: inherit;
  margin-right: 30px;
}

.header-small-slider .slick-track .slick-slide:first-child .image-wrapper {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.header-small-slider .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-table-wrapper {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #BDC6CC;
  border-radius: 5px;
  margin-bottom: 30px;
}

.product-table tr {
  padding-left: 10px;
  padding-right: 10px;
}

.product-table thead tr:first-child td:first-child {
  border-top-left-radius: 5px;
}

.product-table thead tr:first-child td:last-child {
  border-top-right-radius: 5px;
}

.product-table thead td {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  padding: 15px 15px;
}

.product-table thead .heading-1 {
  background-color: #123147;
}

.product-table thead .heading-1 td {
  color: #fff;
  font-size: 18px;
}

.product-table thead .heading-2 {
  background-color: #BDC6CC;
}

.product-table thead .heading-2 td {
  font-size: 16px;
}

.product-table thead .heading-3 {
  background-color: #dee3e5;
}

.product-table thead .heading-3 td {
  font-size: 15px;
  padding: 10px 15px;
}

.product-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.product-table tbody tr:nth-child(even) {
  background-color: #eff1f2;
}

.product-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.product-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.product-table tbody td {
  font-size: 14px;
  padding: 10px 15px;
}

.product-table a {
  color: #3d5566;
}

.product-table a:hover {
  color: #FFA400;
}

.wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  vertical-align: text-top;
}

.tooltip .icon {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-tooltip.svg);
  display: inline-block;
}

.tooltip .tooltiptext {
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  width: 120px;
  background-color: black;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  margin-left: -60px;
  text-align: center;
  visibility: hidden;
}

.tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.additional-accordion .accordion-row {
  padding-left: 8px;
}

.additional-accordion .accordion-row + .accordion-row {
  border-top: 1px solid #E5E9EB;
}

.additional-accordion .accordion-row.active .accordion-title:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.additional-accordion .accordion-title {
  position: relative;
  color: #123147;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
}

.additional-accordion .accordion-title:before {
  width: 5px;
  height: 8px;
  background-size: 5px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right.svg);
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.additional-accordion .accordion-content {
  display: none;
  color: #123147;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding-bottom: 30px;
}

.additional-accordion .accordion-content p {
  color: inherit;
  font: inherit;
}

.product-gallery-slider {
  position: relative;
  background-color: #fff;
  box-shadow: 0 3px 13px 1px rgba(18, 49, 71, 0.05);
  border-radius: 10px;
}

.product-gallery-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.product-gallery-slider .slick-slide {
  display: -ms-flexbox;
  display: flex;
  height: 470px;
  padding: 25px;
}

.product-gallery-slider .slick-slide .image-wrapper {
  height: 100%;
}

.product-gallery-slider .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.product-gallery-slider .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}

.product-gallery-slider .slick-arrow.slick-prev {
  left: 0;
}

.product-gallery-slider .slick-arrow.slick-next {
  right: 0;
}

.language-switcher-holder {
  display: inline-block;
  margin-left: 15px;
}

.language-switcher-holder .wpml-ls-legacy-dropdown {
  width: auto;
  text-transform: uppercase;
}

.language-switcher-holder .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a {
  color: #fff;
  background-color: transparent;
}

.language-switcher-holder .wpml-ls-legacy-dropdown span {
  vertical-align: initial;
}

.language-switcher-holder .wpml-ls-legacy-dropdown:hover a.wpml-ls-item-toggle {
  border-radius: 5px 5px 0 0;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  max-height: 45px;
  background-color: transparent;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding-top: 13px;
  padding-bottom: 16px;
  padding-left: 14px;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle span {
  font: inherit;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  top: 18px;
  border: none !important;
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-white.svg);
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:hover {
  background-color: transparent;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.language-switcher-holder .wpml-ls-sub-menu {
  border: none !important;
}

.wpml-ls-legacy-list-horizontal {
  padding: 0;
}

.wpml-ls-legacy-list-horizontal ul li {
  color: #d0d6da;
}

.wpml-ls-legacy-list-horizontal ul li a {
  display: inline-block;
  color: inherit;
  font-size: 15px;
  padding: 0;
}

.wpml-ls-legacy-list-horizontal ul li a:hover {
  color: inherit;
}

.wpml-ls-legacy-list-horizontal ul li + li:before {
  content: "/";
  display: inline-block;
  color: inherit;
  margin: 0 2px 0 4px;
  vertical-align: middle;
}

.header-container-custom {
  max-width: 1495px;
}

.lottie-main-logo {
  max-width: 80px;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 0;
}

.main-header.fixed .logo,
.main-header.fixed .controls-wrapper {
  position: relative;
  z-index: 2;
}

.main-header.active,
.main-header.active-mobile-nav {
  background-color: #123147;
}

.main-header .main-header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.main-header .main-header-inner .right-part-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .main-header .main-nav-container {
    display: none;
  }
}

.main-header .controls-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.main-header .controls-wrapper .header-phone {
  margin-left: 12px;
}

.main-header .controls-wrapper .header-btn {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .main-header .controls-wrapper .header-btn {
    display: none;
  }
}

.main-header .controls-wrapper .header-cart-btn {
  margin-left: 12px;
}

.ham-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 17px;
}

.ham-icon {
  position: relative;
  width: 20px;
  height: 16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
  text-align: center;
}

.ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFA400;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.ham-icon span:nth-child(1) {
  top: 0;
}

.ham-icon span:nth-child(2),
.ham-icon span:nth-child(3) {
  top: 7px;
}

.ham-icon span:nth-child(4) {
  top: 14px;
}

.ham-icon.open:after {
  content: "";
  display: inline-block;
}

.ham-icon.open span {
  left: 0;
}

.ham-icon.open span:nth-child(1) {
  top: 7px;
  left: 50%;
  width: 0;
}

.ham-icon.open span:nth-child(2) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-icon.open span:nth-child(3) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-icon.open span:nth-child(4) {
  top: 7px;
  left: 50%;
  width: 0;
}

body .gform_wrapper.gravity-theme {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

body .gform_wrapper.gravity-theme .gform_title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  body .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 30px;
  grid-row-gap: 26px;
}

body .gform_wrapper.gravity-theme input[type=color],
body .gform_wrapper.gravity-theme input[type=date],
body .gform_wrapper.gravity-theme input[type=datetime-local],
body .gform_wrapper.gravity-theme input[type=datetime],
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=month],
body .gform_wrapper.gravity-theme input[type=number],
body .gform_wrapper.gravity-theme input[type=password],
body .gform_wrapper.gravity-theme input[type=search],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=time],
body .gform_wrapper.gravity-theme input[type=url],
body .gform_wrapper.gravity-theme input[type=week],
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea {
  background-color: #fff;
  border: 1px solid #F3F5F6;
  border-radius: 5px;
  color: #3d5566;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  outline: none;
  padding: 8px 22px;
}

body .gform_wrapper.gravity-theme input[type=color]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=date]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime-local]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=email]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=month]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=number]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=password]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=search]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=tel]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=text]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=time]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=url]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme input[type=week]::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme select::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme textarea::-webkit-input-placeholder {
  color: #123147;
}

body .gform_wrapper.gravity-theme input[type=color]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=date]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime-local]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=email]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=month]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=number]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=password]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=search]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=tel]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=text]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=time]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=url]:-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=week]:-moz-placeholder,
body .gform_wrapper.gravity-theme select:-moz-placeholder,
body .gform_wrapper.gravity-theme textarea:-moz-placeholder {
  color: #123147;
}

body .gform_wrapper.gravity-theme input[type=color]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=date]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime-local]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=email]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=month]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=number]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=password]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=search]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=tel]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=text]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=time]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=url]::-moz-placeholder,
body .gform_wrapper.gravity-theme input[type=week]::-moz-placeholder,
body .gform_wrapper.gravity-theme select::-moz-placeholder,
body .gform_wrapper.gravity-theme textarea::-moz-placeholder {
  color: #123147;
}

body .gform_wrapper.gravity-theme input[type=color]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=date]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime-local]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=datetime]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=email]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=month]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=number]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=password]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=search]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=tel]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=text]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=time]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=url]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme input[type=week]:-ms-input-placeholder,
body .gform_wrapper.gravity-theme select:-ms-input-placeholder,
body .gform_wrapper.gravity-theme textarea:-ms-input-placeholder {
  color: #123147;
}

body .gform_wrapper.gravity-theme .gfield_required_asterisk {
  color: #f01c1c;
  font-size: 14px;
}

body .gform_wrapper.gravity-theme .ginput_container_fileupload {
  color: #123147;
}

body .gform_wrapper.gravity-theme .gfield_label {
  color: #3d5566;
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 9px;
  text-transform: uppercase;
}

body .gform_wrapper.gravity-theme .gfield select {
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 10px;
  padding-right: 64px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 15px 16px;
  padding-right: 54px;
}

body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
  font-size: 14px;
  line-height: 1;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date {
  -ms-flex-preferred-size: fit-content;
  flex-basis: fit-content;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date select {
  background-position: calc(100% - 18px) 50%;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea {
  position: relative;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea textarea {
  display: block;
  padding-bottom: 45px;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea .ginput_counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #3d5566;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

body .gform_wrapper.gravity-theme .gfield_checkbox,
body .gform_wrapper.gravity-theme .gfield_radio {
  margin: 0;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice {
  overflow: visible;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox],
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=radio],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=checkbox],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label {
  position: relative;
  color: #123147;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  margin-left: 0;
  padding-left: 30px;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label .checkbox,
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label .radio,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .checkbox,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .radio {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e8e8ef;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type=checkbox]:checked + label .checkbox:after {
  content: "";
  margin: auto;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check.svg);
}

body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type=radio]:checked + label .radio:after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FFA400;
  border-radius: 50%;
  margin: auto;
}

body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .radio {
  border-radius: 50%;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] + label {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox] + label .checkbox {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e8e8ef;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type=checkbox]:checked + label .checkbox:before {
  content: "";
  margin: auto;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check.svg);
}

body .gform_wrapper.gravity-theme .gform_drop_area {
  border: 1px solid #f1f1f1;
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_footer,
body .gform_wrapper.gravity-theme .gform_page_footer {
  margin-top: 0;
  padding-top: 25px;
  padding-bottom: 0;
}

body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  display: inline-block;
  position: relative;
  background-color: #FFA400;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

body .gform_wrapper.gravity-theme .gform_footer button span,
body .gform_wrapper.gravity-theme .gform_footer input span,
body .gform_wrapper.gravity-theme .gform_page_footer button span,
body .gform_wrapper.gravity-theme .gform_page_footer input span {
  color: inherit;
  font: inherit;
}

body .gform_wrapper.gravity-theme .gform_footer button:hover,
body .gform_wrapper.gravity-theme .gform_footer input:hover,
body .gform_wrapper.gravity-theme .gform_page_footer button:hover,
body .gform_wrapper.gravity-theme .gform_page_footer input:hover {
  color: #fff;
  background-color: #E19100;
  border-color: #E19100;
}

body .gform_wrapper.gravity-theme .gform_footer button:disabled,
body .gform_wrapper.gravity-theme .gform_footer input:disabled,
body .gform_wrapper.gravity-theme .gform_page_footer button:disabled,
body .gform_wrapper.gravity-theme .gform_page_footer input:disabled {
  opacity: 0.7;
}

body .gform_wrapper.gravity-theme .gform_footer button span,
body .gform_wrapper.gravity-theme .gform_footer input span,
body .gform_wrapper.gravity-theme .gform_page_footer button span,
body .gform_wrapper.gravity-theme .gform_page_footer input span {
  padding-right: 20px;
}

body .gform_wrapper.gravity-theme .gform_footer button span:before,
body .gform_wrapper.gravity-theme .gform_footer input span:before,
body .gform_wrapper.gravity-theme .gform_page_footer button span:before,
body .gform_wrapper.gravity-theme .gform_page_footer input span:before {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow.svg);
}

body .gform_wrapper.gravity-theme .gform_footer button:hover span:before,
body .gform_wrapper.gravity-theme .gform_footer input:hover span:before,
body .gform_wrapper.gravity-theme .gform_page_footer button:hover span:before,
body .gform_wrapper.gravity-theme .gform_page_footer input:hover span:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required .gfield_label {
  color: #f01c1c;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required input {
  background-image: url(../../resources/images/svg/icon-close-red.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-color: #f01c1c;
  padding-right: 64px;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required textarea {
  border-color: #f01c1c;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required select {
  border-color: #f01c1c;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) input:not([value=""]):not([type=file]) {
  border-color: #20d452;
  background-image: url(../../resources/images/svg/icon-check-green.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 16px 12px;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) textarea:not(:empty) {
  border-color: #20d452;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) select:not(.no-value) {
  border-color: #20d452;
}

@media only screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 1;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
  vertical-align: top;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
    margin-bottom: 15px;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #d0d6da;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
  padding-right: 25px;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .large,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .medium,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .small {
  min-height: 45px !important;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield input[type=email] {
  background-image: url(../../resources/images/svg/icon-email-field.svg);
  background-position: 20px 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-left: 50px;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
    padding-right: 0;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
  max-width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label .btn {
    width: 100%;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gfield_description:not(.validation_message) {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  font-size: 80%;
  opacity: 0.9;
  overflow: initial;
  margin-top: 2px;
  padding-top: 0;
}

.gform_confirmation_message {
  color: #d0d6da;
}

.request-form {
  width: 100%;
}

.request-form .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}

.request-form .gform_wrapper.gravity-theme .gform_footer {
  -ms-flex-pack: center;
  justify-content: center;
}

.request-form .gform_wrapper.gravity-theme .gfield_label {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.request-form .gform_wrapper.gravity-theme input[type=text],
.request-form .gform_wrapper.gravity-theme input[type=email],
.request-form .gform_wrapper.gravity-theme input[type=tel] {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #BCBCBC;
  padding: 0;
}

.request-form .gform_wrapper.gravity-theme input[type=text]::-webkit-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=email]::-webkit-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=tel]::-webkit-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type=text]::-moz-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=email]::-moz-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=tel]::-moz-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type=text]:-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=email]:-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=tel]:-ms-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type=text]::-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=email]::-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type=tel]::-ms-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type=text]::placeholder,
.request-form .gform_wrapper.gravity-theme input[type=email]::placeholder,
.request-form .gform_wrapper.gravity-theme input[type=tel]::placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme .gform_footer {
  padding-top: 56px;
}

.request-form .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

body .gform_wrapper.gravity-theme .gform_validation_errors {
  background-color: #fddddd;
  border: 1px solid #f01c1c;
  border-radius: 5px;
  box-shadow: none;
  padding: 23px 27px;
  margin: 0 0 25px;
}

body .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: #ff1717;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: initial;
}

body .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon--close {
  display: none !important;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  color: #ff1717;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: inherit;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  background-color: transparent;
  border: none;
  color: #f01c1c;
  font-size: 14px !important;
  font-weight: 500;
  padding: 0 !important;
}

.main-footer {
  position: relative;
}

.main-footer .bottom-section-element {
  position: absolute;
  top: -35px;
  left: 30px;
  z-index: 1;
  width: 409px;
  max-width: 60%;
  height: 35px;
  overflow: hidden;
}

.main-footer .bottom-section-element:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 409px;
  height: 409px;
  background-size: 409px 409px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.main-footer .footer-inner {
  position: relative;
  z-index: 2;
  background-color: #123147;
}

.main-footer .footer-top-part {
  padding-top: 100px;
}

.main-footer .footer-content-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.main-footer .footer-content-columns .footer-content-column {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-footer .footer-content-column {
  margin-bottom: 30px;
}

.main-footer .footer-content-column .footer-colum-title {
  color: #fff;
  font-weight: 700;
}

.main-footer .footer-content-column .content-wrapper {
  color: #d0d6da;
  font-size: 18px;
  line-height: 1.7;
}

.main-footer .footer-content-column .content-wrapper p {
  font: inherit;
}

.main-footer .footer-content-column .content-wrapper a {
  color: inherit;
}

.main-footer .footer-bottom-part .footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #2a4659;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-bottom: 20px;
}

.main-footer .footer-bottom-part .footer-inner .custom-col.copyright-col {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.copyright-col {
    -ms-flex-order: 3;
    order: 3;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col.menu-col {
  -ms-flex-positive: 2;
  flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.menu-col {
    -ms-flex-order: 1;
    order: 1;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col.lang-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.lang-col {
    -ms-flex-order: 2;
    order: 2;
  }
}

.main-footer .copyright {
  color: #d0d6da;
  font-size: 15px;
}

.footer-pay-off {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 23px;
  text-align: center;
  text-transform: uppercase;
}

.footer-pay-off span {
  font-family: inherit;
}

.footer-pay-off b,
.footer-pay-off strong {
  color: #FFA400;
}

.socials-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.socials-wrapper .social {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: 2px solid #3f586a;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.socials-wrapper .social:hover {
  background-color: #3f586a;
}

.socials-wrapper .social:before {
  content: "";
  margin: auto;
  transition: all 0.3s ease-in-out;
}

.main-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.main-nav .sub-menu {
  display: none !important;
}

.main-nav .menu-item {
  padding: 65px 0;
  line-height: 1;
}

.main-nav .menu-item a {
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.main-nav .menu-item a:hover {
  color: #FFA400;
  text-decoration: none;
}

.main-nav .menu-item.menu-item-has-children a {
  position: relative;
  padding-right: 20px;
}

.main-nav .menu-item.menu-item-has-children a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
}

.main-nav .menu-item.menu-item-has-children:hover > a,
.main-nav .menu-item.menu-item-has-children.hovered > a {
  color: #FFA400;
}

.main-nav .menu-item.menu-item-has-children:hover > a:after,
.main-nav .menu-item.menu-item-has-children.hovered > a:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.sub-menu-container {
  --container-offset: 65px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #123147;
  background-image: url(../../resources/images/svg/sub-menu-el.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 80px 260px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(calc(var(--container-offset) * -1));
  transform: translateY(calc(var(--container-offset) * -1));
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.sub-menu-container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(calc(var(--container-offset) * -1));
  transform: translateY(calc(var(--container-offset) * -1));
  transition: visibility 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s, -webkit-transform 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.sub-menu-container .sub-menu-holder {
  border-radius: 5px;
  box-shadow: 0 4px 4px 0px rgba(49, 71, 84, 0.05);
  padding: calc(10px + var(--container-offset)) 0 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  margin: 0 -15px;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn) {
  display: block;
  color: #fff;
  text-decoration: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn):hover {
  color: #FFA400;
  text-decoration: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn) .description {
  display: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu .description {
  display: inline-block;
  color: #c4cbd1;
  line-height: 1.68;
}

.sub-menu-container .sub-menu-holder > .sub-menu .button-wrapper {
  margin-top: auto;
  padding-top: 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu > .menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.sub-menu-container .sub-menu-holder > .sub-menu > .menu-item > a {
  display: block;
  border-bottom: 1px solid #FFA400;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item {
  line-height: 1;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item + .menu-item {
  margin-top: 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item > a {
  display: inline-block;
  font-family: "futura-pt", sans-serif;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item > a + .description {
  padding-top: 5px;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: #123147;
  border-bottom: 5px solid #FFA400;
  overflow: auto;
  padding: 0 0 30px;
}

.mobile-nav-container .mobile-nav-holder {
  transition: all 0.3s ease-in-out;
}

.mobile-nav {
  list-style-type: none;
  margin: 0 0 0;
  padding: 14px 0 30px;
}

.mobile-nav > .menu-item > a {
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
}

.mobile-nav .menu-item {
  position: relative;
  border-bottom: 1px solid #7484a0;
  line-height: 1.3;
}

.mobile-nav .menu-item:last-child {
  border-bottom: none;
}

.mobile-nav .menu-item .arrow {
  display: none;
  position: absolute;
  top: 30px;
  right: 10px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
}

.mobile-nav .menu-item .description {
  display: none;
  color: #fff;
  font-size: 15px;
}

.mobile-nav .menu-item .button-wrapper {
  display: none;
}

.mobile-nav .menu-item a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 17px;
  z-index: 2;
  padding: 12px 0;
  text-decoration: none;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow {
  display: block;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow.active {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mobile-nav > .menu-item > a {
  padding: 23px 0;
}

.mobile-nav .sub-menu {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .sub-menu .menu-item {
  border-bottom: 1px solid #7484a0;
}

.mobile-nav .sub-menu .menu-item:first-child {
  border-top: 1px solid #7484a0;
}

.mobile-nav .sub-menu .menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-nav .sub-menu .menu-item a {
  font-size: 14px;
  font-weight: 300;
}

.mobile-nav .sub-menu .menu-item .arrow {
  top: 17px;
}

.footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-nav .menu-item {
  padding: 0 10px;
}

.footer-nav .menu-item a {
  color: #d0d6da;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.footer-nav .menu-item a:hover,
.footer-nav .menu-item a:focus {
  text-decoration: underline;
}

.search-form-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-left: 15px;
}

.search-form-header .search-input {
  position: absolute;
  right: 45px;
  width: 250px;
  max-width: calc(100vw - 181px);
  height: 100%;
  outline: none;
  opacity: 0;
  padding: 10px 5px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.search-form-header .search-btn {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: 2px solid #FFA400;
  border-radius: 5px;
  margin: 0;
  padding: 0;
}

.search-form-header .search-btn:after {
  content: "";
  margin: auto;
  width: 19px;
  height: 19px;
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.search-form-header.active .search-input {
  opacity: 1;
  padding-right: 40px;
  visibility: visible;
}

.search-form-header.active .search-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.breadcrumbs-holder {
  background-color: #fff;
}

.breadcrumbs {
  border-bottom: 1px solid #f3f5f6;
  padding: 13px 0;
}

.breadcrumbs a,
.breadcrumbs span {
  color: #8898A3;
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a span {
  font-weight: inherit;
}

.breadcrumbs .separator {
  display: inline-block;
  width: 2px;
  height: 11px;
  background-color: #FFA400;
  margin: 0 10px;
}

.breadcrumbs span[property=itemListElement]:last-child span[property=name] {
  color: #3d5566;
}

.global-popup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(18, 49, 71, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .global-popup {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.global-popup.active {
  opacity: 1;
  visibility: visible;
}

.global-popup.active .popup-body {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.global-popup .popup-body {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 30px;
  -webkit-transform: translateY(-300%);
  transform: translateY(-300%);
}

.global-popup .popup-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.global-popup .popup-content .content-col,
.global-popup .popup-content .image-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.global-popup .popup-content .popup-header {
  position: absolute;
  left: 0;
  width: 100%;
}

.global-popup .popup-content .popup-header .close-popup {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
}

.global-popup .popup-content .popup-header .close-popup.no-image:after,
.global-popup .popup-content .popup-header .close-popup.yellow:after {
  width: 14px;
  height: 15px;
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
}

@media (max-width: 991px) {
  .global-popup .popup-content .popup-header .close-popup:after {
    width: 14px;
    height: 15px;
    background-size: 14px 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
  }
}

.global-popup .popup-content .content-col .inner-wrapper {
  height: 100%;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  padding: 50px 15px 30px;
}

.global-popup .popup-content .content-col .inner-wrapper.no-image {
  border-radius: 5px;
}

.global-popup .popup-content .image-col .image-wrapper {
  height: 100%;
  min-height: 432px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 5px 5px;
}

.global-popup.table-popup {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.global-popup.table-popup .popup-content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
  margin: 0;
  padding: 50px;
}

.global-popup.table-popup .popup-content .popup-header {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.global-popup.table-popup .popup-content .popup-header .close-popup {
  top: 0;
  right: 0;
}

.global-popup.table-popup .popup-content .popup-header .title {
  font-weight: 700;
}

.global-popup.table-popup .popup-content .row-popup-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.global-popup.table-popup .popup-content .image-wrapper {
  margin-bottom: 28px;
  text-align: center;
}

.request-popup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(18, 49, 71, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .request-popup {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.request-popup.active {
  opacity: 1;
  visibility: visible;
}

.request-popup_inner {
  width: 100%;
  margin: auto;
  padding: 60px 30px;
  overflow: auto;
}

.request-popup_body {
  position: relative;
  max-width: 570px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 20px 30px 43px;
}

@media (max-width: 991px) {
  .request-popup_body {
    margin: 50px auto;
    padding: 20px 30px 43px;
  }
}

.request-popup_body b {
  color: #FFA400;
}

.request-popup_body h3 {
  margin-bottom: 27px;
  line-height: 1.5;
}

.request-popup_body .top-description {
  width: 100%;
}

.request-popup .request-close {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
  cursor: pointer;
}

.request-popup .request-close:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
  content: "";
  display: block;
}

.request-popup .request-form {
  width: 100%;
}

.request-popup .request-form .gform_footer {
  -ms-flex-pack: center;
  justify-content: center;
}

.request-popup .request-form .gfield_label {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.header-section-container {
  min-height: 145px;
  background-color: #0C2A40;
  margin-bottom: 50px;
}

.header-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 500px;
  background-color: #0C2A40;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding-top: 75px;
}

.header-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #123147 0%, rgba(18, 49, 71, 0.5) 100%);
  opacity: 0.75;
  z-index: 2;
}

.header-section .bottom-element-header {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.header-section .bottom-element-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.header-section .bottom-element-header.product-el {
  width: 1000000000000%;
  right: auto;
  left: calc(100vw - (100vw - 1150px) / 2);
}

.header-section .bottom-element-header.product-el:before {
  width: 100%;
  background-repeat: repeat;
}

@media (max-width: 991px) {
  .header-section .bottom-element-header.product-el {
    display: none;
  }
}

.header-section .section-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.header-section .section-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section .section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.header-section .thumbnail-wrapper {
  position: relative;
  z-index: 1;
  height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

.header-section .thumbnail-wrapper .bottom-element-header {
  bottom: 100%;
  right: 0;
  height: 35px;
}

.header-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-section .content-col.sibling-has-slider {
  margin-bottom: calc(50px - 30px);
}

.header-section .title,
.header-section .sub-title {
  color: #fff;
}

.header-section .title {
  font-size: 28px;
}

.header-section .description h1,
.header-section .description h2,
.header-section .description h3,
.header-section .description h4,
.header-section .description h5,
.header-section .description h6,
.header-section .description p,
.header-section .description li,
.header-section .description a,
.header-section .description strong,
.header-section .description i,
.header-section .description .text {
  color: #fff;
}

.header-section .description .slides-counter {
  color: #fff;
}

.header-section .description .not-white-text {
  color: #d0d6da;
}

.header-section .description .not-white-text p {
  color: inherit;
}

.header-section .description {
  margin-bottom: 30px;
}

.header-section .description p {
  font-size: 18px;
}

.header-section .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 10px;
}

.header-section .btns-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.newsletter-part {
  padding: 45px 0 0;
}

.newsletter-part .custom-col {
  margin-bottom: 30px;
}

.newsletter-part hr {
  border: none;
  border-bottom: 2px solid #2a4659;
  margin: 15px 0 0;
}

.newsletter-part .title {
  color: #fff;
  margin-bottom: 0;
}

.newsletter-part .content-wrapper {
  color: #d0d6da;
  font-size: 18px;
}

.header-section-home {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.header-section-home .section-image,
.header-section-home .section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-section-home .section-image:before,
.header-section-home .section-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #123147 0%, rgba(18, 49, 71, 0.5) 100%);
  opacity: 0.35;
}

.header-section-home .section-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-section-home .section-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section-home .section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 5;
  width: 100%;
}

.header-section-home .section-inner .part {
  min-height: 150px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-section-home .section-inner .part.has-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 2;
  flex-grow: 2;
}

.header-section-home .section-inner .part.has-usps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 50px;
}

.header-section-home .section-title {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
}

.header-section-home .section-title .sub-title-for-mobile {
  text-align: right;
}

@media (max-width: 991px) {
  .header-section-home .section-title .sub-title-for-mobile ~ .multiline-subtitle {
    display: none;
  }
}

.header-section-home .section-title .multiline-subtitle {
  margin-left: 20px;
}

.header-section-home .section-title + .buttons-wrapper {
  padding-top: 50px;
}

.header-section-home .multiline-subtitle {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.header-section-home .multiline-subtitle .text-row {
  display: block;
}

.header-section-home .description-wrapper {
  color: #fff;
  margin-top: 15px;
}

.header-section-home .description-wrapper p {
  color: inherit;
}

.header-section-home .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.header-section-home .buttons-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-section-home .usps-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.header-section-home .usps-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-section-home .usps-block .icon-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 13px;
}

.header-section-home .usps-block .info-wrapper {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-section-home .usps-block .info-wrapper .title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: initial;
}

.header-section-home .usps-block .info-wrapper .description {
  color: #fff;
  font-size: 14px;
}

.header-section-home {
  /*    .bottom-elements-row {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: center;

            @media ( min-width: 992px ) {
                justify-content: center;
            }

            .scroll-part {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 50px;

                .text {
                    color: #fff;
                    font-family: 'futura-pt', sans-serif;
                    font-size: 14px;
                    font-weight: 700;
                    line-height: 1;
                    margin-bottom: 10px;
                    text-transform: uppercase;
                }
            }
        }*/
}

.text-image-video-section {
  margin-bottom: calc(50px - 30px);
}

.text-image-video-section {
  position: relative;
}

.text-image-video-section.has-bg-element:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFA400;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  content: "";
  top: 68px;
}

.text-image-video-section .content-col,
.text-image-video-section .media-col {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.text-image-video-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.text-image-video-section .section-title {
  margin-bottom: 35px;
}

.text-image-video-section .content-wrapper {
  margin-bottom: 20px;
}

.text-image-video-section .content-wrapper + .list {
  margin-top: 40px;
}

.text-image-video-section .image-wrapper {
  position: relative;
  height: 655px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  /*        
            &.has-bg-element {
                &:before {
                    content: '';
                    position: absolute;
                    top: 20%;
                    bottom: -15px;
                    @include svg_bg( 370px, 370px, 'el-image-highlight' );
                    height: auto;
                    width: auto;

                    @media ( min-width: 992px ) {
                        bottom: -30px;
                    }
                }

                &.image-left {
                    &:before {
                        left: 30%;
                        right: -15px;

                        @media ( min-width: 992px ) {
                            right: -30px;
                        }
                    }
                }

                &.image-right {
                    &:before {
                        right: 30%;
                        left: -15px;

                        @media ( min-width: 992px ) {
                            left: -30px;
                        }
                    }
                }
            }

            img {
                position: relative;
                z-index: 2;
                border-radius: 5px;
            }*/
}

.text-image-video-section .image-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.text-image-video-section .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px 35px;
}

.text-image-video-section .list li {
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  padding-left: 30px;
}

.text-image-video-section .list li:before {
  width: 12px;
  height: 11px;
  background-size: 12px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-thin.svg);
  display: inline-block;
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
}

.payoff-section {
  position: relative;
  margin-bottom: calc(50px - 0px);
}

.payoff-section .bottom-section-element {
  position: absolute;
  bottom: -40px;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.payoff-section .bottom-section-element:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.payoff-section .text-rows-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.payoff-section .sub-title-for-mobile {
  text-align: right;
}

.payoff-section .main-text-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "futura-pt", sans-serif;
  font-size: 40px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}

.payoff-section .main-text-row .text {
  font: inherit;
}

.payoff-section .main-text-row .text b,
.payoff-section .main-text-row .text strong {
  font-family: inherit;
}

.payoff-section .main-text-row .multiline-subtitle {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .payoff-section .main-text-row .multiline-subtitle {
    display: none;
  }
}

.payoff-section .main-text-row + .buttons-wrapper {
  padding-top: 50px;
}

.payoff-section .multiline-subtitle {
  display: inline-block;
  color: #3d5566;
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.payoff-section .multiline-subtitle .text-row {
  display: block;
}

.payoff-section .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 25px;
  margin-left: -55px;
  margin-right: -55px;
  margin-top: -15px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .payoff-section .image-wrapper {
    margin-left: -45px;
    margin-right: -45px;
    max-width: 100px;
  }
}

.payoff-section .image-wrapper.active {
  margin-left: 0;
  margin-right: 0;
  opacity: 1;
}

.payoff-section .image-wrapper img {
  border-radius: 5px;
}

.default-text-section {
  margin-bottom: calc(50px - 30px);
}

.default-text-section .text-center .sub-title {
  display: inline-block;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.default-text-section .titles-wrapper {
  margin-bottom: 50px;
}

.default-text-section .section-title {
  margin-bottom: 0;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.default-text-section .align-left {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.default-text-section .align-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.default-text-section .align-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.full-slider-section {
  margin-bottom: calc(50px - 40px);
}

.full-slider-section {
  position: relative;
}

.full-slider-section .side-text {
  position: absolute;
  top: -100px;
  left: -24px;
  z-index: 2;
  color: #f3f4f5;
  font-family: "futura-pt", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.full-slider-section .section-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.full-slider-section .content-row {
  margin-bottom: 45px;
}

.full-slider-section .content-row .content-col {
  margin-bottom: 30px;
}

.full-slider {
  margin-top: -10px;
  margin-left: -10px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .full-slider .slick-list {
    padding-right: 10%;
  }
}

.full-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.full-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  margin-right: 10px;
  padding: 10px;
}

.slide-image-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  height: 100%;
}

.slide-image-block .open-popup-in-slider,
.slide-image-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-image-block .image-wrapper {
  width: 100%;
  height: 370px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 3px 13px 1px rgba(18, 49, 71, 0.05);
  margin-bottom: 25px;
}

.slide-image-block .slide-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.slide-image-block .description {
  color: #3d5566;
  font-size: 18px;
}

.slide-image-block .btn-link {
  color: #FFA400;
  margin-top: auto;
}

.slider-section .slick-arrow,
.header-small-slider-wrapper .slick-arrow,
.product-gallery-slider .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color: #FFA400;
  border: none;
  padding: 0;
}

.slider-section .slick-arrow:before,
.header-small-slider-wrapper .slick-arrow:before,
.product-gallery-slider .slick-arrow:before {
  content: "";
}

.slider-section .slick-prev.slick-arrow:before,
.header-small-slider-wrapper .slick-prev.slick-arrow:before,
.product-gallery-slider .slick-prev.slick-arrow:before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-white.svg);
}

.slider-section .slick-next.slick-arrow:before,
.header-small-slider-wrapper .slick-next.slick-arrow:before,
.product-gallery-slider .slick-next.slick-arrow:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-white.svg);
}

.slider-section .slick-arrow:hover,
.header-small-slider-wrapper .slick-arrow:hover,
.product-gallery-slider .slick-arrow:hover {
  background-color: rgb(204, 131.2, 0);
}

.slider-section .slider-controls-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  margin-bottom: 40px;
}

.slider-section .slider-controls-line .slides-counter {
  color: #3d5566;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .slider-section .slider-controls-line .slides-counter {
    display: none;
  }
}

.slider-section .slider-controls-line .slides-counter span {
  font-size: 12px;
  font-weight: 700;
}

.slider-section .slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 4px;
  background-color: rgba(18, 49, 71, 0.1);
}

.slider-section .slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background-color: #FFA400;
  height: 4px;
  transition: all 0.3s ease-in-out;
}

.slider-section .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-left: 50px;
}

.clickthrough-section {
  margin-bottom: calc(50px - 0px);
}

.clickthrough-section .btns-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-left: -15px;
  margin-right: -15px;
}

.clickthrough-section .btns-row .btns-col {
  width: 100%;
  padding: 0 15px;
}

.clickthrough-section .btns-row .btns-col .btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  text-align: left;
}

.team-section {
  margin-bottom: calc(50px - 30px);
}

.team-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.team-section .description {
  margin-bottom: 30px;
}

.team-section .images-col {
  margin-bottom: 30px;
}

.team-section .images-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
}

.team-section .images-holder .images-row {
  display: grid;
  gap: 23px;
}

.team-section .images-holder .images-row:nth-child(1) {
  grid-template-columns: minmax(100px, 213px) auto auto;
}

@media (max-width: 767px) {
  .team-section .images-holder .images-row:nth-child(1) {
    grid-template-columns: 1fr 1fr;
  }
}

.team-section .images-holder .images-row:nth-child(1) .image-wrapper:nth-child(2) {
  height: auto;
  grid-column: 2/4;
  grid-row: 1/3;
}

@media (max-width: 767px) {
  .team-section .images-holder .images-row:nth-child(1) .image-wrapper:nth-child(2) {
    grid-column: 2/3;
  }
}

.team-section .images-holder .images-row:nth-child(2) {
  grid-template-columns: minmax(44%, 1fr) minmax(37%, 1fr) minmax(10px, 60px);
}

@media (max-width: 767px) {
  .team-section .images-holder .images-row:nth-child(2) {
    grid-template-columns: 1fr 1fr;
  }
}

.team-section .images-holder .image-wrapper {
  height: 213px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-section .images-holder .separator-2 {
  height: 99px;
  background-image: url(../../resources/images/svg/separator-img-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-section .images-holder .separator-4 {
  background-image: url(../../resources/images/svg/separator-img-4.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .team-section .images-holder .separator-4 {
    grid-column: 1/3;
    height: 40px;
    background-image: url(../../resources/images/svg/separator-img-2.svg);
  }
}

.review-section {
  margin-bottom: calc(50px - 50px);
}

.review-section .content-col {
  margin-bottom: 50px;
}

.review-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.review-block .content-wrapper p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.review-block .name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.75;
}

.review-block .location {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.video-section {
  margin-bottom: calc(50px - 0px);
}

.video-section {
  padding-top: calc(50px - 0px);
}

.video-section {
  position: relative;
}

.video-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(50% + 25px);
  background-color: #0C2A40;
}

.video-section.no-top-padding:before {
  height: 50%;
}

.video-section .video-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 30px;
}

.video-section .video-wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 223px;
  border-radius: inherit;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
}

.video-section .video-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.video-section .video-wrapper .section-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
}

.cta-section {
  margin-bottom: calc(50px - 0px);
}

.cta-section {
  padding-top: calc(50px - 30px);
}

.cta-section {
  padding-bottom: calc(50px - 30px);
}

.cta-section {
  background-image: url(../../resources/images/svg/bg-cta.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-section.white {
  background-image: url(../../resources/images/svg/bg-cta-white.svg);
}

.cta-section .text-center .sub-title {
  display: inline-block;
}

.cta-section .content-has-section-color {
  border-radius: 50%;
  padding: 50px;
}

.cta-section .content-wrapper {
  margin-bottom: 25px;
}

.cta-section .btn-wrapper {
  text-align: center;
}

.tabs-section {
  position: relative;
  margin-bottom: calc(50px - 30px);
}

.tabs-section .in-side {
  margin-bottom: 30px;
}

.tabs-select {
  display: block;
  width: 250px;
  height: 42px;
  background-color: #fff;
  color: #3d5566;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  margin: 0 auto 50px;
}

.tabs-container {
  position: relative;
  z-index: 2;
}

.tabs-container .tabs-switcher {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .tabs-container .tabs-switcher {
    display: none;
  }
}

.tabs-container .tabs-switcher .tab-label {
  position: relative;
  color: #8898a3;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 25px;
  line-height: 1;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.tabs-container .tabs-switcher .tab-label:hover,
.tabs-container .tabs-switcher .tab-label:focus {
  text-decoration: none;
}

.tabs-container .tabs-switcher .tab-label.active {
  color: #FFA400;
}

.tabs-container .tabs-content .tab {
  display: none;
}

.tabs-container .tabs-content .content-wrapper h2 {
  font-size: 36px;
}

.tabs-container .tabs-content .content-wrapper h3 {
  font-size: 32px;
  text-transform: initial;
}

.tabs-container .tabs-content .content-wrapper {
  margin-bottom: 30px;
}

.tabs-container .tables-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.mini-cart-in-header {
  position: relative;
}

.mini-cart-content {
  position: absolute;
  top: 100%;
  right: -50px;
  width: 378px;
  max-width: calc(100vw - 30px);
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 44px 44px -7px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
  padding: 20px 20px 11px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.mini-cart-content.active {
  opacity: 1;
  visibility: visible;
}

.mini-cart-content .widget_shopping_cart_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 400px;
  padding: 20px 20px 11px;
  overflow: auto;
}

.mini-cart-content:before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 60px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 14px 12.5px;
  border-color: transparent transparent #fff transparent;
}

.mini-cart-content .woocommerce-mini-cart__empty-message {
  margin-bottom: 10px;
}

.mini-cart-content .woocommerce-mini-cart__total {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 17px;
}

.mini-cart-content .woocommerce-mini-cart__total strong {
  color: #0C2A40;
  font-size: 14px;
  font-weight: 500;
}

.mini-cart-content .woocommerce-mini-cart__total .amount {
  color: #0C2A40;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.mini-cart-content .woocommerce-mini-cart__total .amount span,
.mini-cart-content .woocommerce-mini-cart__total .amount bdi {
  font: inherit;
}

.mini-cart-content .woocommerce-mini-cart__buttons {
  margin-top: auto;
  margin-bottom: 0;
  text-align: center;
}

.mini-cart-content .woocommerce-mini-cart__buttons .go-to-checkout {
  margin-bottom: 9px;
}

.mini-cart-content .woocommerce-mini-cart__buttons .go-to-cart {
  margin-bottom: 10px;
}

.mini-cart-content .woocommerce-mini-cart__buttons .continue-shopping-link {
  display: inline-block;
  color: #0C2A40;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-decoration: underline;
}

.mini-cart-content .woocommerce-mini-cart__buttons .continue-shopping-link:hover {
  color: #FFA400;
}

.woocommerce-mini-cart {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E4E4E7;
  padding: 20px 0;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 11px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer .quantity {
  color: #71717A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 15px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer .product_total_price {
  color: #0C2A40;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer .product_total_price span,
.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer .product_total_price bdi {
  font: inherit;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-name,
.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link {
  color: #0C2A40;
  font-size: 14px;
  font-weight: 700;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-name {
  display: block;
  max-width: 165px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link {
  line-height: 1;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link:hover {
  color: #FFA400;
  text-decoration: none;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link:hover span {
  color: inherit;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .remove {
  width: 12px;
  height: 14px;
  background-size: 12px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-trash.svg);
  display: inline-block;
  content: "";
  font-size: 0;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item a {
  font-size: 14px;
  font-weight: 700;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item a img {
  width: 57px;
  height: 67px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-type-archive-products_pt {
  /*    .active-filters-container {
            display: none;
            padding-bottom: 35px;
            padding-left: 15px;
            padding-right: 15px;

            @media ( min-width: 992px ) {
                padding-left: 0;
                padding-right: 0;
            }

            .active-filters {
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
            }
        }*/
}

.products-archive-container {
  margin-bottom: 70px;
}

.products-archive-container .top-row .intro-col,
.products-archive-container .top-row .sorting-col {
  margin-bottom: 50px;
}

.products-archive-container .top-row .sorting-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.products-archive-container .sort-products {
  width: 171px;
  max-width: 100%;
  background-image: url(../../resources/images/svg/icon-chevron-down-sorting-select.svg);
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 50%;
  border: 2px solid #D4D4D8;
  border-radius: 5px;
  color: #123147;
  font-size: 18px;
  font-weight: 450;
  outline: none;
  padding: 9px 45px 9px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 991px) {
  .products-archive-container .filters-sidebar .filters-sidebar-inner {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 899;
    width: 100%;
    background-color: #fff;
    overflow: auto;
    padding-bottom: 150px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .products-archive-container .filters-sidebar .filters-sidebar-inner.opened {
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .products-archive-container .filters-sidebar .filters-sidebar-inner.opened + .mobile-filters-controls {
    z-index: 1001;
  }
}

.products-archive-container .response-list-container {
  position: relative;
  min-height: 265px;
}

.products-archive-container .product-col {
  margin-bottom: 38px;
}

.clear-filters-holder {
  display: none;
}

.reset-filters {
  display: block;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #F3F5F6;
  color: #3d5566;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  padding-right: 25px;
  padding-left: 26px;
  margin-bottom: 20px;
}

.reset-filters:hover {
  color: #FFA400;
  text-decoration: none;
}

.reset-filters:before {
  width: 10px;
  height: 11px;
  background-size: 10px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-filter.svg);
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
}

.custom-filter-checkboxes {
  background-color: #fff;
  border-bottom: 1px solid #F3F5F6;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.custom-filter-checkboxes:last-child {
  padding-bottom: 0;
}

.custom-filter-checkboxes .filter-name {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  padding-right: 25px;
  margin-bottom: 0;
}

.custom-filter-checkboxes .filter-name:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 12px;
  height: 7px;
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-filter-down-grey.svg);
}

.custom-filter-checkboxes .filter-name.active:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.custom-filter-checkboxes .checkboxes-toggle-holder {
  display: none;
  padding-top: 15px;
}

.custom-filter-checkboxes .checkboxes-toggle-holder.opened {
  display: block;
}

.custom-filter-checkboxes .checkbox-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 24px;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox + .checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #D4D4D8;
  border-radius: 2px;
  margin-right: 10px;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox:checked + .checkbox {
  background-color: #FFA400;
  border-color: #FFA400;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox:checked + .checkbox:before {
  width: 13px;
  height: 14px;
  background-size: 13px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-filter-white.svg);
  content: "";
  margin: auto;
}

.custom-filter-checkboxes .checkbox-wrapper .text {
  color: #000;
  font-size: 15px;
}

.custom-filter-checkboxes .checkbox-wrapper:hover .checkbox {
  border-color: #FFA400;
}

.custom-filter-checkboxes .more-checkboxes {
  display: none;
}

.custom-filter-checkboxes .more-checkboxes .more-checkboxes-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-filter-checkboxes .show-more:not(.active),
.custom-filter-checkboxes .show-less:not(.active) {
  display: none;
}

.custom-filter-checkboxes .show-more,
.custom-filter-checkboxes .show-less {
  color: #000;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.mobile-filters-controls {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 12px rgba(33, 33, 99, 0.07);
}

.mobile-filters-controls .state {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}

.mobile-filters-controls .state.not-active {
  display: none;
}

.mobile-filters-controls .state .btn {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.mobile-filters-controls .state .btn:after {
  display: none;
}

.mobile-filters-controls .state .btn span {
  position: relative;
  padding-right: 25px;
}

.mobile-filters-controls .state .btn span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-filters-controls .state .btn.open-filter span:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-filters-controls .state .btn.close-filter span:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.mobile-filters-controls .clear-filters {
  color: #3d5566;
  margin-top: 15px;
}

.product-block {
  position: relative;
  height: 100%;
  border: 2px solid #F3F5F6;
  border-radius: 5px;
  padding: 22px;
  transition: all 0.3s ease-in-out;
}

.product-block:hover {
  border-color: #fff;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.product-block:hover .product-title:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.product-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-block .image-holder {
  display: -ms-flexbox;
  display: flex;
  height: 234px;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 0;
}

.product-block .image-holder .image-wrapper {
  height: 100%;
  max-height: 100%;
  margin: auto;
}

.product-block .image-holder .image-wrapper img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-block .product-title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  padding-right: 50px;
  text-transform: initial;
}

.product-block .product-title:after {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow-dblue.svg);
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

.product-block .product-block-price {
  color: #3d5566;
  font-size: 15px;
  line-height: 1.2;
  margin-top: 15px;
}

.product-block .product-block-price bdi,
.product-block .product-block-price span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

body.single-product .tooltips-holder {
  display: none;
}

body.single-product .woocommerce-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  border-radius: 6px;
  color: #3d5566;
  font-size: 14px;
  margin-bottom: 25px;
  padding: 17px 18px 17px 60px;
}

body.single-product .woocommerce-message:before {
  width: 19px;
  height: 19px;
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-round-check.svg);
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body.single-product .woocommerce-message {
  background: #F0FDF4;
}

body.single-product .woocommerce-message .view-cart {
  margin-left: auto;
  padding-left: 15px;
}

body.single-product .header-section-container {
  margin-bottom: 20px;
}

body.single-product .top-single-product-row {
  margin-bottom: 150px;
}

body.single-product .top-single-product-row .breadcrumbs {
  margin-bottom: 30px;
}

body.single-product .product-thumbnail-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

body.single-product .product-thumbnail-wrapper.desktop {
  margin-bottom: -150px;
  -webkit-transform: translateY(-170px);
  transform: translateY(-170px);
}

body.single-product .product-thumbnail-wrapper.desktop.v2 {
  margin-bottom: -120px;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
}

@media (max-width: 991px) {
  body.single-product .product-thumbnail-wrapper.desktop {
    display: none;
  }
}

body.single-product .product-thumbnail-wrapper.desktop .woocommerce-product-gallery__image {
  position: relative;
  z-index: 2;
  height: 470px;
  background-color: #fff;
  box-shadow: 0 3px 13px 1px rgba(18, 49, 71, 0.05);
  border-radius: 10px;
  padding: 25px;
}

body.single-product .product-thumbnail-wrapper.desktop .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.single-product .product-thumbnail-wrapper .custom-product-gallery {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  height: 487px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 13px 1px rgba(18, 49, 71, 0.05);
  padding: 16px 8px;
}

body.single-product .product-thumbnail-wrapper .custom-product-gallery .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 190px;
  height: 100%;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease-out;
}

body.single-product .product-thumbnail-wrapper .custom-product-gallery .image-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

body.single-product .product-thumbnail-wrapper .custom-product-gallery .image-wrapper.active {
  opacity: 1;
  transition: all 0.3s ease-in;
}

body.single-product .product-thumbnail-wrapper img {
  border-radius: inherit;
}

body.single-product .variations {
  margin-bottom: 25px;
}

body.single-product .variations tr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 25px;
}

body.single-product .variations tr th label {
  color: #252C32;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

body.single-product .variations [id^=pa_] {
  display: none;
  opacity: 0;
  visibility: hidden;
}

body.single-product .variations .reset_variations {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

body.single-product .custom-variation-radios[class*=pa_] {
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 6px !important;
  overflow: hidden !important;
}

body.single-product .custom-variation-radios[class*=pa_] br {
  display: none;
}

body.single-product .custom-variation-radios[class*=pa_] .radio-wrapper {
  height: inherit;
}

body.single-product .custom-variation-radios[class*=pa_] .radio-wrapper input {
  position: absolute;
  display: none;
  opacity: 0;
  visibility: hidden;
}

body.single-product .custom-variation-radios[class*=pa_] .radio-wrapper input:checked + label {
  background-color: #FFA400;
  color: #fff;
}

body.single-product .custom-variation-radios[class*=pa_] .radio-wrapper label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background-color: #D9D9DA;
  color: #0C2A40;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.084px;
  padding: 8px 16px;
  margin: 0;
}

body.single-product .custom-variation-radios[class*=pa_color] .radio-wrapper input:checked + label {
  border: 2px solid #000;
}

body.single-product .custom-variation-radios[class*=pa_color] .radio-wrapper label {
  display: block;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 0;
  margin: 0;
  text-indent: -9999px;
}

body.single-product .woocommerce-variation-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

body.single-product .woocommerce-variation-price .price-label {
  color: #0C2A40;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

body.single-product .woocommerce-variation-price .separator {
  width: 2px;
  height: 12px;
  background-color: #FFA400;
  border-radius: 10px;
  margin: 0 20px;
}

body.single-product .price {
  color: #0C2A40;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

body.single-product .price bdi,
body.single-product .price span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

body.single-product .excl-tax-price {
  color: #989FAE;
  font-size: 18px;
}

body.single-product .quantity {
  margin-bottom: 25px;
}

body.single-product .quantity .input-text {
  width: 77px;
  background: #fff;
  border: 1px solid #D4D4D8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
}

body.single-product .single_add_to_cart_button {
  max-width: 340px;
}

body.single-product .single_add_to_cart_button:not(.cart) {
  display: none;
}

.product-template-single-product-v2 .header-section {
  min-height: 430px;
}

.product-template-single-product-v2 .header-section .section-inner {
  padding-top: 0;
}

.product-template-single-product-v2 .header-section .title {
  margin-bottom: 20px;
}

.product-template-single-product-v2 .breadcrumbs {
  border-bottom: none;
  margin-bottom: 30px;
}

.product-template-single-product-v2 .breadcrumbs span[property=itemListElement]:last-child span[property=name] {
  color: #fff;
}

.product-template-single-product-v2 .product-description {
  margin-top: 32px;
}

.product-template-single-product-v2 .variations_form {
  margin-top: 32px;
}

.product-template-single-product-v2 .variations_form .left-col,
.product-template-single-product-v2 .variations_form .right-col {
  width: 100%;
}

.product-template-single-product-v2 .variations_form.cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-template-single-product-v2 .variations_form .variations {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.product-template-single-product-v2 .variations_form .variations tbody {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 23px;
}

.product-template-single-product-v2 .variations_form .variations tbody tr {
  margin-bottom: 0;
}

.product-template-single-product-v2 .variations_form .woocommerce-variation-add-to-cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.product-template-single-product-v2 .variations_form .woocommerce-variation-add-to-cart .qty-wrapper .qty-label {
  color: #989FAE;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}

.product-template-single-product-v2 .variations_form .woocommerce-variation-add-to-cart .quantity {
  margin-bottom: 0;
}

.product-template-single-product-v2 .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-template-single-product-v2 .variations_form .additional-accordion,
.product-template-single-product-v2 .variations_form .single_variation_wrap {
  width: 100%;
  margin-bottom: 30px;
}

.page-template-checkout .woocommerce .woocommerce-message,
.page-template-cart .woocommerce .woocommerce-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  border-radius: 6px;
  color: #3d5566;
  font-size: 14px;
  margin-bottom: 25px;
  padding: 17px 18px 17px 60px;
}

.page-template-checkout .woocommerce .woocommerce-message:before,
.page-template-cart .woocommerce .woocommerce-message:before {
  width: 19px;
  height: 19px;
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-round-check.svg);
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-template-checkout .woocommerce .woocommerce-message,
.page-template-cart .woocommerce .woocommerce-message {
  background: #EFF6FF;
}

.page-template-checkout .woocommerce,
.page-template-cart .woocommerce {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 70px;
}

.page-template-checkout .woocommerce .wc-empty-cart-message,
.page-template-cart .woocommerce .wc-empty-cart-message {
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

.page-template-checkout .woocommerce .wc-empty-cart-message + .return-to-shop,
.page-template-cart .woocommerce .wc-empty-cart-message + .return-to-shop {
  margin-left: 15px;
}

.page-template-checkout .woocommerce .woocommerce-notices-wrapper,
.page-template-cart .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-checkout .woocommerce .process-left-column,
.page-template-cart .woocommerce .process-left-column {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.page-template-checkout .woocommerce .process-right-column,
.page-template-cart .woocommerce .process-right-column {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.page-template-checkout .woocommerce button[name=update_cart],
.page-template-checkout .woocommerce input[name=update_cart],
.page-template-cart .woocommerce button[name=update_cart],
.page-template-cart .woocommerce input[name=update_cart] {
  display: none;
}

.page-template-cart .header-section-container {
  margin-bottom: 50px;
}

.page-template-cart .woocommerce-cart-form {
  overflow: auto;
}

.page-template-cart .woocommerce-cart-form__contents {
  width: 100%;
}

.page-template-cart .woocommerce-cart-form__contents thead {
  display: none;
}

.page-template-cart .woocommerce-cart-form__contents .cart_item {
  position: relative;
}

.page-template-cart .woocommerce-cart-form__contents .cart_item + .cart_item {
  border-top: 1px solid #E4E4E7;
}

@media (max-width: 767px) {
  .page-template-cart .woocommerce-cart-form__contents tr td[data-title]:before {
    content: attr(data-title) ": ";
    color: #123147;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    float: left;
  }
}

@media (max-width: 767px) {
  .page-template-cart .woocommerce-cart-form__contents tr td {
    display: block;
    text-align: right;
    clear: both;
  }
}

.page-template-cart .woocommerce-cart-form__contents td {
  padding: 15px;
}

.page-template-cart .woocommerce-cart-form__contents .product-remove {
  display: none;
}

.page-template-cart .woocommerce-cart-form__contents .product-thumbnail {
  width: 115px;
}

.page-template-cart .woocommerce-cart-form__contents .product-name a {
  display: inline-block;
  width: 60%;
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  padding-right: 15px;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .page-template-cart .woocommerce-cart-form__contents .product-name a {
    display: block;
    width: auto;
    padding-right: 0;
    margin-bottom: 15px;
  }
}

.page-template-cart .woocommerce-cart-form__contents .product-name a:hover {
  color: #ffc107;
}

.page-template-cart .woocommerce-cart-form__contents .product-name .variation {
  display: inline-grid;
  grid-template-columns: -webkit-max-content -webkit-min-content;
  grid-template-columns: max-content min-content;
  gap: 10px 5px;
  font-size: 12px;
  margin-bottom: 0;
  vertical-align: middle;
}

.page-template-cart .woocommerce-cart-form__contents .product-name .variation p {
  font-size: 12px;
  margin-bottom: 0;
}

.page-template-cart .woocommerce-cart-form__contents .product-name .variation dd,
.page-template-cart .woocommerce-cart-form__contents .product-name .variation dt {
  color: #123147;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.page-template-cart .woocommerce-cart-form__contents .product-name .variation dd p {
  color: #123147;
  line-height: 1;
}

.page-template-cart .woocommerce-cart-form__contents .product-name .variation dd p:last-child {
  margin-bottom: 0;
}

.page-template-cart .woocommerce-cart-form__contents .product-price {
  display: none !important;
}

.page-template-cart .woocommerce-cart-form__contents .product-quantity .qty {
  width: 77px;
  background: #fff;
  border: 1px solid #D4D4D8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
}

.page-template-cart .woocommerce-cart-form__contents .product-subtotal {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.3;
  text-align: right;
}

.page-template-cart .woocommerce-cart-form__contents .product-subtotal bdi,
.page-template-cart .woocommerce-cart-form__contents .product-subtotal span {
  color: inherit;
  font: inherit;
}

.page-template-cart .woocommerce-cart-form__contents .product-subtotal .remove {
  width: 12px;
  height: 14px;
  background-size: 12px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-trash.svg);
  display: inline-block;
  content: "";
  font-size: 0;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .page-template-cart .woocommerce-cart-form__contents .product-subtotal .remove {
    position: absolute;
    top: 50px;
    right: 15px;
  }
}

.page-template-cart .actions {
  /*        .button[name="update_cart"] {
                @include btn_basis;
            }*/
}

.page-template-cart .coupon {
  display: none;
}

.page-template-cart .cart-collaterals {
  background-color: #FAFAFA;
  border-radius: 5px;
  padding: 25px 30px 30px;
}

.page-template-cart .cart-collaterals .cart_totals h2 {
  display: none;
}

.page-template-cart .cart-collaterals .shop_table {
  width: 100%;
}

.page-template-cart .cart-collaterals .shop_table tr {
  border-bottom: 1px solid #E4E4E7;
}

.page-template-cart .cart-collaterals .shop_table th,
.page-template-cart .cart-collaterals .shop_table td {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.3;
  padding-top: 19px;
  padding-bottom: 19px;
}

.page-template-cart .cart-collaterals .shop_table th bdi,
.page-template-cart .cart-collaterals .shop_table th span,
.page-template-cart .cart-collaterals .shop_table td bdi,
.page-template-cart .cart-collaterals .shop_table td span {
  color: inherit;
  font: inherit;
}

.page-template-cart .cart-collaterals .shop_table td {
  text-align: right;
}

.page-template-cart .cart-collaterals .shop_table .order-total {
  border-bottom: none;
}

.page-template-cart .cart-collaterals .shop_table .order-total th,
.page-template-cart .cart-collaterals .shop_table .order-total td {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-template-cart .contact-cart-button {
  margin-top: 15px;
}

.woocommerce-shipping-methods {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  list-style-type: none;
}

.woocommerce-shipping-methods li {
  position: relative;
  padding-left: 17px;
}

.woocommerce-shipping-methods li input[type=radio],
.woocommerce-shipping-methods li input[type=checkbox] {
  position: absolute;
  top: 5px;
  left: 0;
}

.wc_payment_methods .wc_payment_method {
  position: relative;
}

.wc_payment_methods .wc_payment_method label {
  padding-left: 20px;
}

.wc_payment_methods .wc_payment_method input[type=radio],
.wc_payment_methods .wc_payment_method input[type=checkbox] {
  position: absolute;
  top: 4px;
  left: 0;
}

.amount-items-in-cart {
  display: inline-block;
  color: #A1A1A1;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 17px;
}

.page-template-checkout .header-section-container {
  margin-bottom: 50px;
}

.page-template-checkout.woocommerce-order-received .woocommerce {
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
}

form.woocommerce-checkout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

form.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

form.woocommerce-checkout .form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 25px;
}

form.woocommerce-checkout .form-row.place-order {
  margin-bottom: 0;
}

form.woocommerce-checkout .form-col .col-1,
form.woocommerce-checkout .form-col .col-2 {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

form.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

form.woocommerce-checkout label {
  width: 100%;
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 9px;
  text-transform: uppercase;
}

form.woocommerce-checkout label .optional {
  text-transform: initial;
}

form.woocommerce-checkout .woocommerce-input-wrapper {
  width: 100%;
}

form.woocommerce-checkout input.input-text {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #DFE1E2;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding: 11px 10px;
}

form.woocommerce-checkout #shipping_country_field,
form.woocommerce-checkout #billing_country_field {
  display: none;
}

form.woocommerce-checkout #billing_address_2_field {
  width: 50%;
  /*            @media ( min-width: 992px ) {
                    width: 28%;
                    //padding-left: 25px;
                }*/
}

form.woocommerce-checkout #billing_house_addition_field {
  width: 50%;
  padding-left: 25px;
  /*            @media ( min-width: 992px ) {
                    width: 29%;
                }*/
}

form.woocommerce-checkout #billing_address_2_field .optional {
  display: none;
}

form.woocommerce-checkout #billing_house_addition_field .optional {
  display: none;
}

form.woocommerce-checkout #order_review_heading {
  display: none;
}

form.woocommerce-checkout .woocommerce-shipping-methods li input[type=radio],
form.woocommerce-checkout .woocommerce-shipping-methods li input[type=checkbox] {
  top: 4px;
}

.woocommerce-checkout-review-order {
  border-radius: 5px;
  background: #FAFAFA;
  padding: 25px 30px 20px;
}

.woocommerce-checkout-review-order .woocommerce-privacy-policy-text {
  color: #123147;
  font-size: 14px;
}

.woocommerce-checkout-review-order .woocommerce-privacy-policy-text p {
  color: inherit;
  font: inherit;
  margin-bottom: 15px;
}

.woocommerce-checkout-review-order .contact-cart-button {
  margin-top: 15px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
}

.woocommerce-checkout-review-order-table thead {
  display: none;
}

.woocommerce-checkout-review-order-table .cart_item {
  border-bottom: 20px solid transparent;
}

.woocommerce-checkout-review-order-table .cart_item:last-child {
  border-bottom: none;
}

.woocommerce-checkout-review-order-table .product-name {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}

.woocommerce-checkout-review-order-table .product-name b {
  font: inherit;
}

.woocommerce-checkout-review-order-table .product-name .product-quantity {
  color: inherit;
  font: inherit;
  font-size: 18px;
}

.woocommerce-checkout-review-order-table .product-name .variation {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 0;
}

.woocommerce-checkout-review-order-table .product-name .variation p {
  font-size: 12px;
  margin-bottom: 5px;
}

.woocommerce-checkout-review-order-table .product-name .variation dd,
.woocommerce-checkout-review-order-table .product-name .variation dt {
  color: #123147;
}

.woocommerce-checkout-review-order-table .product-name .variation dd p {
  color: #123147;
}

.woocommerce-checkout-review-order-table .product-name .variation dd p:last-child {
  margin-bottom: 0;
}

.woocommerce-checkout-review-order-table .product-total {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 450;
  text-align: right;
  vertical-align: top;
}

.woocommerce-checkout-review-order-table .product-total span,
.woocommerce-checkout-review-order-table .product-total bdi {
  color: inherit;
  font: inherit;
}

.woocommerce-checkout-review-order-table tfoot:before {
  content: "";
  display: block;
  height: 15px;
}

.woocommerce-checkout-review-order-table tfoot tr {
  border-top: 1px solid #E4E4E7;
}

.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-weight: 450;
  padding-top: 18px;
  padding-bottom: 18px;
}

.woocommerce-checkout-review-order-table tfoot tr th span,
.woocommerce-checkout-review-order-table tfoot tr th bdi,
.woocommerce-checkout-review-order-table tfoot tr td span,
.woocommerce-checkout-review-order-table tfoot tr td bdi {
  color: inherit;
  font: inherit;
}

.woocommerce-checkout-review-order-table tfoot tr th {
  font-size: 16px;
}

.woocommerce-checkout-review-order-table tfoot tr td {
  font-size: 18px;
  text-align: right;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

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

.woocommerce-billing-fields > h3 {
  display: none;
}

.woocommerce-order-received .thank-you-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.woocommerce-order-received .thank-you-row .content-col {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.woocommerce-order-received .thank-you-row .order-col {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.woocommerce-order-received .thank-you-row .order-col .woocommerce-customer-details {
  display: none;
}

.woocommerce-order-received .woocommerce-order-details .table-wrapper {
  background: #FAFAFA;
  border-radius: 5px;
  padding: 20px;
}

.woocommerce-order-received .woocommerce-order-details__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.woocommerce-order-received .woocommerce-table--order-details {
  width: 100%;
}

.woocommerce-order-received .woocommerce-table--order-details thead {
  display: none;
}

.woocommerce-order-received .woocommerce-table--order-details .order_item {
  position: relative;
}

.woocommerce-order-received .woocommerce-table--order-details .order_item + .order_item {
  border-top: 1px solid #E4E4E7;
}

.woocommerce-order-received .woocommerce-table--order-details td {
  padding: 15px;
}

.woocommerce-order-received .woocommerce-table--order-details .product-thumbnail {
  width: 115px;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name a {
  display: inline-block;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  text-decoration: none;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name a:hover {
  color: #ffc107;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  margin-bottom: 0;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta p {
  font-size: 12px;
  margin-bottom: 5px;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta dd,
.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta dt {
  color: #123147;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta dd p {
  color: #123147;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .wc-item-meta dd p:last-child {
  margin-bottom: 0;
}

.woocommerce-order-received .woocommerce-table--order-details .product-name .product-quantity {
  color: inherit;
  font: inherit;
  font-size: 18px;
}

.woocommerce-order-received .woocommerce-table--order-details .product-total {
  color: #123147;
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.3;
  text-align: right;
}

.woocommerce-order-received .woocommerce-table--order-details .product-total bdi,
.woocommerce-order-received .woocommerce-table--order-details .product-total span {
  color: inherit;
  font: inherit;
}

.woocommerce-order-received .woocommerce-table--order-details tfoot {
  display: none;
}

.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 30px;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title {
  font-size: 20px;
  font-weight: 700;
}

.woocommerce-order-received .woocommerce-customer-details p {
  margin-bottom: 0;
}

.woocommerce-order-received .woocommerce-customer-details address {
  color: #3d5566;
  font-size: 14px;
}

.woocommerce-order-received .woocommerce-customer-details address p {
  color: inherit;
  font: inherit;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
  width: auto;
  padding: 0;
  max-width: initial;
}

.woocommerce-order-overview {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin: 30px 0;
}

.woocommerce-order-overview li {
  color: #3d5566;
  font-size: 14px;
}

.error404 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.error404 .main-header-part-holder {
  margin-bottom: 0;
}

.error404 .main {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.error404 .page-inner-404 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100%;
  background-color: #0C2A40;
  background-image: url(../../resources/images/svg/page-404.svg);
  background-position: calc(100% + 25px) calc(100% - 50px);
  background-repeat: no-repeat;
  background-size: 1440px 573px;
  padding: 30px;
}

@media (max-width: 1200px) {
  .error404 .page-inner-404 {
    background-size: contain;
  }
}

.error404 .page-inner-404 .description {
  padding-bottom: 30px;
}

.error404 .page-inner-404 .description p,
.error404 .page-inner-404 .description li,
.error404 .page-inner-404 .description a {
  color: #fff;
}

.error404 .page-inner-404 {
  /*        .bottom-element-404 {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                width: 370px;
                max-width: 80%;
                height: 40px;
                margin: 0 auto;
                overflow: hidden;

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    @include svg_bg( 370px, 370px, 'el-image-highlight' );
                }
            }*/
}

.error404 .title-404 {
  color: #fff;
  font-size: 75px;
}

.error404 .title-404 b,
.error404 .title-404 strong {
  color: #FFA400;
}

@media (max-width: 1199px) {
  .error404 .title-404 {
    font-size: 32px;
  }
}