@charset "UTF-8";

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

.nmp-last-el > h1:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > h2:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > h3:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > h4:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > h5:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > h6:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > ul:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > ol:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > span:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nmp-last-el > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

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

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

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

.has-row-padding-l-r {
  padding-left: calc(32px / 2);
  padding-right: calc(32px / 2);
}

.has-row-gap {
  row-gap: 32px;
}

.has-white-text h1,
.has-white-text h2,
.has-white-text h3,
.has-white-text h4,
.has-white-text h5,
.has-white-text h6 {
  color: #fff;
}

.has-white-text p,
.has-white-text li {
  color: #fff;
}

.play-fancy {
  display: inline-block;
  cursor: pointer;
}

.table-wrapper {
  max-width: 100%;
  overflow: auto;
}

/* 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;
}

: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-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

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

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

.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
  animation: var(--f-transition-duration, 0.2s) ease 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-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) 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-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  animation: var(--f-transition-duration, 0.1s) 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-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  animation: var(--f-transition-duration, 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-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) 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: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

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

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

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
  animation: var(--f-transition-duration, 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: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  animation: var(--f-transition-duration, 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);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

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: var(--fancybox-zIndex, 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__container::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.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__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.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;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -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__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

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

.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: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

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

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
  animation: var(--f-backdrop-exit-duration, 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: calc(100% - 120px);
  height: 90%;
}

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

.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: 16px;
  --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;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -ms-flexbox;
  display: flex;
}

.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);
  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(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -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.is-resting .f-thumbs__slide {
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: -webkit-clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease, -webkit-clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -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));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  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-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

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

.is-classic .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 {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  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;
  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: 16px;
  --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-masked {
  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;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #EF373E;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #EF373E;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1344px;
  --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: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

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

.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: 16px;
  padding-left: 16px;
}

.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: 1343.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: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !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: #EF373E !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(225, 18, 25.875) !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: #28a745 !important;
}

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

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

.border-danger {
  border-color: #EF373E !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: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !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: #EF373E !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: rgb(201.3888888889, 16.1111111111, 23.1597222222) !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: #28a745;
}

.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(40, 167, 69, 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: #28a745;
  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='%2328a745' 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: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 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: #28a745;
  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='%2328a745' 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: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

.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: #28a745;
}

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

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

.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(40, 167, 69, 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: #28a745;
}

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

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

.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(239, 55, 62, 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: #EF373E;
  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='%23EF373E' 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='%23EF373E' 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: #EF373E;
  box-shadow: 0 0 0 0.2rem rgba(239, 55, 62, 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: #EF373E;
  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='%23EF373E' 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='%23EF373E' 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: #EF373E;
  box-shadow: 0 0 0 0.2rem rgba(239, 55, 62, 0.25);
}

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

.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: #EF373E;
}

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

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

.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(239, 55, 62, 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: #EF373E;
}

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

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #EF373E;
  box-shadow: 0 0 0 0.2rem rgba(239, 55, 62, 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 {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

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

.btn-primary:focus,
.btn-primary.focus {
  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,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  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,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle: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: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0 rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}

.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(72.25, 180.2, 96.9, 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: #EF373E;
  border-color: #EF373E;
}

.btn-danger:hover {
  color: #fff;
  background-color: rgb(236.1666666667, 19.5833333333, 27.8229166667);
  border-color: rgb(225, 18, 25.875);
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: rgb(236.1666666667, 19.5833333333, 27.8229166667);
  border-color: rgb(225, 18, 25.875);
  box-shadow: 0 0 0 0 rgba(241.4, 85, 90.95, 0.5);
}

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

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(225, 18, 25.875);
  border-color: rgb(213.1944444444, 17.0555555556, 24.5173611111);
}

.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(241.4, 85, 90.95, 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: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  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: #28a745;
  border-color: #28a745;
}

.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(40, 167, 69, 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: #EF373E;
  border-color: #EF373E;
}

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

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(239, 55, 62, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #EF373E;
  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: #EF373E;
  border-color: #EF373E;
}

.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(239, 55, 62, 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(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.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.28, 28.6, 32.24);
  background-color: rgb(250.52, 199, 200.96);
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: rgb(124.28, 28.6, 32.24);
  background-color: rgb(248.6311111111, 175.3888888889, 178.1752777778);
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(124.28, 28.6, 32.24);
  border-color: rgb(124.28, 28.6, 32.24);
}

.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: #000;
  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: 1343.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 {
  --grid-gutter-half: calc(32px / 2);
  --header-height: 138px;
}

html body:has(.main-header.fixed) {
  padding-top: var(--header-height);
}

html body:has(#wpadminbar) {
  padding-top: calc(var(--header-height) - 32px);
}

@media screen and (max-width: 782px) {
  html body:has(#wpadminbar) {
    padding-top: calc(var(--header-height) - 46px);
  }
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border-top: 1px solid #F2F2F2;
  margin: 0;
}

iframe {
  max-width: 100%;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-Medium.eot");
  src: url("../../fonts/GillSansMTStd-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-Medium.woff2") format("woff2"), url("../../fonts/GillSansMTStd-Medium.woff") format("woff"), url("../../fonts/GillSansMTStd-Medium.ttf") format("truetype"), url("../../fonts/GillSansMTStd-Medium.svg#GillSansMTStd-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-MediumItalic.eot");
  src: url("../../fonts/GillSansMTStd-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-MediumItalic.woff2") format("woff2"), url("../../fonts/GillSansMTStd-MediumItalic.woff") format("woff"), url("../../fonts/GillSansMTStd-MediumItalic.ttf") format("truetype"), url("../../fonts/GillSansMTStd-MediumItalic.svg#GillSansMTStd-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-Bold.eot");
  src: url("../../fonts/GillSansMTStd-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-Bold.woff2") format("woff2"), url("../../fonts/GillSansMTStd-Bold.woff") format("woff"), url("../../fonts/GillSansMTStd-Bold.ttf") format("truetype"), url("../../fonts/GillSansMTStd-Bold.svg#GillSansMTStd-Bold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-BoldItalic.eot");
  src: url("../../fonts/GillSansMTStd-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-BoldItalic.woff2") format("woff2"), url("../../fonts/GillSansMTStd-BoldItalic.woff") format("woff"), url("../../fonts/GillSansMTStd-BoldItalic.ttf") format("truetype"), url("../../fonts/GillSansMTStd-BoldItalic.svg#GillSansMTStd-BoldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-Light.eot");
  src: url("../../fonts/GillSansMTStd-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-Light.woff2") format("woff2"), url("../../fonts/GillSansMTStd-Light.woff") format("woff"), url("../../fonts/GillSansMTStd-Light.ttf") format("truetype"), url("../../fonts/GillSansMTStd-Light.svg#GillSansMTStd-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-LightItalic.eot");
  src: url("../../fonts/GillSansMTStd-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-LightItalic.woff2") format("woff2"), url("../../fonts/GillSansMTStd-LightItalic.woff") format("woff"), url("../../fonts/GillSansMTStd-LightItalic.ttf") format("truetype"), url("../../fonts/GillSansMTStd-LightItalic.svg#GillSansMTStd-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans MT Std";
  src: url("../../fonts/GillSansMTStd-UltraBold.eot");
  src: url("../../fonts/GillSansMTStd-UltraBold.eot?#iefix") format("embedded-opentype"), url("../../fonts/GillSansMTStd-UltraBold.woff2") format("woff2"), url("../../fonts/GillSansMTStd-UltraBold.woff") format("woff"), url("../../fonts/GillSansMTStd-UltraBold.ttf") format("truetype"), url("../../fonts/GillSansMTStd-UltraBold.svg#GillSansMTStd-UltraBold") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Gill Sans MT Std";
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  font-size: 18px;
  line-height: 1.4;
}

a {
  color: #EF373E;
  font-size: 18px;
  text-decoration: underline;
}

ul li,
ol li {
  font-size: 18px;
}

.svg-icon-cart {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-icon-cart-dims {
  width: 18px;
  height: 16px;
}

.svg-icon-check-red {
  background: url("sprites.svg") no-repeat;
  background-position: 2.9126213592% 3.187250996%;
}

.svg-icon-check-red-dims {
  width: 14px;
  height: 10px;
}

.svg-icon-chevron-down-menu {
  background: url("sprites.svg") no-repeat;
  background-position: 5.1779935275% 5.1587301587%;
}

.svg-icon-chevron-down-menu-dims {
  width: 14px;
  height: 8px;
}

.svg-icon-chevron-down-menu-black {
  background: url("sprites.svg") no-repeat;
  background-position: 7.4433656958% 6.746031746%;
}

.svg-icon-chevron-down-menu-black-dims {
  width: 14px;
  height: 8px;
}

.svg-icon-chevron-right-acc-white {
  background: url("sprites.svg") no-repeat;
  background-position: 9.6153846154% 8.4337349398%;
}

.svg-icon-chevron-right-acc-white-dims {
  width: 8px;
  height: 14px;
}

.svg-icon-chevron-right-black {
  background: url("sprites.svg") no-repeat;
  background-position: 10.8626198083% 11.1665004985%;
}

.svg-icon-chevron-right-black-dims {
  width: 6px;
  height: 10.5px;
}

.svg-icon-chevron-right-black-2 {
  background: url("sprites.svg") no-repeat;
  background-position: 11.858974359% 13.4808853119%;
}

.svg-icon-chevron-right-black-2-dims {
  width: 8px;
  height: 15px;
}

.svg-icon-chevron-right-red {
  background: url("sprites.svg") no-repeat;
  background-position: 13.0990415335% 16.3509471585%;
}

.svg-icon-chevron-right-red-dims {
  width: 6px;
  height: 10.5px;
}

.svg-icon-chevron-right-white {
  background: url("sprites.svg") no-repeat;
  background-position: 14.0575079872% 18.5443668993%;
}

.svg-icon-chevron-right-white-dims {
  width: 6px;
  height: 10.5px;
}

.svg-icon-chevron-right-white-2 {
  background: url("sprites.svg") no-repeat;
  background-position: 15.0641025641% 20.9255533199%;
}

.svg-icon-chevron-right-white-2-dims {
  width: 8px;
  height: 15px;
}

.svg-icon-facebook,
.socials-wrapper .social.icon-facebook::after {
  background: url("sprites.svg") no-repeat;
  background-position: 16.3987138264% 23.9919354839%;
}

.svg-icon-facebook-dims,
.socials-wrapper .social.icon-facebook::after {
  width: 10px;
  height: 16px;
}

.svg-icon-globe {
  background: url("sprites.svg") no-repeat;
  background-position: 18.1818181818% 27.2177419355%;
}

.svg-icon-globe-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-info-white {
  background: url("sprites.svg") no-repeat;
  background-position: 20.88091354% 30.5668016194%;
}

.svg-icon-info-white-dims {
  width: 19px;
  height: 18px;
}

.svg-icon-instagram,
.socials-wrapper .social.icon-instagram::after {
  background: url("sprites.svg") no-repeat;
  background-position: 23.9413680782% 34.2105263158%;
}

.svg-icon-instagram-dims,
.socials-wrapper .social.icon-instagram::after {
  width: 18px;
  height: 18px;
}

.svg-icon-linkedin,
.socials-wrapper .social.icon-linkedin::after {
  background: url("sprites.svg") no-repeat;
  background-position: 26.8729641694% 37.8542510121%;
}

.svg-icon-linkedin-dims,
.socials-wrapper .social.icon-linkedin::after {
  width: 18px;
  height: 18px;
}

.svg-icon-minus-qty {
  background: url("sprites.svg") no-repeat;
  background-position: 29.9509001637% 41.7515274949%;
}

.svg-icon-minus-qty-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-minus-toggle {
  background: url("sprites.svg") no-repeat;
  background-position: 33.387888707% 46.0285132383%;
}

.svg-icon-minus-toggle-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-phone-white {
  background: url("sprites.svg") no-repeat;
  background-position: 36.525974026% 49.7983870968%;
}

.svg-icon-phone-white-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-play,
.play-fancy {
  background: url("sprites.svg") no-repeat;
  background-position: 41.4089347079% 56.9264069264%;
}

.svg-icon-play-dims,
.play-fancy {
  width: 50px;
  height: 50px;
}

.svg-icon-play-fancy,
.play-fancy {
  background: url("sprites.svg") no-repeat;
  background-position: 49.4897959184% 66.8803418803%;
}

.svg-icon-play-fancy-dims,
.play-fancy {
  width: 44px;
  height: 44px;
}

.svg-icon-plus-qty {
  background: url("sprites.svg") no-repeat;
  background-position: 54.8281505728% 72.7087576375%;
}

.svg-icon-plus-qty-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-plus-toggle {
  background: url("sprites.svg") no-repeat;
  background-position: 58.2651391162% 76.9857433809%;
}

.svg-icon-plus-toggle-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-search {
  background: url("sprites.svg") no-repeat;
  background-position: 61.2012987013% 80.4435483871%;
}

.svg-icon-search-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-slider-next-black {
  background: url("sprites.svg") no-repeat;
  background-position: 62.9807692308% 83.3333333333%;
}

.svg-icon-slider-next-black-dims {
  width: 8px;
  height: 14px;
}

.svg-icon-slider-next-white {
  background: url("sprites.svg") no-repeat;
  background-position: 64.2628205128% 86.1445783133%;
}

.svg-icon-slider-next-white-dims {
  width: 8px;
  height: 14px;
}

.svg-icon-trash {
  background: url("sprites.svg") no-repeat;
  background-position: 66.0743134087% 89.1348088531%;
}

.svg-icon-trash-dims {
  width: 13px;
  height: 15px;
}

.svg-icon-twitter,
.socials-wrapper .social.icon-twitter::after {
  background: url("sprites.svg") no-repeat;
  background-position: 68.7296416938% 92.3387096774%;
}

.svg-icon-twitter-dims,
.socials-wrapper .social.icon-twitter::after {
  width: 18px;
  height: 16px;
}

.svg-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-logo-dims {
  width: 192px;
  height: 38px;
}

.btn {
  display: inline-block;
  background-color: #EF373E;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn.has-icon-before span {
  position: relative;
  padding-left: 26px;
}

.btn.has-icon-before span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn.has-icon-before.phone-white span::before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.btn span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.btn:hover,
.btn:focus {
  background-color: rgb(225, 18, 25.875);
  color: #fff;
}

.btn.btn-ghost {
  background-color: transparent;
  border: 1px solid #EF373E;
  padding: 12px 17px;
}

.btn.btn-ghost:hover,
.btn.btn-ghost:focus {
  background-color: #EF373E;
}

.square-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #F2F2F2;
  font-size: 0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.square-btn:hover {
  background-color: #F2F2F2;
}

.square-btn::after {
  content: "";
  margin: auto;
}

.square-btn.icon-globe::after {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-globe.svg);
}

.square-btn.icon-cart {
  position: relative;
}

.square-btn.icon-cart::after {
  width: 18px;
  height: 16px;
  background-size: 18px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cart.svg);
}

.square-btn.icon-cart .cart-items-quantity {
  display: inline-block;
  position: absolute;
  right: 9px;
  bottom: 8px;
  z-index: 2;
  width: 8px;
  height: 8px;
  background-color: #EF373E;
  border-radius: 50%;
  color: #fff;
  font-size: 6px;
  font-weight: 600;
  line-height: 9px;
  text-align: center;
}

.square-btn.icon-white-arrow::after {
  width: 5px;
  height: 9px;
  background-size: 5px 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-white.svg);
}

.square-btn.red {
  background-color: #EF373E;
  border-color: #EF373E;
}

.square-btn.red:hover,
.square-btn.red:focus {
  background-color: rgb(225, 18, 25.875);
}

.play-fancy {
  display: inline-block;
  cursor: pointer;
}

.rectangle-button {
  display: inline-block;
  position: relative;
  background-color: #F2F2F2;
  border: none;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  outline: none;
  padding: 24px 40px 24px 21px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.rectangle-button.full-width {
  width: 100%;
}

.rectangle-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 15px;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-black-2.svg);
}

.rectangle-button:hover,
.rectangle-button:focus {
  background-color: #EF373E;
  color: #fff;
  text-decoration: none;
}

.rectangle-button:hover::after,
.rectangle-button:focus::after {
  width: 8px;
  height: 15px;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-white-2.svg);
}

.base-nav {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

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

.base-nav > .menu-item {
  position: relative;
}

.base-nav > .menu-item.menu-item-has-children,
.base-nav > .menu-item.menu-item-has-children-custom {
  position: relative;
  padding-right: 22px;
}

.base-nav > .menu-item.menu-item-has-children::after,
.base-nav > .menu-item.menu-item-has-children-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 14px;
  height: 8px;
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-menu.svg);
}

.base-nav > .menu-item.menu-item-has-children:hover::after,
.base-nav > .menu-item.menu-item-has-children.active::after,
.base-nav > .menu-item.menu-item-has-children-custom:hover::after,
.base-nav > .menu-item.menu-item-has-children-custom.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.base-nav > .menu-item.menu-item-has-children:hover .sub-menu,
.base-nav > .menu-item.menu-item-has-children.active .sub-menu,
.base-nav > .menu-item.menu-item-has-children-custom:hover .sub-menu,
.base-nav > .menu-item.menu-item-has-children-custom.active .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.base-nav > .menu-item > a {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 17px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.base-nav > .menu-item:hover a {
  text-decoration: underline;
}

.base-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -32px;
  width: 256px;
  background-color: #fff;
  margin: 0;
  list-style-type: none;
  opacity: 0;
  padding: 32px;
  visibility: hidden;
}

.base-nav .sub-menu .menu-item {
  line-height: 1;
}

.base-nav .sub-menu .menu-item + .menu-item {
  margin-top: 22px;
}

.base-nav .sub-menu .menu-item.is-submenu-title {
  margin-bottom: 53px;
}

.base-nav .sub-menu .menu-item.is-submenu-title a {
  font-size: 24px;
}

.base-nav .sub-menu .menu-item a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.base-nav .sub-menu .menu-item a:hover,
.base-nav .sub-menu .menu-item a:focus {
  color: #EF373E;
  text-decoration: none;
}

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

.footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav .menu-item a {
  color: #231F20;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.active-mobile-nav .main-header {
  background-color: #fff;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.mobile-nav-container .nav-container-holder {
  height: 100%;
  overflow: auto;
  padding: 0 0 32px;
}

.mobile-nav-container .mobile-nav-holder {
  transition: all 0.3s ease-in-out;
}

.mobile-nav-container .search-wrapper {
  margin-bottom: 20px;
}

.mobile-nav {
  list-style-type: none;
  margin: 0 0 0;
  padding: 12px 0 30px;
}

.mobile-nav > .menu-item > a {
  text-transform: uppercase;
}

.mobile-nav .menu-item {
  position: relative;
  border-bottom: 1px solid #000;
  line-height: 1;
}

.mobile-nav .menu-item .arrow {
  display: none;
  position: absolute;
  top: 26px;
  right: 10px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  width: 14px;
  height: 8px;
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-menu-black.svg);
}

.mobile-nav .menu-item a {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 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 .sub-menu {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0 0 19px 10px;
}

.mobile-nav .sub-menu .menu-item {
  border-bottom: none;
}

.mobile-nav .sub-menu .menu-item:last-child {
  padding-bottom: 0;
}

.mobile-nav .sub-menu .menu-item a {
  font-size: 14px;
  font-weight: 600;
  padding-top: 12px;
  padding-bottom: 12px;
}

.mobile-nav .sub-menu .menu-item .arrow {
  top: 17px;
}

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

.checkmark-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.checkmark-list.horizontal {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}

.checkmark-list.vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.checkmark-list.vertical li {
  line-height: 1.56;
}

.checkmark-list.vertical li::before {
  top: 9px;
}

.checkmark-list.medium-text li {
  font-size: 16px;
}

.checkmark-list.medium-text li::before {
  top: 3px;
}

.checkmark-list.smaller-text li {
  font-size: 14px;
}

.checkmark-list.smaller-text li::before {
  top: 1px;
}

.checkmark-list.smaller-text.vertical li::before {
  top: 5px;
}

.checkmark-list.bolder li {
  font-weight: 400;
}

.checkmark-list li {
  position: relative;
  color: #231F20;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  padding-left: 22px;
}

.checkmark-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 10px;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-red.svg);
}

.socials-wrapper {
  --border-color: #dadada;
  --border-social: 1px solid var( --border-color );
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: var(--border-social);
  border-radius: 4px;
}

.socials-wrapper .social {
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease-in-out;
}

.socials-wrapper .social:hover {
  background-color: var(--border-color);
}

.socials-wrapper .social + .social {
  border-left: var(--border-social);
}

.socials-wrapper .social::after {
  content: "";
  margin: auto;
}

.link-with-arrow {
  --link-with-arrow-color: #3d3d3d;
  display: inline-block;
  position: relative;
  color: var(--link-with-arrow-color);
  font-weight: 400;
  line-height: 1;
  padding-right: 14px;
  text-decoration: none;
}

.link-with-arrow::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-black.svg);
}

.link-with-arrow:hover {
  color: var(--link-with-arrow-color);
  text-decoration: none;
}

.link-with-arrow:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.back-link {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding-left: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.back-link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-black.svg);
}

.back-link:hover {
  color: #EF373E;
  text-decoration: none;
}

.back-link:hover::before {
  -webkit-transform: rotate(180deg) translateX(5px);
  transform: rotate(180deg) translateX(5px);
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-red.svg);
}

.back-link.white {
  color: #fff;
}

.back-link.white::before {
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-white.svg);
}

.back-link.white:hover {
  color: #fff;
}

.back-link.has-opacity {
  opacity: 0.75;
}

.back-link.has-opacity:hover {
  opacity: 1;
}

.info-message {
  display: inline-block;
  position: relative;
  background-color: #10263F;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 15px 15px 15px 55px;
  text-align: left;
}

.info-message::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  background-size: 19px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-info-white.svg);
}

.category-label {
  display: inline-block;
  border-radius: 4px 0 4px 0;
  background-color: #F2F2F2;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  text-transform: uppercase;
}

.breadcrumbs {
  padding-top: 16px;
}

.breadcrumbs .separator {
  display: inline-block;
  margin: 0 8px;
  width: 5px;
  height: 8px;
  background-size: 5px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-black.svg);
}

.breadcrumbs span,
.breadcrumbs a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.mega-menu-holder {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

@media (max-width: 1343.9px) {
  .mega-menu-holder {
    display: none;
  }
}

.mega-menu-holder .sub-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1376px;
  max-width: 100%;
  background: #fff;
  padding: 53px calc(16px) 60px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  -webkit-filter: drop-shadow(0 4px 11.6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 4px 11.6px rgba(0, 0, 0, 0.1));
}

.mega-menu-holder .sub-nav.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.mega-menu-holder .sub-nav:not(:has(.menu-title)) .menu-col {
  padding-top: 0;
}

.mega-menu-holder .sub-nav:not(:has(.menu-title)) .menu-col::before {
  display: none;
}

.mega-menu-holder .menu-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 22px;
  position: relative;
}

.mega-menu-holder .menu-col:has(.menu-link-block) {
  padding-top: 34px;
}

.mega-menu-holder .menu-col:has(.menu-link-block)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #F2F2F2;
}

.mega-menu-holder .menu-col:has(.menu-link-block):first-child::before {
  left: calc(32px / 2);
}

.mega-menu-holder .menu-col:has(.menu-link-block):last-child::before {
  right: calc(32px / 2);
}

.mega-menu-holder .menu-col:has(+ .menu-col > .menu-activation-block)::before {
  right: calc(32px / 2);
}

.mega-menu-holder .menu-col:has(.menu-activation-block) + .menu-col::before {
  left: calc(32px / 2);
}

.mega-menu-holder .menu-title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  display: block;
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.mega-menu-holder a.menu-title:hover {
  color: #EF373E;
  text-decoration: none;
}

.menu-link-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.menu-link-block .title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  display: block;
  color: #000;
  font-size: 20px;
  margin-bottom: 0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.menu-link-block .description {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.56;
  transition: all 0.3s ease-in-out;
}

.menu-link-block:hover .title {
  color: #EF373E;
  text-decoration: none;
}

.menu-link-block:hover .description {
  color: #EF373E;
}

.menu-activation-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 17px;
  background: #10263F;
  padding: 40px 33px 33px;
}

.menu-activation-block .title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  display: block;
  color: #fff;
  font-size: 32px;
  margin-bottom: 0;
}

.menu-activation-block .description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.menu-activation-block .bts-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.filter-buttons-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.filter-checkbox-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  margin: 0;
}

.filter-checkbox-button .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.filter-checkbox-button .filter-checkbox:checked + .checkbox-button {
  background-color: #EF373E;
  color: #fff;
}

.filter-checkbox-button .checkbox-button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  border: 1px solid #EF373E;
  border-radius: 0;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.archive-search-form {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.archive-search-form .search-input {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #F2F2F2;
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  padding: 9px 50px 9px 16px;
}

.archive-search-form .search-input::-webkit-input-placeholder {
  color: #1D1D1B;
}

.archive-search-form .search-input:-moz-placeholder {
  color: #1D1D1B;
}

.archive-search-form .search-input::-moz-placeholder {
  color: #1D1D1B;
}

.archive-search-form .search-input:-ms-input-placeholder {
  color: #1D1D1B;
}

.archive-search-form .submit {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  -ms-flex-line-pack: center;
  align-content: center;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 16px;
}

.archive-search-form .submit::after {
  content: "";
  margin: auto;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 100%;
  background-color: rgba(88, 96, 131, 0.05);
  text-align: center;
}

.preloader .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 #EF373E;
  -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);
  }
}

.share-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}

.share-part .share-label {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin-right: 10px;
}

.share-part .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.share-part .addtoany_list a {
  display: -ms-flexbox;
  display: flex;
  padding: 0 8px;
}

.share-part .addtoany_list a:hover img,
.share-part .addtoany_list a:hover span {
  opacity: 1;
}

.share-part .addtoany_list a:hover svg path {
  fill: #EF373E;
}

.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;
}

.ham-icon {
  position: relative;
  width: 27px;
  height: 20px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
  text-align: center;
}

.ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.ham-icon span:nth-child(1) {
  top: 1px;
}

.ham-icon span:nth-child(2),
.ham-icon span:nth-child(3) {
  top: 9px;
}

.ham-icon span:nth-child(4) {
  top: 17px;
}

.ham-icon.open:after {
  content: "";
  display: inline-block;
}

.ham-icon.open span {
  left: 0;
}

.ham-icon.open span:nth-child(1) {
  top: 5px;
  left: 50%;
  width: 0;
}

.ham-icon.open span:nth-child(2) {
  top: 9px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-icon.open span:nth-child(3) {
  top: 9px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-icon.open span:nth-child(4) {
  top: 5px;
  left: 50%;
  width: 0;
}

.product-gallery-slider-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}

.product-gallery-slider .slick-list {
  background-color: #fff;
}

.product-gallery-slider .slick-slide {
  display: -ms-flexbox;
  display: flex;
  height: 300px;
  background-color: #fff;
  border: 1px solid #F2F2F2;
  margin-right: 1px;
  padding: calc(32px / 2);
}

.product-gallery-slider .slick-slide .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: auto;
}

.product-gallery-slider .slick-slide .image-wrapper img {
  width: auto;
  max-height: 100%;
  margin: auto;
}

.main-header {
  position: relative;
  z-index: 10;
}

.main-header .header-top-part {
  background: #fff;
}

.main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.2s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, background-color 0.2s ease-in-out;
  transition: transform 0.4s ease-in-out, background-color 0.2s ease-in-out, -webkit-transform 0.4s ease-in-out;
  will-change: transform;
}

.main-header.fixed.headroom--pinned {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.main-header.fixed.headroom--unpinned:not(.active-mobile-nav) {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.main-header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  padding: 25px 0;
}

@media (max-width: 767px) {
  .main-header-inner .main-logo {
    max-width: 140px;
  }
}

.main-header-inner .search-col {
  display: none;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-header-inner .btns-col {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.navs-container {
  display: none;
  background: #000;
}

.navs-container .navs-container-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: calc(32px / 2) calc(32px * 2);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body .gform-theme--foundation {
  --gf-field-gap-y: 30px;
  --gf-field-gap-x: 36px;
  --gf-form-gap-y: 30px;
}

body .gform-theme--foundation .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)),
body .gform-theme--foundation.gform_editor legend.gform-field-label > span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
}

body .gform-theme--foundation .gfield input,
body .gform-theme--foundation .gfield textarea {
  border-radius: 0;
  font-size: 18px;
  line-height: 1.2;
  padding-top: 1px;
  padding-bottom: 1px;
}

body .gform-theme--foundation .gfield input::-webkit-input-placeholder,
body .gform-theme--foundation .gfield textarea::-webkit-input-placeholder {
  color: #808080;
}

body .gform-theme--foundation .gfield input:-moz-placeholder,
body .gform-theme--foundation .gfield textarea:-moz-placeholder {
  color: #808080;
}

body .gform-theme--foundation .gfield input::-moz-placeholder,
body .gform-theme--foundation .gfield textarea::-moz-placeholder {
  color: #808080;
}

body .gform-theme--foundation .gfield input:-ms-input-placeholder,
body .gform-theme--foundation .gfield textarea:-ms-input-placeholder {
  color: #808080;
}

body .gform-theme--foundation .gfield textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  display: inline-block;
  background-color: #EF373E;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span {
  position: relative;
  padding-left: 26px;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).has-icon-before.phone-white span::before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
  background-color: rgb(225, 18, 25.875);
  color: #fff;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost {
  background-color: transparent;
  border: 1px solid #EF373E;
  padding: 12px 17px;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input:is([type=submit], [type=button], [type=reset]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:hover,
body .gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)).btn-ghost:focus {
  background-color: #EF373E;
}

.footer-top-part {
  background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-row-columns {
  row-gap: 32px;
}

.footer-row-columns .socials-wrapper {
  margin-top: 24px;
}

.footer-row-columns .content-wrapper a {
  display: inline-block;
  position: relative;
  color: #231F20;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-row-columns .content-wrapper a::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-red.svg);
}

.footer-row-columns .content-wrapper a:hover {
  font-weight: 400;
  text-decoration: none;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

.footer-row-columns .content-wrapper a:hover::before {
  opacity: 1;
}

.footer-title {
  color: #231F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-bottom-part {
  background-color: #fff;
  padding: 24px 0;
}

.footer-bottom-part .footer-bottom-part-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: calc(32px / 2) 32px;
}

.copyright-text {
  color: #231F20;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.search-form-header {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.search-form-header .text-input {
  width: 100%;
  background-color: #F2F2F2;
  border: none;
  color: #1D1D1B;
  font-family: "Gill Sans MT Std";
  font-size: 16px;
  line-height: 1;
  outline: none;
  padding: 9px 40px 9px 16px;
}

.search-form-header .text-input::-webkit-input-placeholder {
  color: #1D1D1B;
}

.search-form-header .text-input:-moz-placeholder {
  color: #1D1D1B;
}

.search-form-header .text-input::-moz-placeholder {
  color: #1D1D1B;
}

.search-form-header .text-input:-ms-input-placeholder {
  color: #1D1D1B;
}

.search-form-header .search-submit {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

.search-form-header .search-submit::after {
  content: "";
  margin: auto;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.loop-news_pt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.loop-news_pt .image-wrapper {
  height: 296px;
  background-color: #F2F2F2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 24px;
}

.loop-news_pt .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 24px;
}

.loop-news_pt .meta-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.loop-news_pt .meta-row .date {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.loop-news_pt .block-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.loop-news_pt .block-content {
  margin-bottom: 16px;
}

.loop-news_pt .read-more {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.loop-news_pt .read-more:hover {
  color: #EF373E;
}

.loop-news_pt .read-more:hover::after {
  width: 6px;
  height: 11px;
  background-size: 6px 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-red.svg);
}

.loop-news_pt .block-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.pagination-wrapper ul.page-numbers {
  margin-top: 40px;
  margin-bottom: 0;
}

.pagination-wrapper .page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 29px;
  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;
  width: 24px;
  height: 24px;
  border-radius: 0;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

.pagination-wrapper .page-numbers li .page-numbers .arrow-list-icon {
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 8px;
  height: 15px;
  background-size: 8px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-black-2.svg);
}

.pagination-wrapper .page-numbers li .page-numbers.next {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.next:hover .arrow-list-icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.pagination-wrapper .page-numbers li .page-numbers.prev {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.prev:hover .arrow-list-icon {
  -webkit-transform: rotate(-180deg) translateX(-5px);
  transform: rotate(-180deg) translateX(-5px);
}

.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pagination-wrapper .page-numbers li .current {
  position: relative;
  color: #EF373E;
}

.pagination-wrapper .page-numbers li a {
  text-decoration: none;
}

.header-part-home {
  margin-bottom: 50px;
}

.header-part-home .section-inner-top-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  min-height: 624px;
  padding-bottom: 90px;
}

.header-part-home .section-inner-top-part::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, #231F20 100%);
}

.header-part-home .section-inner-top-part .media-holder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.header-part-home .section-inner-top-part .media-holder img,
.header-part-home .section-inner-top-part .media-holder video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-part-home .section-inner-top-part .top-inner-container {
  position: relative;
  z-index: 3;
}

.header-part-home .section-inner-top-part .top-inner-container .top-row {
  row-gap: 32px;
}

.header-part-home .section-inner-top-part .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 21px;
}

.header-part-home .section-inner-top-part .section-title {
  color: #fff;
  margin-bottom: 0;
}

.header-part-home .section-inner-top-part .content-wrapper p,
.header-part-home .section-inner-top-part .content-wrapper li,
.header-part-home .section-inner-top-part .content-wrapper a {
  color: #fff;
}

.header-part-home .section-inner-top-part .content-wrapper p {
  line-height: 1.56;
}

.header-part-home .section-inner-top-part .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.header-part-home .section-inner-top-part .buttons-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-part-home .section-inner-bottom-part {
  padding: 25px 0;
}

.click-through-section {
  padding-top: 50px;
}

.click-through-section {
  padding-bottom: 50px;
}

.click-through-section {
  margin-bottom: 50px;
}

.click-through-section {
  background-color: #F2F2F2;
}

.click-through-section .section-content-wrapper {
  margin-bottom: 48px;
}

.click-through-section .blocks-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.cta-block-small {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #dadada;
  padding: 30px 30px 26px;
  text-align: center;
}

.cta-block-small .icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
}

.cta-block-small .icon-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: auto;
}

.cta-block-small .icon-wrapper + .block-title,
.cta-block-small .icon-wrapper + .link-with-arrow {
  margin-top: 8px;
}

.cta-block-small .block-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
}

.cta-block-small .description {
  margin-top: 8px;
}

.cta-block-small .description p {
  font-size: 16px;
}

.cta-block-small .link-with-arrow {
  margin-top: 16px;
}

.click-through-section-slider {
  margin-bottom: calc(50px - 57px);
}

.click-through-section-slider {
  position: relative;
}

.click-through-section-slider .section-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.click-through-section-slider .title-col {
  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;
  gap: 32px;
  margin-bottom: 52px;
}

.click-through-section-slider .section-title {
  margin-bottom: 0;
}

.click-through-section-slider .info-message {
  margin-bottom: 57px;
}

.full-slider {
  margin-bottom: 57px;
  margin-left: calc(32px / 2 * -1);
  margin-right: calc(32px / 2 * -1);
}

.full-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.full-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  padding: 0 calc(32px / 2);
}

.slider-section .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2px;
  -moz-column-gap: 2px;
  column-gap: 2px;
}

.slider-section .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  background-color: #EF373E;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  transition: background-color 0.3s ease-in-out;
}

.slider-section .slick-arrow::after {
  content: "";
  margin: auto;
  width: 8px;
  height: 14px;
  background-size: 8px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-slider-next-white.svg);
}

.slider-section .slick-arrow.slick-prev::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.slider-section .slick-arrow.slick-disabled {
  background-color: transparent;
}

.slider-section .slick-arrow.slick-disabled::after {
  width: 8px;
  height: 14px;
  background-size: 8px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-slider-next-black.svg);
}

.cta-block-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 24px;
}

.cta-block-slide .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 340px;
  background-color: #F2F2F2;
  padding: 15px;
}

.cta-block-slide .image-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 200px;
  margin: auto;
}

.cta-block-slide .titles-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 8px;
  text-align: center;
}

.cta-block-slide .slide-title {
  font-size: 24px;
  margin-bottom: 0;
}

.logos-section {
  margin-bottom: 50px;
}

.logos-section .section-title {
  font-size: 20px;
  margin-bottom: 46px;
}

.logos-full-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.logos-full-slider .slick-slide {
  position: relative;
  height: inherit !important;
  padding: 0 12px;
}

.logos-full-slider .slick-slide .logo-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.logos-full-slider .slick-slide .logo-wrapper img {
  margin: auto;
}

.logos-full-slider .slick-slide .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tabs-section {
  padding-top: 50px;
}

.tabs-section {
  padding-bottom: calc(50px - 48px);
}

.tabs-section {
  margin-bottom: 50px;
}

.tabs-section {
  background-color: #F2F2F2;
}

.tabs-section .section-content-wrapper {
  margin-bottom: 41px;
}

.tabs-section .tabs-container {
  margin-bottom: 48px;
}

.tabs-section .section-button {
  margin-bottom: 48px;
}

.tabs-section .switcher-holder {
  margin-bottom: 48px;
  text-align: center;
}

.tabs-section .tabs-switcher {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
  gap: 10px 32px;
  padding: 5px 20px;
}

@media (max-width: 991px) {
  .tabs-section .tabs-switcher {
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    padding: 0;
  }
}

.tabs-section .tabs-switcher .tab-label {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 10px;
  text-decoration: none;
}

.tabs-section .tabs-switcher .tab-label:hover,
.tabs-section .tabs-switcher .tab-label:focus {
  text-decoration: none;
}

.tabs-section .tabs-switcher .tab-label.active {
  background-color: #EF373E;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.tabs-section .tabs-content .tab {
  display: none;
}

.tabs-section .tab-content-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs-section .tab-content-columns .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  padding: 30px 15px;
}

.tabs-section .tab-content-columns .content-col .category-label {
  margin-bottom: 8px;
}

.tabs-section .tab-content-columns .content-col .title {
  font-size: 32px;
}

.tabs-section .tab-content-columns .content-col .content-wrapper {
  line-height: 1.56;
}

.tabs-section .tab-content-columns .content-col .content-wrapper p {
  line-height: inherit;
}

.tabs-section .tab-content-columns .content-col .checkmark-list {
  margin-top: 16px;
}

.tabs-section .tab-content-columns .content-col .btn-wrapper {
  margin-top: 24px;
}

.tabs-section .tab-content-columns .media-col {
  width: 100%;
}

.tabs-section .tab-content-columns .media-col .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  min-height: 300px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tabs-section .tab-content-columns .media-col .image-wrapper .play-fancy {
  margin: auto;
}

.separator-block {
  margin-bottom: 50px;
}

.separator-block.has-bg {
  background-color: #F2F2F2;
}

.separator-block hr {
  border-top: 1px solid #dadada;
  margin: 0;
}

.news-section {
  margin-bottom: 50px;
}

.news-section .titles-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc(32px / 2) 32px;
  margin-bottom: 46px;
}

.news-section .columns-row {
  row-gap: 32px;
}

.cta-section .usps-holder {
  padding-bottom: 19px;
}

.cta-section .cta-holder {
  position: relative;
}

.cta-section .cta-holder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67%;
  background-color: #f5f5f5;
}

.cta-section .cta-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 253px;
  z-index: 2;
  background-color: #10263F;
  padding: 0 calc(32px / 2);
}

.cta-section .cta-wrapper .cta-inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.cta-section .cta-wrapper .cta-inner-wrapper .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  width: 100%;
  padding: 48px 0;
}

.cta-section .cta-wrapper .cta-inner-wrapper .image-col {
  position: relative;
  bottom: -22px;
}

.cta-section .team-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cta-section .team-wrapper .image-wrapper {
  width: 200px;
}

.cta-section .team-wrapper .names-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #EF373E;
  gap: 5px;
  padding: 10px 30px;
  text-align: center;
}

.cta-section .team-wrapper .names-wrapper .name,
.cta-section .team-wrapper .names-wrapper .function {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.cta-section .team-wrapper .names-wrapper .name {
  font-weight: 600;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .content-wrapper {
  margin-bottom: 27px;
}

.cta-section .content-wrapper p,
.cta-section .content-wrapper li,
.cta-section .content-wrapper a {
  color: #fff;
}

.cta-section .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-section .buttons-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.accordion-section {
  margin-bottom: 50px;
}

.accordion-section {
  padding-top: 50px;
}

.accordion-section {
  padding-bottom: 50px;
}

.accordion-section {
  background-color: #10263F;
}

.accordion-section .content-row {
  row-gap: 32px;
}

.accordion-section .section-title {
  color: #fff;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .accordion-section .images-holder {
    display: none;
  }
}

.accordion-section .images-holder .image-wrapper {
  height: 417px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.accordion-section .images-holder .image-wrapper:not(:first-child) {
  display: none;
}

.accordion-section .switchers-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 32px;
}

.accordion-section .switchers-holder .toggle-tab {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding: 16px 24px;
  border-bottom: 1px solid #273b52;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.accordion-section .switchers-holder .toggle-tab::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-size: 8px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-acc-white.svg);
}

.accordion-section .switchers-holder .toggle-tab:hover,
.accordion-section .switchers-holder .toggle-tab:focus {
  text-decoration: none;
}

.accordion-section .switchers-holder .toggle-tab.active {
  background-color: #EF373E;
  border-bottom-color: #EF373E;
}

.accordion-section .content-holder p,
.accordion-section .content-holder li {
  color: #fff;
}

.accordion-section .content-holder .content-wrapper:not(:first-child) {
  display: none;
}

.accordion-section .content-holder .btn-wrapper {
  margin-top: 40px;
}

.default-text-section {
  margin-bottom: 50px;
}

.default-text-section .content-row {
  row-gap: 32px;
}

.default-text-section .titles-wrapper {
  margin-bottom: 20px;
}

.default-text-section .section-title {
  margin-bottom: 0;
}

.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;
}

.mini-clicktrough-section {
  margin-bottom: 50px;
}

.mini-clicktrough-section .section-title {
  margin-bottom: 53px;
}

.mini-clicktrough-section .has-row-gap {
  row-gap: 27px;
}

.mini-clicktrough-section .rectangle-button {
  -ms-flex-line-pack: center;
  align-content: center;
  height: 100%;
  font-size: 20px;
}

.faq-section {
  background-color: #10263F;
}

.faq-section {
  padding-top: 50px;
}

.faq-section {
  padding-bottom: 50px;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 39px;
}

.faq-section .section-title {
  margin-bottom: 0;
}

.faq-section .faqs-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 12px;
}

.faq-item {
  background-color: #fff;
}

.faq-item .faq-toggle-desription {
  display: block;
  position: relative;
  color: #000;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 28px 55px 28px 25px;
  text-decoration: none;
}

.faq-item .faq-toggle-desription:after {
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-plus-toggle.svg);
  content: "";
  position: absolute;
  top: 50%;
  right: calc(32px / 2);
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq-item .description {
  display: none;
  padding: 0 25px 30px;
}

.faq-item.active .faq-toggle-desription:after {
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-minus-toggle.svg);
}

.steps-section {
  margin-bottom: 50px;
}

.steps-section .section-title {
  margin-bottom: 45px;
}

.steps-grid {
  position: relative;
}

.steps-grid .grid-sizer,
.steps-grid .grid-item {
  width: 100%;
}

.step-section-block .image-wrapper {
  position: relative;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.step-section-block .image-wrapper .number {
  position: absolute;
  top: 100%;
  left: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step-section-block .number {
  display: inline-block;
  color: #EF373E;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.step-section-block .info-wrapper {
  background-color: #fff;
  padding: 35px 25px 40px;
}

.step-section-block .block-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.text-checks-section {
  margin-bottom: 50px;
}

.text-checks-section .section-title {
  margin-bottom: 20px;
}

.text-checks-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}

.text-image-section {
  position: relative;
}

.text-image-section {
  margin-bottom: 50px;
}

.text-image-section .section-inner {
  position: relative;
  z-index: 2;
}

.text-image-section .is-smaller .content-col .content-inner {
  background: #F2F2F2;
  padding: 40px;
}

.text-image-section .content-col {
  display: -ms-flexbox;
  display: flex;
}

.text-image-section .content-col .content-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
}

.text-image-section .section-title {
  margin-bottom: 0;
}

.text-image-section .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 8px;
}

.text-image-section .image-holder {
  position: relative;
  height: 100%;
}

.text-image-section .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-image-section .image-wrapper .play-fancy {
  position: relative;
  z-index: 1;
  margin: auto;
}

.form-section {
  margin-bottom: 50px;
}

.form-section .content-col {
  display: -ms-flexbox;
  display: flex;
}

.form-section .content-col .content-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.form-section .section-title {
  margin-bottom: 0;
}

.form-section .form-wrapper {
  background-color: #10263F;
  padding: 30px 15px;
}

.form-section .form-wrapper .gform_title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.form-section .form-wrapper .gform-theme--foundation .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)),
.form-section .form-wrapper .gform-theme--foundation.gform_editor legend.gform-field-label > span {
  color: #fff;
}

.form-section .form-wrapper .gform-theme--foundation .gfield input,
.form-section .form-wrapper .gform-theme--foundation .gfield textarea {
  border: none;
}

.form-section .form-wrapper .gform-theme--foundation .gfield textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}

.form-section .form-wrapper .gform-theme--foundation .field_sublabel_below .gform-field-label--type-sub {
  color: #fff;
}

.form-section .form-wrapper .gform-theme--framework .gform_validation_errors {
  background-color: #fff;
}

.header-part-default {
  --form-offset: 317px;
  margin-bottom: 70px;
}

.header-part-default:has(.breadcrumbs) {
  --form-offset: 355px;
}

.header-part-default .section-base-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  min-height: 382px;
  background-color: #10263F;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.header-part-default .section-base-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, #231F20 100%);
}

.header-part-default .section-base-inner .container-base-inner {
  position: relative;
  z-index: 2;
}

.header-part-default .section-base-inner .title {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.02;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.header-part-default .section-base-inner .content-wrapper {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  font-size: 18px;
}

.header-part-default .section-base-inner .content-wrapper p,
.header-part-default .section-base-inner .content-wrapper li {
  color: inherit;
}

.header-part-default .form-part {
  position: relative;
  z-index: 2;
}

.header-part-default .form-part .content-wrapper {
  padding-top: 50px;
}

.header-part-default .form-part .form-col {
  margin-left: auto;
}

.header-part-default .form-wrapper {
  background-color: #10263F;
  padding: 30px 15px;
}

.header-part-default .form-wrapper .form_confirmation_message {
  color: #fff;
  font-size: 18px;
}

.header-part-default .form-wrapper .gform_title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.header-part-default .form-wrapper .gform-theme--foundation .gform-field-label:where(:not([class*=gform-field-label--type-]):not(.gfield_header_item):not(.ginput_quantity_label)),
.header-part-default .form-wrapper .gform-theme--foundation.gform_editor legend.gform-field-label > span {
  color: #fff;
}

.header-part-default .form-wrapper .gform-theme--foundation .gfield input,
.header-part-default .form-wrapper .gform-theme--foundation .gfield textarea {
  border: none;
}

.header-part-default .form-wrapper .gform-theme--foundation .gfield textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-part-default .form-wrapper .gform-theme--foundation .field_sublabel_below .gform-field-label--type-sub {
  color: #fff;
}

.header-part-default .form-wrapper .gform-theme--framework .gform_validation_errors {
  background-color: #fff;
}

.cta-section-small {
  margin-bottom: 50px;
}

.cta-section-block-small {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #10263F;
  padding: 32px calc(32px / 2);
}

.cta-section-block-small .block-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.cta-section-block-small .block-inner .left-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  row-gap: 17px;
}

.cta-section-block-small .block-inner .right-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.cta-section-block-small .block-inner .section-title {
  color: #fff;
  margin-bottom: 0;
}

.cta-section-block-small .block-inner .content-wrapper {
  color: #fff;
}

.cta-section-block-small .block-inner .content-wrapper p,
.cta-section-block-small .block-inner .content-wrapper li {
  color: inherit;
}

.cta-section-block-small .block-inner .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tabs-section {
  margin-bottom: 50px;
}

.product-tabs-section {
  background-color: #F2F2F2;
  padding: 50px 0;
}

.product-tabs-section .tabs-select {
  display: block;
  width: 250px;
  height: 42px;
  background-color: #fff;
  background-image: url(../../resources/images/svg/icon-chevron-down-menu-black.svg);
  background-position: calc(100% - 15px) 51%;
  background-repeat: no-repeat;
  background-size: 14px 8px;
  color: #000;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  margin: 0 auto 50px;
  padding: 0 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.product-tabs-section .tabs-container {
  position: relative;
  z-index: 2;
}

.product-tabs-section .tabs-container .tabs-switcher {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .product-tabs-section .tabs-container .tabs-switcher {
    display: none;
  }
}

.product-tabs-section .tabs-container .tabs-switcher .tab-label {
  position: relative;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 24px;
  line-height: 1;
  opacity: 0.5;
  padding: 0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.product-tabs-section .tabs-container .tabs-switcher .tab-label:hover,
.product-tabs-section .tabs-container .tabs-switcher .tab-label:focus {
  opacity: 1;
  text-decoration: none;
}

.product-tabs-section .tabs-container .tabs-switcher .tab-label.active {
  opacity: 1;
}

.product-tabs-section .tabs-container .tabs-content .tab {
  display: none;
}

.post-type-archive-news_pt .filters-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 32px;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 44px;
}

.news-overview-section {
  margin-bottom: 115px;
}

.news-overview-section .response-row {
  position: relative;
  row-gap: 60px;
}

.news-overview-section ul.page-numbers {
  margin-top: 77px;
}

.single-news_pt .header-part-default:has(+ .post-content-area) {
  margin-bottom: 0;
}

.single-news_pt .header-part-default + .post-content-area .post-content-container {
  position: relative;
  z-index: 3;
  margin-top: -221px;
}

.post-content-area {
  background-color: #F2F2F2;
  margin-bottom: 91px;
}

.post-content-area .post-content-wrapper {
  background: #fff;
  margin-bottom: 88px;
  padding: 48px calc(32px / 2) 0;
}

.post-content-area .top-back-link {
  margin-bottom: 16px;
}

.post-content-area .meta-row.is-categories {
  margin-bottom: 10px;
}

.post-content-area .meta-row.is-categories .categories {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.post-content-area .meta-row.is-date {
  margin-bottom: 20px;
}

.post-content-area .meta-row .date {
  color: #C6CDD1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.post-content-area .post-title {
  font-size: 32px;
  text-align: center;
}

.post-content-area h2 {
  font-size: 32px;
}

.post-content-area h3 {
  font-size: 28px;
}

.post-content-area b,
.post-content-area strong {
  font-weight: 400;
}

.post-content-area .content-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: calc(32px / 2);
  border-top: 1px solid #F2F2F2;
  margin-top: 60px;
  padding: 30px 0;
}

.search-results-section {
  margin-bottom: 130px;
}

.search-results-section .section-title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  display: block;
  font-size: 40px;
  margin-bottom: 90px;
}

.search-results-section .results-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.search-results-section ul.page-numbers {
  margin-top: 77px;
}

.search-block-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.search-block-item .item-title {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;
}

.search-block-item .excerpt {
  margin-bottom: 24px;
}

.mini-cart-in-header {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.mini-cart-content {
  position: absolute;
  top: 100%;
  right: -40px;
  z-index: 1;
  width: 378px;
  max-width: calc(100vw - 40px);
  background-color: #fff;
  border: 2px solid #F2F2F2;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 44px 44px -7px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  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;
  padding: 20px 20px 14px;
  overflow: auto;
}

.mini-cart-content .opened-triangle {
  position: absolute;
  bottom: 100%;
  right: 47px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 14px 12.5px;
  border-color: transparent transparent #F2F2F2 transparent;
}

.mini-cart-content .opened-triangle:before {
  content: "";
  position: absolute;
  top: 2.5px;
  left: -12px;
  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: #dadada;
  font-size: 14px;
  font-weight: 600;
}

.mini-cart-content .woocommerce-mini-cart__total .amount {
  color: #dadada;
  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 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 20px;
  text-align: center;
}

.mini-cart-content .woocommerce-mini-cart__buttons .go-to-cart {
  margin-bottom: 13px;
}

.mini-cart-content .woocommerce-mini-cart__buttons .continue-shopping-link {
  display: inline-block;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
  text-decoration: underline;
}

.mini-cart-content .woocommerce-mini-cart__buttons .continue-shopping-link:hover {
  color: #000;
}

.woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-mini-cart {
  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:first-child {
  padding-top: 0;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 102px;
  height: 114px;
  background: #F2F2F2;
  margin-right: 10px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-image a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-image a img {
  max-height: 100%;
  width: auto;
  margin: auto;
}

.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: 10px;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-short-description {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  padding-right: 20px;
}

.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;
  margin-top: auto;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .item-info .item-footer .product_total_price {
  color: #dadada;
  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: #000;
  font-size: 20px;
  font-weight: 600;
}

.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;
  text-decoration: none;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link:hover {
  color: #000;
  text-decoration: underline;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .product-link:hover span {
  color: inherit;
}

.woocommerce-mini-cart .woocommerce-mini-cart-item .remove {
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  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 .quantity-block {
  padding-top: 15px;
}

.quantity-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.quantity-block .quantity-label {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin-right: 10px;
}

.quantity-block .quantity-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.quantity-block .quantity-wrapper button {
  background-color: transparent;
  border: none;
  margin: 0;
  outline: none;
  padding: 0;
}

.quantity-block .quantity-wrapper button::after {
  content: "";
  display: inline-block;
}

.quantity-block .quantity-wrapper button.decrement::after {
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-minus-qty.svg);
}

.quantity-block .quantity-wrapper button.increment::after {
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-plus-qty.svg);
}

.quantity-block .quantity-wrapper input {
  width: 24px;
  border: none;
  border-radius: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  outline: none;
  padding: 0;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.quantity-block .quantity-wrapper input::-webkit-outer-spin-button,
.quantity-block .quantity-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.products-overview-section {
  margin-bottom: 100px;
}

.products-overview-section:not(:has(.products-overview-list)) {
  display: none;
}

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

.products-overview-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.products-overview-list .product {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border: 1px solid #F2F2F2;
  padding: 20px 24px;
}

.products-overview-list .product:hover .square-btn {
  background-color: rgb(225, 18, 25.875);
}

.products-overview-list .product .block-link-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.products-overview-list .product .block-link-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.products-overview-list .product .woocommerce-loop-product__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}

.products-overview-list .product .woocommerce-loop-product__link:hover,
.products-overview-list .product .woocommerce-loop-product__link:focus {
  text-decoration: none;
}

.products-overview-list .product .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  margin-bottom: 38px;
}

.products-overview-list .product .image-wrapper img {
  width: auto;
  max-height: 150px;
  margin: auto;
}

.products-overview-list .product .woocommerce-loop-product__title {
  border-bottom: 1px solid #F2F2F2;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.products-overview-list .product .woocommerce-short-description {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.products-overview-list .product .woocommerce-short-description p {
  font: inherit;
  line-height: inherit;
}

.products-overview-list .product .price-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: calc(32px / 2);
  margin-top: auto;
}

.products-overview-list .product .price-row .square-btn {
  width: 30px;
  height: 30px;
}

.products-overview-list .product .price {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 0.98;
}

.single-product {
  --header-section-offset: 44px;
  --breadcrumbs-offset: 38px;
  --slider-width: calc(41.666667% - 32px / 2);
  --slider-offset: calc(var(--header-section-offset) + var(--breadcrumbs-offset) + 346px );
}

.single-product .header-part-default {
  margin-bottom: var(--header-section-offset);
}

.single-product .product {
  position: relative;
}

.single-product .product-gallery-slider-wrapper {
  margin-bottom: 32px;
}

.single-product .product-usps {
  margin-bottom: 67px;
}

.single-product .cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 64px;
}

.single-product .cart .quantity {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.single-product .cart .delivery-time {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.56;
}

.single-product .cart .button {
  display: inline-block;
  background-color: #EF373E;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.single-product .cart .button.has-icon-before span {
  position: relative;
  padding-left: 26px;
}

.single-product .cart .button.has-icon-before span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-product .cart .button.has-icon-before.phone-white span::before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.single-product .cart .button span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.single-product .cart .button:hover,
.single-product .cart .button:focus {
  background-color: rgb(225, 18, 25.875);
  color: #fff;
}

.single-product .cart .button.btn-ghost {
  background-color: transparent;
  border: 1px solid #EF373E;
  padding: 12px 17px;
}

.single-product .cart .button.btn-ghost:hover,
.single-product .cart .button.btn-ghost:focus {
  background-color: #EF373E;
}

.woocommerce-notices-wrapper .woocommerce-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px calc(32px / 2);
  position: relative;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  margin-bottom: 25px;
  padding: 17px 18px;
  background: #F0FDF4;
}

.woocommerce-notices-wrapper .woocommerce-message a {
  color: #EF373E;
  font-size: inherit;
  font-weight: 400;
}

.woocommerce-cart .woocommerce {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-bottom: 120px;
}

.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.woocommerce-cart .woocommerce .table-title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  width: 100%;
  font-size: 20px;
  margin-bottom: 14px;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.woocommerce-cart .woocommerce .shop_table {
  position: relative;
  width: 100%;
  border-collapse: separate;
  /* allow spacing between cell borders */
  border-spacing: 0 20px;
  margin-top: -20px;
  margin-bottom: -20px;
}

.woocommerce-cart .woocommerce .shop_table thead {
  display: none;
}

.woocommerce-cart .woocommerce .shop_table tr:has(.actions) {
  display: none;
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table tr td[data-title]:before {
    content: attr(data-title) ": ";
    color: #000;
    font-weight: 600;
    float: left;
  }
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table tr td {
    display: block;
    text-align: right;
    clear: both;
  }
}

.woocommerce-cart .woocommerce .shop_table tr td.product-subtotal:before {
  display: none;
}

.woocommerce-cart .woocommerce .shop_table td {
  padding: 16px;
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table td {
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
  }

  .woocommerce-cart .woocommerce .shop_table td.product-thumbnail {
    border-top: 1px solid #F2F2F2;
  }

  .woocommerce-cart .woocommerce .shop_table td.product-quantity {
    border-bottom: 1px solid #F2F2F2;
  }
}

.woocommerce-cart .woocommerce .shop_table td.actions {
  display: none;
  border: none;
}

.woocommerce-cart .woocommerce .shop_table .product-remove {
  display: none;
}

.woocommerce-cart .woocommerce .shop_table .product-thumbnail a {
  display: -ms-flexbox;
  display: flex;
  width: 102px;
  height: 114px;
  background-color: #F2F2F2;
  padding: 12px;
}

.woocommerce-cart .woocommerce .shop_table .product-thumbnail a img {
  width: auto;
  max-height: 90px;
  margin: auto;
}

.woocommerce-cart .woocommerce .shop_table .product-name a {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
}

.woocommerce-cart .woocommerce .shop_table .product-name .short-description {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 10px;
  text-align: left;
}

.woocommerce-cart .woocommerce .shop_table .product-price {
  display: none;
}

.woocommerce-cart .woocommerce .shop_table .product-subtotal {
  border-right: 1px solid #F2F2F2;
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table .product-subtotal {
    padding: 0;
  }
}

.woocommerce-cart .woocommerce .shop_table .quantity-block {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.woocommerce-cart .woocommerce .shop_table .quantity-block .quantity-wrapper input {
  width: 40px;
  border: 2px solid #F2F2F2;
  padding: 3px 0;
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table .quantity-block .quantity-label {
    display: none;
  }
}

.woocommerce-cart .woocommerce .shop_table .remove {
  display: inline-block;
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-trash.svg);
}

@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .shop_table .remove {
    position: absolute;
    top: 50px;
    right: 30px;
  }
}

.woocommerce-cart .woocommerce .cart-collaterals {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  border: 1px solid #F2F2F2;
  padding: 32px 26px 33px;
  margin-top: 32px;
}

.woocommerce-cart .woocommerce .cart_totals h2 {
  display: none;
}

.woocommerce-cart .woocommerce .cart_totals .shop_table {
  display: none;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button {
  display: inline-block;
  background-color: #EF373E;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button.has-icon-before span {
  position: relative;
  padding-left: 26px;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button.has-icon-before span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button.has-icon-before.phone-white span::before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button:hover,
.woocommerce-cart .woocommerce .cart_totals .checkout-button:focus {
  background-color: rgb(225, 18, 25.875);
  color: #fff;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button.btn-ghost {
  background-color: transparent;
  border: 1px solid #EF373E;
  padding: 12px 17px;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button.btn-ghost:hover,
.woocommerce-cart .woocommerce .cart_totals .checkout-button.btn-ghost:focus {
  background-color: #EF373E;
}

.woocommerce-cart .woocommerce .cart_totals .checkout-button {
  width: 100%;
  text-align: center;
}

.cart-checkout-contact-content {
  margin-top: 12px;
  text-align: center;
}

.cart-checkout-contact-content p,
.cart-checkout-contact-content a {
  font-weight: 400;
}

.cart-checkout-contact-content a {
  color: #000;
}

.woocommerce-page .woocommerce-checkout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 120px;
}

.woocommerce-page .woocommerce-checkout .woocommerce-NoticeGroup {
  width: 100%;
}

.woocommerce-page .woocommerce-checkout .form-col .col-1,
.woocommerce-page .woocommerce-checkout .form-col .col-2 {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.woocommerce-page .woocommerce-checkout .woocommerce-billing-fields h3 {
  margin-bottom: 40px;
}

.woocommerce-page .woocommerce-checkout .process-left-column {
  width: 100%;
}

.woocommerce-page .woocommerce-checkout .process-right-column {
  width: 100%;
}

.woocommerce-page .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  --field-gap: 52px;
  --field-gap-half: calc(var(--field-gap) / 2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px var(--field-gap-half);
}

@media (max-width: 1343.9px) {
  .woocommerce-page .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    --field-gap-half: var(--grid-gutter-half);
  }
}

.woocommerce-page .woocommerce-checkout .form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.woocommerce-page .woocommerce-checkout .form-row label {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 14px;
}

.woocommerce-page .woocommerce-checkout .form-row .input-text {
  width: 100%;
  background: #FFF;
  border: 1px solid #C6CDD1;
  border-radius: 0;
  font-size: 16px;
  outline: none;
  padding: 8px;
}

.woocommerce-page .woocommerce-checkout #billing_country_field {
  display: none;
}

.woocommerce-page .woocommerce-checkout .review-order-col {
  border: 1px solid #F2F2F2;
  padding: 29px 24px 34px;
}

.woocommerce-page .woocommerce-checkout .review-order-col #order_review_heading {
  border-bottom: 1px solid #F2F2F2;
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order .wc_payment_methods {
  display: none;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  margin-bottom: 49px;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table thead,
.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table tfoot {
  display: none;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item + .cart_item .product-name {
  margin-top: 18px;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .product-quantity {
  width: 30%;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .product-quantity .label {
  display: inline-block;
  margin-right: 5px;
}

.woocommerce-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
  display: none;
}

.woocommerce-page .woocommerce-checkout #place_order {
  display: inline-block;
  background-color: #EF373E;
  border: none;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 13px 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.woocommerce-page .woocommerce-checkout #place_order.has-icon-before span {
  position: relative;
  padding-left: 26px;
}

.woocommerce-page .woocommerce-checkout #place_order.has-icon-before span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.woocommerce-page .woocommerce-checkout #place_order.has-icon-before.phone-white span::before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.woocommerce-page .woocommerce-checkout #place_order span {
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.woocommerce-page .woocommerce-checkout #place_order:hover,
.woocommerce-page .woocommerce-checkout #place_order:focus {
  background-color: rgb(225, 18, 25.875);
  color: #fff;
}

.woocommerce-page .woocommerce-checkout #place_order.btn-ghost {
  background-color: transparent;
  border: 1px solid #EF373E;
  padding: 12px 17px;
}

.woocommerce-page .woocommerce-checkout #place_order.btn-ghost:hover,
.woocommerce-page .woocommerce-checkout #place_order.btn-ghost:focus {
  background-color: #EF373E;
}

.woocommerce-order-received .thank-you-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 120px;
}

.woocommerce-order-received .thank-you-row .content-col {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.woocommerce-order-received .thank-you-row .order-col {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.woocommerce-order-received .woocommerce-thankyou-order-details {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

.woocommerce-order-received .woocommerce-thankyou-order-details .total {
  display: none;
}

.woocommerce-order-received .woocommerce-thankyou-order-details .method {
  display: none;
}

.woocommerce-order-received .woocommerce-order-details {
  border: 1px solid #F2F2F2;
  padding: 29px 24px 36px;
}

.woocommerce-order-received .woocommerce-order-details .woocommerce-order-details__title {
  border-bottom: 1px solid #F2F2F2;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.woocommerce-order-received .woocommerce-order-details .order_details thead,
.woocommerce-order-received .woocommerce-order-details .order_details tfoot {
  display: none;
}

.woocommerce-order-received .woocommerce-order-details .order_details .order_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.woocommerce-order-received .woocommerce-order-details .order_details .order_item + .order_item {
  border-top: 1px solid #F2F2F2;
  margin-top: 20px;
  padding-top: 20px;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-name {
  display: -ms-flexbox;
  display: flex;
}

.woocommerce-order-received .woocommerce-order-details .order_details .thumbnail-product-link {
  display: -ms-flexbox;
  display: flex;
  width: 102px;
  height: 114px;
  background-color: #F2F2F2;
  margin-right: 10px;
}

.woocommerce-order-received .woocommerce-order-details .order_details .thumbnail-product-link img {
  margin: auto;
}

.woocommerce-order-received .woocommerce-order-details .order_details img {
  width: auto;
  height: 90px;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-name-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-name-wrapper a {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  font-size: 20px;
  margin-bottom: 10px;
  text-decoration: none;
}

.woocommerce-order-received .woocommerce-order-details .order_details .item-short-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-quantity {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  padding-top: 15px;
  margin-top: auto;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-quantity .label {
  margin-right: 5px;
}

.woocommerce-order-received .woocommerce-order-details .order_details .product-total {
  display: none;
}

.woocommerce-order-received .woocommerce-customer-details {
  display: none;
}

.shop-product-categories-section {
  margin-bottom: 50px;
}

.shop-product-categories-section .section-title {
  margin-bottom: 48px;
}

.shop-product-categories-section .rectangle-button {
  -ms-flex-line-pack: center;
  align-content: center;
  height: 100%;
  font-size: 20px;
}

.category-product-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 100%;
  background: #F2F2F2;
  padding: 36px calc(32px / 2) 33px;
  overflow: hidden;
  text-align: center;
}

.category-product-block .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 200px;
  margin-bottom: 47px;
}

.category-product-block .image-wrapper img {
  margin: auto;
}

.category-product-block .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: -26px;
  transition: all 0.3s ease-in-out;
}

.category-product-block .category-title {
  color: #000;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

.category-product-block .category-link {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.category-product-block:hover .info-wrapper {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.category-product-block:hover .category-link {
  opacity: 1;
}

.category-product-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}