

/* Start:/local/templates/main/design/public/main.css?1772603982591699*/
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}
.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}
.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}
.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}
.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}
.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}
@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}
.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}
@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}
.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}
@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-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 {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease)
    var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}
@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}
.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}
@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}
.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}
@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}
.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both
    f-crossfadeOut;
  z-index: 1;
}
@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInNext;
}
.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideInPrev;
}
.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutNext;
}
.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-slideOutPrev;
}
@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicInPrev;
  z-index: 2;
}
.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1)
    f-classicOutPrev;
  z-index: 1;
}
@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}
.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}
@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}
.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px)
    var(--f-button-outline-color, var(--f-button-color));
}
.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}
.f-button[disabled] {
  cursor: default;
}
.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}
.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}
.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}
.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 {
  touch-action: none;
}
html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(
    var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px)
  );
  overflow: hidden !important;
  overscroll-behavior-y: none;
}
.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  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::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;
  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: grab;
}
.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}
.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}
.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}
.is-loading .fancybox__content {
  opacity: 0;
}
.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}
.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__slide.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;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}
.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}
.is-compact .fancybox__caption {
  padding-bottom: 0;
}
.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}
.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}
.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}
.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}
.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}
.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}
.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}
.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}
.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}
.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-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 {
  animation: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}
.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0
    var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}
.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}
.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}
.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}
.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden="false"]
  > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__carousel
  > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden="false"]
  .fancybox__slide
  > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards
    f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
  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) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
  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%;
  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;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}
.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}
.f-thumbs .f-spinner svg {
  display: none;
}
.f-thumbs.is-vertical {
  height: 100%;
}
.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.f-thumbs__track {
  display: flex;
}
.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  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: 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);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}
.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}
.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  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 {
  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;
  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)
  );
  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);
  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;
  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 {
  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: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI",
    "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.5)
  );
  pointer-events: none;
  z-index: 20;
}
.fancybox__toolbar :focus-visible {
  z-index: 1;
}
.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}
.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}
.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}
.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}
.fancybox__infobar span {
  padding: 0 5px;
}
.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}
[data-fancybox-toggle-slideshow] {
  position: relative;
}
[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}
[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}
[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}
.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}
[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}
.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}
.datepicker {
  width: min-content;
}
.datepicker:not(.active) {
  display: none;
}
.datepicker-dropdown {
  position: absolute;
  z-index: 20;
  padding-top: 4px;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}
.datepicker-picker {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: #fff;
}
.datepicker-dropdown .datepicker-picker {
  box-shadow:
    0 2px 3px rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.1);
}
.datepicker-main {
  flex: auto;
  padding: 2px;
}
.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: #f5f5f5;
}
.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: #f5f5f5;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}
.datepicker-controls {
  display: flex;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fff;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #363636;
  font-size: 1rem;
}
.datepicker-controls .button:focus,
.datepicker-controls .button:active {
  outline: none;
}
.datepicker-controls .button:hover {
  border-color: #b8b8b8;
  color: #363636;
}
.datepicker-controls .button:focus {
  border-color: #3273dc;
  color: #363636;
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.datepicker-controls .button:active {
  border-color: #474747;
  color: #363636;
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border-color: rgba(0, 0, 0, 0);
  font-weight: bold;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-footer .datepicker-controls .button {
  flex: auto;
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  font-size: 0.75rem;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .prev-button,
.datepicker-controls .next-button {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  flex: 0 0 14.2857142857%;
}
.datepicker-controls .prev-button.disabled,
.datepicker-controls .next-button.disabled {
  visibility: hidden;
}
.datepicker-view,
.datepicker-grid {
  display: flex;
}
.datepicker-view {
  align-items: stretch;
  width: 15.75rem;
}
.datepicker-grid {
  flex-wrap: wrap;
  flex: auto;
}
.datepicker .days {
  display: flex;
  flex-direction: column;
  flex: auto;
}
.datepicker .days-of-week {
  display: flex;
}
.datepicker .week-numbers {
  display: flex;
  flex-direction: column;
  flex: 0 0 9.6774193548%;
}
.datepicker .weeks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: auto;
}
.datepicker span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none;
}
.datepicker .dow {
  height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.datepicker .week {
  flex: auto;
  color: #b8b8b8;
  font-size: 0.75rem;
}
.datepicker-cell,
.datepicker .days .dow {
  flex-basis: 14.2857142857%;
}
.datepicker-cell {
  height: 2.25rem;
}
.datepicker-cell:not(.day) {
  flex-basis: 25%;
  height: 4.5rem;
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #e9e9e9;
}
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #3273dc;
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: #dcdcdc;
}
.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: #7a7a7a;
}
.datepicker-cell.prev.selected,
.datepicker-cell.next.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: #f5f5f5;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(
    .disabled
  ):hover {
  background-color: #efefef;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e9e9e9;
}
.datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #00ccad;
}
.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #b8b8b8;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #b3b3b3;
}
.datepicker-cell.range-start:not(.range-end) {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end:not(.range-start) {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  border-radius: 0;
  background-color: #dcdcdc;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d7d7d7;
}
.datepicker-cell.range.disabled {
  color: #c6c6c6;
}
.datepicker-cell.range.focused {
  background-color: #d1d1d1;
}
.datepicker-input.in-edit {
  border-color: #276bda;
}
.datepicker-input.in-edit:focus,
.datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(39, 107, 218, 0.2);
}
:root,
[data-bs-theme="light"] {
  --bs-blue: #004bb1;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #ffffff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #004bb1;
  --bs-secondary: #6c757d;
  --bs-success: #9ed07d;
  --bs-info: #6fa0f0;
  --bs-warning: #ffad7e;
  --bs-danger: #ff0000;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 0, 75, 177;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 158, 208, 125;
  --bs-info-rgb: 111, 160, 240;
  --bs-warning-rgb: 255, 173, 126;
  --bs-danger-rgb: 255, 0, 0;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #001e47;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #3f5332;
  --bs-info-text-emphasis: #2c4060;
  --bs-warning-text-emphasis: #664532;
  --bs-danger-text-emphasis: #660000;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #ccdbef;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #ecf6e5;
  --bs-info-bg-subtle: #e2ecfc;
  --bs-warning-bg-subtle: #ffefe5;
  --bs-danger-bg-subtle: #ffcccc;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #99b7e0;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #d8eccb;
  --bs-info-border-subtle: #c5d9f9;
  --bs-warning-border-subtle: #ffdecb;
  --bs-danger-border-subtle: #ff9999;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans",
    "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: "GolosText";
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #333;
  --bs-body-color-rgb: 51, 51, 51;
  --bs-body-bg: #f6f3f0;
  --bs-body-bg-rgb: 246, 243, 240;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(51, 51, 51, 0.75);
  --bs-secondary-color-rgb: 51, 51, 51;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(51, 51, 51, 0.5);
  --bs-tertiary-color-rgb: 51, 51, 51;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #333;
  --bs-link-color-rgb: 51, 51, 51;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #828080;
  --bs-link-hover-color-rgb: 130, 128, 128;
  --bs-code-color: #d63384;
  --bs-highlight-color: #333;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 28px;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(0, 75, 177, 0.25);
  --bs-form-valid-color: #9ed07d;
  --bs-form-valid-border-color: #9ed07d;
  --bs-form-invalid-color: #ff0000;
  --bs-form-invalid-border-color: #ff0000;
}
[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #ffffff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6693d0;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #c5e3b1;
  --bs-info-text-emphasis: #a9c6f6;
  --bs-warning-text-emphasis: #ffceb2;
  --bs-danger-text-emphasis: #ff6666;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #000f23;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #202a19;
  --bs-info-bg-subtle: #162030;
  --bs-warning-bg-subtle: #332319;
  --bs-danger-bg-subtle: #330000;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #002d6a;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #5f7d4b;
  --bs-info-border-subtle: #436090;
  --bs-warning-border-subtle: #99684c;
  --bs-danger-border-subtle: #990000;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6693d0;
  --bs-link-hover-color: #85a9d9;
  --bs-link-color-rgb: 102, 147, 208;
  --bs-link-hover-color-rgb: 133, 169, 217;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bs-heading-color);
}
h1,
.h1 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.25rem;
  }
}
h2,
.h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}
h3,
.h3 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}
h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}
h5,
.h5 {
  font-size: 1.25rem;
}
h6,
.h6 {
  font-size: 1rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
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,
.small {
  font-size: 0.875em;
}
mark,
.mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
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,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not(
    [type="week"]
  ):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}
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;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
} /*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src:
    url(/local/templates/main/design/public/../src/fonts/bootstrap-icons.woff2) format("woff2"),
    url(/local/templates/main/design/public/../src/fonts/bootstrap-icons.woff) format("woff");
}
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bi-123::before {
  content: "";
}
.bi-alarm-fill::before {
  content: "";
}
.bi-alarm::before {
  content: "";
}
.bi-align-bottom::before {
  content: "";
}
.bi-align-center::before {
  content: "";
}
.bi-align-end::before {
  content: "";
}
.bi-align-middle::before {
  content: "";
}
.bi-align-start::before {
  content: "";
}
.bi-align-top::before {
  content: "";
}
.bi-alt::before {
  content: "";
}
.bi-app-indicator::before {
  content: "";
}
.bi-app::before {
  content: "";
}
.bi-archive-fill::before {
  content: "";
}
.bi-archive::before {
  content: "";
}
.bi-arrow-90deg-down::before {
  content: "";
}
.bi-arrow-90deg-left::before {
  content: "";
}
.bi-arrow-90deg-right::before {
  content: "";
}
.bi-arrow-90deg-up::before {
  content: "";
}
.bi-arrow-bar-down::before {
  content: "";
}
.bi-arrow-bar-left::before {
  content: "";
}
.bi-arrow-bar-right::before {
  content: "";
}
.bi-arrow-bar-up::before {
  content: "";
}
.bi-arrow-clockwise::before {
  content: "";
}
.bi-arrow-counterclockwise::before {
  content: "";
}
.bi-arrow-down-circle-fill::before {
  content: "";
}
.bi-arrow-down-circle::before {
  content: "";
}
.bi-arrow-down-left-circle-fill::before {
  content: "";
}
.bi-arrow-down-left-circle::before {
  content: "";
}
.bi-arrow-down-left-square-fill::before {
  content: "";
}
.bi-arrow-down-left-square::before {
  content: "";
}
.bi-arrow-down-left::before {
  content: "";
}
.bi-arrow-down-right-circle-fill::before {
  content: "";
}
.bi-arrow-down-right-circle::before {
  content: "";
}
.bi-arrow-down-right-square-fill::before {
  content: "";
}
.bi-arrow-down-right-square::before {
  content: "";
}
.bi-arrow-down-right::before {
  content: "";
}
.bi-arrow-down-short::before {
  content: "";
}
.bi-arrow-down-square-fill::before {
  content: "";
}
.bi-arrow-down-square::before {
  content: "";
}
.bi-arrow-down-up::before {
  content: "";
}
.bi-arrow-down::before {
  content: "";
}
.bi-arrow-left-circle-fill::before {
  content: "";
}
.bi-arrow-left-circle::before {
  content: "";
}
.bi-arrow-left-right::before {
  content: "";
}
.bi-arrow-left-short::before {
  content: "";
}
.bi-arrow-left-square-fill::before {
  content: "";
}
.bi-arrow-left-square::before {
  content: "";
}
.bi-arrow-left::before {
  content: "";
}
.bi-arrow-repeat::before {
  content: "";
}
.bi-arrow-return-left::before {
  content: "";
}
.bi-arrow-return-right::before {
  content: "";
}
.bi-arrow-right-circle-fill::before {
  content: "";
}
.bi-arrow-right-circle::before {
  content: "";
}
.bi-arrow-right-short::before {
  content: "";
}
.bi-arrow-right-square-fill::before {
  content: "";
}
.bi-arrow-right-square::before {
  content: "";
}
.bi-arrow-right::before {
  content: "";
}
.bi-arrow-up-circle-fill::before {
  content: "";
}
.bi-arrow-up-circle::before {
  content: "";
}
.bi-arrow-up-left-circle-fill::before {
  content: "";
}
.bi-arrow-up-left-circle::before {
  content: "";
}
.bi-arrow-up-left-square-fill::before {
  content: "";
}
.bi-arrow-up-left-square::before {
  content: "";
}
.bi-arrow-up-left::before {
  content: "";
}
.bi-arrow-up-right-circle-fill::before {
  content: "";
}
.bi-arrow-up-right-circle::before {
  content: "";
}
.bi-arrow-up-right-square-fill::before {
  content: "";
}
.bi-arrow-up-right-square::before {
  content: "";
}
.bi-arrow-up-right::before {
  content: "";
}
.bi-arrow-up-short::before {
  content: "";
}
.bi-arrow-up-square-fill::before {
  content: "";
}
.bi-arrow-up-square::before {
  content: "";
}
.bi-arrow-up::before {
  content: "";
}
.bi-arrows-angle-contract::before {
  content: "";
}
.bi-arrows-angle-expand::before {
  content: "";
}
.bi-arrows-collapse::before {
  content: "";
}
.bi-arrows-expand::before {
  content: "";
}
.bi-arrows-fullscreen::before {
  content: "";
}
.bi-arrows-move::before {
  content: "";
}
.bi-aspect-ratio-fill::before {
  content: "";
}
.bi-aspect-ratio::before {
  content: "";
}
.bi-asterisk::before {
  content: "";
}
.bi-at::before {
  content: "";
}
.bi-award-fill::before {
  content: "";
}
.bi-award::before {
  content: "";
}
.bi-back::before {
  content: "";
}
.bi-backspace-fill::before {
  content: "";
}
.bi-backspace-reverse-fill::before {
  content: "";
}
.bi-backspace-reverse::before {
  content: "";
}
.bi-backspace::before {
  content: "";
}
.bi-badge-3d-fill::before {
  content: "";
}
.bi-badge-3d::before {
  content: "";
}
.bi-badge-4k-fill::before {
  content: "";
}
.bi-badge-4k::before {
  content: "";
}
.bi-badge-8k-fill::before {
  content: "";
}
.bi-badge-8k::before {
  content: "";
}
.bi-badge-ad-fill::before {
  content: "";
}
.bi-badge-ad::before {
  content: "";
}
.bi-badge-ar-fill::before {
  content: "";
}
.bi-badge-ar::before {
  content: "";
}
.bi-badge-cc-fill::before {
  content: "";
}
.bi-badge-cc::before {
  content: "";
}
.bi-badge-hd-fill::before {
  content: "";
}
.bi-badge-hd::before {
  content: "";
}
.bi-badge-tm-fill::before {
  content: "";
}
.bi-badge-tm::before {
  content: "";
}
.bi-badge-vo-fill::before {
  content: "";
}
.bi-badge-vo::before {
  content: "";
}
.bi-badge-vr-fill::before {
  content: "";
}
.bi-badge-vr::before {
  content: "";
}
.bi-badge-wc-fill::before {
  content: "";
}
.bi-badge-wc::before {
  content: "";
}
.bi-bag-check-fill::before {
  content: "";
}
.bi-bag-check::before {
  content: "";
}
.bi-bag-dash-fill::before {
  content: "";
}
.bi-bag-dash::before {
  content: "";
}
.bi-bag-fill::before {
  content: "";
}
.bi-bag-plus-fill::before {
  content: "";
}
.bi-bag-plus::before {
  content: "";
}
.bi-bag-x-fill::before {
  content: "";
}
.bi-bag-x::before {
  content: "";
}
.bi-bag::before {
  content: "";
}
.bi-bar-chart-fill::before {
  content: "";
}
.bi-bar-chart-line-fill::before {
  content: "";
}
.bi-bar-chart-line::before {
  content: "";
}
.bi-bar-chart-steps::before {
  content: "";
}
.bi-bar-chart::before {
  content: "";
}
.bi-basket-fill::before {
  content: "";
}
.bi-basket::before {
  content: "";
}
.bi-basket2-fill::before {
  content: "";
}
.bi-basket2::before {
  content: "";
}
.bi-basket3-fill::before {
  content: "";
}
.bi-basket3::before {
  content: "";
}
.bi-battery-charging::before {
  content: "";
}
.bi-battery-full::before {
  content: "";
}
.bi-battery-half::before {
  content: "";
}
.bi-battery::before {
  content: "";
}
.bi-bell-fill::before {
  content: "";
}
.bi-bell::before {
  content: "";
}
.bi-bezier::before {
  content: "";
}
.bi-bezier2::before {
  content: "";
}
.bi-bicycle::before {
  content: "";
}
.bi-binoculars-fill::before {
  content: "";
}
.bi-binoculars::before {
  content: "";
}
.bi-blockquote-left::before {
  content: "";
}
.bi-blockquote-right::before {
  content: "";
}
.bi-book-fill::before {
  content: "";
}
.bi-book-half::before {
  content: "";
}
.bi-book::before {
  content: "";
}
.bi-bookmark-check-fill::before {
  content: "";
}
.bi-bookmark-check::before {
  content: "";
}
.bi-bookmark-dash-fill::before {
  content: "";
}
.bi-bookmark-dash::before {
  content: "";
}
.bi-bookmark-fill::before {
  content: "";
}
.bi-bookmark-heart-fill::before {
  content: "";
}
.bi-bookmark-heart::before {
  content: "";
}
.bi-bookmark-plus-fill::before {
  content: "";
}
.bi-bookmark-plus::before {
  content: "";
}
.bi-bookmark-star-fill::before {
  content: "";
}
.bi-bookmark-star::before {
  content: "";
}
.bi-bookmark-x-fill::before {
  content: "";
}
.bi-bookmark-x::before {
  content: "";
}
.bi-bookmark::before {
  content: "";
}
.bi-bookmarks-fill::before {
  content: "";
}
.bi-bookmarks::before {
  content: "";
}
.bi-bookshelf::before {
  content: "";
}
.bi-bootstrap-fill::before {
  content: "";
}
.bi-bootstrap-reboot::before {
  content: "";
}
.bi-bootstrap::before {
  content: "";
}
.bi-border-all::before {
  content: "";
}
.bi-border-bottom::before {
  content: "";
}
.bi-border-center::before {
  content: "";
}
.bi-border-inner::before {
  content: "";
}
.bi-border-left::before {
  content: "";
}
.bi-border-middle::before {
  content: "";
}
.bi-border-outer::before {
  content: "";
}
.bi-border-right::before {
  content: "";
}
.bi-border-style::before {
  content: "";
}
.bi-border-top::before {
  content: "";
}
.bi-border-width::before {
  content: "";
}
.bi-border::before {
  content: "";
}
.bi-bounding-box-circles::before {
  content: "";
}
.bi-bounding-box::before {
  content: "";
}
.bi-box-arrow-down-left::before {
  content: "";
}
.bi-box-arrow-down-right::before {
  content: "";
}
.bi-box-arrow-down::before {
  content: "";
}
.bi-box-arrow-in-down-left::before {
  content: "";
}
.bi-box-arrow-in-down-right::before {
  content: "";
}
.bi-box-arrow-in-down::before {
  content: "";
}
.bi-box-arrow-in-left::before {
  content: "";
}
.bi-box-arrow-in-right::before {
  content: "";
}
.bi-box-arrow-in-up-left::before {
  content: "";
}
.bi-box-arrow-in-up-right::before {
  content: "";
}
.bi-box-arrow-in-up::before {
  content: "";
}
.bi-box-arrow-left::before {
  content: "";
}
.bi-box-arrow-right::before {
  content: "";
}
.bi-box-arrow-up-left::before {
  content: "";
}
.bi-box-arrow-up-right::before {
  content: "";
}
.bi-box-arrow-up::before {
  content: "";
}
.bi-box-seam::before {
  content: "";
}
.bi-box::before {
  content: "";
}
.bi-braces::before {
  content: "";
}
.bi-bricks::before {
  content: "";
}
.bi-briefcase-fill::before {
  content: "";
}
.bi-briefcase::before {
  content: "";
}
.bi-brightness-alt-high-fill::before {
  content: "";
}
.bi-brightness-alt-high::before {
  content: "";
}
.bi-brightness-alt-low-fill::before {
  content: "";
}
.bi-brightness-alt-low::before {
  content: "";
}
.bi-brightness-high-fill::before {
  content: "";
}
.bi-brightness-high::before {
  content: "";
}
.bi-brightness-low-fill::before {
  content: "";
}
.bi-brightness-low::before {
  content: "";
}
.bi-broadcast-pin::before {
  content: "";
}
.bi-broadcast::before {
  content: "";
}
.bi-brush-fill::before {
  content: "";
}
.bi-brush::before {
  content: "";
}
.bi-bucket-fill::before {
  content: "";
}
.bi-bucket::before {
  content: "";
}
.bi-bug-fill::before {
  content: "";
}
.bi-bug::before {
  content: "";
}
.bi-building::before {
  content: "";
}
.bi-bullseye::before {
  content: "";
}
.bi-calculator-fill::before {
  content: "";
}
.bi-calculator::before {
  content: "";
}
.bi-calendar-check-fill::before {
  content: "";
}
.bi-calendar-check::before {
  content: "";
}
.bi-calendar-date-fill::before {
  content: "";
}
.bi-calendar-date::before {
  content: "";
}
.bi-calendar-day-fill::before {
  content: "";
}
.bi-calendar-day::before {
  content: "";
}
.bi-calendar-event-fill::before {
  content: "";
}
.bi-calendar-event::before {
  content: "";
}
.bi-calendar-fill::before {
  content: "";
}
.bi-calendar-minus-fill::before {
  content: "";
}
.bi-calendar-minus::before {
  content: "";
}
.bi-calendar-month-fill::before {
  content: "";
}
.bi-calendar-month::before {
  content: "";
}
.bi-calendar-plus-fill::before {
  content: "";
}
.bi-calendar-plus::before {
  content: "";
}
.bi-calendar-range-fill::before {
  content: "";
}
.bi-calendar-range::before {
  content: "";
}
.bi-calendar-week-fill::before {
  content: "";
}
.bi-calendar-week::before {
  content: "";
}
.bi-calendar-x-fill::before {
  content: "";
}
.bi-calendar-x::before {
  content: "";
}
.bi-calendar::before {
  content: "";
}
.bi-calendar2-check-fill::before {
  content: "";
}
.bi-calendar2-check::before {
  content: "";
}
.bi-calendar2-date-fill::before {
  content: "";
}
.bi-calendar2-date::before {
  content: "";
}
.bi-calendar2-day-fill::before {
  content: "";
}
.bi-calendar2-day::before {
  content: "";
}
.bi-calendar2-event-fill::before {
  content: "";
}
.bi-calendar2-event::before {
  content: "";
}
.bi-calendar2-fill::before {
  content: "";
}
.bi-calendar2-minus-fill::before {
  content: "";
}
.bi-calendar2-minus::before {
  content: "";
}
.bi-calendar2-month-fill::before {
  content: "";
}
.bi-calendar2-month::before {
  content: "";
}
.bi-calendar2-plus-fill::before {
  content: "";
}
.bi-calendar2-plus::before {
  content: "";
}
.bi-calendar2-range-fill::before {
  content: "";
}
.bi-calendar2-range::before {
  content: "";
}
.bi-calendar2-week-fill::before {
  content: "";
}
.bi-calendar2-week::before {
  content: "";
}
.bi-calendar2-x-fill::before {
  content: "";
}
.bi-calendar2-x::before {
  content: "";
}
.bi-calendar2::before {
  content: "";
}
.bi-calendar3-event-fill::before {
  content: "";
}
.bi-calendar3-event::before {
  content: "";
}
.bi-calendar3-fill::before {
  content: "";
}
.bi-calendar3-range-fill::before {
  content: "";
}
.bi-calendar3-range::before {
  content: "";
}
.bi-calendar3-week-fill::before {
  content: "";
}
.bi-calendar3-week::before {
  content: "";
}
.bi-calendar3::before {
  content: "";
}
.bi-calendar4-event::before {
  content: "";
}
.bi-calendar4-range::before {
  content: "";
}
.bi-calendar4-week::before {
  content: "";
}
.bi-calendar4::before {
  content: "";
}
.bi-camera-fill::before {
  content: "";
}
.bi-camera-reels-fill::before {
  content: "";
}
.bi-camera-reels::before {
  content: "";
}
.bi-camera-video-fill::before {
  content: "";
}
.bi-camera-video-off-fill::before {
  content: "";
}
.bi-camera-video-off::before {
  content: "";
}
.bi-camera-video::before {
  content: "";
}
.bi-camera::before {
  content: "";
}
.bi-camera2::before {
  content: "";
}
.bi-capslock-fill::before {
  content: "";
}
.bi-capslock::before {
  content: "";
}
.bi-card-checklist::before {
  content: "";
}
.bi-card-heading::before {
  content: "";
}
.bi-card-image::before {
  content: "";
}
.bi-card-list::before {
  content: "";
}
.bi-card-text::before {
  content: "";
}
.bi-caret-down-fill::before {
  content: "";
}
.bi-caret-down-square-fill::before {
  content: "";
}
.bi-caret-down-square::before {
  content: "";
}
.bi-caret-down::before {
  content: "";
}
.bi-caret-left-fill::before {
  content: "";
}
.bi-caret-left-square-fill::before {
  content: "";
}
.bi-caret-left-square::before {
  content: "";
}
.bi-caret-left::before {
  content: "";
}
.bi-caret-right-fill::before {
  content: "";
}
.bi-caret-right-square-fill::before {
  content: "";
}
.bi-caret-right-square::before {
  content: "";
}
.bi-caret-right::before {
  content: "";
}
.bi-caret-up-fill::before {
  content: "";
}
.bi-caret-up-square-fill::before {
  content: "";
}
.bi-caret-up-square::before {
  content: "";
}
.bi-caret-up::before {
  content: "";
}
.bi-cart-check-fill::before {
  content: "";
}
.bi-cart-check::before {
  content: "";
}
.bi-cart-dash-fill::before {
  content: "";
}
.bi-cart-dash::before {
  content: "";
}
.bi-cart-fill::before {
  content: "";
}
.bi-cart-plus-fill::before {
  content: "";
}
.bi-cart-plus::before {
  content: "";
}
.bi-cart-x-fill::before {
  content: "";
}
.bi-cart-x::before {
  content: "";
}
.bi-cart::before {
  content: "";
}
.bi-cart2::before {
  content: "";
}
.bi-cart3::before {
  content: "";
}
.bi-cart4::before {
  content: "";
}
.bi-cash-stack::before {
  content: "";
}
.bi-cash::before {
  content: "";
}
.bi-cast::before {
  content: "";
}
.bi-chat-dots-fill::before {
  content: "";
}
.bi-chat-dots::before {
  content: "";
}
.bi-chat-fill::before {
  content: "";
}
.bi-chat-left-dots-fill::before {
  content: "";
}
.bi-chat-left-dots::before {
  content: "";
}
.bi-chat-left-fill::before {
  content: "";
}
.bi-chat-left-quote-fill::before {
  content: "";
}
.bi-chat-left-quote::before {
  content: "";
}
.bi-chat-left-text-fill::before {
  content: "";
}
.bi-chat-left-text::before {
  content: "";
}
.bi-chat-left::before {
  content: "";
}
.bi-chat-quote-fill::before {
  content: "";
}
.bi-chat-quote::before {
  content: "";
}
.bi-chat-right-dots-fill::before {
  content: "";
}
.bi-chat-right-dots::before {
  content: "";
}
.bi-chat-right-fill::before {
  content: "";
}
.bi-chat-right-quote-fill::before {
  content: "";
}
.bi-chat-right-quote::before {
  content: "";
}
.bi-chat-right-text-fill::before {
  content: "";
}
.bi-chat-right-text::before {
  content: "";
}
.bi-chat-right::before {
  content: "";
}
.bi-chat-square-dots-fill::before {
  content: "";
}
.bi-chat-square-dots::before {
  content: "";
}
.bi-chat-square-fill::before {
  content: "";
}
.bi-chat-square-quote-fill::before {
  content: "";
}
.bi-chat-square-quote::before {
  content: "";
}
.bi-chat-square-text-fill::before {
  content: "";
}
.bi-chat-square-text::before {
  content: "";
}
.bi-chat-square::before {
  content: "";
}
.bi-chat-text-fill::before {
  content: "";
}
.bi-chat-text::before {
  content: "";
}
.bi-chat::before {
  content: "";
}
.bi-check-all::before {
  content: "";
}
.bi-check-circle-fill::before {
  content: "";
}
.bi-check-circle::before {
  content: "";
}
.bi-check-square-fill::before {
  content: "";
}
.bi-check-square::before {
  content: "";
}
.bi-check::before {
  content: "";
}
.bi-check2-all::before {
  content: "";
}
.bi-check2-circle::before {
  content: "";
}
.bi-check2-square::before {
  content: "";
}
.bi-check2::before {
  content: "";
}
.bi-chevron-bar-contract::before {
  content: "";
}
.bi-chevron-bar-down::before {
  content: "";
}
.bi-chevron-bar-expand::before {
  content: "";
}
.bi-chevron-bar-left::before {
  content: "";
}
.bi-chevron-bar-right::before {
  content: "";
}
.bi-chevron-bar-up::before {
  content: "";
}
.bi-chevron-compact-down::before {
  content: "";
}
.bi-chevron-compact-left::before {
  content: "";
}
.bi-chevron-compact-right::before {
  content: "";
}
.bi-chevron-compact-up::before {
  content: "";
}
.bi-chevron-contract::before {
  content: "";
}
.bi-chevron-double-down::before {
  content: "";
}
.bi-chevron-double-left::before {
  content: "";
}
.bi-chevron-double-right::before {
  content: "";
}
.bi-chevron-double-up::before {
  content: "";
}
.bi-chevron-down::before {
  content: "";
}
.bi-chevron-expand::before {
  content: "";
}
.bi-chevron-left::before {
  content: "";
}
.bi-chevron-right::before {
  content: "";
}
.bi-chevron-up::before {
  content: "";
}
.bi-circle-fill::before {
  content: "";
}
.bi-circle-half::before {
  content: "";
}
.bi-circle-square::before {
  content: "";
}
.bi-circle::before {
  content: "";
}
.bi-clipboard-check::before {
  content: "";
}
.bi-clipboard-data::before {
  content: "";
}
.bi-clipboard-minus::before {
  content: "";
}
.bi-clipboard-plus::before {
  content: "";
}
.bi-clipboard-x::before {
  content: "";
}
.bi-clipboard::before {
  content: "";
}
.bi-clock-fill::before {
  content: "";
}
.bi-clock-history::before {
  content: "";
}
.bi-clock::before {
  content: "";
}
.bi-cloud-arrow-down-fill::before {
  content: "";
}
.bi-cloud-arrow-down::before {
  content: "";
}
.bi-cloud-arrow-up-fill::before {
  content: "";
}
.bi-cloud-arrow-up::before {
  content: "";
}
.bi-cloud-check-fill::before {
  content: "";
}
.bi-cloud-check::before {
  content: "";
}
.bi-cloud-download-fill::before {
  content: "";
}
.bi-cloud-download::before {
  content: "";
}
.bi-cloud-drizzle-fill::before {
  content: "";
}
.bi-cloud-drizzle::before {
  content: "";
}
.bi-cloud-fill::before {
  content: "";
}
.bi-cloud-fog-fill::before {
  content: "";
}
.bi-cloud-fog::before {
  content: "";
}
.bi-cloud-fog2-fill::before {
  content: "";
}
.bi-cloud-fog2::before {
  content: "";
}
.bi-cloud-hail-fill::before {
  content: "";
}
.bi-cloud-hail::before {
  content: "";
}
.bi-cloud-haze-fill::before {
  content: "";
}
.bi-cloud-haze::before {
  content: "";
}
.bi-cloud-haze2-fill::before {
  content: "";
}
.bi-cloud-lightning-fill::before {
  content: "";
}
.bi-cloud-lightning-rain-fill::before {
  content: "";
}
.bi-cloud-lightning-rain::before {
  content: "";
}
.bi-cloud-lightning::before {
  content: "";
}
.bi-cloud-minus-fill::before {
  content: "";
}
.bi-cloud-minus::before {
  content: "";
}
.bi-cloud-moon-fill::before {
  content: "";
}
.bi-cloud-moon::before {
  content: "";
}
.bi-cloud-plus-fill::before {
  content: "";
}
.bi-cloud-plus::before {
  content: "";
}
.bi-cloud-rain-fill::before {
  content: "";
}
.bi-cloud-rain-heavy-fill::before {
  content: "";
}
.bi-cloud-rain-heavy::before {
  content: "";
}
.bi-cloud-rain::before {
  content: "";
}
.bi-cloud-slash-fill::before {
  content: "";
}
.bi-cloud-slash::before {
  content: "";
}
.bi-cloud-sleet-fill::before {
  content: "";
}
.bi-cloud-sleet::before {
  content: "";
}
.bi-cloud-snow-fill::before {
  content: "";
}
.bi-cloud-snow::before {
  content: "";
}
.bi-cloud-sun-fill::before {
  content: "";
}
.bi-cloud-sun::before {
  content: "";
}
.bi-cloud-upload-fill::before {
  content: "";
}
.bi-cloud-upload::before {
  content: "";
}
.bi-cloud::before {
  content: "";
}
.bi-clouds-fill::before {
  content: "";
}
.bi-clouds::before {
  content: "";
}
.bi-cloudy-fill::before {
  content: "";
}
.bi-cloudy::before {
  content: "";
}
.bi-code-slash::before {
  content: "";
}
.bi-code-square::before {
  content: "";
}
.bi-code::before {
  content: "";
}
.bi-collection-fill::before {
  content: "";
}
.bi-collection-play-fill::before {
  content: "";
}
.bi-collection-play::before {
  content: "";
}
.bi-collection::before {
  content: "";
}
.bi-columns-gap::before {
  content: "";
}
.bi-columns::before {
  content: "";
}
.bi-command::before {
  content: "";
}
.bi-compass-fill::before {
  content: "";
}
.bi-compass::before {
  content: "";
}
.bi-cone-striped::before {
  content: "";
}
.bi-cone::before {
  content: "";
}
.bi-controller::before {
  content: "";
}
.bi-cpu-fill::before {
  content: "";
}
.bi-cpu::before {
  content: "";
}
.bi-credit-card-2-back-fill::before {
  content: "";
}
.bi-credit-card-2-back::before {
  content: "";
}
.bi-credit-card-2-front-fill::before {
  content: "";
}
.bi-credit-card-2-front::before {
  content: "";
}
.bi-credit-card-fill::before {
  content: "";
}
.bi-credit-card::before {
  content: "";
}
.bi-crop::before {
  content: "";
}
.bi-cup-fill::before {
  content: "";
}
.bi-cup-straw::before {
  content: "";
}
.bi-cup::before {
  content: "";
}
.bi-cursor-fill::before {
  content: "";
}
.bi-cursor-text::before {
  content: "";
}
.bi-cursor::before {
  content: "";
}
.bi-dash-circle-dotted::before {
  content: "";
}
.bi-dash-circle-fill::before {
  content: "";
}
.bi-dash-circle::before {
  content: "";
}
.bi-dash-square-dotted::before {
  content: "";
}
.bi-dash-square-fill::before {
  content: "";
}
.bi-dash-square::before {
  content: "";
}
.bi-dash::before {
  content: "";
}
.bi-diagram-2-fill::before {
  content: "";
}
.bi-diagram-2::before {
  content: "";
}
.bi-diagram-3-fill::before {
  content: "";
}
.bi-diagram-3::before {
  content: "";
}
.bi-diamond-fill::before {
  content: "";
}
.bi-diamond-half::before {
  content: "";
}
.bi-diamond::before {
  content: "";
}
.bi-dice-1-fill::before {
  content: "";
}
.bi-dice-1::before {
  content: "";
}
.bi-dice-2-fill::before {
  content: "";
}
.bi-dice-2::before {
  content: "";
}
.bi-dice-3-fill::before {
  content: "";
}
.bi-dice-3::before {
  content: "";
}
.bi-dice-4-fill::before {
  content: "";
}
.bi-dice-4::before {
  content: "";
}
.bi-dice-5-fill::before {
  content: "";
}
.bi-dice-5::before {
  content: "";
}
.bi-dice-6-fill::before {
  content: "";
}
.bi-dice-6::before {
  content: "";
}
.bi-disc-fill::before {
  content: "";
}
.bi-disc::before {
  content: "";
}
.bi-discord::before {
  content: "";
}
.bi-display-fill::before {
  content: "";
}
.bi-display::before {
  content: "";
}
.bi-distribute-horizontal::before {
  content: "";
}
.bi-distribute-vertical::before {
  content: "";
}
.bi-door-closed-fill::before {
  content: "";
}
.bi-door-closed::before {
  content: "";
}
.bi-door-open-fill::before {
  content: "";
}
.bi-door-open::before {
  content: "";
}
.bi-dot::before {
  content: "";
}
.bi-download::before {
  content: "";
}
.bi-droplet-fill::before {
  content: "";
}
.bi-droplet-half::before {
  content: "";
}
.bi-droplet::before {
  content: "";
}
.bi-earbuds::before {
  content: "";
}
.bi-easel-fill::before {
  content: "";
}
.bi-easel::before {
  content: "";
}
.bi-egg-fill::before {
  content: "";
}
.bi-egg-fried::before {
  content: "";
}
.bi-egg::before {
  content: "";
}
.bi-eject-fill::before {
  content: "";
}
.bi-eject::before {
  content: "";
}
.bi-emoji-angry-fill::before {
  content: "";
}
.bi-emoji-angry::before {
  content: "";
}
.bi-emoji-dizzy-fill::before {
  content: "";
}
.bi-emoji-dizzy::before {
  content: "";
}
.bi-emoji-expressionless-fill::before {
  content: "";
}
.bi-emoji-expressionless::before {
  content: "";
}
.bi-emoji-frown-fill::before {
  content: "";
}
.bi-emoji-frown::before {
  content: "";
}
.bi-emoji-heart-eyes-fill::before {
  content: "";
}
.bi-emoji-heart-eyes::before {
  content: "";
}
.bi-emoji-laughing-fill::before {
  content: "";
}
.bi-emoji-laughing::before {
  content: "";
}
.bi-emoji-neutral-fill::before {
  content: "";
}
.bi-emoji-neutral::before {
  content: "";
}
.bi-emoji-smile-fill::before {
  content: "";
}
.bi-emoji-smile-upside-down-fill::before {
  content: "";
}
.bi-emoji-smile-upside-down::before {
  content: "";
}
.bi-emoji-smile::before {
  content: "";
}
.bi-emoji-sunglasses-fill::before {
  content: "";
}
.bi-emoji-sunglasses::before {
  content: "";
}
.bi-emoji-wink-fill::before {
  content: "";
}
.bi-emoji-wink::before {
  content: "";
}
.bi-envelope-fill::before {
  content: "";
}
.bi-envelope-open-fill::before {
  content: "";
}
.bi-envelope-open::before {
  content: "";
}
.bi-envelope::before {
  content: "";
}
.bi-eraser-fill::before {
  content: "";
}
.bi-eraser::before {
  content: "";
}
.bi-exclamation-circle-fill::before {
  content: "";
}
.bi-exclamation-circle::before {
  content: "";
}
.bi-exclamation-diamond-fill::before {
  content: "";
}
.bi-exclamation-diamond::before {
  content: "";
}
.bi-exclamation-octagon-fill::before {
  content: "";
}
.bi-exclamation-octagon::before {
  content: "";
}
.bi-exclamation-square-fill::before {
  content: "";
}
.bi-exclamation-square::before {
  content: "";
}
.bi-exclamation-triangle-fill::before {
  content: "";
}
.bi-exclamation-triangle::before {
  content: "";
}
.bi-exclamation::before {
  content: "";
}
.bi-exclude::before {
  content: "";
}
.bi-eye-fill::before {
  content: "";
}
.bi-eye-slash-fill::before {
  content: "";
}
.bi-eye-slash::before {
  content: "";
}
.bi-eye::before {
  content: "";
}
.bi-eyedropper::before {
  content: "";
}
.bi-eyeglasses::before {
  content: "";
}
.bi-facebook::before {
  content: "";
}
.bi-file-arrow-down-fill::before {
  content: "";
}
.bi-file-arrow-down::before {
  content: "";
}
.bi-file-arrow-up-fill::before {
  content: "";
}
.bi-file-arrow-up::before {
  content: "";
}
.bi-file-bar-graph-fill::before {
  content: "";
}
.bi-file-bar-graph::before {
  content: "";
}
.bi-file-binary-fill::before {
  content: "";
}
.bi-file-binary::before {
  content: "";
}
.bi-file-break-fill::before {
  content: "";
}
.bi-file-break::before {
  content: "";
}
.bi-file-check-fill::before {
  content: "";
}
.bi-file-check::before {
  content: "";
}
.bi-file-code-fill::before {
  content: "";
}
.bi-file-code::before {
  content: "";
}
.bi-file-diff-fill::before {
  content: "";
}
.bi-file-diff::before {
  content: "";
}
.bi-file-earmark-arrow-down-fill::before {
  content: "";
}
.bi-file-earmark-arrow-down::before {
  content: "";
}
.bi-file-earmark-arrow-up-fill::before {
  content: "";
}
.bi-file-earmark-arrow-up::before {
  content: "";
}
.bi-file-earmark-bar-graph-fill::before {
  content: "";
}
.bi-file-earmark-bar-graph::before {
  content: "";
}
.bi-file-earmark-binary-fill::before {
  content: "";
}
.bi-file-earmark-binary::before {
  content: "";
}
.bi-file-earmark-break-fill::before {
  content: "";
}
.bi-file-earmark-break::before {
  content: "";
}
.bi-file-earmark-check-fill::before {
  content: "";
}
.bi-file-earmark-check::before {
  content: "";
}
.bi-file-earmark-code-fill::before {
  content: "";
}
.bi-file-earmark-code::before {
  content: "";
}
.bi-file-earmark-diff-fill::before {
  content: "";
}
.bi-file-earmark-diff::before {
  content: "";
}
.bi-file-earmark-easel-fill::before {
  content: "";
}
.bi-file-earmark-easel::before {
  content: "";
}
.bi-file-earmark-excel-fill::before {
  content: "";
}
.bi-file-earmark-excel::before {
  content: "";
}
.bi-file-earmark-fill::before {
  content: "";
}
.bi-file-earmark-font-fill::before {
  content: "";
}
.bi-file-earmark-font::before {
  content: "";
}
.bi-file-earmark-image-fill::before {
  content: "";
}
.bi-file-earmark-image::before {
  content: "";
}
.bi-file-earmark-lock-fill::before {
  content: "";
}
.bi-file-earmark-lock::before {
  content: "";
}
.bi-file-earmark-lock2-fill::before {
  content: "";
}
.bi-file-earmark-lock2::before {
  content: "";
}
.bi-file-earmark-medical-fill::before {
  content: "";
}
.bi-file-earmark-medical::before {
  content: "";
}
.bi-file-earmark-minus-fill::before {
  content: "";
}
.bi-file-earmark-minus::before {
  content: "";
}
.bi-file-earmark-music-fill::before {
  content: "";
}
.bi-file-earmark-music::before {
  content: "";
}
.bi-file-earmark-person-fill::before {
  content: "";
}
.bi-file-earmark-person::before {
  content: "";
}
.bi-file-earmark-play-fill::before {
  content: "";
}
.bi-file-earmark-play::before {
  content: "";
}
.bi-file-earmark-plus-fill::before {
  content: "";
}
.bi-file-earmark-plus::before {
  content: "";
}
.bi-file-earmark-post-fill::before {
  content: "";
}
.bi-file-earmark-post::before {
  content: "";
}
.bi-file-earmark-ppt-fill::before {
  content: "";
}
.bi-file-earmark-ppt::before {
  content: "";
}
.bi-file-earmark-richtext-fill::before {
  content: "";
}
.bi-file-earmark-richtext::before {
  content: "";
}
.bi-file-earmark-ruled-fill::before {
  content: "";
}
.bi-file-earmark-ruled::before {
  content: "";
}
.bi-file-earmark-slides-fill::before {
  content: "";
}
.bi-file-earmark-slides::before {
  content: "";
}
.bi-file-earmark-spreadsheet-fill::before {
  content: "";
}
.bi-file-earmark-spreadsheet::before {
  content: "";
}
.bi-file-earmark-text-fill::before {
  content: "";
}
.bi-file-earmark-text::before {
  content: "";
}
.bi-file-earmark-word-fill::before {
  content: "";
}
.bi-file-earmark-word::before {
  content: "";
}
.bi-file-earmark-x-fill::before {
  content: "";
}
.bi-file-earmark-x::before {
  content: "";
}
.bi-file-earmark-zip-fill::before {
  content: "";
}
.bi-file-earmark-zip::before {
  content: "";
}
.bi-file-earmark::before {
  content: "";
}
.bi-file-easel-fill::before {
  content: "";
}
.bi-file-easel::before {
  content: "";
}
.bi-file-excel-fill::before {
  content: "";
}
.bi-file-excel::before {
  content: "";
}
.bi-file-fill::before {
  content: "";
}
.bi-file-font-fill::before {
  content: "";
}
.bi-file-font::before {
  content: "";
}
.bi-file-image-fill::before {
  content: "";
}
.bi-file-image::before {
  content: "";
}
.bi-file-lock-fill::before {
  content: "";
}
.bi-file-lock::before {
  content: "";
}
.bi-file-lock2-fill::before {
  content: "";
}
.bi-file-lock2::before {
  content: "";
}
.bi-file-medical-fill::before {
  content: "";
}
.bi-file-medical::before {
  content: "";
}
.bi-file-minus-fill::before {
  content: "";
}
.bi-file-minus::before {
  content: "";
}
.bi-file-music-fill::before {
  content: "";
}
.bi-file-music::before {
  content: "";
}
.bi-file-person-fill::before {
  content: "";
}
.bi-file-person::before {
  content: "";
}
.bi-file-play-fill::before {
  content: "";
}
.bi-file-play::before {
  content: "";
}
.bi-file-plus-fill::before {
  content: "";
}
.bi-file-plus::before {
  content: "";
}
.bi-file-post-fill::before {
  content: "";
}
.bi-file-post::before {
  content: "";
}
.bi-file-ppt-fill::before {
  content: "";
}
.bi-file-ppt::before {
  content: "";
}
.bi-file-richtext-fill::before {
  content: "";
}
.bi-file-richtext::before {
  content: "";
}
.bi-file-ruled-fill::before {
  content: "";
}
.bi-file-ruled::before {
  content: "";
}
.bi-file-slides-fill::before {
  content: "";
}
.bi-file-slides::before {
  content: "";
}
.bi-file-spreadsheet-fill::before {
  content: "";
}
.bi-file-spreadsheet::before {
  content: "";
}
.bi-file-text-fill::before {
  content: "";
}
.bi-file-text::before {
  content: "";
}
.bi-file-word-fill::before {
  content: "";
}
.bi-file-word::before {
  content: "";
}
.bi-file-x-fill::before {
  content: "";
}
.bi-file-x::before {
  content: "";
}
.bi-file-zip-fill::before {
  content: "";
}
.bi-file-zip::before {
  content: "";
}
.bi-file::before {
  content: "";
}
.bi-files-alt::before {
  content: "";
}
.bi-files::before {
  content: "";
}
.bi-film::before {
  content: "";
}
.bi-filter-circle-fill::before {
  content: "";
}
.bi-filter-circle::before {
  content: "";
}
.bi-filter-left::before {
  content: "";
}
.bi-filter-right::before {
  content: "";
}
.bi-filter-square-fill::before {
  content: "";
}
.bi-filter-square::before {
  content: "";
}
.bi-filter::before {
  content: "";
}
.bi-flag-fill::before {
  content: "";
}
.bi-flag::before {
  content: "";
}
.bi-flower1::before {
  content: "";
}
.bi-flower2::before {
  content: "";
}
.bi-flower3::before {
  content: "";
}
.bi-folder-check::before {
  content: "";
}
.bi-folder-fill::before {
  content: "";
}
.bi-folder-minus::before {
  content: "";
}
.bi-folder-plus::before {
  content: "";
}
.bi-folder-symlink-fill::before {
  content: "";
}
.bi-folder-symlink::before {
  content: "";
}
.bi-folder-x::before {
  content: "";
}
.bi-folder::before {
  content: "";
}
.bi-folder2-open::before {
  content: "";
}
.bi-folder2::before {
  content: "";
}
.bi-fonts::before {
  content: "";
}
.bi-forward-fill::before {
  content: "";
}
.bi-forward::before {
  content: "";
}
.bi-front::before {
  content: "";
}
.bi-fullscreen-exit::before {
  content: "";
}
.bi-fullscreen::before {
  content: "";
}
.bi-funnel-fill::before {
  content: "";
}
.bi-funnel::before {
  content: "";
}
.bi-gear-fill::before {
  content: "";
}
.bi-gear-wide-connected::before {
  content: "";
}
.bi-gear-wide::before {
  content: "";
}
.bi-gear::before {
  content: "";
}
.bi-gem::before {
  content: "";
}
.bi-geo-alt-fill::before {
  content: "";
}
.bi-geo-alt::before {
  content: "";
}
.bi-geo-fill::before {
  content: "";
}
.bi-geo::before {
  content: "";
}
.bi-gift-fill::before {
  content: "";
}
.bi-gift::before {
  content: "";
}
.bi-github::before {
  content: "";
}
.bi-globe::before {
  content: "";
}
.bi-globe2::before {
  content: "";
}
.bi-google::before {
  content: "";
}
.bi-graph-down::before {
  content: "";
}
.bi-graph-up::before {
  content: "";
}
.bi-grid-1x2-fill::before {
  content: "";
}
.bi-grid-1x2::before {
  content: "";
}
.bi-grid-3x2-gap-fill::before {
  content: "";
}
.bi-grid-3x2-gap::before {
  content: "";
}
.bi-grid-3x2::before {
  content: "";
}
.bi-grid-3x3-gap-fill::before {
  content: "";
}
.bi-grid-3x3-gap::before {
  content: "";
}
.bi-grid-3x3::before {
  content: "";
}
.bi-grid-fill::before {
  content: "";
}
.bi-grid::before {
  content: "";
}
.bi-grip-horizontal::before {
  content: "";
}
.bi-grip-vertical::before {
  content: "";
}
.bi-hammer::before {
  content: "";
}
.bi-hand-index-fill::before {
  content: "";
}
.bi-hand-index-thumb-fill::before {
  content: "";
}
.bi-hand-index-thumb::before {
  content: "";
}
.bi-hand-index::before {
  content: "";
}
.bi-hand-thumbs-down-fill::before {
  content: "";
}
.bi-hand-thumbs-down::before {
  content: "";
}
.bi-hand-thumbs-up-fill::before {
  content: "";
}
.bi-hand-thumbs-up::before {
  content: "";
}
.bi-handbag-fill::before {
  content: "";
}
.bi-handbag::before {
  content: "";
}
.bi-hash::before {
  content: "";
}
.bi-hdd-fill::before {
  content: "";
}
.bi-hdd-network-fill::before {
  content: "";
}
.bi-hdd-network::before {
  content: "";
}
.bi-hdd-rack-fill::before {
  content: "";
}
.bi-hdd-rack::before {
  content: "";
}
.bi-hdd-stack-fill::before {
  content: "";
}
.bi-hdd-stack::before {
  content: "";
}
.bi-hdd::before {
  content: "";
}
.bi-headphones::before {
  content: "";
}
.bi-headset::before {
  content: "";
}
.bi-heart-fill::before {
  content: "";
}
.bi-heart-half::before {
  content: "";
}
.bi-heart::before {
  content: "";
}
.bi-heptagon-fill::before {
  content: "";
}
.bi-heptagon-half::before {
  content: "";
}
.bi-heptagon::before {
  content: "";
}
.bi-hexagon-fill::before {
  content: "";
}
.bi-hexagon-half::before {
  content: "";
}
.bi-hexagon::before {
  content: "";
}
.bi-hourglass-bottom::before {
  content: "";
}
.bi-hourglass-split::before {
  content: "";
}
.bi-hourglass-top::before {
  content: "";
}
.bi-hourglass::before {
  content: "";
}
.bi-house-door-fill::before {
  content: "";
}
.bi-house-door::before {
  content: "";
}
.bi-house-fill::before {
  content: "";
}
.bi-house::before {
  content: "";
}
.bi-hr::before {
  content: "";
}
.bi-hurricane::before {
  content: "";
}
.bi-image-alt::before {
  content: "";
}
.bi-image-fill::before {
  content: "";
}
.bi-image::before {
  content: "";
}
.bi-images::before {
  content: "";
}
.bi-inbox-fill::before {
  content: "";
}
.bi-inbox::before {
  content: "";
}
.bi-inboxes-fill::before {
  content: "";
}
.bi-inboxes::before {
  content: "";
}
.bi-info-circle-fill::before {
  content: "";
}
.bi-info-circle::before {
  content: "";
}
.bi-info-square-fill::before {
  content: "";
}
.bi-info-square::before {
  content: "";
}
.bi-info::before {
  content: "";
}
.bi-input-cursor-text::before {
  content: "";
}
.bi-input-cursor::before {
  content: "";
}
.bi-instagram::before {
  content: "";
}
.bi-intersect::before {
  content: "";
}
.bi-journal-album::before {
  content: "";
}
.bi-journal-arrow-down::before {
  content: "";
}
.bi-journal-arrow-up::before {
  content: "";
}
.bi-journal-bookmark-fill::before {
  content: "";
}
.bi-journal-bookmark::before {
  content: "";
}
.bi-journal-check::before {
  content: "";
}
.bi-journal-code::before {
  content: "";
}
.bi-journal-medical::before {
  content: "";
}
.bi-journal-minus::before {
  content: "";
}
.bi-journal-plus::before {
  content: "";
}
.bi-journal-richtext::before {
  content: "";
}
.bi-journal-text::before {
  content: "";
}
.bi-journal-x::before {
  content: "";
}
.bi-journal::before {
  content: "";
}
.bi-journals::before {
  content: "";
}
.bi-joystick::before {
  content: "";
}
.bi-justify-left::before {
  content: "";
}
.bi-justify-right::before {
  content: "";
}
.bi-justify::before {
  content: "";
}
.bi-kanban-fill::before {
  content: "";
}
.bi-kanban::before {
  content: "";
}
.bi-key-fill::before {
  content: "";
}
.bi-key::before {
  content: "";
}
.bi-keyboard-fill::before {
  content: "";
}
.bi-keyboard::before {
  content: "";
}
.bi-ladder::before {
  content: "";
}
.bi-lamp-fill::before {
  content: "";
}
.bi-lamp::before {
  content: "";
}
.bi-laptop-fill::before {
  content: "";
}
.bi-laptop::before {
  content: "";
}
.bi-layer-backward::before {
  content: "";
}
.bi-layer-forward::before {
  content: "";
}
.bi-layers-fill::before {
  content: "";
}
.bi-layers-half::before {
  content: "";
}
.bi-layers::before {
  content: "";
}
.bi-layout-sidebar-inset-reverse::before {
  content: "";
}
.bi-layout-sidebar-inset::before {
  content: "";
}
.bi-layout-sidebar-reverse::before {
  content: "";
}
.bi-layout-sidebar::before {
  content: "";
}
.bi-layout-split::before {
  content: "";
}
.bi-layout-text-sidebar-reverse::before {
  content: "";
}
.bi-layout-text-sidebar::before {
  content: "";
}
.bi-layout-text-window-reverse::before {
  content: "";
}
.bi-layout-text-window::before {
  content: "";
}
.bi-layout-three-columns::before {
  content: "";
}
.bi-layout-wtf::before {
  content: "";
}
.bi-life-preserver::before {
  content: "";
}
.bi-lightbulb-fill::before {
  content: "";
}
.bi-lightbulb-off-fill::before {
  content: "";
}
.bi-lightbulb-off::before {
  content: "";
}
.bi-lightbulb::before {
  content: "";
}
.bi-lightning-charge-fill::before {
  content: "";
}
.bi-lightning-charge::before {
  content: "";
}
.bi-lightning-fill::before {
  content: "";
}
.bi-lightning::before {
  content: "";
}
.bi-link-45deg::before {
  content: "";
}
.bi-link::before {
  content: "";
}
.bi-linkedin::before {
  content: "";
}
.bi-list-check::before {
  content: "";
}
.bi-list-nested::before {
  content: "";
}
.bi-list-ol::before {
  content: "";
}
.bi-list-stars::before {
  content: "";
}
.bi-list-task::before {
  content: "";
}
.bi-list-ul::before {
  content: "";
}
.bi-list::before {
  content: "";
}
.bi-lock-fill::before {
  content: "";
}
.bi-lock::before {
  content: "";
}
.bi-mailbox::before {
  content: "";
}
.bi-mailbox2::before {
  content: "";
}
.bi-map-fill::before {
  content: "";
}
.bi-map::before {
  content: "";
}
.bi-markdown-fill::before {
  content: "";
}
.bi-markdown::before {
  content: "";
}
.bi-mask::before {
  content: "";
}
.bi-megaphone-fill::before {
  content: "";
}
.bi-megaphone::before {
  content: "";
}
.bi-menu-app-fill::before {
  content: "";
}
.bi-menu-app::before {
  content: "";
}
.bi-menu-button-fill::before {
  content: "";
}
.bi-menu-button-wide-fill::before {
  content: "";
}
.bi-menu-button-wide::before {
  content: "";
}
.bi-menu-button::before {
  content: "";
}
.bi-menu-down::before {
  content: "";
}
.bi-menu-up::before {
  content: "";
}
.bi-mic-fill::before {
  content: "";
}
.bi-mic-mute-fill::before {
  content: "";
}
.bi-mic-mute::before {
  content: "";
}
.bi-mic::before {
  content: "";
}
.bi-minecart-loaded::before {
  content: "";
}
.bi-minecart::before {
  content: "";
}
.bi-moisture::before {
  content: "";
}
.bi-moon-fill::before {
  content: "";
}
.bi-moon-stars-fill::before {
  content: "";
}
.bi-moon-stars::before {
  content: "";
}
.bi-moon::before {
  content: "";
}
.bi-mouse-fill::before {
  content: "";
}
.bi-mouse::before {
  content: "";
}
.bi-mouse2-fill::before {
  content: "";
}
.bi-mouse2::before {
  content: "";
}
.bi-mouse3-fill::before {
  content: "";
}
.bi-mouse3::before {
  content: "";
}
.bi-music-note-beamed::before {
  content: "";
}
.bi-music-note-list::before {
  content: "";
}
.bi-music-note::before {
  content: "";
}
.bi-music-player-fill::before {
  content: "";
}
.bi-music-player::before {
  content: "";
}
.bi-newspaper::before {
  content: "";
}
.bi-node-minus-fill::before {
  content: "";
}
.bi-node-minus::before {
  content: "";
}
.bi-node-plus-fill::before {
  content: "";
}
.bi-node-plus::before {
  content: "";
}
.bi-nut-fill::before {
  content: "";
}
.bi-nut::before {
  content: "";
}
.bi-octagon-fill::before {
  content: "";
}
.bi-octagon-half::before {
  content: "";
}
.bi-octagon::before {
  content: "";
}
.bi-option::before {
  content: "";
}
.bi-outlet::before {
  content: "";
}
.bi-paint-bucket::before {
  content: "";
}
.bi-palette-fill::before {
  content: "";
}
.bi-palette::before {
  content: "";
}
.bi-palette2::before {
  content: "";
}
.bi-paperclip::before {
  content: "";
}
.bi-paragraph::before {
  content: "";
}
.bi-patch-check-fill::before {
  content: "";
}
.bi-patch-check::before {
  content: "";
}
.bi-patch-exclamation-fill::before {
  content: "";
}
.bi-patch-exclamation::before {
  content: "";
}
.bi-patch-minus-fill::before {
  content: "";
}
.bi-patch-minus::before {
  content: "";
}
.bi-patch-plus-fill::before {
  content: "";
}
.bi-patch-plus::before {
  content: "";
}
.bi-patch-question-fill::before {
  content: "";
}
.bi-patch-question::before {
  content: "";
}
.bi-pause-btn-fill::before {
  content: "";
}
.bi-pause-btn::before {
  content: "";
}
.bi-pause-circle-fill::before {
  content: "";
}
.bi-pause-circle::before {
  content: "";
}
.bi-pause-fill::before {
  content: "";
}
.bi-pause::before {
  content: "";
}
.bi-peace-fill::before {
  content: "";
}
.bi-peace::before {
  content: "";
}
.bi-pen-fill::before {
  content: "";
}
.bi-pen::before {
  content: "";
}
.bi-pencil-fill::before {
  content: "";
}
.bi-pencil-square::before {
  content: "";
}
.bi-pencil::before {
  content: "";
}
.bi-pentagon-fill::before {
  content: "";
}
.bi-pentagon-half::before {
  content: "";
}
.bi-pentagon::before {
  content: "";
}
.bi-people-fill::before {
  content: "";
}
.bi-people::before {
  content: "";
}
.bi-percent::before {
  content: "";
}
.bi-person-badge-fill::before {
  content: "";
}
.bi-person-badge::before {
  content: "";
}
.bi-person-bounding-box::before {
  content: "";
}
.bi-person-check-fill::before {
  content: "";
}
.bi-person-check::before {
  content: "";
}
.bi-person-circle::before {
  content: "";
}
.bi-person-dash-fill::before {
  content: "";
}
.bi-person-dash::before {
  content: "";
}
.bi-person-fill::before {
  content: "";
}
.bi-person-lines-fill::before {
  content: "";
}
.bi-person-plus-fill::before {
  content: "";
}
.bi-person-plus::before {
  content: "";
}
.bi-person-square::before {
  content: "";
}
.bi-person-x-fill::before {
  content: "";
}
.bi-person-x::before {
  content: "";
}
.bi-person::before {
  content: "";
}
.bi-phone-fill::before {
  content: "";
}
.bi-phone-landscape-fill::before {
  content: "";
}
.bi-phone-landscape::before {
  content: "";
}
.bi-phone-vibrate-fill::before {
  content: "";
}
.bi-phone-vibrate::before {
  content: "";
}
.bi-phone::before {
  content: "";
}
.bi-pie-chart-fill::before {
  content: "";
}
.bi-pie-chart::before {
  content: "";
}
.bi-pin-angle-fill::before {
  content: "";
}
.bi-pin-angle::before {
  content: "";
}
.bi-pin-fill::before {
  content: "";
}
.bi-pin::before {
  content: "";
}
.bi-pip-fill::before {
  content: "";
}
.bi-pip::before {
  content: "";
}
.bi-play-btn-fill::before {
  content: "";
}
.bi-play-btn::before {
  content: "";
}
.bi-play-circle-fill::before {
  content: "";
}
.bi-play-circle::before {
  content: "";
}
.bi-play-fill::before {
  content: "";
}
.bi-play::before {
  content: "";
}
.bi-plug-fill::before {
  content: "";
}
.bi-plug::before {
  content: "";
}
.bi-plus-circle-dotted::before {
  content: "";
}
.bi-plus-circle-fill::before {
  content: "";
}
.bi-plus-circle::before {
  content: "";
}
.bi-plus-square-dotted::before {
  content: "";
}
.bi-plus-square-fill::before {
  content: "";
}
.bi-plus-square::before {
  content: "";
}
.bi-plus::before {
  content: "";
}
.bi-power::before {
  content: "";
}
.bi-printer-fill::before {
  content: "";
}
.bi-printer::before {
  content: "";
}
.bi-puzzle-fill::before {
  content: "";
}
.bi-puzzle::before {
  content: "";
}
.bi-question-circle-fill::before {
  content: "";
}
.bi-question-circle::before {
  content: "";
}
.bi-question-diamond-fill::before {
  content: "";
}
.bi-question-diamond::before {
  content: "";
}
.bi-question-octagon-fill::before {
  content: "";
}
.bi-question-octagon::before {
  content: "";
}
.bi-question-square-fill::before {
  content: "";
}
.bi-question-square::before {
  content: "";
}
.bi-question::before {
  content: "";
}
.bi-rainbow::before {
  content: "";
}
.bi-receipt-cutoff::before {
  content: "";
}
.bi-receipt::before {
  content: "";
}
.bi-reception-0::before {
  content: "";
}
.bi-reception-1::before {
  content: "";
}
.bi-reception-2::before {
  content: "";
}
.bi-reception-3::before {
  content: "";
}
.bi-reception-4::before {
  content: "";
}
.bi-record-btn-fill::before {
  content: "";
}
.bi-record-btn::before {
  content: "";
}
.bi-record-circle-fill::before {
  content: "";
}
.bi-record-circle::before {
  content: "";
}
.bi-record-fill::before {
  content: "";
}
.bi-record::before {
  content: "";
}
.bi-record2-fill::before {
  content: "";
}
.bi-record2::before {
  content: "";
}
.bi-reply-all-fill::before {
  content: "";
}
.bi-reply-all::before {
  content: "";
}
.bi-reply-fill::before {
  content: "";
}
.bi-reply::before {
  content: "";
}
.bi-rss-fill::before {
  content: "";
}
.bi-rss::before {
  content: "";
}
.bi-rulers::before {
  content: "";
}
.bi-save-fill::before {
  content: "";
}
.bi-save::before {
  content: "";
}
.bi-save2-fill::before {
  content: "";
}
.bi-save2::before {
  content: "";
}
.bi-scissors::before {
  content: "";
}
.bi-screwdriver::before {
  content: "";
}
.bi-search::before {
  content: "";
}
.bi-segmented-nav::before {
  content: "";
}
.bi-server::before {
  content: "";
}
.bi-share-fill::before {
  content: "";
}
.bi-share::before {
  content: "";
}
.bi-shield-check::before {
  content: "";
}
.bi-shield-exclamation::before {
  content: "";
}
.bi-shield-fill-check::before {
  content: "";
}
.bi-shield-fill-exclamation::before {
  content: "";
}
.bi-shield-fill-minus::before {
  content: "";
}
.bi-shield-fill-plus::before {
  content: "";
}
.bi-shield-fill-x::before {
  content: "";
}
.bi-shield-fill::before {
  content: "";
}
.bi-shield-lock-fill::before {
  content: "";
}
.bi-shield-lock::before {
  content: "";
}
.bi-shield-minus::before {
  content: "";
}
.bi-shield-plus::before {
  content: "";
}
.bi-shield-shaded::before {
  content: "";
}
.bi-shield-slash-fill::before {
  content: "";
}
.bi-shield-slash::before {
  content: "";
}
.bi-shield-x::before {
  content: "";
}
.bi-shield::before {
  content: "";
}
.bi-shift-fill::before {
  content: "";
}
.bi-shift::before {
  content: "";
}
.bi-shop-window::before {
  content: "";
}
.bi-shop::before {
  content: "";
}
.bi-shuffle::before {
  content: "";
}
.bi-signpost-2-fill::before {
  content: "";
}
.bi-signpost-2::before {
  content: "";
}
.bi-signpost-fill::before {
  content: "";
}
.bi-signpost-split-fill::before {
  content: "";
}
.bi-signpost-split::before {
  content: "";
}
.bi-signpost::before {
  content: "";
}
.bi-sim-fill::before {
  content: "";
}
.bi-sim::before {
  content: "";
}
.bi-skip-backward-btn-fill::before {
  content: "";
}
.bi-skip-backward-btn::before {
  content: "";
}
.bi-skip-backward-circle-fill::before {
  content: "";
}
.bi-skip-backward-circle::before {
  content: "";
}
.bi-skip-backward-fill::before {
  content: "";
}
.bi-skip-backward::before {
  content: "";
}
.bi-skip-end-btn-fill::before {
  content: "";
}
.bi-skip-end-btn::before {
  content: "";
}
.bi-skip-end-circle-fill::before {
  content: "";
}
.bi-skip-end-circle::before {
  content: "";
}
.bi-skip-end-fill::before {
  content: "";
}
.bi-skip-end::before {
  content: "";
}
.bi-skip-forward-btn-fill::before {
  content: "";
}
.bi-skip-forward-btn::before {
  content: "";
}
.bi-skip-forward-circle-fill::before {
  content: "";
}
.bi-skip-forward-circle::before {
  content: "";
}
.bi-skip-forward-fill::before {
  content: "";
}
.bi-skip-forward::before {
  content: "";
}
.bi-skip-start-btn-fill::before {
  content: "";
}
.bi-skip-start-btn::before {
  content: "";
}
.bi-skip-start-circle-fill::before {
  content: "";
}
.bi-skip-start-circle::before {
  content: "";
}
.bi-skip-start-fill::before {
  content: "";
}
.bi-skip-start::before {
  content: "";
}
.bi-slack::before {
  content: "";
}
.bi-slash-circle-fill::before {
  content: "";
}
.bi-slash-circle::before {
  content: "";
}
.bi-slash-square-fill::before {
  content: "";
}
.bi-slash-square::before {
  content: "";
}
.bi-slash::before {
  content: "";
}
.bi-sliders::before {
  content: "";
}
.bi-smartwatch::before {
  content: "";
}
.bi-snow::before {
  content: "";
}
.bi-snow2::before {
  content: "";
}
.bi-snow3::before {
  content: "";
}
.bi-sort-alpha-down-alt::before {
  content: "";
}
.bi-sort-alpha-down::before {
  content: "";
}
.bi-sort-alpha-up-alt::before {
  content: "";
}
.bi-sort-alpha-up::before {
  content: "";
}
.bi-sort-down-alt::before {
  content: "";
}
.bi-sort-down::before {
  content: "";
}
.bi-sort-numeric-down-alt::before {
  content: "";
}
.bi-sort-numeric-down::before {
  content: "";
}
.bi-sort-numeric-up-alt::before {
  content: "";
}
.bi-sort-numeric-up::before {
  content: "";
}
.bi-sort-up-alt::before {
  content: "";
}
.bi-sort-up::before {
  content: "";
}
.bi-soundwave::before {
  content: "";
}
.bi-speaker-fill::before {
  content: "";
}
.bi-speaker::before {
  content: "";
}
.bi-speedometer::before {
  content: "";
}
.bi-speedometer2::before {
  content: "";
}
.bi-spellcheck::before {
  content: "";
}
.bi-square-fill::before {
  content: "";
}
.bi-square-half::before {
  content: "";
}
.bi-square::before {
  content: "";
}
.bi-stack::before {
  content: "";
}
.bi-star-fill::before {
  content: "";
}
.bi-star-half::before {
  content: "";
}
.bi-star::before {
  content: "";
}
.bi-stars::before {
  content: "";
}
.bi-stickies-fill::before {
  content: "";
}
.bi-stickies::before {
  content: "";
}
.bi-sticky-fill::before {
  content: "";
}
.bi-sticky::before {
  content: "";
}
.bi-stop-btn-fill::before {
  content: "";
}
.bi-stop-btn::before {
  content: "";
}
.bi-stop-circle-fill::before {
  content: "";
}
.bi-stop-circle::before {
  content: "";
}
.bi-stop-fill::before {
  content: "";
}
.bi-stop::before {
  content: "";
}
.bi-stoplights-fill::before {
  content: "";
}
.bi-stoplights::before {
  content: "";
}
.bi-stopwatch-fill::before {
  content: "";
}
.bi-stopwatch::before {
  content: "";
}
.bi-subtract::before {
  content: "";
}
.bi-suit-club-fill::before {
  content: "";
}
.bi-suit-club::before {
  content: "";
}
.bi-suit-diamond-fill::before {
  content: "";
}
.bi-suit-diamond::before {
  content: "";
}
.bi-suit-heart-fill::before {
  content: "";
}
.bi-suit-heart::before {
  content: "";
}
.bi-suit-spade-fill::before {
  content: "";
}
.bi-suit-spade::before {
  content: "";
}
.bi-sun-fill::before {
  content: "";
}
.bi-sun::before {
  content: "";
}
.bi-sunglasses::before {
  content: "";
}
.bi-sunrise-fill::before {
  content: "";
}
.bi-sunrise::before {
  content: "";
}
.bi-sunset-fill::before {
  content: "";
}
.bi-sunset::before {
  content: "";
}
.bi-symmetry-horizontal::before {
  content: "";
}
.bi-symmetry-vertical::before {
  content: "";
}
.bi-table::before {
  content: "";
}
.bi-tablet-fill::before {
  content: "";
}
.bi-tablet-landscape-fill::before {
  content: "";
}
.bi-tablet-landscape::before {
  content: "";
}
.bi-tablet::before {
  content: "";
}
.bi-tag-fill::before {
  content: "";
}
.bi-tag::before {
  content: "";
}
.bi-tags-fill::before {
  content: "";
}
.bi-tags::before {
  content: "";
}
.bi-telegram::before {
  content: "";
}
.bi-telephone-fill::before {
  content: "";
}
.bi-telephone-forward-fill::before {
  content: "";
}
.bi-telephone-forward::before {
  content: "";
}
.bi-telephone-inbound-fill::before {
  content: "";
}
.bi-telephone-inbound::before {
  content: "";
}
.bi-telephone-minus-fill::before {
  content: "";
}
.bi-telephone-minus::before {
  content: "";
}
.bi-telephone-outbound-fill::before {
  content: "";
}
.bi-telephone-outbound::before {
  content: "";
}
.bi-telephone-plus-fill::before {
  content: "";
}
.bi-telephone-plus::before {
  content: "";
}
.bi-telephone-x-fill::before {
  content: "";
}
.bi-telephone-x::before {
  content: "";
}
.bi-telephone::before {
  content: "";
}
.bi-terminal-fill::before {
  content: "";
}
.bi-terminal::before {
  content: "";
}
.bi-text-center::before {
  content: "";
}
.bi-text-indent-left::before {
  content: "";
}
.bi-text-indent-right::before {
  content: "";
}
.bi-text-left::before {
  content: "";
}
.bi-text-paragraph::before {
  content: "";
}
.bi-text-right::before {
  content: "";
}
.bi-textarea-resize::before {
  content: "";
}
.bi-textarea-t::before {
  content: "";
}
.bi-textarea::before {
  content: "";
}
.bi-thermometer-half::before {
  content: "";
}
.bi-thermometer-high::before {
  content: "";
}
.bi-thermometer-low::before {
  content: "";
}
.bi-thermometer-snow::before {
  content: "";
}
.bi-thermometer-sun::before {
  content: "";
}
.bi-thermometer::before {
  content: "";
}
.bi-three-dots-vertical::before {
  content: "";
}
.bi-three-dots::before {
  content: "";
}
.bi-toggle-off::before {
  content: "";
}
.bi-toggle-on::before {
  content: "";
}
.bi-toggle2-off::before {
  content: "";
}
.bi-toggle2-on::before {
  content: "";
}
.bi-toggles::before {
  content: "";
}
.bi-toggles2::before {
  content: "";
}
.bi-tools::before {
  content: "";
}
.bi-tornado::before {
  content: "";
}
.bi-trash-fill::before {
  content: "";
}
.bi-trash::before {
  content: "";
}
.bi-trash2-fill::before {
  content: "";
}
.bi-trash2::before {
  content: "";
}
.bi-tree-fill::before {
  content: "";
}
.bi-tree::before {
  content: "";
}
.bi-triangle-fill::before {
  content: "";
}
.bi-triangle-half::before {
  content: "";
}
.bi-triangle::before {
  content: "";
}
.bi-trophy-fill::before {
  content: "";
}
.bi-trophy::before {
  content: "";
}
.bi-tropical-storm::before {
  content: "";
}
.bi-truck-flatbed::before {
  content: "";
}
.bi-truck::before {
  content: "";
}
.bi-tsunami::before {
  content: "";
}
.bi-tv-fill::before {
  content: "";
}
.bi-tv::before {
  content: "";
}
.bi-twitch::before {
  content: "";
}
.bi-twitter::before {
  content: "";
}
.bi-type-bold::before {
  content: "";
}
.bi-type-h1::before {
  content: "";
}
.bi-type-h2::before {
  content: "";
}
.bi-type-h3::before {
  content: "";
}
.bi-type-italic::before {
  content: "";
}
.bi-type-strikethrough::before {
  content: "";
}
.bi-type-underline::before {
  content: "";
}
.bi-type::before {
  content: "";
}
.bi-ui-checks-grid::before {
  content: "";
}
.bi-ui-checks::before {
  content: "";
}
.bi-ui-radios-grid::before {
  content: "";
}
.bi-ui-radios::before {
  content: "";
}
.bi-umbrella-fill::before {
  content: "";
}
.bi-umbrella::before {
  content: "";
}
.bi-union::before {
  content: "";
}
.bi-unlock-fill::before {
  content: "";
}
.bi-unlock::before {
  content: "";
}
.bi-upc-scan::before {
  content: "";
}
.bi-upc::before {
  content: "";
}
.bi-upload::before {
  content: "";
}
.bi-vector-pen::before {
  content: "";
}
.bi-view-list::before {
  content: "";
}
.bi-view-stacked::before {
  content: "";
}
.bi-vinyl-fill::before {
  content: "";
}
.bi-vinyl::before {
  content: "";
}
.bi-voicemail::before {
  content: "";
}
.bi-volume-down-fill::before {
  content: "";
}
.bi-volume-down::before {
  content: "";
}
.bi-volume-mute-fill::before {
  content: "";
}
.bi-volume-mute::before {
  content: "";
}
.bi-volume-off-fill::before {
  content: "";
}
.bi-volume-off::before {
  content: "";
}
.bi-volume-up-fill::before {
  content: "";
}
.bi-volume-up::before {
  content: "";
}
.bi-vr::before {
  content: "";
}
.bi-wallet-fill::before {
  content: "";
}
.bi-wallet::before {
  content: "";
}
.bi-wallet2::before {
  content: "";
}
.bi-watch::before {
  content: "";
}
.bi-water::before {
  content: "";
}
.bi-whatsapp::before {
  content: "";
}
.bi-wifi-1::before {
  content: "";
}
.bi-wifi-2::before {
  content: "";
}
.bi-wifi-off::before {
  content: "";
}
.bi-wifi::before {
  content: "";
}
.bi-wind::before {
  content: "";
}
.bi-window-dock::before {
  content: "";
}
.bi-window-sidebar::before {
  content: "";
}
.bi-window::before {
  content: "";
}
.bi-wrench::before {
  content: "";
}
.bi-x-circle-fill::before {
  content: "";
}
.bi-x-circle::before {
  content: "";
}
.bi-x-diamond-fill::before {
  content: "";
}
.bi-x-diamond::before {
  content: "";
}
.bi-x-octagon-fill::before {
  content: "";
}
.bi-x-octagon::before {
  content: "";
}
.bi-x-square-fill::before {
  content: "";
}
.bi-x-square::before {
  content: "";
}
.bi-x::before {
  content: "";
}
.bi-youtube::before {
  content: "";
}
.bi-zoom-in::before {
  content: "";
}
.bi-zoom-out::before {
  content: "";
}
.bi-bank::before {
  content: "";
}
.bi-bank2::before {
  content: "";
}
.bi-bell-slash-fill::before {
  content: "";
}
.bi-bell-slash::before {
  content: "";
}
.bi-cash-coin::before {
  content: "";
}
.bi-check-lg::before {
  content: "";
}
.bi-coin::before {
  content: "";
}
.bi-currency-bitcoin::before {
  content: "";
}
.bi-currency-dollar::before {
  content: "";
}
.bi-currency-euro::before {
  content: "";
}
.bi-currency-exchange::before {
  content: "";
}
.bi-currency-pound::before {
  content: "";
}
.bi-currency-yen::before {
  content: "";
}
.bi-dash-lg::before {
  content: "";
}
.bi-exclamation-lg::before {
  content: "";
}
.bi-file-earmark-pdf-fill::before {
  content: "";
}
.bi-file-earmark-pdf::before {
  content: "";
}
.bi-file-pdf-fill::before {
  content: "";
}
.bi-file-pdf::before {
  content: "";
}
.bi-gender-ambiguous::before {
  content: "";
}
.bi-gender-female::before {
  content: "";
}
.bi-gender-male::before {
  content: "";
}
.bi-gender-trans::before {
  content: "";
}
.bi-headset-vr::before {
  content: "";
}
.bi-info-lg::before {
  content: "";
}
.bi-mastodon::before {
  content: "";
}
.bi-messenger::before {
  content: "";
}
.bi-piggy-bank-fill::before {
  content: "";
}
.bi-piggy-bank::before {
  content: "";
}
.bi-pin-map-fill::before {
  content: "";
}
.bi-pin-map::before {
  content: "";
}
.bi-plus-lg::before {
  content: "";
}
.bi-question-lg::before {
  content: "";
}
.bi-recycle::before {
  content: "";
}
.bi-reddit::before {
  content: "";
}
.bi-safe-fill::before {
  content: "";
}
.bi-safe2-fill::before {
  content: "";
}
.bi-safe2::before {
  content: "";
}
.bi-sd-card-fill::before {
  content: "";
}
.bi-sd-card::before {
  content: "";
}
.bi-skype::before {
  content: "";
}
.bi-slash-lg::before {
  content: "";
}
.bi-translate::before {
  content: "";
}
.bi-x-lg::before {
  content: "";
}
.bi-safe::before {
  content: "";
}
.bi-apple::before {
  content: "";
}
.bi-microsoft::before {
  content: "";
}
.bi-windows::before {
  content: "";
}
.bi-behance::before {
  content: "";
}
.bi-dribbble::before {
  content: "";
}
.bi-line::before {
  content: "";
}
.bi-medium::before {
  content: "";
}
.bi-paypal::before {
  content: "";
}
.bi-pinterest::before {
  content: "";
}
.bi-signal::before {
  content: "";
}
.bi-snapchat::before {
  content: "";
}
.bi-spotify::before {
  content: "";
}
.bi-stack-overflow::before {
  content: "";
}
.bi-strava::before {
  content: "";
}
.bi-wordpress::before {
  content: "";
}
.bi-vimeo::before {
  content: "";
}
.bi-activity::before {
  content: "";
}
.bi-easel2-fill::before {
  content: "";
}
.bi-easel2::before {
  content: "";
}
.bi-easel3-fill::before {
  content: "";
}
.bi-easel3::before {
  content: "";
}
.bi-fan::before {
  content: "";
}
.bi-fingerprint::before {
  content: "";
}
.bi-graph-down-arrow::before {
  content: "";
}
.bi-graph-up-arrow::before {
  content: "";
}
.bi-hypnotize::before {
  content: "";
}
.bi-magic::before {
  content: "";
}
.bi-person-rolodex::before {
  content: "";
}
.bi-person-video::before {
  content: "";
}
.bi-person-video2::before {
  content: "";
}
.bi-person-video3::before {
  content: "";
}
.bi-person-workspace::before {
  content: "";
}
.bi-radioactive::before {
  content: "";
}
.bi-webcam-fill::before {
  content: "";
}
.bi-webcam::before {
  content: "";
}
.bi-yin-yang::before {
  content: "";
}
.bi-bandaid-fill::before {
  content: "";
}
.bi-bandaid::before {
  content: "";
}
.bi-bluetooth::before {
  content: "";
}
.bi-body-text::before {
  content: "";
}
.bi-boombox::before {
  content: "";
}
.bi-boxes::before {
  content: "";
}
.bi-dpad-fill::before {
  content: "";
}
.bi-dpad::before {
  content: "";
}
.bi-ear-fill::before {
  content: "";
}
.bi-ear::before {
  content: "";
}
.bi-envelope-check-fill::before {
  content: "";
}
.bi-envelope-check::before {
  content: "";
}
.bi-envelope-dash-fill::before {
  content: "";
}
.bi-envelope-dash::before {
  content: "";
}
.bi-envelope-exclamation-fill::before {
  content: "";
}
.bi-envelope-exclamation::before {
  content: "";
}
.bi-envelope-plus-fill::before {
  content: "";
}
.bi-envelope-plus::before {
  content: "";
}
.bi-envelope-slash-fill::before {
  content: "";
}
.bi-envelope-slash::before {
  content: "";
}
.bi-envelope-x-fill::before {
  content: "";
}
.bi-envelope-x::before {
  content: "";
}
.bi-explicit-fill::before {
  content: "";
}
.bi-explicit::before {
  content: "";
}
.bi-git::before {
  content: "";
}
.bi-infinity::before {
  content: "";
}
.bi-list-columns-reverse::before {
  content: "";
}
.bi-list-columns::before {
  content: "";
}
.bi-meta::before {
  content: "";
}
.bi-nintendo-switch::before {
  content: "";
}
.bi-pc-display-horizontal::before {
  content: "";
}
.bi-pc-display::before {
  content: "";
}
.bi-pc-horizontal::before {
  content: "";
}
.bi-pc::before {
  content: "";
}
.bi-playstation::before {
  content: "";
}
.bi-plus-slash-minus::before {
  content: "";
}
.bi-projector-fill::before {
  content: "";
}
.bi-projector::before {
  content: "";
}
.bi-qr-code-scan::before {
  content: "";
}
.bi-qr-code::before {
  content: "";
}
.bi-quora::before {
  content: "";
}
.bi-quote::before {
  content: "";
}
.bi-robot::before {
  content: "";
}
.bi-send-check-fill::before {
  content: "";
}
.bi-send-check::before {
  content: "";
}
.bi-send-dash-fill::before {
  content: "";
}
.bi-send-dash::before {
  content: "";
}
.bi-send-exclamation-fill::before {
  content: "";
}
.bi-send-exclamation::before {
  content: "";
}
.bi-send-fill::before {
  content: "";
}
.bi-send-plus-fill::before {
  content: "";
}
.bi-send-plus::before {
  content: "";
}
.bi-send-slash-fill::before {
  content: "";
}
.bi-send-slash::before {
  content: "";
}
.bi-send-x-fill::before {
  content: "";
}
.bi-send-x::before {
  content: "";
}
.bi-send::before {
  content: "";
}
.bi-steam::before {
  content: "";
}
.bi-terminal-dash::before {
  content: "";
}
.bi-terminal-plus::before {
  content: "";
}
.bi-terminal-split::before {
  content: "";
}
.bi-ticket-detailed-fill::before {
  content: "";
}
.bi-ticket-detailed::before {
  content: "";
}
.bi-ticket-fill::before {
  content: "";
}
.bi-ticket-perforated-fill::before {
  content: "";
}
.bi-ticket-perforated::before {
  content: "";
}
.bi-ticket::before {
  content: "";
}
.bi-tiktok::before {
  content: "";
}
.bi-window-dash::before {
  content: "";
}
.bi-window-desktop::before {
  content: "";
}
.bi-window-fullscreen::before {
  content: "";
}
.bi-window-plus::before {
  content: "";
}
.bi-window-split::before {
  content: "";
}
.bi-window-stack::before {
  content: "";
}
.bi-window-x::before {
  content: "";
}
.bi-xbox::before {
  content: "";
}
.bi-ethernet::before {
  content: "";
}
.bi-hdmi-fill::before {
  content: "";
}
.bi-hdmi::before {
  content: "";
}
.bi-usb-c-fill::before {
  content: "";
}
.bi-usb-c::before {
  content: "";
}
.bi-usb-fill::before {
  content: "";
}
.bi-usb-plug-fill::before {
  content: "";
}
.bi-usb-plug::before {
  content: "";
}
.bi-usb-symbol::before {
  content: "";
}
.bi-usb::before {
  content: "";
}
.bi-boombox-fill::before {
  content: "";
}
.bi-displayport::before {
  content: "";
}
.bi-gpu-card::before {
  content: "";
}
.bi-memory::before {
  content: "";
}
.bi-modem-fill::before {
  content: "";
}
.bi-modem::before {
  content: "";
}
.bi-motherboard-fill::before {
  content: "";
}
.bi-motherboard::before {
  content: "";
}
.bi-optical-audio-fill::before {
  content: "";
}
.bi-optical-audio::before {
  content: "";
}
.bi-pci-card::before {
  content: "";
}
.bi-router-fill::before {
  content: "";
}
.bi-router::before {
  content: "";
}
.bi-thunderbolt-fill::before {
  content: "";
}
.bi-thunderbolt::before {
  content: "";
}
.bi-usb-drive-fill::before {
  content: "";
}
.bi-usb-drive::before {
  content: "";
}
.bi-usb-micro-fill::before {
  content: "";
}
.bi-usb-micro::before {
  content: "";
}
.bi-usb-mini-fill::before {
  content: "";
}
.bi-usb-mini::before {
  content: "";
}
.bi-cloud-haze2::before {
  content: "";
}
.bi-device-hdd-fill::before {
  content: "";
}
.bi-device-hdd::before {
  content: "";
}
.bi-device-ssd-fill::before {
  content: "";
}
.bi-device-ssd::before {
  content: "";
}
.bi-displayport-fill::before {
  content: "";
}
.bi-mortarboard-fill::before {
  content: "";
}
.bi-mortarboard::before {
  content: "";
}
.bi-terminal-x::before {
  content: "";
}
.bi-arrow-through-heart-fill::before {
  content: "";
}
.bi-arrow-through-heart::before {
  content: "";
}
.bi-badge-sd-fill::before {
  content: "";
}
.bi-badge-sd::before {
  content: "";
}
.bi-bag-heart-fill::before {
  content: "";
}
.bi-bag-heart::before {
  content: "";
}
.bi-balloon-fill::before {
  content: "";
}
.bi-balloon-heart-fill::before {
  content: "";
}
.bi-balloon-heart::before {
  content: "";
}
.bi-balloon::before {
  content: "";
}
.bi-box2-fill::before {
  content: "";
}
.bi-box2-heart-fill::before {
  content: "";
}
.bi-box2-heart::before {
  content: "";
}
.bi-box2::before {
  content: "";
}
.bi-braces-asterisk::before {
  content: "";
}
.bi-calendar-heart-fill::before {
  content: "";
}
.bi-calendar-heart::before {
  content: "";
}
.bi-calendar2-heart-fill::before {
  content: "";
}
.bi-calendar2-heart::before {
  content: "";
}
.bi-chat-heart-fill::before {
  content: "";
}
.bi-chat-heart::before {
  content: "";
}
.bi-chat-left-heart-fill::before {
  content: "";
}
.bi-chat-left-heart::before {
  content: "";
}
.bi-chat-right-heart-fill::before {
  content: "";
}
.bi-chat-right-heart::before {
  content: "";
}
.bi-chat-square-heart-fill::before {
  content: "";
}
.bi-chat-square-heart::before {
  content: "";
}
.bi-clipboard-check-fill::before {
  content: "";
}
.bi-clipboard-data-fill::before {
  content: "";
}
.bi-clipboard-fill::before {
  content: "";
}
.bi-clipboard-heart-fill::before {
  content: "";
}
.bi-clipboard-heart::before {
  content: "";
}
.bi-clipboard-minus-fill::before {
  content: "";
}
.bi-clipboard-plus-fill::before {
  content: "";
}
.bi-clipboard-pulse::before {
  content: "";
}
.bi-clipboard-x-fill::before {
  content: "";
}
.bi-clipboard2-check-fill::before {
  content: "";
}
.bi-clipboard2-check::before {
  content: "";
}
.bi-clipboard2-data-fill::before {
  content: "";
}
.bi-clipboard2-data::before {
  content: "";
}
.bi-clipboard2-fill::before {
  content: "";
}
.bi-clipboard2-heart-fill::before {
  content: "";
}
.bi-clipboard2-heart::before {
  content: "";
}
.bi-clipboard2-minus-fill::before {
  content: "";
}
.bi-clipboard2-minus::before {
  content: "";
}
.bi-clipboard2-plus-fill::before {
  content: "";
}
.bi-clipboard2-plus::before {
  content: "";
}
.bi-clipboard2-pulse-fill::before {
  content: "";
}
.bi-clipboard2-pulse::before {
  content: "";
}
.bi-clipboard2-x-fill::before {
  content: "";
}
.bi-clipboard2-x::before {
  content: "";
}
.bi-clipboard2::before {
  content: "";
}
.bi-emoji-kiss-fill::before {
  content: "";
}
.bi-emoji-kiss::before {
  content: "";
}
.bi-envelope-heart-fill::before {
  content: "";
}
.bi-envelope-heart::before {
  content: "";
}
.bi-envelope-open-heart-fill::before {
  content: "";
}
.bi-envelope-open-heart::before {
  content: "";
}
.bi-envelope-paper-fill::before {
  content: "";
}
.bi-envelope-paper-heart-fill::before {
  content: "";
}
.bi-envelope-paper-heart::before {
  content: "";
}
.bi-envelope-paper::before {
  content: "";
}
.bi-filetype-aac::before {
  content: "";
}
.bi-filetype-ai::before {
  content: "";
}
.bi-filetype-bmp::before {
  content: "";
}
.bi-filetype-cs::before {
  content: "";
}
.bi-filetype-css::before {
  content: "";
}
.bi-filetype-csv::before {
  content: "";
}
.bi-filetype-doc::before {
  content: "";
}
.bi-filetype-docx::before {
  content: "";
}
.bi-filetype-exe::before {
  content: "";
}
.bi-filetype-gif::before {
  content: "";
}
.bi-filetype-heic::before {
  content: "";
}
.bi-filetype-html::before {
  content: "";
}
.bi-filetype-java::before {
  content: "";
}
.bi-filetype-jpg::before {
  content: "";
}
.bi-filetype-js::before {
  content: "";
}
.bi-filetype-jsx::before {
  content: "";
}
.bi-filetype-key::before {
  content: "";
}
.bi-filetype-m4p::before {
  content: "";
}
.bi-filetype-md::before {
  content: "";
}
.bi-filetype-mdx::before {
  content: "";
}
.bi-filetype-mov::before {
  content: "";
}
.bi-filetype-mp3::before {
  content: "";
}
.bi-filetype-mp4::before {
  content: "";
}
.bi-filetype-otf::before {
  content: "";
}
.bi-filetype-pdf::before {
  content: "";
}
.bi-filetype-php::before {
  content: "";
}
.bi-filetype-png::before {
  content: "";
}
.bi-filetype-ppt::before {
  content: "";
}
.bi-filetype-psd::before {
  content: "";
}
.bi-filetype-py::before {
  content: "";
}
.bi-filetype-raw::before {
  content: "";
}
.bi-filetype-rb::before {
  content: "";
}
.bi-filetype-sass::before {
  content: "";
}
.bi-filetype-scss::before {
  content: "";
}
.bi-filetype-sh::before {
  content: "";
}
.bi-filetype-svg::before {
  content: "";
}
.bi-filetype-tiff::before {
  content: "";
}
.bi-filetype-tsx::before {
  content: "";
}
.bi-filetype-ttf::before {
  content: "";
}
.bi-filetype-txt::before {
  content: "";
}
.bi-filetype-wav::before {
  content: "";
}
.bi-filetype-woff::before {
  content: "";
}
.bi-filetype-xls::before {
  content: "";
}
.bi-filetype-xml::before {
  content: "";
}
.bi-filetype-yml::before {
  content: "";
}
.bi-heart-arrow::before {
  content: "";
}
.bi-heart-pulse-fill::before {
  content: "";
}
.bi-heart-pulse::before {
  content: "";
}
.bi-heartbreak-fill::before {
  content: "";
}
.bi-heartbreak::before {
  content: "";
}
.bi-hearts::before {
  content: "";
}
.bi-hospital-fill::before {
  content: "";
}
.bi-hospital::before {
  content: "";
}
.bi-house-heart-fill::before {
  content: "";
}
.bi-house-heart::before {
  content: "";
}
.bi-incognito::before {
  content: "";
}
.bi-magnet-fill::before {
  content: "";
}
.bi-magnet::before {
  content: "";
}
.bi-person-heart::before {
  content: "";
}
.bi-person-hearts::before {
  content: "";
}
.bi-phone-flip::before {
  content: "";
}
.bi-plugin::before {
  content: "";
}
.bi-postage-fill::before {
  content: "";
}
.bi-postage-heart-fill::before {
  content: "";
}
.bi-postage-heart::before {
  content: "";
}
.bi-postage::before {
  content: "";
}
.bi-postcard-fill::before {
  content: "";
}
.bi-postcard-heart-fill::before {
  content: "";
}
.bi-postcard-heart::before {
  content: "";
}
.bi-postcard::before {
  content: "";
}
.bi-search-heart-fill::before {
  content: "";
}
.bi-search-heart::before {
  content: "";
}
.bi-sliders2-vertical::before {
  content: "";
}
.bi-sliders2::before {
  content: "";
}
.bi-trash3-fill::before {
  content: "";
}
.bi-trash3::before {
  content: "";
}
.bi-valentine::before {
  content: "";
}
.bi-valentine2::before {
  content: "";
}
.bi-wrench-adjustable-circle-fill::before {
  content: "";
}
.bi-wrench-adjustable-circle::before {
  content: "";
}
.bi-wrench-adjustable::before {
  content: "";
}
.bi-filetype-json::before {
  content: "";
}
.bi-filetype-pptx::before {
  content: "";
}
.bi-filetype-xlsx::before {
  content: "";
}
.bi-1-circle-fill::before {
  content: "";
}
.bi-1-circle::before {
  content: "";
}
.bi-1-square-fill::before {
  content: "";
}
.bi-1-square::before {
  content: "";
}
.bi-2-circle-fill::before {
  content: "";
}
.bi-2-circle::before {
  content: "";
}
.bi-2-square-fill::before {
  content: "";
}
.bi-2-square::before {
  content: "";
}
.bi-3-circle-fill::before {
  content: "";
}
.bi-3-circle::before {
  content: "";
}
.bi-3-square-fill::before {
  content: "";
}
.bi-3-square::before {
  content: "";
}
.bi-4-circle-fill::before {
  content: "";
}
.bi-4-circle::before {
  content: "";
}
.bi-4-square-fill::before {
  content: "";
}
.bi-4-square::before {
  content: "";
}
.bi-5-circle-fill::before {
  content: "";
}
.bi-5-circle::before {
  content: "";
}
.bi-5-square-fill::before {
  content: "";
}
.bi-5-square::before {
  content: "";
}
.bi-6-circle-fill::before {
  content: "";
}
.bi-6-circle::before {
  content: "";
}
.bi-6-square-fill::before {
  content: "";
}
.bi-6-square::before {
  content: "";
}
.bi-7-circle-fill::before {
  content: "";
}
.bi-7-circle::before {
  content: "";
}
.bi-7-square-fill::before {
  content: "";
}
.bi-7-square::before {
  content: "";
}
.bi-8-circle-fill::before {
  content: "";
}
.bi-8-circle::before {
  content: "";
}
.bi-8-square-fill::before {
  content: "";
}
.bi-8-square::before {
  content: "";
}
.bi-9-circle-fill::before {
  content: "";
}
.bi-9-circle::before {
  content: "";
}
.bi-9-square-fill::before {
  content: "";
}
.bi-9-square::before {
  content: "";
}
.bi-airplane-engines-fill::before {
  content: "";
}
.bi-airplane-engines::before {
  content: "";
}
.bi-airplane-fill::before {
  content: "";
}
.bi-airplane::before {
  content: "";
}
.bi-alexa::before {
  content: "";
}
.bi-alipay::before {
  content: "";
}
.bi-android::before {
  content: "";
}
.bi-android2::before {
  content: "";
}
.bi-box-fill::before {
  content: "";
}
.bi-box-seam-fill::before {
  content: "";
}
.bi-browser-chrome::before {
  content: "";
}
.bi-browser-edge::before {
  content: "";
}
.bi-browser-firefox::before {
  content: "";
}
.bi-browser-safari::before {
  content: "";
}
.bi-c-circle-fill::before {
  content: "";
}
.bi-c-circle::before {
  content: "";
}
.bi-c-square-fill::before {
  content: "";
}
.bi-c-square::before {
  content: "";
}
.bi-capsule-pill::before {
  content: "";
}
.bi-capsule::before {
  content: "";
}
.bi-car-front-fill::before {
  content: "";
}
.bi-car-front::before {
  content: "";
}
.bi-cassette-fill::before {
  content: "";
}
.bi-cassette::before {
  content: "";
}
.bi-cc-circle-fill::before {
  content: "";
}
.bi-cc-circle::before {
  content: "";
}
.bi-cc-square-fill::before {
  content: "";
}
.bi-cc-square::before {
  content: "";
}
.bi-cup-hot-fill::before {
  content: "";
}
.bi-cup-hot::before {
  content: "";
}
.bi-currency-rupee::before {
  content: "";
}
.bi-dropbox::before {
  content: "";
}
.bi-escape::before {
  content: "";
}
.bi-fast-forward-btn-fill::before {
  content: "";
}
.bi-fast-forward-btn::before {
  content: "";
}
.bi-fast-forward-circle-fill::before {
  content: "";
}
.bi-fast-forward-circle::before {
  content: "";
}
.bi-fast-forward-fill::before {
  content: "";
}
.bi-fast-forward::before {
  content: "";
}
.bi-filetype-sql::before {
  content: "";
}
.bi-fire::before {
  content: "";
}
.bi-google-play::before {
  content: "";
}
.bi-h-circle-fill::before {
  content: "";
}
.bi-h-circle::before {
  content: "";
}
.bi-h-square-fill::before {
  content: "";
}
.bi-h-square::before {
  content: "";
}
.bi-indent::before {
  content: "";
}
.bi-lungs-fill::before {
  content: "";
}
.bi-lungs::before {
  content: "";
}
.bi-microsoft-teams::before {
  content: "";
}
.bi-p-circle-fill::before {
  content: "";
}
.bi-p-circle::before {
  content: "";
}
.bi-p-square-fill::before {
  content: "";
}
.bi-p-square::before {
  content: "";
}
.bi-pass-fill::before {
  content: "";
}
.bi-pass::before {
  content: "";
}
.bi-prescription::before {
  content: "";
}
.bi-prescription2::before {
  content: "";
}
.bi-r-circle-fill::before {
  content: "";
}
.bi-r-circle::before {
  content: "";
}
.bi-r-square-fill::before {
  content: "";
}
.bi-r-square::before {
  content: "";
}
.bi-repeat-1::before {
  content: "";
}
.bi-repeat::before {
  content: "";
}
.bi-rewind-btn-fill::before {
  content: "";
}
.bi-rewind-btn::before {
  content: "";
}
.bi-rewind-circle-fill::before {
  content: "";
}
.bi-rewind-circle::before {
  content: "";
}
.bi-rewind-fill::before {
  content: "";
}
.bi-rewind::before {
  content: "";
}
.bi-train-freight-front-fill::before {
  content: "";
}
.bi-train-freight-front::before {
  content: "";
}
.bi-train-front-fill::before {
  content: "";
}
.bi-train-front::before {
  content: "";
}
.bi-train-lightrail-front-fill::before {
  content: "";
}
.bi-train-lightrail-front::before {
  content: "";
}
.bi-truck-front-fill::before {
  content: "";
}
.bi-truck-front::before {
  content: "";
}
.bi-ubuntu::before {
  content: "";
}
.bi-unindent::before {
  content: "";
}
.bi-unity::before {
  content: "";
}
.bi-universal-access-circle::before {
  content: "";
}
.bi-universal-access::before {
  content: "";
}
.bi-virus::before {
  content: "";
}
.bi-virus2::before {
  content: "";
}
.bi-wechat::before {
  content: "";
}
.bi-yelp::before {
  content: "";
}
.bi-sign-stop-fill::before {
  content: "";
}
.bi-sign-stop-lights-fill::before {
  content: "";
}
.bi-sign-stop-lights::before {
  content: "";
}
.bi-sign-stop::before {
  content: "";
}
.bi-sign-turn-left-fill::before {
  content: "";
}
.bi-sign-turn-left::before {
  content: "";
}
.bi-sign-turn-right-fill::before {
  content: "";
}
.bi-sign-turn-right::before {
  content: "";
}
.bi-sign-turn-slight-left-fill::before {
  content: "";
}
.bi-sign-turn-slight-left::before {
  content: "";
}
.bi-sign-turn-slight-right-fill::before {
  content: "";
}
.bi-sign-turn-slight-right::before {
  content: "";
}
.bi-sign-yield-fill::before {
  content: "";
}
.bi-sign-yield::before {
  content: "";
}
.bi-ev-station-fill::before {
  content: "";
}
.bi-ev-station::before {
  content: "";
}
.bi-fuel-pump-diesel-fill::before {
  content: "";
}
.bi-fuel-pump-diesel::before {
  content: "";
}
.bi-fuel-pump-fill::before {
  content: "";
}
.bi-fuel-pump::before {
  content: "";
}
.bi-0-circle-fill::before {
  content: "";
}
.bi-0-circle::before {
  content: "";
}
.bi-0-square-fill::before {
  content: "";
}
.bi-0-square::before {
  content: "";
}
.bi-rocket-fill::before {
  content: "";
}
.bi-rocket-takeoff-fill::before {
  content: "";
}
.bi-rocket-takeoff::before {
  content: "";
}
.bi-rocket::before {
  content: "";
}
.bi-stripe::before {
  content: "";
}
.bi-subscript::before {
  content: "";
}
.bi-superscript::before {
  content: "";
}
.bi-trello::before {
  content: "";
}
.bi-envelope-at-fill::before {
  content: "";
}
.bi-envelope-at::before {
  content: "";
}
.bi-regex::before {
  content: "";
}
.bi-text-wrap::before {
  content: "";
}
.bi-sign-dead-end-fill::before {
  content: "";
}
.bi-sign-dead-end::before {
  content: "";
}
.bi-sign-do-not-enter-fill::before {
  content: "";
}
.bi-sign-do-not-enter::before {
  content: "";
}
.bi-sign-intersection-fill::before {
  content: "";
}
.bi-sign-intersection-side-fill::before {
  content: "";
}
.bi-sign-intersection-side::before {
  content: "";
}
.bi-sign-intersection-t-fill::before {
  content: "";
}
.bi-sign-intersection-t::before {
  content: "";
}
.bi-sign-intersection-y-fill::before {
  content: "";
}
.bi-sign-intersection-y::before {
  content: "";
}
.bi-sign-intersection::before {
  content: "";
}
.bi-sign-merge-left-fill::before {
  content: "";
}
.bi-sign-merge-left::before {
  content: "";
}
.bi-sign-merge-right-fill::before {
  content: "";
}
.bi-sign-merge-right::before {
  content: "";
}
.bi-sign-no-left-turn-fill::before {
  content: "";
}
.bi-sign-no-left-turn::before {
  content: "";
}
.bi-sign-no-parking-fill::before {
  content: "";
}
.bi-sign-no-parking::before {
  content: "";
}
.bi-sign-no-right-turn-fill::before {
  content: "";
}
.bi-sign-no-right-turn::before {
  content: "";
}
.bi-sign-railroad-fill::before {
  content: "";
}
.bi-sign-railroad::before {
  content: "";
}
.bi-building-add::before {
  content: "";
}
.bi-building-check::before {
  content: "";
}
.bi-building-dash::before {
  content: "";
}
.bi-building-down::before {
  content: "";
}
.bi-building-exclamation::before {
  content: "";
}
.bi-building-fill-add::before {
  content: "";
}
.bi-building-fill-check::before {
  content: "";
}
.bi-building-fill-dash::before {
  content: "";
}
.bi-building-fill-down::before {
  content: "";
}
.bi-building-fill-exclamation::before {
  content: "";
}
.bi-building-fill-gear::before {
  content: "";
}
.bi-building-fill-lock::before {
  content: "";
}
.bi-building-fill-slash::before {
  content: "";
}
.bi-building-fill-up::before {
  content: "";
}
.bi-building-fill-x::before {
  content: "";
}
.bi-building-fill::before {
  content: "";
}
.bi-building-gear::before {
  content: "";
}
.bi-building-lock::before {
  content: "";
}
.bi-building-slash::before {
  content: "";
}
.bi-building-up::before {
  content: "";
}
.bi-building-x::before {
  content: "";
}
.bi-buildings-fill::before {
  content: "";
}
.bi-buildings::before {
  content: "";
}
.bi-bus-front-fill::before {
  content: "";
}
.bi-bus-front::before {
  content: "";
}
.bi-ev-front-fill::before {
  content: "";
}
.bi-ev-front::before {
  content: "";
}
.bi-globe-americas::before {
  content: "";
}
.bi-globe-asia-australia::before {
  content: "";
}
.bi-globe-central-south-asia::before {
  content: "";
}
.bi-globe-europe-africa::before {
  content: "";
}
.bi-house-add-fill::before {
  content: "";
}
.bi-house-add::before {
  content: "";
}
.bi-house-check-fill::before {
  content: "";
}
.bi-house-check::before {
  content: "";
}
.bi-house-dash-fill::before {
  content: "";
}
.bi-house-dash::before {
  content: "";
}
.bi-house-down-fill::before {
  content: "";
}
.bi-house-down::before {
  content: "";
}
.bi-house-exclamation-fill::before {
  content: "";
}
.bi-house-exclamation::before {
  content: "";
}
.bi-house-gear-fill::before {
  content: "";
}
.bi-house-gear::before {
  content: "";
}
.bi-house-lock-fill::before {
  content: "";
}
.bi-house-lock::before {
  content: "";
}
.bi-house-slash-fill::before {
  content: "";
}
.bi-house-slash::before {
  content: "";
}
.bi-house-up-fill::before {
  content: "";
}
.bi-house-up::before {
  content: "";
}
.bi-house-x-fill::before {
  content: "";
}
.bi-house-x::before {
  content: "";
}
.bi-person-add::before {
  content: "";
}
.bi-person-down::before {
  content: "";
}
.bi-person-exclamation::before {
  content: "";
}
.bi-person-fill-add::before {
  content: "";
}
.bi-person-fill-check::before {
  content: "";
}
.bi-person-fill-dash::before {
  content: "";
}
.bi-person-fill-down::before {
  content: "";
}
.bi-person-fill-exclamation::before {
  content: "";
}
.bi-person-fill-gear::before {
  content: "";
}
.bi-person-fill-lock::before {
  content: "";
}
.bi-person-fill-slash::before {
  content: "";
}
.bi-person-fill-up::before {
  content: "";
}
.bi-person-fill-x::before {
  content: "";
}
.bi-person-gear::before {
  content: "";
}
.bi-person-lock::before {
  content: "";
}
.bi-person-slash::before {
  content: "";
}
.bi-person-up::before {
  content: "";
}
.bi-scooter::before {
  content: "";
}
.bi-taxi-front-fill::before {
  content: "";
}
.bi-taxi-front::before {
  content: "";
}
.bi-amd::before {
  content: "";
}
.bi-database-add::before {
  content: "";
}
.bi-database-check::before {
  content: "";
}
.bi-database-dash::before {
  content: "";
}
.bi-database-down::before {
  content: "";
}
.bi-database-exclamation::before {
  content: "";
}
.bi-database-fill-add::before {
  content: "";
}
.bi-database-fill-check::before {
  content: "";
}
.bi-database-fill-dash::before {
  content: "";
}
.bi-database-fill-down::before {
  content: "";
}
.bi-database-fill-exclamation::before {
  content: "";
}
.bi-database-fill-gear::before {
  content: "";
}
.bi-database-fill-lock::before {
  content: "";
}
.bi-database-fill-slash::before {
  content: "";
}
.bi-database-fill-up::before {
  content: "";
}
.bi-database-fill-x::before {
  content: "";
}
.bi-database-fill::before {
  content: "";
}
.bi-database-gear::before {
  content: "";
}
.bi-database-lock::before {
  content: "";
}
.bi-database-slash::before {
  content: "";
}
.bi-database-up::before {
  content: "";
}
.bi-database-x::before {
  content: "";
}
.bi-database::before {
  content: "";
}
.bi-houses-fill::before {
  content: "";
}
.bi-houses::before {
  content: "";
}
.bi-nvidia::before {
  content: "";
}
.bi-person-vcard-fill::before {
  content: "";
}
.bi-person-vcard::before {
  content: "";
}
.bi-sina-weibo::before {
  content: "";
}
.bi-tencent-qq::before {
  content: "";
}
.bi-wikipedia::before {
  content: "";
}
.bi-alphabet-uppercase::before {
  content: "";
}
.bi-alphabet::before {
  content: "";
}
.bi-amazon::before {
  content: "";
}
.bi-arrows-collapse-vertical::before {
  content: "";
}
.bi-arrows-expand-vertical::before {
  content: "";
}
.bi-arrows-vertical::before {
  content: "";
}
.bi-arrows::before {
  content: "";
}
.bi-ban-fill::before {
  content: "";
}
.bi-ban::before {
  content: "";
}
.bi-bing::before {
  content: "";
}
.bi-cake::before {
  content: "";
}
.bi-cake2::before {
  content: "";
}
.bi-cookie::before {
  content: "";
}
.bi-copy::before {
  content: "";
}
.bi-crosshair::before {
  content: "";
}
.bi-crosshair2::before {
  content: "";
}
.bi-emoji-astonished-fill::before {
  content: "";
}
.bi-emoji-astonished::before {
  content: "";
}
.bi-emoji-grimace-fill::before {
  content: "";
}
.bi-emoji-grimace::before {
  content: "";
}
.bi-emoji-grin-fill::before {
  content: "";
}
.bi-emoji-grin::before {
  content: "";
}
.bi-emoji-surprise-fill::before {
  content: "";
}
.bi-emoji-surprise::before {
  content: "";
}
.bi-emoji-tear-fill::before {
  content: "";
}
.bi-emoji-tear::before {
  content: "";
}
.bi-envelope-arrow-down-fill::before {
  content: "";
}
.bi-envelope-arrow-down::before {
  content: "";
}
.bi-envelope-arrow-up-fill::before {
  content: "";
}
.bi-envelope-arrow-up::before {
  content: "";
}
.bi-feather::before {
  content: "";
}
.bi-feather2::before {
  content: "";
}
.bi-floppy-fill::before {
  content: "";
}
.bi-floppy::before {
  content: "";
}
.bi-floppy2-fill::before {
  content: "";
}
.bi-floppy2::before {
  content: "";
}
.bi-gitlab::before {
  content: "";
}
.bi-highlighter::before {
  content: "";
}
.bi-marker-tip::before {
  content: "";
}
.bi-nvme-fill::before {
  content: "";
}
.bi-nvme::before {
  content: "";
}
.bi-opencollective::before {
  content: "";
}
.bi-pci-card-network::before {
  content: "";
}
.bi-pci-card-sound::before {
  content: "";
}
.bi-radar::before {
  content: "";
}
.bi-send-arrow-down-fill::before {
  content: "";
}
.bi-send-arrow-down::before {
  content: "";
}
.bi-send-arrow-up-fill::before {
  content: "";
}
.bi-send-arrow-up::before {
  content: "";
}
.bi-sim-slash-fill::before {
  content: "";
}
.bi-sim-slash::before {
  content: "";
}
.bi-sourceforge::before {
  content: "";
}
.bi-substack::before {
  content: "";
}
.bi-threads-fill::before {
  content: "";
}
.bi-threads::before {
  content: "";
}
.bi-transparency::before {
  content: "";
}
.bi-twitter-x::before {
  content: "";
}
.bi-type-h4::before {
  content: "";
}
.bi-type-h5::before {
  content: "";
}
.bi-type-h6::before {
  content: "";
}
.bi-backpack-fill::before {
  content: "";
}
.bi-backpack::before {
  content: "";
}
.bi-backpack2-fill::before {
  content: "";
}
.bi-backpack2::before {
  content: "";
}
.bi-backpack3-fill::before {
  content: "";
}
.bi-backpack3::before {
  content: "";
}
.bi-backpack4-fill::before {
  content: "";
}
.bi-backpack4::before {
  content: "";
}
.bi-brilliance::before {
  content: "";
}
.bi-cake-fill::before {
  content: "";
}
.bi-cake2-fill::before {
  content: "";
}
.bi-duffle-fill::before {
  content: "";
}
.bi-duffle::before {
  content: "";
}
.bi-exposure::before {
  content: "";
}
.bi-gender-neuter::before {
  content: "";
}
.bi-highlights::before {
  content: "";
}
.bi-luggage-fill::before {
  content: "";
}
.bi-luggage::before {
  content: "";
}
.bi-mailbox-flag::before {
  content: "";
}
.bi-mailbox2-flag::before {
  content: "";
}
.bi-noise-reduction::before {
  content: "";
}
.bi-passport-fill::before {
  content: "";
}
.bi-passport::before {
  content: "";
}
.bi-person-arms-up::before {
  content: "";
}
.bi-person-raised-hand::before {
  content: "";
}
.bi-person-standing-dress::before {
  content: "";
}
.bi-person-standing::before {
  content: "";
}
.bi-person-walking::before {
  content: "";
}
.bi-person-wheelchair::before {
  content: "";
}
.bi-shadows::before {
  content: "";
}
.bi-suitcase-fill::before {
  content: "";
}
.bi-suitcase-lg-fill::before {
  content: "";
}
.bi-suitcase-lg::before {
  content: "";
}
.bi-suitcase::before {
  content: "豈";
}
.bi-suitcase2-fill::before {
  content: "更";
}
.bi-suitcase2::before {
  content: "車";
}
.bi-vignette::before {
  content: "賈";
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.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: 0.875em;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}
.container,
.container-fluid,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(1160px + 1.5rem);
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.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%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 2rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 2rem;
}
.g-6,
.gx-6 {
  --bs-gutter-x: 2.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 2.5rem;
}
.g-7,
.gx-7 {
  --bs-gutter-x: 3rem;
}
.g-7,
.gy-7 {
  --bs-gutter-y: 3rem;
}
.g-10,
.gx-10 {
  --bs-gutter-x: 5rem;
}
.g-10,
.gy-10 {
  --bs-gutter-y: 5rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 2rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 2rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 3rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 3rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 5rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 5rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(
    --bs-table-color-state,
    var(--bs-table-color-type, var(--bs-table-color))
  );
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px
    var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}
.caption-top {
  caption-side: top;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}
.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}
.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #ccdbef;
  --bs-table-border-color: #a3afbf;
  --bs-table-striped-bg: #c2d0e3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8c5d7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdcbdd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #ecf6e5;
  --bs-table-border-color: #bdc5b7;
  --bs-table-striped-bg: #e0eada;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d4ddce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #dae4d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #e2ecfc;
  --bs-table-border-color: #b5bdca;
  --bs-table-striped-bg: #d7e0ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbd4e3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1dae9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #ffefe5;
  --bs-table-border-color: #ccbfb7;
  --bs-table-striped-bg: #f2e3da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6d7ce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecddd4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #ffcccc;
  --bs-table-border-color: #cca3a3;
  --bs-table-striped-bg: #f2c2c2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6b8b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecbdbd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-dark {
  --bs-table-color: #ffffff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #ffffff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #ffffff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #ffffff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  background-image: var(--bs-gradient);
  box-shadow: var(--bs-btn-box-shadow);
  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: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  background-image: var(--bs-gradient);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn,
:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  background-image: none;
  border-color: var(--bs-btn-active-border-color);
  box-shadow: var(--bs-btn-active-shadow);
}
.btn-check:checked + .btn:focus-visible,
:not(.btn-check) + .btn:active:focus-visible,
.btn:first-child:active:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible {
  box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  background-image: none;
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
  box-shadow: none;
}
.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #004bb1;
  --bs-btn-border-color: #004bb1;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #004096;
  --bs-btn-hover-border-color: #003c8e;
  --bs-btn-focus-shadow-rgb: 38, 102, 189;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #003c8e;
  --bs-btn-active-border-color: #003885;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #004bb1;
  --bs-btn-disabled-border-color: #004bb1;
}
.btn-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}
.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #9ed07d;
  --bs-btn-border-color: #9ed07d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #add791;
  --bs-btn-hover-border-color: #a8d58a;
  --bs-btn-focus-shadow-rgb: 134, 177, 106;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #b1d997;
  --bs-btn-active-border-color: #a8d58a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #9ed07d;
  --bs-btn-disabled-border-color: #9ed07d;
}
.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #6fa0f0;
  --bs-btn-border-color: #6fa0f0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #85aef2;
  --bs-btn-hover-border-color: #7daaf2;
  --bs-btn-focus-shadow-rgb: 94, 136, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #8cb3f3;
  --bs-btn-active-border-color: #7daaf2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #6fa0f0;
  --bs-btn-disabled-border-color: #6fa0f0;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffad7e;
  --bs-btn-border-color: #ffad7e;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffb991;
  --bs-btn-hover-border-color: #ffb58b;
  --bs-btn-focus-shadow-rgb: 217, 147, 107;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffbd98;
  --bs-btn-active-border-color: #ffb58b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffad7e;
  --bs-btn-disabled-border-color: #ffad7e;
}
.btn-danger {
  --bs-btn-color: #000;
  --bs-btn-bg: #ff0000;
  --bs-btn-border-color: #ff0000;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ff2626;
  --bs-btn-hover-border-color: #ff1a1a;
  --bs-btn-focus-shadow-rgb: 217, 0, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ff3333;
  --bs-btn-active-border-color: #ff1a1a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ff0000;
  --bs-btn-disabled-border-color: #ff0000;
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}
.btn-dark {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}
.btn-outline-primary {
  --bs-btn-color: #004bb1;
  --bs-btn-border-color: #004bb1;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #004bb1;
  --bs-btn-hover-border-color: #004bb1;
  --bs-btn-focus-shadow-rgb: 0, 75, 177;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #004bb1;
  --bs-btn-active-border-color: #004bb1;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #004bb1;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #004bb1;
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}
.btn-outline-success {
  --bs-btn-color: #9ed07d;
  --bs-btn-border-color: #9ed07d;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #9ed07d;
  --bs-btn-hover-border-color: #9ed07d;
  --bs-btn-focus-shadow-rgb: 158, 208, 125;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #9ed07d;
  --bs-btn-active-border-color: #9ed07d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #9ed07d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #9ed07d;
  --bs-gradient: none;
}
.btn-outline-info {
  --bs-btn-color: #6fa0f0;
  --bs-btn-border-color: #6fa0f0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #6fa0f0;
  --bs-btn-hover-border-color: #6fa0f0;
  --bs-btn-focus-shadow-rgb: 111, 160, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #6fa0f0;
  --bs-btn-active-border-color: #6fa0f0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6fa0f0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6fa0f0;
  --bs-gradient: none;
}
.btn-outline-warning {
  --bs-btn-color: #ffad7e;
  --bs-btn-border-color: #ffad7e;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffad7e;
  --bs-btn-hover-border-color: #ffad7e;
  --bs-btn-focus-shadow-rgb: 255, 173, 126;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffad7e;
  --bs-btn-active-border-color: #ffad7e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffad7e;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffad7e;
  --bs-gradient: none;
}
.btn-outline-danger {
  --bs-btn-color: #ff0000;
  --bs-btn-border-color: #ff0000;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ff0000;
  --bs-btn-hover-border-color: #ff0000;
  --bs-btn-focus-shadow-rgb: 255, 0, 0;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ff0000;
  --bs-btn-active-border-color: #ff0000;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ff0000;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ff0000;
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}
.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 82, 82, 82;
  text-decoration: underline;
  background-image: none;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}
.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}
.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 {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 0.3em solid rgba(0, 0, 0, 0);
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(
    var(--bs-border-radius) - var(--bs-border-width)
  );
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #004bb1;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
  box-shadow: var(--bs-dropdown-box-shadow);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}
.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid rgba(0, 0, 0, 0);
  border-bottom: 0.3em solid;
  border-left: 0.3em solid rgba(0, 0, 0, 0);
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid rgba(0, 0, 0, 0);
  border-right: 0;
  border-bottom: 0.3em solid rgba(0, 0, 0, 0);
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid rgba(0, 0, 0, 0);
  border-right: 0.3em solid;
  border-bottom: 0.3em solid rgba(0, 0, 0, 0);
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
  background-image: var(--bs-gradient);
}
.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
  background-image: var(--bs-gradient);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y)
    var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}
.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #ffffff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #004bb1;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover,
.nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 75, 177, 0.25);
}
.nav-link.disabled,
.nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  --bs-nav-tabs-border-width: 0;
  --bs-nav-tabs-border-color: #d9c4ba;
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg)
    var(--bs-secondary-bg) #d9c4ba;
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: transparent;
  --bs-nav-tabs-link-active-border-color: #d9c4ba;
  border-bottom: var(--bs-nav-tabs-border-width) solid
    var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid rgba(0, 0, 0, 0);
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #ffffff;
  --bs-nav-pills-link-active-bg: #004bb1;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
  background-image: var(--bs-gradient);
}
.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid rgba(0, 0, 0, 0);
}
.nav-underline .nav-link:hover,
.nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%2851, 51, 51, 0.75%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  background-image: var(--bs-gradient);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}
.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}
.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: rgba(0, 0, 0, 0);
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: rgba(0, 0, 0, 0) !important;
  border: 0 !important;
  transform: none !important;
  box-shadow: none;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
.navbar-dark,
.navbar[data-bs-theme="dark"] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #ffffff;
  --bs-navbar-brand-color: #ffffff;
  --bs-navbar-brand-hover-color: #ffffff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e");
}
[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.55%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e");
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: #ffffff;
  --bs-accordion-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,
    border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 20px;
  --bs-accordion-inner-border-radius: 20px;
  --bs-accordion-btn-padding-x: 0.7rem;
  --bs-accordion-btn-padding-y: 0.9rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: #ffffff;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg width=%2750%27 height=%2750%27 viewBox=%270 0 20 13%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%2710%27 cy=%276.5%27 r=%2710.5%27 fill=%27%23f9f5f3%27 /%3e%3cg transform=%27scale%280.65%29, rotate%28-90%29%27 transform-origin=%2710px 6.5px%27%3e%3cpath d=%27M18 2L10 10L2 2%27 stroke=%27%23d9c4ba%27 stroke-width=%273%27 stroke-linecap=%27round%27/%3e%3c/g%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 2.625rem;
  --bs-accordion-btn-icon-transform: rotate(90deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg width=%2750%27 height=%2750%27 viewBox=%270 0 20 13%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%2710%27 cy=%276.5%27 r=%2710.5%27 fill=%27%23f9f5f3%27 /%3e%3cg transform=%27scale%280.65%29, rotate%28-90%29%27 transform-origin=%2710px 6.5px%27%3e%3cpath d=%27M18 2L10 10L2 2%27 stroke=%27%23d9c4ba%27 stroke-width=%273%27 stroke-linecap=%27round%27/%3e%3c/g%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0.7rem;
  --bs-accordion-body-padding-y: 0.9rem;
  --bs-accordion-active-color: #333;
  --bs-accordion-active-bg: #ffffff;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid
    var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  border-radius: 0;
}
[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%236693d0%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708%27/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%236693d0%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708%27/%3e%3c/svg%3e");
}
.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23000%27%3e%3cpath d=%27M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414%27/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(0, 75, 177, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: rgba(0, 0, 0, 0) var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 28px;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}
.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
:root,
[data-bs-theme="light"] {
  --bs-btn-close-filter: ;
}
[data-bs-theme="dark"] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 414px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 0;
  --bs-modal-border-radius: 28px;
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: 28px;
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 0;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  box-shadow: var(--bs-modal-box-shadow);
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid
    var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5)
    calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid
    var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(
    var(--bs-border-radius-lg) - var(--bs-border-width)
  );
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: "GolosText";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
  box-shadow: var(--bs-popover-box-shadow);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before,
.popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0;
}
.bs-popover-top > .popover-arrow,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(
    -1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)
  );
}
.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height)
    calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}
.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(
    -1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)
  );
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5)
    var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}
.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(
    -1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)
  );
}
.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5)
    var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid
    var(--bs-popover-header-bg);
}
.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(
    -1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)
  );
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0
    calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid
    var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}
.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite
    var(--bs-spinner-animation-name);
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg); /* rtl:ignore */
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: rgba(0, 0, 0, 0);
}
.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}
.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: fit-content;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: 0;
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}
@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    box-shadow: var(--bs-offcanvas-box-shadow);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing,
  .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing,
  .offcanvas-sm.hiding,
  .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: rgba(0, 0, 0, 0) !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    box-shadow: var(--bs-offcanvas-box-shadow);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing,
  .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing,
  .offcanvas-md.hiding,
  .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: rgba(0, 0, 0, 0) !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    box-shadow: var(--bs-offcanvas-box-shadow);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing,
  .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing,
  .offcanvas-lg.hiding,
  .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: rgba(0, 0, 0, 0) !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    box-shadow: var(--bs-offcanvas-box-shadow);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing,
  .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing,
  .offcanvas-xl.hiding,
  .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: rgba(0, 0, 0, 0) !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    box-shadow: var(--bs-offcanvas-box-shadow);
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid
      var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing,
  .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing,
  .offcanvas-xxl.hiding,
  .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: rgba(0, 0, 0, 0) !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: rgba(0, 0, 0, 0) !important;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  box-shadow: var(--bs-offcanvas-box-shadow);
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid
    var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid
    var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid
    var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid
    var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing,
.offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing,
.offcanvas.hiding,
.offcanvas.show {
  visibility: visible;
}
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}
.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5)
    calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}
.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(
    var(--bs-secondary-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-success {
  color: #000 !important;
  background-color: RGBA(
    var(--bs-success-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-info {
  color: #000 !important;
  background-color: RGBA(
    var(--bs-info-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(
    var(--bs-warning-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-danger {
  color: #000 !important;
  background-color: RGBA(
    var(--bs-danger-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-light {
  color: #000 !important;
  background-color: RGBA(
    var(--bs-light-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(
    var(--bs-dark-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
}
.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-primary:hover,
.link-primary:focus {
  color: RGBA(0, 60, 142, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    0,
    60,
    142,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-secondary:hover,
.link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    86,
    94,
    100,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-success:hover,
.link-success:focus {
  color: RGBA(177, 217, 151, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    177,
    217,
    151,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-info:hover,
.link-info:focus {
  color: RGBA(140, 179, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    140,
    179,
    243,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-warning:hover,
.link-warning:focus {
  color: RGBA(255, 189, 152, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    255,
    189,
    152,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-danger:hover,
.link-danger:focus {
  color: RGBA(255, 51, 51, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    255,
    51,
    51,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-light:hover,
.link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    249,
    250,
    251,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-dark:hover,
.link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(
    26,
    30,
    33,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-body-emphasis {
  color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-body-emphasis:hover,
.link-body-emphasis:focus {
  color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-opacity, 0.75)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 0.75)
  ) !important;
}
.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0)
    var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width)
    var(--bs-focus-ring-color);
}
.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 0.5)
  );
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}
.icon-link-hover:hover > .bi,
.icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
.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;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}
.mobile-break {
  display: inline;
}
@media (max-width: 768px) {
  .mobile-break {
    display: block;
    margin: 0;
  }
}
.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;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.object-fit-contain {
  object-fit: contain !important;
}
.object-fit-cover {
  object-fit: cover !important;
}
.object-fit-fill {
  object-fit: fill !important;
}
.object-fit-scale {
  object-fit: scale-down !important;
}
.object-fit-none {
  object-fit: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
.overflow-y-scroll {
  overflow-y: scroll !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}
.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.focus-ring-primary {
  --bs-focus-ring-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-secondary {
  --bs-focus-ring-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-success {
  --bs-focus-ring-color: rgba(
    var(--bs-success-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-warning {
  --bs-focus-ring-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-danger {
  --bs-focus-ring-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-light {
  --bs-focus-ring-color: rgba(
    var(--bs-light-rgb),
    var(--bs-focus-ring-opacity)
  );
}
.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-success-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-border-opacity)
  ) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}
.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}
.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}
.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}
.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}
.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}
.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}
.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}
.border-opacity-100 {
  --bs-border-opacity: 1;
}
.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;
}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !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;
}
.mh-100 {
  max-height: 100% !important;
}
.vh-100 {
  height: 100vh !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 2rem !important;
}
.m-6 {
  margin: 2.5rem !important;
}
.m-7 {
  margin: 3rem !important;
}
.m-10 {
  margin: 5rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}
.mx-6 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}
.mx-7 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-10 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-6 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.my-7 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 2rem !important;
}
.mt-6 {
  margin-top: 2.5rem !important;
}
.mt-7 {
  margin-top: 3rem !important;
}
.mt-10 {
  margin-top: 5rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.me-0 {
  margin-right: 0 !important;
}
.me-1 {
  margin-right: 0.25rem !important;
}
.me-2 {
  margin-right: 0.5rem !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.me-4 {
  margin-right: 1.5rem !important;
}
.me-5 {
  margin-right: 2rem !important;
}
.me-6 {
  margin-right: 2.5rem !important;
}
.me-7 {
  margin-right: 3rem !important;
}
.me-10 {
  margin-right: 5rem !important;
}
.me-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 2rem !important;
}
.mb-6 {
  margin-bottom: 2.5rem !important;
}
.mb-7 {
  margin-bottom: 3rem !important;
}
.mb-10 {
  margin-bottom: 5rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-1 {
  margin-left: 0.25rem !important;
}
.ms-2 {
  margin-left: 0.5rem !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.ms-4 {
  margin-left: 1.5rem !important;
}
.ms-5 {
  margin-left: 2rem !important;
}
.ms-6 {
  margin-left: 2.5rem !important;
}
.ms-7 {
  margin-left: 3rem !important;
}
.ms-10 {
  margin-left: 5rem !important;
}
.ms-auto {
  margin-left: auto !important;
}
.m-n1 {
  margin: -0.25rem !important;
}
.m-n2 {
  margin: -0.5rem !important;
}
.m-n3 {
  margin: -1rem !important;
}
.m-n4 {
  margin: -1.5rem !important;
}
.m-n5 {
  margin: -2rem !important;
}
.m-n6 {
  margin: -2.5rem !important;
}
.m-n7 {
  margin: -3rem !important;
}
.m-n10 {
  margin: -5rem !important;
}
.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
.mx-n5 {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}
.mx-n6 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}
.mx-n7 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
.mx-n10 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.my-n5 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}
.my-n6 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}
.my-n7 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.my-n10 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.mt-n5 {
  margin-top: -2rem !important;
}
.mt-n6 {
  margin-top: -2.5rem !important;
}
.mt-n7 {
  margin-top: -3rem !important;
}
.mt-n10 {
  margin-top: -5rem !important;
}
.me-n1 {
  margin-right: -0.25rem !important;
}
.me-n2 {
  margin-right: -0.5rem !important;
}
.me-n3 {
  margin-right: -1rem !important;
}
.me-n4 {
  margin-right: -1.5rem !important;
}
.me-n5 {
  margin-right: -2rem !important;
}
.me-n6 {
  margin-right: -2.5rem !important;
}
.me-n7 {
  margin-right: -3rem !important;
}
.me-n10 {
  margin-right: -5rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}
.mb-n5 {
  margin-bottom: -2rem !important;
}
.mb-n6 {
  margin-bottom: -2.5rem !important;
}
.mb-n7 {
  margin-bottom: -3rem !important;
}
.mb-n10 {
  margin-bottom: -5rem !important;
}
.ms-n1 {
  margin-left: -0.25rem !important;
}
.ms-n2 {
  margin-left: -0.5rem !important;
}
.ms-n3 {
  margin-left: -1rem !important;
}
.ms-n4 {
  margin-left: -1.5rem !important;
}
.ms-n5 {
  margin-left: -2rem !important;
}
.ms-n6 {
  margin-left: -2.5rem !important;
}
.ms-n7 {
  margin-left: -3rem !important;
}
.ms-n10 {
  margin-left: -5rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 2rem !important;
}
.p-6 {
  padding: 2.5rem !important;
}
.p-7 {
  padding: 3rem !important;
}
.p-10 {
  padding: 5rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-6 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
.px-7 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.px-10 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-6 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-7 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 2rem !important;
}
.pt-6 {
  padding-top: 2.5rem !important;
}
.pt-7 {
  padding-top: 3rem !important;
}
.pt-10 {
  padding-top: 5rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 2rem !important;
}
.pe-6 {
  padding-right: 2.5rem !important;
}
.pe-7 {
  padding-right: 3rem !important;
}
.pe-10 {
  padding-right: 5rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 2rem !important;
}
.pb-6 {
  padding-bottom: 2.5rem !important;
}
.pb-7 {
  padding-bottom: 3rem !important;
}
.pb-10 {
  padding-bottom: 5rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 2rem !important;
}
.ps-6 {
  padding-left: 2.5rem !important;
}
.ps-7 {
  padding-left: 3rem !important;
}
.ps-10 {
  padding-left: 5rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 2rem !important;
}
.gap-6 {
  gap: 2.5rem !important;
}
.gap-7 {
  gap: 3rem !important;
}
.gap-10 {
  gap: 5rem !important;
}
.row-gap-0 {
  row-gap: 0 !important;
}
.row-gap-1 {
  row-gap: 0.25rem !important;
}
.row-gap-2 {
  row-gap: 0.5rem !important;
}
.row-gap-3 {
  row-gap: 1rem !important;
}
.row-gap-4 {
  row-gap: 1.5rem !important;
}
.row-gap-5 {
  row-gap: 2rem !important;
}
.row-gap-6 {
  row-gap: 2.5rem !important;
}
.row-gap-7 {
  row-gap: 3rem !important;
}
.row-gap-10 {
  row-gap: 5rem !important;
}
.column-gap-0 {
  column-gap: 0 !important;
}
.column-gap-1 {
  column-gap: 0.25rem !important;
}
.column-gap-2 {
  column-gap: 0.5rem !important;
}
.column-gap-3 {
  column-gap: 1rem !important;
}
.column-gap-4 {
  column-gap: 1.5rem !important;
}
.column-gap-5 {
  column-gap: 2rem !important;
}
.column-gap-6 {
  column-gap: 2.5rem !important;
}
.column-gap-7 {
  column-gap: 3rem !important;
}
.column-gap-10 {
  column-gap: 5rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important;
}
.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-3 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1.125rem !important;
}
.fs-7 {
  font-size: 1rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}
.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-100 {
  --bs-text-opacity: 1;
}
.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}
.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}
.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}
.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}
.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}
.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}
.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}
.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}
.link-opacity-10 {
  --bs-link-opacity: 0.1;
}
.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}
.link-opacity-25 {
  --bs-link-opacity: 0.25;
}
.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}
.link-opacity-50 {
  --bs-link-opacity: 0.5;
}
.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}
.link-opacity-75 {
  --bs-link-opacity: 0.75;
}
.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}
.link-opacity-100 {
  --bs-link-opacity: 1;
}
.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}
.link-offset-1 {
  text-underline-offset: 0.125em !important;
}
.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}
.link-offset-2 {
  text-underline-offset: 0.25em !important;
}
.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}
.link-offset-3 {
  text-underline-offset: 0.375em !important;
}
.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}
.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}
.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}
.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}
.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-success-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-body-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0) !important;
}
.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-secondary-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-tertiary-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}
.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}
.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}
.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}
.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}
.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}
.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}
.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}
.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}
.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}
.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.z-n1 {
  z-index: -1 !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-1 {
  z-index: 1 !important;
}
.z-2 {
  z-index: 2 !important;
}
.z-3 {
  z-index: 3 !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .m-sm-6 {
    margin: 2.5rem !important;
  }
  .m-sm-7 {
    margin: 3rem !important;
  }
  .m-sm-10 {
    margin: 5rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 2rem !important;
  }
  .mt-sm-6 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 3rem !important;
  }
  .mt-sm-10 {
    margin-top: 5rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 2rem !important;
  }
  .me-sm-6 {
    margin-right: 2.5rem !important;
  }
  .me-sm-7 {
    margin-right: 3rem !important;
  }
  .me-sm-10 {
    margin-right: 5rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 2rem !important;
  }
  .ms-sm-6 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 3rem !important;
  }
  .ms-sm-10 {
    margin-left: 5rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -2rem !important;
  }
  .m-sm-n6 {
    margin: -2.5rem !important;
  }
  .m-sm-n7 {
    margin: -3rem !important;
  }
  .m-sm-n10 {
    margin: -5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n10 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n10 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -2rem !important;
  }
  .mt-sm-n6 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n7 {
    margin-top: -3rem !important;
  }
  .mt-sm-n10 {
    margin-top: -5rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -2rem !important;
  }
  .me-sm-n6 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n7 {
    margin-right: -3rem !important;
  }
  .me-sm-n10 {
    margin-right: -5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -2rem !important;
  }
  .ms-sm-n6 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n7 {
    margin-left: -3rem !important;
  }
  .ms-sm-n10 {
    margin-left: -5rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .p-sm-6 {
    padding: 2.5rem !important;
  }
  .p-sm-7 {
    padding: 3rem !important;
  }
  .p-sm-10 {
    padding: 5rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 2rem !important;
  }
  .pt-sm-6 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 3rem !important;
  }
  .pt-sm-10 {
    padding-top: 5rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 2rem !important;
  }
  .pe-sm-6 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 3rem !important;
  }
  .pe-sm-10 {
    padding-right: 5rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 5rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 2rem !important;
  }
  .ps-sm-6 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 3rem !important;
  }
  .ps-sm-10 {
    padding-left: 5rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 2rem !important;
  }
  .gap-sm-6 {
    gap: 2.5rem !important;
  }
  .gap-sm-7 {
    gap: 3rem !important;
  }
  .gap-sm-10 {
    gap: 5rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 3rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 5rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 2rem !important;
  }
  .column-gap-sm-6 {
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-7 {
    column-gap: 3rem !important;
  }
  .column-gap-sm-10 {
    column-gap: 5rem !important;
  }
  .fs-sm-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-sm-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-sm-3 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-sm-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-sm-5 {
    font-size: 1.25rem !important;
  }
  .fs-sm-6 {
    font-size: 1.125rem !important;
  }
  .fs-sm-7 {
    font-size: 1rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .m-md-6 {
    margin: 2.5rem !important;
  }
  .m-md-7 {
    margin: 3rem !important;
  }
  .m-md-10 {
    margin: 5rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 2rem !important;
  }
  .mt-md-6 {
    margin-top: 2.5rem !important;
  }
  .mt-md-7 {
    margin-top: 3rem !important;
  }
  .mt-md-10 {
    margin-top: 5rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 2rem !important;
  }
  .me-md-6 {
    margin-right: 2.5rem !important;
  }
  .me-md-7 {
    margin-right: 3rem !important;
  }
  .me-md-10 {
    margin-right: 5rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2rem !important;
  }
  .mb-md-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 3rem !important;
  }
  .mb-md-10 {
    margin-bottom: 5rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 2rem !important;
  }
  .ms-md-6 {
    margin-left: 2.5rem !important;
  }
  .ms-md-7 {
    margin-left: 3rem !important;
  }
  .ms-md-10 {
    margin-left: 5rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -2rem !important;
  }
  .m-md-n6 {
    margin: -2.5rem !important;
  }
  .m-md-n7 {
    margin: -3rem !important;
  }
  .m-md-n10 {
    margin: -5rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n10 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n10 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -2rem !important;
  }
  .mt-md-n6 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n7 {
    margin-top: -3rem !important;
  }
  .mt-md-n10 {
    margin-top: -5rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -2rem !important;
  }
  .me-md-n6 {
    margin-right: -2.5rem !important;
  }
  .me-md-n7 {
    margin-right: -3rem !important;
  }
  .me-md-n10 {
    margin-right: -5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -5rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -2rem !important;
  }
  .ms-md-n6 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n7 {
    margin-left: -3rem !important;
  }
  .ms-md-n10 {
    margin-left: -5rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .p-md-6 {
    padding: 2.5rem !important;
  }
  .p-md-7 {
    padding: 3rem !important;
  }
  .p-md-10 {
    padding: 5rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 2rem !important;
  }
  .pt-md-6 {
    padding-top: 2.5rem !important;
  }
  .pt-md-7 {
    padding-top: 3rem !important;
  }
  .pt-md-10 {
    padding-top: 5rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 2rem !important;
  }
  .pe-md-6 {
    padding-right: 2.5rem !important;
  }
  .pe-md-7 {
    padding-right: 3rem !important;
  }
  .pe-md-10 {
    padding-right: 5rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .pb-md-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 3rem !important;
  }
  .pb-md-10 {
    padding-bottom: 5rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 2rem !important;
  }
  .ps-md-6 {
    padding-left: 2.5rem !important;
  }
  .ps-md-7 {
    padding-left: 3rem !important;
  }
  .ps-md-10 {
    padding-left: 5rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 2rem !important;
  }
  .gap-md-6 {
    gap: 2.5rem !important;
  }
  .gap-md-7 {
    gap: 3rem !important;
  }
  .gap-md-10 {
    gap: 5rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 2rem !important;
  }
  .row-gap-md-6 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-7 {
    row-gap: 3rem !important;
  }
  .row-gap-md-10 {
    row-gap: 5rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-gap: 2rem !important;
  }
  .column-gap-md-6 {
    column-gap: 2.5rem !important;
  }
  .column-gap-md-7 {
    column-gap: 3rem !important;
  }
  .column-gap-md-10 {
    column-gap: 5rem !important;
  }
  .fs-md-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-md-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-md-3 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-md-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-md-5 {
    font-size: 1.25rem !important;
  }
  .fs-md-6 {
    font-size: 1.125rem !important;
  }
  .fs-md-7 {
    font-size: 1rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .m-lg-6 {
    margin: 2.5rem !important;
  }
  .m-lg-7 {
    margin: 3rem !important;
  }
  .m-lg-10 {
    margin: 5rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 2rem !important;
  }
  .mt-lg-6 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 3rem !important;
  }
  .mt-lg-10 {
    margin-top: 5rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 2rem !important;
  }
  .me-lg-6 {
    margin-right: 2.5rem !important;
  }
  .me-lg-7 {
    margin-right: 3rem !important;
  }
  .me-lg-10 {
    margin-right: 5rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 2rem !important;
  }
  .ms-lg-6 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 3rem !important;
  }
  .ms-lg-10 {
    margin-left: 5rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -2rem !important;
  }
  .m-lg-n6 {
    margin: -2.5rem !important;
  }
  .m-lg-n7 {
    margin: -3rem !important;
  }
  .m-lg-n10 {
    margin: -5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n10 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n10 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -2rem !important;
  }
  .mt-lg-n6 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n7 {
    margin-top: -3rem !important;
  }
  .mt-lg-n10 {
    margin-top: -5rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -2rem !important;
  }
  .me-lg-n6 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n7 {
    margin-right: -3rem !important;
  }
  .me-lg-n10 {
    margin-right: -5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -2rem !important;
  }
  .ms-lg-n6 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n7 {
    margin-left: -3rem !important;
  }
  .ms-lg-n10 {
    margin-left: -5rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .p-lg-6 {
    padding: 2.5rem !important;
  }
  .p-lg-7 {
    padding: 3rem !important;
  }
  .p-lg-10 {
    padding: 5rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 2rem !important;
  }
  .pt-lg-6 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 3rem !important;
  }
  .pt-lg-10 {
    padding-top: 5rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 2rem !important;
  }
  .pe-lg-6 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 3rem !important;
  }
  .pe-lg-10 {
    padding-right: 5rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 5rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 2rem !important;
  }
  .ps-lg-6 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 3rem !important;
  }
  .ps-lg-10 {
    padding-left: 5rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 2rem !important;
  }
  .gap-lg-6 {
    gap: 2.5rem !important;
  }
  .gap-lg-7 {
    gap: 3rem !important;
  }
  .gap-lg-10 {
    gap: 5rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 3rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 5rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 2rem !important;
  }
  .column-gap-lg-6 {
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-7 {
    column-gap: 3rem !important;
  }
  .column-gap-lg-10 {
    column-gap: 5rem !important;
  }
  .fs-lg-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-lg-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-lg-3 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-lg-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-lg-5 {
    font-size: 1.25rem !important;
  }
  .fs-lg-6 {
    font-size: 1.125rem !important;
  }
  .fs-lg-7 {
    font-size: 1rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .m-xl-6 {
    margin: 2.5rem !important;
  }
  .m-xl-7 {
    margin: 3rem !important;
  }
  .m-xl-10 {
    margin: 5rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 2rem !important;
  }
  .mt-xl-6 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 3rem !important;
  }
  .mt-xl-10 {
    margin-top: 5rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 2rem !important;
  }
  .me-xl-6 {
    margin-right: 2.5rem !important;
  }
  .me-xl-7 {
    margin-right: 3rem !important;
  }
  .me-xl-10 {
    margin-right: 5rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 2rem !important;
  }
  .ms-xl-6 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 3rem !important;
  }
  .ms-xl-10 {
    margin-left: 5rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -2rem !important;
  }
  .m-xl-n6 {
    margin: -2.5rem !important;
  }
  .m-xl-n7 {
    margin: -3rem !important;
  }
  .m-xl-n10 {
    margin: -5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n10 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n10 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -2rem !important;
  }
  .mt-xl-n6 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n7 {
    margin-top: -3rem !important;
  }
  .mt-xl-n10 {
    margin-top: -5rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -2rem !important;
  }
  .me-xl-n6 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n7 {
    margin-right: -3rem !important;
  }
  .me-xl-n10 {
    margin-right: -5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -2rem !important;
  }
  .ms-xl-n6 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n7 {
    margin-left: -3rem !important;
  }
  .ms-xl-n10 {
    margin-left: -5rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .p-xl-6 {
    padding: 2.5rem !important;
  }
  .p-xl-7 {
    padding: 3rem !important;
  }
  .p-xl-10 {
    padding: 5rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 2rem !important;
  }
  .pt-xl-6 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 3rem !important;
  }
  .pt-xl-10 {
    padding-top: 5rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 2rem !important;
  }
  .pe-xl-6 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 3rem !important;
  }
  .pe-xl-10 {
    padding-right: 5rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 5rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 2rem !important;
  }
  .ps-xl-6 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 3rem !important;
  }
  .ps-xl-10 {
    padding-left: 5rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 2rem !important;
  }
  .gap-xl-6 {
    gap: 2.5rem !important;
  }
  .gap-xl-7 {
    gap: 3rem !important;
  }
  .gap-xl-10 {
    gap: 5rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 3rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 5rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 2rem !important;
  }
  .column-gap-xl-6 {
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-7 {
    column-gap: 3rem !important;
  }
  .column-gap-xl-10 {
    column-gap: 5rem !important;
  }
  .fs-xl-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-xl-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xl-3 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-xl-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xl-6 {
    font-size: 1.125rem !important;
  }
  .fs-xl-7 {
    font-size: 1rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-auto {
    width: auto !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 2rem !important;
  }
  .m-xxl-6 {
    margin: 2.5rem !important;
  }
  .m-xxl-7 {
    margin: 3rem !important;
  }
  .m-xxl-10 {
    margin: 5rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-10 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2rem !important;
  }
  .mt-xxl-6 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 3rem !important;
  }
  .mt-xxl-10 {
    margin-top: 5rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 2rem !important;
  }
  .me-xxl-6 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 3rem !important;
  }
  .me-xxl-10 {
    margin-right: 5rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 2rem !important;
  }
  .ms-xxl-6 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 3rem !important;
  }
  .ms-xxl-10 {
    margin-left: 5rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -2rem !important;
  }
  .m-xxl-n6 {
    margin: -2.5rem !important;
  }
  .m-xxl-n7 {
    margin: -3rem !important;
  }
  .m-xxl-n10 {
    margin: -5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n10 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -2rem !important;
  }
  .me-xxl-n6 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n7 {
    margin-right: -3rem !important;
  }
  .me-xxl-n10 {
    margin-right: -5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -5rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 2rem !important;
  }
  .p-xxl-6 {
    padding: 2.5rem !important;
  }
  .p-xxl-7 {
    padding: 3rem !important;
  }
  .p-xxl-10 {
    padding: 5rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-10 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2rem !important;
  }
  .pt-xxl-6 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 3rem !important;
  }
  .pt-xxl-10 {
    padding-top: 5rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 2rem !important;
  }
  .pe-xxl-6 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 3rem !important;
  }
  .pe-xxl-10 {
    padding-right: 5rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 5rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 2rem !important;
  }
  .ps-xxl-6 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 3rem !important;
  }
  .ps-xxl-10 {
    padding-left: 5rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 2rem !important;
  }
  .gap-xxl-6 {
    gap: 2.5rem !important;
  }
  .gap-xxl-7 {
    gap: 3rem !important;
  }
  .gap-xxl-10 {
    gap: 5rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 3rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 5rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 2rem !important;
  }
  .column-gap-xxl-6 {
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-7 {
    column-gap: 3rem !important;
  }
  .column-gap-xxl-10 {
    column-gap: 5rem !important;
  }
  .fs-xxl-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }
  .fs-xxl-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xxl-3 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-xxl-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-xxl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xxl-6 {
    font-size: 1.125rem !important;
  }
  .fs-xxl-7 {
    font-size: 1rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem !important;
  }
  .fs-2 {
    font-size: 1.5rem !important;
  }
  .fs-3 {
    font-size: 2rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
  .fs-sm-1 {
    font-size: 2.25rem !important;
  }
  .fs-sm-2 {
    font-size: 1.5rem !important;
  }
  .fs-sm-3 {
    font-size: 2rem !important;
  }
  .fs-sm-4 {
    font-size: 1.5rem !important;
  }
  .fs-md-1 {
    font-size: 2.25rem !important;
  }
  .fs-md-2 {
    font-size: 1.5rem !important;
  }
  .fs-md-3 {
    font-size: 2rem !important;
  }
  .fs-md-4 {
    font-size: 1.5rem !important;
  }
  .fs-lg-1 {
    font-size: 2.25rem !important;
  }
  .fs-lg-2 {
    font-size: 1.5rem !important;
  }
  .fs-lg-3 {
    font-size: 2rem !important;
  }
  .fs-lg-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !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: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.media-wrapper {
  position: relative;
  overflow: hidden;
}
.real-media {
  opacity: 0;
}
.skeleton {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow: hidden;
  z-index: 100;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    #f6f3f0 50%,
    transparent 60%
  );
  animation: shimmer linear 1.2s infinite;
}
.media-wrapper.loaded .skeleton {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  transition-delay: 0.4s;
}
.media-wrapper.loaded .real-media {
  opacity: 1;
  transition: opacity 0.4s ease;
  transition-delay: 0.6s;
}
@keyframes shimmer {
  0% {
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    transform: translateX(50%) translateY(50%);
  }
}
.icon-list {
  padding-left: 0;
  list-style: none;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}
.icon-list li::before {
  display: block;
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5rem;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23212529%27 viewBox=%270 0 16 16%27%3E%3Cpath d=%27M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z%27/%3E%3C/svg%3E")
    no-repeat center center/100% auto;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide.simple {
  margin-left: 3.3rem;
  margin-right: 3.3rem;
}
.splide.simple ul,
.splide.simple ol {
  list-style-type: none;
}
.splide.simple ul li,
.splide.simple ol li {
  padding-left: 0;
}
@media (max-width: 1199.98px) {
  .splide.simple {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .splide.simple {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
}
.splide.simple .splide__list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.splide.simple ul li::before {
  display: none;
}
.splide.simple .splide__arrow img {
  margin-bottom: 0.25rem;
}
.splide.simple .splide__slide {
  max-height: fit-content;
  max-width: 100%;
}
.splide.simple .splide__slide img {
  height: 87.5%;
  max-height: 722px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .splide.simple .splide__slide img {
    height: 86%;
  }
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
  padding: 0;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  position: static;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding-top: 28px;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
  height: fit-content;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
  margin-bottom: 0.65rem;
}
.splide__slide-top-info {
  text-align: center;
}
.splide__slide-bottom-info {
  text-align: center;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.75rem;
  z-index: 1;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: -44px;
}
@media (max-width: 1199.98px) {
  .splide__arrow--prev {
    display: none;
  }
}
.splide__arrow--prev svg {
  transform: none;
}
.splide__arrow--next {
  right: -44px;
}
@media (max-width: 1199.98px) {
  .splide__arrow--next {
    display: none;
  }
}
.splide__arrow--next svg,
.splide__arrow--next img {
  transform: scaleX(-1);
}
.splide__arrow img {
  width: 23px;
  height: 43px;
}
.splide__arrow svg {
  stroke: #fff;
  width: 23px;
  height: 43px;
}
.splide__arrow svg path {
  stroke: #f6efec;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide__pagination.splide__pagination-custom .splide__pagination__page {
  background: #198754;
  opacity: 0.3;
}
.splide__pagination.splide__pagination-custom
  .splide__pagination__page.is-active {
  background: #198754;
  opacity: 1;
  transform: scale(1.6);
  margin: 3px 6px;
}
.splide__pagination.splide__pagination-custom .splide__pagination__page:hover {
  opacity: 0.9;
}
.splide__pagination.splide__pagination-custom
  .splide__pagination__page:focus-visible {
  outline: #333 2px solid;
  outline-offset: 1px;
}
.splide__pagination.splide__pagination-custom
  .splide.is-focus-in
  .splide__pagination__page:focus {
  outline: 0;
  outline-offset: 0;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 1px solid #333;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 1px solid #333;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 1px solid #333;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
.datepicker-header .datepicker-controls {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}
.datepicker-main {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 12px;
}
.datepicker-dropdown .datepicker-picker {
  background: #fff;
  box-shadow: 0px 12px 28.2px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 0.625rem;
}
.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: #aaa;
}
.datepicker-controls .button {
  color: #333;
}
.datepicker span {
  color: #333;
  font-size: 0.8125rem;
}
.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  color: #fff;
  background: #2f80ed;
  border-radius: 0.5rem;
}
.service-prices {
  font-family: "NTSomic";
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-y: 19px;
  --bs-accordion-btn-padding-x: 26px;
  --bs-accordion-btn-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 24px;
}
.service-prices h2 .accordion-button,
.service-prices .h2 .accordion-button {
  font-size: 1.5rem;
  padding: 19px 19px;
}
.service-prices h2 .accordion-button::after,
.service-prices .h2 .accordion-button::after {
  transition: transform 0.2s ease-in-out;
  transform: rotate(-90deg);
}
.service-prices h2 .accordion-button.collapsed,
.service-prices .h2 .accordion-button.collapsed {
  border-bottom: 1px solid #e3e3e3;
}
.service-prices h2 .accordion-button.collapsed::after,
.service-prices .h2 .accordion-button.collapsed::after {
  transform: rotate(0deg);
}
@font-face {
  font-family: "GolosText";
  src: url(/local/templates/main/design/public/fonts/GolosText/GolosText-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "GolosText";
  src: url(/local/templates/main/design/public/fonts/GolosText/GolosText-Medium.ttf);
  font-weight: 500;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "GolosText";
  src: url(/local/templates/main/design/public/fonts/GolosText/GolosText-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "GolosText";
  src: url(/local/templates/main/design/public/fonts/GolosText/GolosText-Bold.ttf);
  font-weight: 700;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "GolosText";
  src: url(/local/templates/main/design/public/fonts/GolosText/GolosText-Black.ttf);
  font-weight: 800;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "Alice";
  src: url(/local/templates/main/design/public/fonts/Alice/Alice-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "IgraSans";
  src: url(/local/templates/main/design/public/fonts/IgraSans/IgraSans.ttf);
  font-weight: 400;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "NTSomic";
  src: url(/local/templates/main/design/public/fonts/NTSomic/NTSomic-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "NTSomic";
  src: url(/local/templates/main/design/public/fonts/NTSomic/NTSomic-Medium.ttf);
  font-weight: 500;
  font-style: normal;
  font-scretch: normal;
}
@font-face {
  font-family: "NTSomic";
  src: url(/local/templates/main/design/public/fonts/NTSomic/NTSomic-Bold.ttf);
  font-weight: 700;
  font-style: normal;
  font-scretch: normal;
}
a:not([class*="btn"]) {
  text-decoration: none;
}
a:not([class*="btn"]):hover {
  text-decoration: none;
}
html {
  width: 100%;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
img {
  width: 100%;
  height: auto;
}
.section {
  margin: 5rem auto;
}
.section:last-child {
  margin-bottom: 0;
}
.detail-page section {
  margin-bottom: 4rem;
}
@media (max-width: 575.98px) {
  .detail-page section {
    margin-bottom: 2rem;
  }
}
.bg-gradient-blue-champagne {
  background: linear-gradient(59.62deg, #ffdca3 8.39%, #a6bcfe 85.02%);
}
.bg-gradient-melon-blue {
  background: linear-gradient(
    55.16deg,
    rgba(255, 183, 163, 0.5) 18.62%,
    rgba(166, 188, 254, 0.5) 79.56%
  );
}
.bg-gradient-champagne-blue {
  background: linear-gradient(
    55.16deg,
    rgba(255, 214, 163, 0.5) 18.62%,
    rgba(166, 238, 254, 0.5) 79.56%
  );
}
@keyframes animation-loading {
  from {
    left: -200%;
  }
  to {
    left: 100%;
  }
}
@keyframes anim {
  0% {
    transform: rotate(0deg) translate(-5px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(-5px) rotate(-360deg);
  }
}
@keyframes xSlide {
  from {
    transform: translateX(0);
  }
  48% {
    transform: translateX(14px);
    opacity: 0;
  }
  50% {
    transform: translateX(-14px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes xSlideReversed {
  from {
    transform: scaleX(-1) translateX(0);
  }
  48% {
    transform: scaleX(-1) translateX(-14px);
    opacity: 0;
  }
  50% {
    transform: scaleX(-1) translateX(14px);
    opacity: 0;
  }
  to {
    transform: scaleX(-1) translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.leaflet-image-layer,
.leaflet-layer,
.leaflet-map-pane canvas,
.leaflet-map-pane svg,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane,
.leaflet-tile,
.leaflet-tile-container,
.leaflet-zoom-box {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
  outline: 0;
  font:
    12px/1.5 "Helvetica Neue",
    Arial,
    Helvetica,
    sans-serif;
}
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-tile {
  -webkit-filter: inherit;
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
.dg-error-message,
.dg-header__title,
.dg-popup__footer-button,
.leaflet-control-scale-line {
  -webkit-box-sizing: border-box;
}
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
  float: left;
  clear: both;
}
.leaflet-bottom,
.leaflet-top {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-right .leaflet-control {
  float: right;
  margin-right: 10px;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition:
    transform 0.25s cubic-bezier(0, 0, 0.25, 1),
    -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-pan-anim .leaflet-tile,
.leaflet-zoom-anim .leaflet-tile {
  -webkit-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-control,
.leaflet-popup-pane {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
.leaflet-image-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-image-layer.leaflet-interactive,
.leaflet-marker-icon.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  pointer-events: auto;
}
.leaflet-container a {
  color: #0078a8;
}
.leaflet-container a.leaflet-active {
  outline: orange solid 2px;
}
.leaflet-bar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font:
    700 18px "Lucida Console",
    Monaco,
    monospace;
  text-indent: 1px;
}
.leaflet-control-zoom-out {
  font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
  font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 24px;
}
.leaflet-control-layers {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-layers {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
.leaflet-popup {
  position: absolute;
  text-align: center;
}
.dg-schedule__string,
.leaflet-popup-content-wrapper,
[class^="dg-"] caption,
[class^="dg-"] th {
  text-align: left;
}
.leaflet-popup-tip-container {
  width: 40px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #fff;
  color: #333;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  border: none;
  font:
    16px/14px Tahoma,
    Verdana,
    sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  background: 0 0;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=.70710678, M12=.70710678, M21=-.70710678, M22=.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before,
.leaflet-tooltip-top:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid rgba(0, 0, 0, 0);
  background: 0 0;
  content: "";
}
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-popup,
[class^="dg-"] > [class^="dg-"]:last-child {
  margin-bottom: 0;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
[class^="dg-"],
[class^="dg-"]:after,
[class^="dg-"]:before {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-weight: inherit;
  font-style: inherit;
  font-size: 1em;
  font-family: inherit;
  line-height: 1.2;
}
[class^="dg-"] abbr,
[class^="dg-"] fieldset,
[class^="dg-"] img {
  border: 0;
}
[class^="dg-"] blockquote,
[class^="dg-"] q {
  quotes: none;
}
[class^="dg-"] blockquote:after,
[class^="dg-"] blockquote:before,
[class^="dg-"] q:after,
[class^="dg-"] q:before {
  content: "";
  content: none;
}
[class^="dg-"] ol,
[class^="dg-"] ul {
  list-style: none;
}
[class^="dg-"] table {
  border-spacing: 0;
  border-collapse: collapse;
}
[class^="dg-"] td,
[class^="dg-"] th {
  vertical-align: middle;
}
[class^="dg-"] button::-moz-focus-inner,
[class^="dg-"] input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.dg-label {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  width: 300px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dg-label__content {
  display: inline-block;
  overflow: hidden;
  padding: 3px 7px;
  min-width: 30px;
  max-width: 300px;
  width: auto;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  vertical-align: top;
  font-size: 12px;
  border-color: #323232;
  border-color: rgba(50, 50, 50, 0.85);
  background: #323232;
  background: rgba(50, 50, 50, 0.85);
  color: #ffd26e;
}
.leaflet-top .dg-label_name_location-error {
  top: 5px;
}
.leaflet-right .dg-label_name_location-error {
  right: 40px;
  left: auto;
  text-align: right;
}
.leaflet-bottom .dg-label_name_location-error {
  top: 4px;
}
.leaflet-left .dg-label_name_location-error {
  left: 40px;
}
.leaflet-popup-tip-container {
  height: 0;
}
.leaflet-popup-content-wrapper {
  overflow: hidden;
  padding: 0;
  min-width: 60px;
  min-height: 50px;
  border: 0;
  border-radius: 3px;
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #e6e6e6;
  font-size: 14px;
  -webkit-transition:
    opacity ease-out 0.2s,
    max-height ease-out 0.2s,
    height ease-out 0.2s;
  transition:
    opacity ease-out 0.2s,
    max-height ease-out 0.2s,
    height ease-out 0.2s;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  background-color: rgba(50, 50, 50, 0.9);
}
.leaflet-popup-content-wrapper:before {
  float: right;
  width: 30px;
  height: 17px;
  content: "";
}
.leaflet-popup-content {
  position: relative;
  margin: 16px;
  width: auto;
  line-height: 1.4;
}
.leaflet-popup a {
  outline: 0;
}
.leaflet-popup-content p {
  margin: 0;
}
.leaflet-popup-scrolled {
  overflow: visible;
  border: 0;
}
.leaflet-popup-inner {
  position: relative;
  z-index: 0;
}
.leaflet-popup_show_true {
  -webkit-transition:
    opacity ease-in-out 0.2s,
    height ease-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  transition:
    opacity ease-in-out 0.2s,
    height ease-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  transition:
    transform ease-in-out 0.2s,
    opacity ease-in-out 0.2s,
    height ease-out 0.2s;
  transition:
    transform ease-in-out 0.2s,
    opacity ease-in-out 0.2s,
    height ease-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.leaflet-popup_show_false {
  opacity: 0 !important;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
}
.leaflet-popup_preloader_true {
  width: 384px;
  height: 52px;
}
.leaflet-map-pane .leaflet-popup-tip-container {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  margin-left: -29px;
  width: 58px;
  height: 47px;
  background-repeat: no-repeat;
  -webkit-transform: translateY(47px);
  -ms-transform: translateY(47px);
  transform: translateY(47px);
  pointer-events: none;
}
.leaflet-popup-tip {
  display: none;
}
.leaflet-popup-tip-container_svg {
  background-repeat: no-repeat;
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGPopup__popupShadow.png);
  background-position: 50% 95%;
  background-size: 36px 12px;
}
.leaflet-retina .leaflet-popup-tip-container_svg {
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGPopup__popupShadow@2x.png);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1;
  overflow: hidden;
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
}
.no-touch .leaflet-container a.leaflet-popup-close-button:hover {
  border-radius: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #222;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.leaflet-container a.leaflet-popup-close-button:active {
  color: #777;
}
.leaflet-container a.leaflet-popup-close-button:after {
  position: absolute;
  z-index: 2;
  content: "";
  top: -3px;
  right: -5px;
  width: 40px;
  height: 40px;
}
.leaflet-popup-tip-container_image {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2258%22%20height%3D%2247%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M0%200c12.643%200%2028%207.115%2028%2044h2c0-36.885%2015.358-44%2028-44h-58z%22%20fill%3D%22rgba%2850%2C50%2C50%2C.9%29%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A");
}
.leaflet-map-pane .leaflet-popup-tip-container_svg {
  fill: rgba(50, 50, 50, 0.9);
}
.dg-wrapper {
  position: relative;
  overflow: hidden;
}
.dg-scroller {
  height: 100%;
  overflow-y: scroll;
  border: 0;
}
.dg-scroller::-webkit-scrollbar {
  width: 0;
}
.dg-scroller__bar {
  z-index: 1;
  right: 0;
  background: #999;
}
.dg-scroller__bar_h {
  bottom: 2px;
  height: 8px;
}
.dg-header__title {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: #999;
}
.dg-header__title_state_fixed {
  position: absolute;
  z-index: 1;
}
.dg-scroller_hidden_true {
  overflow: auto;
}
.dg-scroller__wrapper {
  position: relative;
  overflow: hidden;
}
.dg-scroller__bar-wrapper {
  position: absolute;
  top: 18px;
  right: 3px;
  bottom: 4px;
  width: 7px;
  border-radius: 5px;
}
.dg-scroller_hidden_true .dg-scroller__bar-wrapper {
  visibility: hidden;
}
.dg-popup__header + .dg-popup__container-wrapper .dg-scroller__bar-wrapper {
  top: 4px;
}
.dg-scroller__bar {
  position: absolute;
  min-height: 20px;
  width: 7px;
  border-radius: 3px;
  pointer-events: auto;
}
.leaflet-popup-scrolled .dg-popup__footer:before,
.leaflet-popup-scrolled .dg-popup__header:after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
}
.scroller__bar-wrapper .scroller__bar {
  background-color: #665b4f;
}
.scroller__bar-wrapper:hover .scroller__bar {
  background-color: #897a6b;
}
.dg-popup__container {
  margin: 0;
}
.leaflet-popup-scrolled .dg-popup__container {
  padding: 8px 14px 8px 0;
}
.dg-popup__header {
  position: relative;
  padding-bottom: 12px;
}
.leaflet-popup-scrolled .dg-popup__header:after {
  position: relative;
  top: 12px;
}
.dg-popup__footer {
  position: relative;
  bottom: 0;
  overflow: hidden;
}
.dg-control-round,
.dg-control-round__icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.dg-popup_hidden_true {
  display: none;
}
.leaflet-popup-scrolled .dg-popup__footer:before,
.leaflet-popup-scrolled .dg-popup__header:after {
  border-bottom: 1px solid #636363;
  background-color: #494949;
}
.dg-control-round {
  padding: 5px;
  cursor: default;
}
.dg-control-round__icon {
  display: block;
  background-color: #f0f0f0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #fff),
    to(#e0e0e0)
  );
  background-image: -webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);
  background-image: linear-gradient(to bottom, #fff 0, #e0e0e0 100%);
  color: #2b2a29;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  font-size: 22px;
  line-height: 30px;
  cursor: pointer;
}
.no-touch .dg-control-round__icon:hover {
  background-color: #f5f5f5;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #ebebeb),
    to(#fff)
  );
  background-image: -webkit-linear-gradient(top, #ebebeb 0, #fff 100%);
  background-image: linear-gradient(to bottom, #ebebeb 0, #fff 100%);
}
.dg-control-round__icon:active,
.dg-control-round__icon_state_active,
.no-touch .dg-control-round__icon:active {
  background-color: #ebebeb;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #d6d6d6),
    to(#fff)
  );
  background-image: -webkit-linear-gradient(top, #d6d6d6 0, #fff 100%);
  background-image: linear-gradient(to bottom, #d6d6d6 0, #fff 100%);
}
.leaflet-touch .dg-control-round__icon:before {
  position: absolute;
  top: -10px;
  right: -15px;
  bottom: -10px;
  left: -15px;
  content: "";
}
.dg-control-round_is-hidden_true {
  display: none;
}
.dg-control-round {
  background-color: #3d3d3d;
  -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
}
.dg-control-round__icon {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
}
.no-touch .dg-control-round__icon:hover {
  -webkit-box-shadow:
    inset 0 1px #fff,
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 1px 0 1px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 1px #fff,
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 1px 0 1px rgba(0, 0, 0, 0.4);
}
.dg-control-round__icon:active,
.dg-control-round__icon_state_active,
.no-touch .dg-control-round__icon:active {
  -webkit-box-shadow:
    inset 0 1px 1px 1px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 -1px 1px 0 #000;
  box-shadow:
    inset 0 1px 1px 1px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 -1px 1px 0 #000;
}
.leaflet-disabled .dg-control-round__icon,
.leaflet-disabled .dg-control-round__icon:active,
.no-touch .leaflet-disabled .dg-control-round__icon:hover {
  background-image: none;
  cursor: default;
  background-color: #b8b8b8;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dg-museum {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 4px 5px 8px;
  background: #333;
  color: #fff;
  opacity: 0.97;
  text-align: center;
}
.dg-museum-browser {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  background: url(https://maps.api.2gis.ru/2.0/img/DGMuseum.jpg) left top
    no-repeat;
}
.dg-museum__chrome {
  background-position: 0 0;
}
.dg-museum__chrome:hover {
  background-position: 0 -16px;
}
.dg-museum__firefox {
  background-position: -16px 0;
}
.dg-museum__firefox:hover {
  background-position: -16px -16px;
}
.dg-museum__safari {
  background-position: -32px 0;
}
.dg-museum__safari:hover {
  background-position: -32px -16px;
}
.dg-museum__opera {
  width: 15px;
  background-position: -48px 0;
}
.dg-museum__opera:hover {
  background-position: -48px -16px;
}
.dg-museum__ie {
  width: 17px;
  background-position: -63px 0;
}
.dg-museum__ie:hover {
  background-position: -63px -16px;
}
.dg-museum__close {
  display: inline-block;
  margin: 0 4px;
  width: 9px;
  height: 9px;
  background: url(https://maps.api.2gis.ru/2.0/img/DGMuseum_close.gif) top left
    no-repeat;
  cursor: pointer;
}
.dg-museum__close:hover {
  opacity: 0.6;
}
.leaflet-container {
  z-index: 0;
  background: #f7f3df;
  cursor: default;
}
.leaflet-container:-ms-fullscreen {
  width: 100% !important;
  height: 100% !important;
}
.leaflet-container:fullscreen {
  width: 100% !important;
  height: 100% !important;
}
.dg-customization__marker:before,
.dg-error-message {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
}
.leaflet-dragging,
.leaflet-dragging .leaflet-clickable,
.leaflet-dragging .leaflet-container {
  cursor: move;
}
.leaflet-control a,
.leaflet-control a:focus {
  outline: 0 !important;
}
.leaflet-container .leaflet-control-attribution {
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dg-customization__marker {
  background-repeat: no-repeat;
}
.dg-customization__marker:before {
  background-image: inherit;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition:
    opacity ease-in-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  transition:
    opacity ease-in-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  transition:
    opacity ease-in-out 0.2s,
    transform ease-in-out 0.2s;
  transition:
    opacity ease-in-out 0.2s,
    transform ease-in-out 0.2s,
    -webkit-transform ease-in-out 0.2s;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.dg-customization__marker_type_mushroom {
  background-repeat: no-repeat;
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__marker.png);
  background-size: 22px 34px;
  width: 22px;
  height: 34px;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: dg-customization__show-marker 0.2s;
  animation: dg-customization__show-marker 0.2s;
}
.leaflet-retina .dg-customization__marker_type_mushroom {
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__marker@2x.png);
}
.dg-customization__marker_type_mushroom:focus {
  outline: 0;
}
.no-touch .dg-customization__marker_type_mushroom:hover {
  background-repeat: no-repeat;
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__markerHover.png);
  background-size: 22px 34px;
}
.leaflet-retina .no-touch .dg-customization__marker_type_mushroom:hover {
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__markerHover@2x.png);
}
.dg-customization__marker_type_mushroom:active,
.no-touch .dg-customization__marker_type_mushroom:active {
  background-repeat: no-repeat;
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__markerActive.png);
  background-size: 22px 34px;
}
.leaflet-retina .dg-customization__marker_type_mushroom:active,
.leaflet-retina .no-touch .dg-customization__marker_type_mushroom:active {
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGCustomization__markerActive@2x.png);
}
@-webkit-keyframes dg-customization__show-marker {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dg-customization__show-marker {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dg-customization__marker_appear {
  background-position: 999px;
}
.dg-customization__marker_appear:before {
  content: "";
}
.dg-customization__marker_disappear {
  background-position: 999px;
  pointer-events: none;
}
.dg-customization__marker_disappear:before {
  visibility: hidden;
  content: "";
  opacity: 0;
  -webkit-transform: scale(1.2, 1.8);
  -ms-transform: scale(1.2, 1.8);
  transform: scale(1.2, 1.8);
  -webkit-animation: dg-customization__marker-to-callout 0.2s;
  animation: dg-customization__marker-to-callout 0.2s;
}
@-webkit-keyframes dg-customization__marker-to-callout {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: scale(1.2, 1.8);
    transform: scale(1.2, 1.8);
  }
}
@keyframes dg-customization__marker-to-callout {
  0% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    visibility: visible;
    opacity: 0;
    -webkit-transform: scale(1.2, 1.8);
    transform: scale(1.2, 1.8);
  }
}
.dg-dragging-false {
  touch-action: auto;
  -ms-touch-action: auto;
}
.dg-error-message {
  background-color: rgba(195, 194, 179, 0.58);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  text-align: center;
  z-index: 9999;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: Bold;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0 20px;
}
.dg-zoom {
  width: 40px;
  height: 74px;
}
.dg-zoom__in {
  position: absolute;
  top: 0;
  left: 0;
}
.leaflet-touch .dg-zoom__in:before {
  position: absolute;
  top: -5px;
  right: -10px;
  bottom: 0;
  left: -10px;
  content: "";
}
.dg-zoom__in:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  margin: auto;
  width: 12px;
  height: 2px;
  -webkit-box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.3);
  content: "";
}
.dg-zoom__button_type_in:after,
.dg-zoom__button_type_in:before,
.leaflet-touch .dg-zoom__button_type_in:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #7a7a7a;
  -webkit-box-shadow: 0 1px #fff;
  box-shadow: 0 1px #fff;
  content: "";
}
.dg-zoom__button_type_in:after {
  width: 2px;
  height: 14px;
}
.no-touch .dg-zoom__button_type_in:hover:after,
.no-touch .dg-zoom__button_type_in:hover:before {
  background-color: #616161;
}
.dg-zoom__button_type_in:active:after,
.dg-zoom__button_type_in:active:before,
.no-touch .dg-zoom__button_type_in:active:after,
.no-touch .dg-zoom__button_type_in:active:before {
  background-color: #575757;
}
.leaflet-disabled .dg-zoom__button_type_in:active:after,
.leaflet-disabled .dg-zoom__button_type_in:active:before,
.leaflet-disabled .dg-zoom__button_type_in:after,
.leaflet-disabled .dg-zoom__button_type_in:before,
.no-touch .leaflet-disabled .dg-zoom__button_type_in:hover:after,
.no-touch .leaflet-disabled .dg-zoom__button_type_in:hover:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dg-zoom__out {
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  margin: auto;
  width: 22px;
  height: 22px;
}
.dg-zoom__out:after {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  content: "";
}
.dg-zoom__button_type_out {
  width: 22px;
  height: 22px;
}
.leaflet-touch .dg-zoom__button_type_out:before {
  top: -5px;
  right: -19px;
  bottom: -19px;
  left: -19px;
}
.dg-control-round__icon_name_fullscreen:after,
.dg-control-round__icon_name_locate:after,
.dg-zoom__button_type_out:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  bottom: 0;
}
.dg-zoom__button_type_out:after {
  right: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background: #7a7a7a;
  -webkit-box-shadow: 0 1px #fff;
  box-shadow: 0 1px #fff;
}
.no-touch .dg-zoom__button_type_out:hover:after {
  background: #616161;
}
.dg-zoom__button_type_out:active:after,
.no-touch .dg-zoom__button_type_out:active:after {
  background: #575757;
}
.leaflet-disabled .dg-zoom__button_type_out:active:after,
.leaflet-disabled .dg-zoom__button_type_out:after,
.no-touch .leaflet-disabled .dg-zoom__button_type_out:hover:after {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dg-zoom__out {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
}
.dg-zoom__out:after {
  background-color: #3d3d3d;
}
.leaflet-disabled .dg-zoom__button_type_in:active:after,
.leaflet-disabled .dg-zoom__button_type_in:active:before,
.leaflet-disabled .dg-zoom__button_type_in:after,
.leaflet-disabled .dg-zoom__button_type_in:before,
.leaflet-disabled .dg-zoom__button_type_out:active:after,
.leaflet-disabled .dg-zoom__button_type_out:after,
.no-touch .leaflet-disabled .dg-zoom__button_type_in:hover:after,
.no-touch .leaflet-disabled .dg-zoom__button_type_in:hover:before,
.no-touch .leaflet-disabled .dg-zoom__button_type_out:hover:after {
  background-color: #707070;
}
.dg-attribution {
  background-color: rgba(0, 0, 0, 0) !important;
}
.dg-attribution .dg-attribution__copyright {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  text-align: right !important;
  white-space: nowrap !important;
  font-size: 9px !important;
  font-family: Helvetica, Arial, sans-serif !important;
}
.dg-attribution .dg-attribution__links {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 5px 0 0 !important;
}
.dg-attribution .dg-attribution__link-item {
  padding: 0 !important;
  list-style-type: none !important;
}
.dg-attribution .dg-attribution__warning-message {
  display: inline-block !important;
  margin: 0 !important;
  color: #333 !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  white-space: normal;
}
.dg-attribution .dg-attribution__logo-url {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2240%22%20height%3D%2220%22%20viewBox%3D%220%200%2040%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M2.00011%208.72731C1.98229%205.72738%204.05025%204%206.80779%204C9.47674%204%2011.2797%205.58179%2011.2797%208.05437C11.2797%2010.1091%2010.0602%2011.2546%207.99196%2012.2727C7.21431%2012.6547%206.34807%2013.1818%205.46454%2013.4544H11.3681V16H2.00011V12.66C3.85604%2012.0235%204.88111%2011.3271%206.59576%2010.4728C7.90363%209.81815%208.71666%209.23633%208.71666%208.1819C8.71666%207.16358%207.97439%206.36366%206.80779%206.36366C5.27006%206.36366%204.52753%207.52729%204.56292%208.72731H2.00011Z%22%20fill%3D%22%236E7173%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M23.6348%209.63643V10.5453C23.6348%2013.5455%2021.6552%2016%2018.067%2016C14.6202%2016%2012.2518%2013.4727%2012.2518%209.99986C12.2518%206.52731%2014.5497%204%2018.1554%204C21.2487%204%2023.1751%205.8363%2023.6348%207.99991H21.0717C20.6301%206.96353%2019.534%206.36366%2018.2261%206.36366C15.9813%206.36366%2014.7263%208.14523%2014.7263%209.99986C14.7263%2011.8545%2015.9991%2013.6363%2018.2086%2013.6363C19.5872%2013.6363%2020.736%2012.9456%2021.0896%2011.8181H17.7313V9.63643H23.6348Z%22%20fill%3D%22%236E7173%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M27.4528%2016H24.9783V4H27.4528V16Z%22%20fill%3D%22%236E7173%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M38.4292%207.63648H35.8662C35.6185%206.85461%2034.947%206.18167%2033.4446%206.18167C32.1543%206.18167%2031.5004%206.69096%2031.5004%207.41809C31.5004%208.30915%2032.7375%208.56366%2034.293%208.83623L34.361%208.84818C36.4076%209.20779%2038.5%209.57545%2038.5%2012.2727C38.5%2014.8%2036.4672%2016%2033.7274%2016C31.1998%2016%2028.9373%2014.4727%2028.6899%2012.1818H31.2527C31.5712%2013.1273%2032.5079%2013.8181%2033.8512%2013.8181C35.1415%2013.8181%2035.8662%2013.3818%2035.8662%2012.5455C35.8662%2011.514%2034.3606%2011.2653%2032.8555%2011.0167C32.8221%2011.0112%2032.7887%2011.0056%2032.7553%2011.0001C31.1468%2010.7273%2028.8844%209.9818%2028.8844%207.54535C28.8844%205.34534%2030.7581%204%2033.5332%204C36.2727%204%2038.164%205.41814%2038.4292%207.63648Z%22%20fill%3D%22%236E7173%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 40px;
  height: 20px;
  background-size: 40px 20px;
  margin: 0 3px 0 0 !important;
}
.dg-attribution .dg-attribution__open2gis-button {
  background: #fff !important;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) !important;
  padding: 4px 6px 4px 4px !important;
  position: relative !important;
  display: inline-block !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  text-align: left !important;
  text-decoration: none !important;
  line-height: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 9px !important;
  cursor: pointer !important;
  -webkit-transition: all 0.1s !important;
  transition: all 0.1s !important;
  height: 22px !important;
  min-width: 101px !important;
}
.no-touch .dg-attribution .dg-attribution__open2gis-button:hover {
  -webkit-transition: background 0.2s !important;
  transition: background 0.2s !important;
  background: #e7f3ff !important;
}
.dg-attribution .dg-attribution__open2gis-icon-button:before {
  display: inline-block !important;
  margin: -1px 4px 0 0 !important;
  width: 12px !important;
  height: 12px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  content: "" !important;
  vertical-align: middle !important;
}
.dg-attribution .dg-attribution__button-wrapper {
  margin-left: 3px !important;
}
.dg-attribution
  .dg-attribution__button-wrapper
  .dg-attribution__open2gis-button {
  color: #454c4f !important;
}
.no-touch
  .dg-attribution
  .dg-attribution__button-wrapper
  .dg-attribution__open2gis-button:hover {
  color: #286482 !important;
}
.dg-attribution .dg-attribution__open2gis-button_name_open:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%2212%22%20viewBox%3D%220%200%2010%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%200C7.97834%200%2010%202.30909%2010%204.8C10%205.8%209.78339%206.67273%209.27798%207.76364C6.31769%207.76364%205.77617%209.74545%205.64982%2011.0727L5.55957%2012H4.44043L4.35018%2011.0727C4.22383%209.74545%203.68231%207.76364%200.722022%207.76364C0.216607%206.67273%200%205.8%200%204.8C0%202.30909%202.02166%200%205%200Z%22%20fill%3D%22%23299400%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 10px;
  height: 12px;
  background-size: 10px 12px;
}
.leaflet-container .dg-attribution .dg-attribution__link {
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(8, 8, 8, 0.3)),
      to(rgba(8, 8, 8, 0.3))
    )
    0 95% repeat-x !important;
  background: -webkit-linear-gradient(
      left,
      rgba(8, 8, 8, 0.3),
      rgba(8, 8, 8, 0.3) 100%
    )
    0 95% repeat-x !important;
  background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.3),
      rgba(8, 8, 8, 0.3) 100%
    )
    0 95% repeat-x !important;
  background-size: 10px 1px !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 9px !important;
  font-family: Helvetica, Arial, sans-serif !important;
  cursor: pointer !important;
}
.leaflet-container .dg-attribution .dg-attribution__link:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#080808),
    to(#080808)
  ) !important;
  background-image: -webkit-linear-gradient(
    left,
    #080808,
    #080808 100%
  ) !important;
  background-image: linear-gradient(to right, #080808, #080808 100%) !important;
  color: #333 !important;
  text-decoration: none !important;
}
.dg-location__pin {
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite.basic.png);
  background-position: -40px 0;
  background-size: 90px 74px;
}
.leaflet-retina .dg-location__pin {
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite@2x.basic.png);
  background-position: -40px 0;
  background-size: 90px 73.5px;
}
.dg-location__pin_state_following {
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite.basic.png);
  background-position: -40px -20px;
  background-size: 90px 74px;
}
.leaflet-retina .dg-location__pin_state_following {
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite@2x.basic.png);
  background-position: -40px -20px;
  background-size: 90px 73.5px;
}
.dg-control-round__icon_state_active.dg-control-round__icon_name_locate:active:after,
.dg-control-round__icon_state_active.dg-control-round__icon_name_locate:after,
.no-touch
  .dg-control-round__icon_state_active.dg-control-round__icon_name_locate:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22%2323a5d4%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.553%200.447%2C10%201%2C10%20H%202.08%20C%202.52%2C13.063%204.936%2C15.48%208%2C15.92%20V%2017%20c%200%2C0.553%200.447%2C1%201%2C1%200.553%2C0%201%2C-0.447%201%2C-1%20V%2015.92%20C%2013.064%2C15.481%2015.48%2C13.064%2015.92%2C10%20H%2017%20C%2017.553%2C10%2018%2C9.553%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20z%20M%209%2C14%20C%206.24%2C14%204%2C11.762%204%2C9%204%2C6.238%206.24%2C4%209%2C4%20c%202.761%2C0%205%2C2.238%205%2C5%200%2C2.762%20-2.239%2C5%20-5%2C5%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20cx%3D%229%22%20cy%3D%229%22%20r%3D%223%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2014%2C10.004%20C%2014%2C9.834%2013.991%2C9.667%2013.975%2C9.502%2013.723%2C12.027%2011.592%2C14%209%2C14%206.408%2C14%204.277%2C12.027%204.025%2C9.502%204.009%2C9.667%204%2C9.834%204%2C10.004%20c%200%2C2.762%202.24%2C5%205%2C5%202.761%2C0%205%2C-2.238%205%2C-5%20z%20M%2010%2C3.083%20c%203.064%2C0.439%205.48%2C2.856%205.92%2C5.921%20H%2017%20c%200.369%2C0%200.688%2C0.201%200.86%2C0.498%20C%2017.947%2C9.354%2018%2C9.184%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%203.083%20z%20M%201%2C9.004%20H%202.08%20C%202.52%2C5.939%204.936%2C3.522%208%2C3.083%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.184%200.053%2C9.354%200.14%2C9.502%200.312%2C9.205%200.631%2C9.004%201%2C9.004%20z%20m%208%2C-8%20c%200.553%2C0%201%2C0.447%201%2C1%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20v%201.004%20c%200%2C-0.553%200.447%2C-1%201%2C-1%20z%22%20fill%3D%22%232685aa%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%209%2C7%20c%201.486%2C0%202.717%2C1.082%202.955%2C2.5%20C%2011.982%2C9.337%2012%2C9.171%2012%2C9%2012%2C7.344%2010.656%2C6%209%2C6%207.344%2C6%206%2C7.344%206%2C9%206%2C9.171%206.018%2C9.337%206.045%2C9.5%206.283%2C8.082%207.514%2C7%209%2C7%20z%22%20fill%3D%22%231c85ab%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
@-webkit-keyframes DGLocation__locateIconRequestingAnim {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes DGLocation__locateIconRequestingAnim {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.dg-control-round__icon_name_locate:after {
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23616161%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.553%200.447%2C10%201%2C10%20H%202.08%20C%202.52%2C13.063%204.936%2C15.48%208%2C15.92%20V%2017%20c%200%2C0.553%200.447%2C1%201%2C1%200.553%2C0%201%2C-0.447%201%2C-1%20V%2015.92%20C%2013.064%2C15.481%2015.48%2C13.064%2015.92%2C10%20H%2017%20C%2017.553%2C10%2018%2C9.553%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20z%20M%209%2C14%20C%206.24%2C14%204%2C11.762%204%2C9%204%2C6.238%206.24%2C4%209%2C4%20c%202.761%2C0%205%2C2.238%205%2C5%200%2C2.762%20-2.239%2C5%20-5%2C5%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20cx%3D%229%22%20cy%3D%229%22%20r%3D%223%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23444%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2014%2C10.004%20C%2014%2C9.834%2013.991%2C9.667%2013.975%2C9.502%2013.723%2C12.027%2011.592%2C14%209%2C14%206.408%2C14%204.277%2C12.027%204.025%2C9.502%204.009%2C9.667%204%2C9.834%204%2C10.004%20c%200%2C2.762%202.24%2C5%205%2C5%202.761%2C0%205%2C-2.238%205%2C-5%20z%20M%2010%2C3.083%20c%203.064%2C0.439%205.48%2C2.856%205.92%2C5.921%20H%2017%20c%200.369%2C0%200.688%2C0.201%200.86%2C0.498%20C%2017.947%2C9.354%2018%2C9.184%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%203.083%20z%20M%201%2C9.004%20H%202.08%20C%202.52%2C5.939%204.936%2C3.522%208%2C3.083%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.184%200.053%2C9.354%200.14%2C9.502%200.312%2C9.205%200.631%2C9.004%201%2C9.004%20z%20m%208%2C-8%20c%200.553%2C0%201%2C0.447%201%2C1%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20v%201.004%20c%200%2C-0.553%200.447%2C-1%201%2C-1%20z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%209%2C7%20c%201.486%2C0%202.717%2C1.082%202.955%2C2.5%20C%2011.982%2C9.337%2012%2C9.171%2012%2C9%2012%2C7.344%2010.656%2C6%209%2C6%207.344%2C6%206%2C7.344%206%2C9%206%2C9.171%206.018%2C9.337%206.045%2C9.5%206.283%2C8.082%207.514%2C7%209%2C7%20z%22%20fill%3D%22%23444%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
}
.dg-control-round__icon_name_locate:active:after,
.no-touch .dg-control-round__icon_name_locate:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23424242%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.553%200.447%2C10%201%2C10%20H%202.08%20C%202.52%2C13.063%204.936%2C15.48%208%2C15.92%20V%2017%20c%200%2C0.553%200.447%2C1%201%2C1%200.553%2C0%201%2C-0.447%201%2C-1%20V%2015.92%20C%2013.064%2C15.481%2015.48%2C13.064%2015.92%2C10%20H%2017%20C%2017.553%2C10%2018%2C9.553%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20z%20M%209%2C14%20C%206.24%2C14%204%2C11.762%204%2C9%204%2C6.238%206.24%2C4%209%2C4%20c%202.761%2C0%205%2C2.238%205%2C5%200%2C2.762%20-2.239%2C5%20-5%2C5%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Ccircle%20cx%3D%229%22%20cy%3D%229%22%20r%3D%223%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20fill%3D%22%232e2e2e%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2014%2C10.004%20C%2014%2C9.834%2013.991%2C9.667%2013.975%2C9.502%2013.723%2C12.027%2011.592%2C14%209%2C14%206.408%2C14%204.277%2C12.027%204.025%2C9.502%204.009%2C9.667%204%2C9.834%204%2C10.004%20c%200%2C2.762%202.24%2C5%205%2C5%202.761%2C0%205%2C-2.238%205%2C-5%20z%20M%2010%2C3.083%20c%203.064%2C0.439%205.48%2C2.856%205.92%2C5.921%20H%2017%20c%200.369%2C0%200.688%2C0.201%200.86%2C0.498%20C%2017.947%2C9.354%2018%2C9.184%2018%2C9%2018%2C8.448%2017.553%2C8%2017%2C8%20H%2015.92%20C%2015.48%2C4.937%2013.064%2C2.52%2010%2C2.08%20V%203.083%20z%20M%201%2C9.004%20H%202.08%20C%202.52%2C5.939%204.936%2C3.522%208%2C3.083%20V%202.08%20C%204.936%2C2.52%202.52%2C4.937%202.08%2C8%20H%201%20C%200.447%2C8%200%2C8.448%200%2C9%200%2C9.184%200.053%2C9.354%200.14%2C9.502%200.312%2C9.205%200.631%2C9.004%201%2C9.004%20z%20m%208%2C-8%20c%200.553%2C0%201%2C0.447%201%2C1%20V%201%20C%2010%2C0.448%209.553%2C0%209%2C0%208.447%2C0%208%2C0.448%208%2C1%20v%201.004%20c%200%2C-0.553%200.447%2C-1%201%2C-1%20z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%209%2C7%20c%201.486%2C0%202.717%2C1.082%202.955%2C2.5%20C%2011.982%2C9.337%2012%2C9.171%2012%2C9%2012%2C7.344%2010.656%2C6%209%2C6%207.344%2C6%206%2C7.344%206%2C9%206%2C9.171%206.018%2C9.337%206.045%2C9.5%206.283%2C8.082%207.514%2C7%209%2C7%20z%22%20fill%3D%22%232e2e2e%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:active:after,
.dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:after,
.no-touch
  .dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:hover:after {
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite.dark.png);
  background-position: 0 0;
  background-size: 78px 65px;
  -webkit-animation: DGLocation__locateIconRequestingAnim 1s linear infinite;
  animation: DGLocation__locateIconRequestingAnim 1s linear infinite;
  image-rendering: optimizeQuality;
}
.leaflet-retina
  .dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:active:after,
.leaflet-retina
  .dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:after,
.leaflet-retina
  .no-touch
  .dg-control-round__icon_state_requesting.dg-control-round__icon_name_locate:hover:after {
  background-image: url(https://maps.api.2gis.ru/2.0/img/sprite@2x.dark.png);
  background-position: 0 0;
  background-size: 78px 65px;
}
.dg-control-round__icon_state_active.dg-control-round__icon_name_fullscreen:active:after,
.dg-control-round__icon_state_active.dg-control-round__icon_name_fullscreen:after,
.no-touch
  .dg-control-round__icon_state_active.dg-control-round__icon_name_fullscreen:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206%2C1%20H%201%20V%206%20H%203%20V%203%20h%203%20z%20m%204%2C14%20h%205%20v%20-5%20h%20-2%20v%203%20H%2010%20z%20M%2015%2C6%20V%201%20h%20-5%20v%202%20h%203%20V%206%20z%20M%201%2C10%20v%205%20H%206%20V%2013%20H%203%20v%20-3%20z%22%20fill%3D%22%230da4d4%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%201%2C1%20H%206%20V%202%20H%201%20z%20m%209%2C0%20h%205%20v%201%20h%20-5%20z%20m%203%2C9%20h%202%20v%201%20h%20-2%20z%20m%20-3%2C3%20h%203%20v%201%20h%20-3%20z%20m%20-7%2C0%20h%203%20v%201%20H%203%20z%20M%201%2C10%20h%202%20v%201%20H%201%20z%22%20fill%3D%22%230a84ab%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%201%2C6%20H%203%20V%207%20H%201%20z%20m%2012%2C0%20h%202%20V%207%20H%2013%20z%20M%201%2C15%20h%205%20v%201%20H%201%20z%20m%209%2C0%20h%205%20v%201%20h%20-5%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-control-round__icon_name_fullscreen:after {
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%201%2C3%20H%206%20V%204%20H%201%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206%2C1%20H%201%20V%206%20H%203%20V%203%20h%203%20z%20m%204%2C14%20h%205%20v%20-5%20h%20-2%20v%203%20h%20-3%20z%22%20fill%3D%22%236c6c6c%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2010%2C3%20h%205%20v%201%20h%20-5%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2015%2C6%20V%201%20h%20-5%20v%202%20h%203%20V%206%20z%20M%201%2C10%20v%205%20H%206%20V%2013%20H%203%20v%20-3%20z%22%20fill%3D%22%236c6c6c%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%201%2C1%20H%206%20V%202%20H%201%20z%20m%209%2C0%20h%205%20v%201%20h%20-5%20z%20m%203%2C9%20h%202%20v%201%20h%20-2%20z%20m%20-3%2C3%20h%203%20v%201%20h%20-3%20z%20m%20-7%2C0%20h%203%20v%201%20H%203%20z%20M%201%2C10%20h%202%20v%201%20H%201%20z%22%20fill%3D%22%234b4b4b%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%201%2C6%20H%203%20V%207%20H%201%20z%20m%2012%2C0%20h%202%20V%207%20H%2013%20z%20M%201%2C15%20h%205%20v%201%20H%201%20z%20m%209%2C0%20h%205%20v%201%20h%20-5%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
}
.dg-map-geoclicker__address + .dg-map-geoclicker__purpose,
.dg-map-geoclicker__purpose + .dg-map-geoclicker__address {
  margin-top: -6px;
}
.dg-control-round__icon_name_fullscreen:active:after,
.no-touch .dg-control-round__icon_name_fullscreen:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2012%2C9%20h%204%20v%207%20h%20-4%20z%20m%20-3%2C3%20h%205%20v%204%20H%209%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2010%2C15%20h%205%20v%20-5%20h%20-2%20v%203%20h%20-3%20z%22%20fill%3D%22%23282828%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%200%2C9%20h%204%20v%207%20H%200%20z%20m%202%2C3%20h%205%20v%204%20H%202%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%201%2C10%20v%205%20H%206%20V%2013%20H%203%20v%20-3%20z%22%20fill%3D%22%23282828%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C0%20H%204%20V%207%20H%200%20z%20m%209%2C0%20h%205%20V%204%20H%209%20z%20m%203%2C0%20h%204%20v%207%20h%20-4%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2015%2C6%20V%201%20h%20-5%20v%202%20h%203%20v%203%20z%22%20fill%3D%22%23282828%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%202%2C0%20H%207%20V%204%20H%202%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206%2C1%20H%201%20V%206%20H%203%20V%203%20h%203%20z%22%20fill%3D%22%23282828%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-building-callout__body {
  position: relative;
}
.dg-building-callout__list {
  margin-bottom: 8px;
  padding-left: 24px;
  color: #ffe6aa;
  list-style: none;
}
.dg-building-callout__list-item {
  position: relative;
  margin-bottom: 4px;
  font-size: 12px;
}
.dg-building-callout__list-item:before {
  position: absolute;
  top: 5px;
  left: -21px;
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%226%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%203%2C-0.002%20C%204.654%2C-0.002%205.994%2C1.342%205.994%2C3%205.994%2C4.658%204.655%2C6.002%203%2C6.002%201.345%2C6.002%200.005%2C4.658%200.005%2C3%200.005%2C1.342%201.346%2C-0.002%203%2C-0.002%20z%22%20fill%3D%22%23aaa%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 6px;
  height: 6px;
  background-size: 6px 6px;
}
.dg-map-geoclicker__address {
  margin-bottom: 10px;
  font-size: 16px;
}
.dg-map-geoclicker__address-header {
  position: relative;
  margin-bottom: 4px;
  padding-left: 24px;
}
.dg-map-geoclicker__address-header:first-child:before {
  position: absolute;
  top: 5px;
  left: 1px;
  content: "";
}
.dg-map-geoclicker__address-drilldown {
  position: relative;
  margin-bottom: 4px;
  padding-left: 24px;
  color: #aaa;
  font-size: 12px;
}
.dg-map-geoclicker__address-drilldown:first-child:before {
  position: absolute;
  top: 2px;
  left: 1px;
  content: "";
}
.dg-map-geoclicker__purpose {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  font-size: 16px;
}
.dg-map-geoclicker__purpose:before {
  position: absolute;
  top: 4px;
  left: 2px;
  content: "";
}
.dg-map-geoclicker__sight-description {
  overflow: hidden;
  padding: 0.5em 0 0 24px;
  max-height: 3.6em;
}
a.dg-map-geoclicker__show-more-sights-link {
  position: relative;
  margin-left: 24px;
  border-bottom: 1px dotted;
  text-decoration: none;
  color: #ffe6aa;
}
.dg-preloader_animation_true:after,
.dg-preloader_animation_true:before,
a.dg-map-geoclicker__show-more-sights-link:after {
  position: absolute;
  content: "";
}
a.dg-map-geoclicker__show-more-sights-link:after {
  top: 4px;
  margin-left: 5px;
  width: 6px;
  height: 10px;
  font-weight: 700;
}
.dg-map-geoclicker__clamped-line {
  display: block;
  white-space: nowrap;
}
.dg-map-geoclicker__clamped-line_last {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}
.dg-map-geoclicker__preloader-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.dg-map-geoclicker__address-drilldown:first-child:before,
.dg-map-geoclicker__address-header:first-child:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%204.958%2C11%20C%204.958%2C9.036%206.756%2C6.751%208.719%2C6.751%208.885%2C6.223%209%2C5.656%209%2C5.063%209%2C2.267%206.985%2C0%204.5%2C0%202.015%2C0%200%2C2.267%200%2C5.063%200%2C5.656%200.114%2C6.222%200.28%2C6.751%202.243%2C6.751%204.018%2C9.012%204.018%2C11%20h%200.94%20z%22%20fill%3D%22%23a0a0a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 9px;
  height: 11px;
  background-size: 9px 11px;
}
.dg-map-geoclicker__purpose:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%203.582%2C8%20c%200.211%2C0%200.798%2C0.035%201%2C0%20v%204%20l%20-2%2C-1%20V%208%20c%200.372%2C0.066%200.861%2C0%201%2C0%20z%20M%200.44%2C5.384%20C%200.163%2C4.866%200%2C4.276%200%2C3.646%200%2C1.633%201.604%2C0.002%203.582%2C0.002%20c%201.978%2C0%203.582%2C1.631%203.582%2C3.644%200%2C0.647%20-0.169%2C1.254%20-0.461%2C1.781%20L%206.641%2C5.495%206.618%2C5.567%20C%205.954%2C6.549%204.844%2C7.192%203.584%2C7.192%202.25%2C7.192%201.084%2C6.467%200.44%2C5.384%20z%20M%202.613%2C1.276%20c%20-0.549%2C0%20-0.995%2C0.453%20-0.995%2C1.013%200%2C0.559%200.446%2C1.013%200.995%2C1.013%200.551%2C0%200.996%2C-0.454%200.996%2C-1.013%200%2C-0.56%20-0.445%2C-1.013%20-0.996%2C-1.013%20z%22%20fill%3D%22%23a0a0a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
}
.dg-map-geoclicker__purpose_type_street:before {
  top: 4px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%208.8%2C0%20H%203.199%20L%200%2C12%20H%2012%20L%208.8%2C0%20z%20M%207%2C12%20H%205%20V%209%20h%202%20v%203%20z%20M%207%2C8%20H%205%20V%206%20H%207%20V%208%20z%20M%207%2C5%20H%205%20V%203%20H%207%20V%205%20z%20M%207%2C2%20H%205%20V%200%20h%202%20v%202%20z%22%20fill%3D%22%23a0a0a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
}
.dg-preloader_animation_true:after,
.dg-preloader_animation_true:before {
  top: 50%;
  left: 50%;
  outline: rgba(0, 0, 0, 0) solid 1px;
  image-rendering: optimizeQuality;
}
.dg-map-geoclicker__purpose_type_sight:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%207%2C0%20H%202.547%20C%200.547%2C0%200%2C0.828%200%2C2.5%200%2C3.734%200.5%2C5%202%2C5%203.359%2C5%204%2C3.844%204%2C3%204%2C2.281%202.859%2C2%202%2C2%202%2C2.766%202.234%2C3%203%2C3%203%2C3.69%202.48%2C4%202%2C4%201.234%2C4%201%2C3.329%201%2C2.5%201%2C1.693%201.375%2C1%202.5%2C1%204.391%2C1%205%2C1.656%205%2C3%205%2C4.6%204.338%2C5.119%203%2C6%20v%204%20H%202%20v%202%20H%208%20V%201%20L%207%2C0%20z%20M%204%2C10%20V%206%20l%201%2C1%20v%203%20H%204%20z%20m%202%2C0%20V%206%20l%201%2C1%20v%203%20H%206%20z%22%20fill%3D%22%23aaa%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
}
.dg-map-geoclicker__purpose_type_settlement:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%209%2C9%20C%208.235%2C9%207.762%2C9.522%207.259%2C10.022%207.795%2C10.38%208.051%2C11.05%207.879%2C12%20H%2012%20C%2012%2C10.46%2010.535%2C9%209%2C9%20z%20m%20-2.868%2C1.248%20c%20-0.965%2C0%20-1.747%2C0.784%20-1.747%2C1.751%20h%203.494%20c%200%2C-0.967%20-0.782%2C-1.751%20-1.747%2C-1.751%20z%20M%2010%2C1%20V%200%20H%207%20V%201%20H%205%20V%206%20L%206%2C7%20V%202%20H%207%20V%207%20L%208%2C8%20V%202%20h%201%20v%206%20h%201%20V%202%20h%201%20v%207%20l%201%2C0.607%20V%201%20H%2010%20z%20M%206.66%2C9.539%206.721%2C9.479%20C%206.903%2C9.297%207.104%2C9.14%207.314%2C9.004%20V%208.414%20L%206.131%2C7.187%203%2C8%20v%204%20H%203.62%20C%203.62%2C10.612%204.747%2C9.483%206.132%2C9.483%206.312%2C9.482%206.49%2C9.502%206.66%2C9.539%20z%20M%202%2C12%20z%20M%201%2C2%200%2C5%20v%207%20H%202%20V%205%20L%201%2C2%20z%20M%201.111%2C6.955%20C%200.804%2C6.955%200.556%2C6.706%200.556%2C6.4%20c%200%2C-0.307%200.248%2C-0.555%200.555%2C-0.555%200.307%2C0%200.554%2C0.248%200.554%2C0.555%200%2C0.306%20-0.247%2C0.555%20-0.554%2C0.555%20z%22%20fill%3D%22%23a0a0a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
}
.no-touch a.dg-map-geoclicker__show-more-sights-link:hover {
  color: #9cd;
}
a.dg-map-geoclicker__show-more-sights-link:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2210%22%20viewBox%3D%220%200%206%2010%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206%2C5%20V%205.4%20L%201.4%2C10%20H%200%20L%200%2C8.6%203.6%2C5%200%2C1.4%200%2C0%201.4%2C0%206%2C4.6%20V%205%20l%200%2C0%200%2C0%200%2C0%200%2C0%200%2C0%20z%22%20fill%3D%22%23aaa%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-map-geoclicker__drilldown {
  margin-bottom: 10px;
  color: #aaa;
}
.dg-preloader {
  position: relative;
  margin: 0 auto;
  width: 200px;
  height: 44px;
  vertical-align: middle;
}
.dg-preloader_animation_false {
  background-repeat: no-repeat;
  background-image: url(https://maps.api.2gis.ru/2.0/img/DGPreloader__preloader.gif);
  background-size: 100px 26px;
  background-attachment: scroll;
  background-position: 50% 50%;
}
.dg-preloader_animation_true:before {
  margin: -22px 0 0 -22px;
  width: 44px;
  height: 44px;
  -webkit-animation: dg-preloader__outer 5s linear infinite;
  animation: dg-preloader__outer 5s linear infinite;
}
.dg-preloader_animation_true.dg-preloader_size_small:before {
  margin: -12px 0 0 -12px;
  width: 24px;
  height: 24px;
}
.dg-preloader_animation_true.dg-preloader_scheme_regular:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2244%22%20height%3D%2244%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2035.68%2C10.32%20C%2038.368%2C13.465%2040%2C17.539%2040%2C22%2040%2C31.941%2031.941%2C40%2022%2C40%2012.059%2C40%204%2C31.941%204%2C22%204%2C17.539%205.632%2C13.465%208.32%2C10.32%20L%205.48%2C7.48%20C%202.07%2C11.354%200%2C16.434%200%2C22%200%2C34.15%209.85%2C44%2022%2C44%2034.15%2C44%2044%2C34.15%2044%2C22%2044%2C16.434%2041.93%2C11.354%2038.52%2C7.48%20l%20-2.84%2C2.84%20z%22%20fill%3D%22%230da5d5%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%209.271%2C9.272%20C%2012.529%2C6.015%2017.029%2C4%2022%2C4%2026.971%2C4%2031.471%2C6.015%2034.729%2C9.272%20L%2037.557%2C6.444%20C%2033.575%2C2.462%2028.075%2C0%2022%2C0%2015.925%2C0%2010.425%2C2.462%206.443%2C6.444%20l%202.828%2C2.828%20z%22%20fill%3D%22%23a6cd2a%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 44px 44px;
}
.dg-preloader_animation_true.dg-preloader_scheme_regular.dg-preloader_size_small:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2018.564%2C7.435%20C%2019.467%2C8.73%2020%2C10.302%2020%2C12%2020%2C16.418%2016.418%2C20%2012%2C20%207.582%2C20%204%2C16.418%204%2C12%204%2C10.302%204.533%2C8.73%205.436%2C7.435%20L%202.581%2C4.581%20C%200.969%2C6.623%200%2C9.195%200%2C12%200%2C18.627%205.373%2C24%2012%2C24%2018.627%2C24%2024%2C18.627%2024%2C12%2024%2C9.195%2023.031%2C6.623%2021.419%2C4.581%20l%20-2.855%2C2.854%20z%22%20fill%3D%22%230da5d5%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2012%2C0%20C%208.686%2C0%205.686%2C1.343%203.516%2C3.515%20L%206.343%2C6.343%20C%207.791%2C4.895%209.791%2C4%2012%2C4%20c%202.209%2C0%204.209%2C0.895%205.657%2C2.343%20L%2020.484%2C3.515%20C%2018.314%2C1.343%2015.314%2C0%2012%2C0%20z%22%20fill%3D%22%23a6cd2a%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 24px 24px;
}
.dg-preloader_animation_true:after {
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  -webkit-animation: dg-preloader__inner 4s linear infinite;
  animation: dg-preloader__inner 4s linear infinite;
}
.dg-preloader_animation_true.dg-preloader_size_small:after {
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
}
.dg-preloader_animation_true.dg-preloader_scheme_regular:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206.581%2C23.419%20C%204.969%2C21.377%204%2C18.804%204%2C16%204%2C9.373%209.373%2C4%2016%2C4%20c%206.627%2C0%2012%2C5.373%2012%2C12%200%2C2.804%20-0.969%2C5.377%20-2.581%2C7.419%20l%202.847%2C2.847%20C%2030.594%2C23.487%2032%2C19.909%2032%2C16%2032%2C7.163%2024.837%2C0%2016%2C0%207.163%2C0%200%2C7.163%200%2C16%20c%200%2C3.909%201.406%2C7.487%203.734%2C10.266%20l%202.847%2C-2.847%20z%22%20fill%3D%22%23a6cd2a%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2027.314%2C27.314%2024.486%2C24.486%20C%2022.314%2C26.657%2019.314%2C28%2016%2C28%2012.686%2C28%209.686%2C26.657%207.516%2C24.485%20L%204.688%2C27.313%20C%207.582%2C30.209%2011.582%2C32%2016%2C32%20c%204.418%2C0%208.418%2C-1.791%2011.314%2C-4.686%20z%22%20fill%3D%22%230da5d5%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 32px 32px;
}
.dg-preloader_animation_true.dg-preloader_scheme_regular.dg-preloader_size_small:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%203.141%2C6.86%20C%203.059%2C6.586%203%2C6.301%203%2C6%203%2C4.343%204.343%2C3%206%2C3%207.657%2C3%209%2C4.343%209%2C6%209%2C6.301%208.941%2C6.586%208.859%2C6.86%20l%202.26%2C2.259%20C%2011.674%2C8.209%2012%2C7.144%2012%2C6%2012%2C2.686%209.314%2C0%206%2C0%202.686%2C0%200%2C2.686%200%2C6%200%2C7.144%200.326%2C8.209%200.881%2C9.119%20L%203.141%2C6.86%20z%22%20fill%3D%22%23a6cd2a%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%206%2C12%20c%201.657%2C0%203.157%2C-0.672%204.243%2C-1.757%20L%208.122%2C8.122%20C%207.578%2C8.664%206.828%2C9%206%2C9%205.172%2C9%204.422%2C8.664%203.879%2C8.121%20L%201.758%2C10.242%20C%202.843%2C11.328%204.343%2C12%206%2C12%20z%22%20fill%3D%22%230da5d5%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 12px 12px;
}
@-webkit-keyframes dg-preloader__outer {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes dg-preloader__outer {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dg-preloader__inner {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes dg-preloader__inner {
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.dg-popup__footer-buttons {
  display: table;
  margin-top: 10px;
  width: 100%;
}
.dg-popup__footer-button-wrapper {
  display: table-cell;
}
.dg-popup__footer-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin-left: 5%;
  width: 95%;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  font:
    12px/24px Arial,
    sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.dg-popup__footer-button-wrapper:first-child .dg-popup__footer-button {
  margin: 0;
  width: 100%;
}
.dg-popup__footer-icon-button:before {
  display: inline-block;
  margin: -2px 5px 0 0;
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
}
.dg-popup__button_name_back:before,
.dg-popup__button_name_firm-card-back:before,
.dg-popup__button_name_firm-list-back:before {
  width: 9px;
  height: 6px;
}
.dg-popup__show-less-house-link {
  position: relative;
  top: 6px;
  margin: 0 15px 10px;
  color: #0070c0;
  text-decoration: none;
  font-size: 12px;
  line-height: 24px;
}
.dg-popup__header-links {
  margin: 8px 18px 0 0;
}
.dg-popup__header-title_for_firmcard {
  position: relative;
  overflow: hidden;
  max-height: 3.4em;
}
.dg-popup__header-teaser {
  display: -webkit-box;
  height: 3.3em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dg-popup__header-title {
  display: block;
  white-space: normal;
  font:
    22px/24px "Arial narrow",
    Arial,
    sans-serif;
}
.dg-popup__header-link,
.dg-popup__rating {
  display: inline-block;
  vertical-align: middle;
}
.dg-firm-card__link,
.dg-popup__header-link,
.dg-schedule__string-time,
.dg-schedule__table-cell-group,
.dg-schedule__today-inner {
  white-space: nowrap;
}
.dg-popup__header-link {
  margin-left: 2.6em;
}
.dg-popup__header-link:first-child {
  margin-left: 1.2em;
}
.dg-popup__rating {
  margin: 0 0.4em 3px 0;
  width: 70px;
  height: 14px;
}
.dg-popup__rating-stars {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206.999%2C0%208.748%2C4.989%2013.997%2C4.991%209.83%2C8.708%2011.324%2C14.002%206.999%2C10.871%202.674%2C14.002%204.168%2C8.708%200%2C4.991%205.249%2C4.989%206.999%2C0%20z%22%20fill%3D%22%23ffc84b%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  float: left;
  height: 100%;
}
.dg-popup__link {
  position: relative;
  background-position: center bottom;
  background-size: 10px 1px;
  background-repeat: repeat-x;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.dg-popup__link_type_booklet:before,
.dg-popup__link_type_photos:before {
  position: absolute;
  top: 2px;
  left: -18px;
  display: inherit;
  content: "";
  width: 12px;
  height: 10px;
}
.dg-popup__link_type_flamp_reviews {
  margin-left: 0.1em;
}
.dg-popup__link_type_booklet:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2210%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%200%2C8%203%2C2%20V%202%20L%200%2C0%20V%208%20z%20M%204%2C10%208%2C8%20V%200%20L%204%2C2%20v%208%20z%20M%209%2C0%20v%208%20l%203%2C2%20V%202%20L%209%2C0%20z%22%20fill%3D%22%237dc814%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 12px 10px;
}
a.dg-popup__link {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 230, 170, 0.3)),
    to(rgba(255, 230, 170, 0.3))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(255, 230, 170, 0.3),
    rgba(255, 230, 170, 0.3) 100%
  );
  background-image: linear-gradient(
    to right,
    rgba(255, 230, 170, 0.3),
    rgba(255, 230, 170, 0.3) 100%
  );
  color: #ffe6aa;
}
.no-touch .dg-firm-card__link a:hover,
.no-touch a.dg-popup__link:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(153, 204, 221, 0.3)),
    to(rgba(153, 204, 221, 0.3))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(153, 204, 221, 0.3),
    rgba(153, 204, 221, 0.3) 100%
  );
}
.no-touch a.dg-popup__link:hover {
  background-image: linear-gradient(
    to right,
    rgba(153, 204, 221, 0.3),
    rgba(153, 204, 221, 0.3) 100%
  );
  color: #9cd;
}
.dg-popup__header-title {
  color: #ffc84b;
}
.dg-popup__footer-button-wrapper .dg-popup__footer-button,
.dg-popup__footer-button-wrapper .dg-popup__footer-button:hover {
  color: #e6e6e6;
}
.dg-popup__footer-button {
  background: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
}
.no-touch .dg-popup__footer-button:hover {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #222;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.dg-popup__rating {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%207.002%2C0%208.751%2C4.989%2014%2C4.991%209.833%2C8.708%2011.327%2C14.002%207.002%2C10.871%202.677%2C14.002%204.171%2C8.708%200.003%2C4.991%205.252%2C4.989%207.002%2C0%20z%22%20fill%3D%22%23aaa%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-popup__link_type_photos:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2210%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2011%2C1%20H%2010%20L%209%2C0%20H%206%20L%205%2C1%20H%201%20L%200%2C2%20v%207%20l%201%2C1%20H%2011%20L%2012%2C9%20V%202%20L%2011%2C1%20z%20M%203%2C4%20H%202%20V%203%20h%201%20v%201%20z%20m%204.518%2C3.992%20c%20-1.381%2C0%20-2.5%2C-1.119%20-2.5%2C-2.5%200%2C-1.38%201.119%2C-2.5%202.5%2C-2.5%201.38%2C0%202.5%2C1.12%202.5%2C2.5%200%2C1.381%20-1.121%2C2.5%20-2.5%2C2.5%20z%22%20fill%3D%22%2379b0bc%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: 12px 10px;
}
.dg-popup__button_name_back:before,
.dg-popup__button_name_firm-card-back:before,
.dg-popup__button_name_firm-list-back:before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%226%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C3%204%2C6%20V%204%20H%209%20V%202%20H%204%20V%200%20z%22%20fill%3D%22%239f9f9f%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
}
.dg-popup__button_name_back:before {
  width: 9px;
  height: 6px;
  background-size: 9px 6px;
}
.dg-popup__button_name_goto:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%227%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2016.5%2C0%20C%2014.738%2C0%2013.295%2C1.306%2013.051%2C3%20H%204.949%20C%204.718%2C1.858%203.71%2C1%202.5%2C1%201.119%2C1%200%2C2.119%200%2C3.5%200%2C4.881%201.119%2C6%202.5%2C6%203.71%2C6%204.718%2C5.142%204.949%2C4%20h%208.102%20C%2013.295%2C5.693%2014.739%2C7%2016.5%2C7%2018.433%2C7%2020%2C5.433%2020%2C3.5%2020%2C1.566%2018.433%2C0%2016.5%2C0%20z%22%20fill%3D%22%239f9f9f%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 20px;
  height: 7px;
  background-size: 20px 7px;
}
.dg-popup__button_name_show-entrance:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205%2C9%209%2C6%205%2C3%20V%205%20H%200%20V%207%20H%205%20V%209%20z%20M%209.6%2C0%20H%202.4%20C%201.074%2C0%200%2C1.074%200%2C2.4%20V%204%20H%202%20V%203.6%20C%202%2C2.716%202.716%2C2%203.6%2C2%20H%208.4%20C%209.283%2C2%2010%2C2.716%2010%2C3.6%20V%208.4%20C%2010%2C9.284%209.283%2C10%208.4%2C10%20H%203.6%20C%202.716%2C10%202%2C9.284%202%2C8.4%20V%208%20H%200%20V%209.6%20C%200%2C10.925%201.074%2C12%202.4%2C12%20H%209.6%20C%2010.926%2C12%2012%2C10.925%2012%2C9.6%20V%202.4%20C%2012%2C1.074%2010.926%2C0%209.6%2C0%20z%22%20fill%3D%22%23a0a0a0%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-firm-card__icon {
  position: relative;
  padding-left: 24px;
}
.dg-firm-card__address:before,
.dg-firm-card__icon:before {
  position: absolute;
  content: "";
}
.dg-firm-card__icon:before {
  top: 0;
  left: 0;
  margin: auto;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.dg-firm-card__link {
  overflow: hidden;
  margin-bottom: 4px;
  text-overflow: ellipsis;
  word-wrap: normal;
  line-height: 16px;
}
.dg-firm-card__link a {
  background-position: center bottom;
  background-size: 10px 1px;
  background-repeat: repeat-x;
  text-decoration: none;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 230, 170, 0.3)),
    to(rgba(255, 230, 170, 0.3))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(255, 230, 170, 0.3),
    rgba(255, 230, 170, 0.3) 100%
  );
  background-image: linear-gradient(
    to right,
    rgba(255, 230, 170, 0.3),
    rgba(255, 230, 170, 0.3) 100%
  );
  color: #ffe6aa;
}
.dg-firm-card__address {
  margin-bottom: 10px;
  font-size: 16px;
}
.dg-firm-card__address:before {
  top: 5px;
  left: 1px;
}
.dg-firm-card__comment {
  position: relative;
  margin-left: 5px;
  font-size: 12px;
}
.dg-firm-card__phone {
  overflow: hidden;
  margin-bottom: 4px;
  text-overflow: ellipsis;
  line-height: 16px;
}
.dg-firm-card__phone:before {
  top: 3px;
  left: 1px;
}
.dg-firm-card__site:before {
  top: 3px;
}
.dg-firm-card__rubrics {
  overflow: hidden;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 16px;
}
.dg-firm-card__rubrics-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dg-firm-card__rubrics-list-item {
  display: inline;
  cursor: default;
}
.dg-firm-card__rubrics-list-item:before {
  display: inline-block;
  margin: 0 4px;
  content: "•";
}
.dg-firm-card__rubrics-list-item:first-child:before {
  margin: 0;
  content: "";
}
.dg-firm-card__aa {
  margin: 0 0 4px;
  padding: 0 0 0 24px;
  font-size: 12px;
}
.dg-firm-card__aa-list {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 16px;
}
.dg-firm-card__aa-list-item {
  display: inline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  cursor: default;
}
.dg-firm-card__aa-list-item:before {
  display: inline-block;
  margin: 0 4px;
  content: "•";
}
.dg-control-round__icon_name_ruler:after,
.dg-control-round__icon_name_traffic:after,
.dg-firm-card__aa-list-item:first-child:before,
.dg-schedule__today:after,
.dg-schedule__today:before {
  content: "";
}
.dg-firm-card__aa-list-item:first-child:before {
  margin: 0;
}
.dg-firm-card__aa-list-additional {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 16px;
}
.dg-firm-card__schedule {
  margin-bottom: 10px;
}
.no-touch .dg-firm-card__link a:hover {
  background-image: linear-gradient(
    to right,
    rgba(153, 204, 221, 0.3),
    rgba(153, 204, 221, 0.3) 100%
  );
  color: #9cd;
}
.dg-firm-card__comment,
.dg-firm-card__rubrics {
  color: #aaa;
}
.dg-firm-card__rubrics-list-item:after {
  color: #6e6964;
}
.dg-firm-card__aa-list-item:after {
  color: #e6e6e6;
}
.dg-firm-card__address:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%204.958%2C11%20C%204.958%2C9.036%206.756%2C6.751%208.719%2C6.751%208.885%2C6.223%209%2C5.656%209%2C5.063%209%2C2.267%206.985%2C0%204.5%2C0%202.015%2C0%200%2C2.267%200%2C5.063%200%2C5.656%200.114%2C6.222%200.28%2C6.751%202.243%2C6.751%204.018%2C9.012%204.018%2C11%20h%200.94%20z%22%20fill%3D%22%23a0a0a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 9px;
  height: 11px;
  background-size: 9px 11px;
}
.dg-firm-card__phone:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%209.181%2C9.05%20C%208.673%2C9.556%208.047%2C9.873%207.391%2C10%206.156%2C9.841%205.008%2C9.417%203.998%2C8.788%20L%201.293%2C6.092%20C%200.639%2C5.053%200.203%2C3.865%200.052%2C2.589%200.19%2C1.964%200.494%2C1.368%200.983%2C0.882%20L%201.803%2C0.065%203.987%2C2.241%20V%202.79%20L%203.441%2C3.332%20c%20-0.452%2C0.451%20-0.453%2C1.183%200%2C1.634%20L%205.082%2C6.6%20c%200.452%2C0.451%201.187%2C0.451%201.639%2C0%20L%207.244%2C6.079%20H%207.838%20L%2010%2C8.233%209.181%2C9.05%20z%22%20fill%3D%22%23a0a0a0%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
}
.dg-firm-card__site:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205.5%2C11%20C%202.463%2C11%200%2C8.538%200%2C5.5%200%2C2.462%202.463%2C0%205.5%2C0%208.537%2C0%2011%2C2.462%2011%2C5.5%2011%2C8.538%208.537%2C11%205.5%2C11%20z%20m%200%2C-9%20C%203.566%2C2%202%2C3.567%202%2C5.5%202%2C7.433%203.566%2C9%205.5%2C9%205.655%2C9%205.804%2C8.974%205.954%2C8.954%20L%203%2C6%20V%205%20L%205.571%2C3.286%205.984%2C2.049%20C%205.824%2C2.026%205.666%2C2%205.5%2C2%20z%20M%208.949%2C5%20H%207.375%20C%207.021%2C5.505%206.545%2C6.082%206%2C6.497%20V%208.95%20C%207.693%2C8.705%209%2C7.262%209%2C5.5%209%2C5.329%208.974%2C5.165%208.949%2C5%20z%22%20fill%3D%22%23a0a0a0%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 11px;
  height: 11px;
  background-size: 11px 11px;
}
.dg-firm-card__email:before {
  top: 5px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%227%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2011%2C1.555%20v%203.89%20C%2011%2C6.303%2010.242%2C7%209.309%2C7%20H%201.692%20C%200.758%2C7%200%2C6.303%200%2C5.444%20V%201.554%20L%205.5%2C4.826%2011%2C1.555%20z%20M%200.191%2C0%20H%2010.808%20L%205.5%2C3.111%200.191%2C0%20z%22%20fill%3D%22%23aaa%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 11px;
  height: 7px;
  background-size: 11px 7px;
}
.dg-schedule__today {
  position: relative;
  display: inline-block;
  margin-left: 24px;
  max-width: 84%;
  background-position: center bottom;
  background-size: 2px 1px;
  background-repeat: repeat-x;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
}
.dg-schedule__today:before {
  position: absolute;
  top: 3px;
  left: -24px;
}
.dg-schedule__today-inner {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}
.dg-schedule_works-everyday_true .dg-schedule__today {
  background-image: none;
  cursor: default;
}
.dg-schedule_works-everyday_true .dg-schedule__today:after {
  background-image: none;
}
.dg-schedule_open_true .dg-schedule__today:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205.5%2C11%20C%202.463%2C11%200%2C8.537%200%2C5.5%200%2C2.462%202.463%2C0%205.5%2C0%208.537%2C0%2011%2C2.462%2011%2C5.5%2011%2C8.537%208.537%2C11%205.5%2C11%20z%20M%206%2C5.293%20V%202%20H%205%20V%205.707%20L%207.646%2C8.353%208.353%2C7.646%206%2C5.293%20z%22%20fill%3D%22%2370bf00%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 11px;
  height: 11px;
  background-size: 11px 11px;
}
.dg-schedule__now {
  margin: 2px 7px 0 36px;
  font-size: 12px;
}
.dg-schedule__string {
  padding: 3px 16px 3px 24px;
  font-size: 14px;
}
.dg-schedule__table {
  display: none;
  text-align: center;
  font-size: 0;
}
.dg-schedule__tc {
  display: inline-block;
  padding: 2px 0 15px;
  width: 44px;
  vertical-align: top;
  white-space: normal;
  font-size: 14px;
}
.dg-schedule__tc_pre {
  width: 19px;
}
.dg-schedule__day-name {
  margin: 0;
  color: #8c8782;
  text-transform: capitalize;
}
.dg-schedule__td {
  margin: 10px 0 0;
}
.dg-schedule_state_expanded .dg-schedule__popup {
  display: block;
  visibility: visible;
  max-height: 1000px;
  opacity: 1;
}
.dg-schedule__table-clock {
  margin: 13px 0 0;
}
.dg-schedule__today {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(230, 230, 230, 0.55)),
    color-stop(50%, rgba(230, 230, 230, 0.55)),
    color-stop(51%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(230, 230, 230, 0.55),
    rgba(230, 230, 230, 0.55) 50%,
    rgba(0, 0, 0, 0) 51%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: linear-gradient(
    to right,
    rgba(230, 230, 230, 0.55),
    rgba(230, 230, 230, 0.55) 50%,
    rgba(0, 0, 0, 0) 51%,
    rgba(0, 0, 0, 0) 100%
  );
}
.dg-schedule__now {
  color: #aaa;
}
.dg-schedule__string-time,
.dg-schedule__td {
  color: #e6e6e6;
}
.dg-schedule__tc_active_true {
  background: rgba(255, 255, 255, 0.1);
}
.dg-schedule__table-clock {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205.5%2C11%20C%202.463%2C11%200%2C8.537%200%2C5.5%200%2C2.462%202.463%2C0%205.5%2C0%208.537%2C0%2011%2C2.462%2011%2C5.5%2011%2C8.537%208.537%2C11%205.5%2C11%20z%20M%206%2C5.293%20V%202%20H%205%20V%205.707%20L%207.646%2C8.353%208.353%2C7.646%206%2C5.293%20z%22%20fill%3D%22%23a0a0a0%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 11px;
  height: 11px;
  background-size: 11px 11px;
}
.dg-schedule__table-lunch {
  margin: 31px 0 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%204%2C7%20H%208%20C%208.58%2C7%209.461%2C6.084%209.826%2C4.977%20V%205%20C%2011.047%2C5%2012%2C3.453%2012%2C2.031%2012%2C1.453%2011.531%2C1%2011.016%2C1%20H%2010%20C%2010%2C0.188%209.781%2C0%209%2C0%20H%203%20C%202.297%2C0%202%2C0.188%202%2C1%20v%203%20c%200%2C1.49%201.137%2C3%202%2C3%20z%20m%206%2C-5%20h%200.5%20C%2010.875%2C2%2011%2C2.219%2011%2C2.5%2011%2C3.625%2010.562%2C4%2010%2C4%20V%202%20z%20M%200%2C9%20c%200%2C0.448%201.791%2C1%203%2C1%200%2C0.405%200.646%2C1%201%2C1%20h%204%20c%200.354%2C0%201%2C-0.595%201%2C-1%201.208%2C0%203%2C-0.552%203%2C-1%20V%208%20H%200%20v%201%20z%22%20fill%3D%22%23aaa5a0%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 12px;
  height: 11px;
  background-size: 12px 11px;
}
.dg-schedule_open_false .dg-schedule__today:before {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%2211%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205.5%2C11%20C%202.463%2C11%200%2C8.537%200%2C5.5%200%2C2.462%202.463%2C0%205.5%2C0%208.537%2C0%2011%2C2.462%2011%2C5.5%2011%2C8.537%208.537%2C11%205.5%2C11%20z%20M%206%2C5.293%20V%202%20H%205%20V%205.707%20L%207.646%2C8.353%208.353%2C7.646%206%2C5.293%20z%22%20fill%3D%22%23a0a0a0%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 11px;
  height: 11px;
  background-size: 11px 11px;
}
.dg-schedule__today:after,
.dg-schedule__today_shown_true:after {
  background-repeat: no-repeat;
  height: 6px;
  background-size: 10px 6px;
  width: 10px;
}
.dg-schedule__today:after {
  position: absolute;
  right: -15px;
  bottom: 4px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%226%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205%2C6%20H%204.586%20L%200%2C1.414%20V%200%20H%201.414%20L%205%2C3.586%208.586%2C0%20H%2010%20V%201.414%20L%205.414%2C6%20H%205%20z%22%20fill%3D%22%23a5a09c%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-schedule__today_shown_true:after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%226%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%205%2C0%20H%205.414%20L%2010%2C4.586%20V%206%20H%208.586%20L%205%2C2.414%201.414%2C6%20H%200%20V%204.586%20L%204.586%2C0%20H%205%20z%22%20fill%3D%22%23a5a09c%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-link,
.dg-link:hover {
  background-position: 0 95%;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
.dg-link_type_local {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#9cd),
    color-stop(50%, #9cd),
    color-stop(50%, transparent)
  );
  background: -webkit-linear-gradient(left, #9cd, #9cd 50%, transparent 50%);
  background: linear-gradient(to right, #9cd, #9cd 50%, transparent 50%);
}
.no-touch .dg-link_type_local:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#9bc),
    color-stop(50%, #9bc),
    color-stop(50%, transparent)
  );
  background: -webkit-linear-gradient(left, #9bc, #9bc 50%, transparent 50%);
  background: linear-gradient(to right, #9bc, #9bc 50%, transparent 50%);
}
.dg-link.dg-link_type_local,
.dg-link.dg-link_type_local:hover {
  background-size: 6px 1px;
}
.dg-control-round__icon_name_traffic:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2214%22%20viewBox%3D%220%200%2020%2014%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2018%2C5%20C%2018%2C4%2017%2C1%2015%2C1%20H%2012%2010%20C%208%2C1%207%2C4%207%2C5%20H%205%20v%202%20h%201%20v%204%20c%200%2C0.6%200%2C1%201%2C1%20v%202%20h%202%20v%20-2%20h%207%20v%202%20h%202%20v%20-2%20c%201%2C0%201%2C-0.4%201%2C-1%20V%207%20h%201%20V%205%20H%2018%20z%20M%2010%2C3%20h%202%203%20c%202%2C0%202%2C1%202%2C3%20H%208%20C%208%2C4%208%2C3%2010%2C3%20z%20M%209%2C10%20H%208%20C%207.4%2C10%207%2C9.6%207%2C9%207%2C8.4%207.4%2C8%208%2C8%20h%201%20c%200.6%2C0%201%2C0.4%201%2C1%200%2C0.6%20-0.4%2C1%20-1%2C1%20z%20m%208%2C0%20H%2016%20C%2015.4%2C10%2015%2C9.6%2015%2C9%2015%2C8.4%2015.4%2C8%2016%2C8%20h%201%20c%200.6%2C0%201%2C0.4%201%2C1%200%2C0.6%20-0.4%2C1%20-1%2C1%20z%20M%204%2C4%20H%206%20V%203%20H%204%20C%201%2C3%201%2C6%201%2C7%20H%200%20v%201%20h%201%20v%204%20H%203%20V%2011%20H%205%20V%207%20H%202%20C%202%2C6%202%2C4%204%2C4%20z%20M%203%2C9%204%2C10%20H%202%20V%209%20h%201%20z%22%20fill%3D%22%23616161%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23fff%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22m%2016%2C8%20h%201%20c%200.4%2C0%200.7%2C0.2%200.8%2C0.5%20C%2017.9%2C8.4%2018%2C8.2%2018%2C8%2018%2C7.4%2017.6%2C7%2017%2C7%20h%20-1%20c%20-0.6%2C0%20-1%2C0.4%20-1%2C1%200%2C0.2%200.1%2C0.4%200.2%2C0.5%20C%2015.3%2C8.2%2015.6%2C8%2016%2C8%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%208%2C8%20H%209%20C%209.4%2C8%209.7%2C8.2%209.8%2C8.5%209.9%2C8.4%2010%2C8.2%2010%2C8%2010%2C7.4%209.6%2C7%209%2C7%20H%208%20C%207.4%2C7%207%2C7.4%207%2C8%207%2C8.2%207.1%2C8.4%207.2%2C8.5%207.3%2C8.2%207.6%2C8%208%2C8%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%206%2C3%20H%204%20C%204%2C3%204%2C3%204%2C3%202%2C3%202%2C5%202%2C6%20H%202%20C%202.1%2C5%202.5%2C4%204%2C4%20H%205%206%20V%203%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0%207H1V8H0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2015%2C2%20H%2012%2010%20C%208%2C2%208%2C3%208%2C5%20H%208%20C%208%2C3.7%208.3%2C3%2010%2C3%20h%202%203%20c%201.7%2C0%201.9%2C0.7%202%2C2%20h%200%20C%2017%2C3%2017%2C2%2015%2C2%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3%209L4%209%203%208%202%208%202%209%202%209%202%209%203%209z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%207%2C11%20C%206%2C11%206%2C10.6%206%2C10%20v%201%20c%200%2C0.6%200%2C1%201%2C1%20v%20-1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22m%2018%2C11%20v%201%20c%201%2C0%201%2C-0.4%201%2C-1%20v%20-1%20c%200%2C0.6%200%2C1%20-1%2C1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19%206H20V7H19z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3%2011L1%2011%201%2012%203%2012%203%2011%205%2011%205%207%205%207%205%2010%203%2010z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M16%2013H18V14H16z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%206H6V7H5z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9%2013L7%2013%207%2014%209%2014%209%2012%2016%2012%2016%2011%209%2011z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23444%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%202%2C6%20C%202%2C6.4%202%2C6.7%202%2C7%20H%205%20V%206%20H%202%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2%209L2%2010%204%2010%203%209z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%204%2C3%20H%206%20V%202%20H%204%20C%201%2C2%201%2C5%201%2C6%20H%200%20V%207%20H%201%20C%201%2C6%201%2C3%204%2C3%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2018%2C4%20C%2018%2C3%2017%2C0%2015%2C0%20H%2012%2010%20C%208%2C0%207%2C3%207%2C4%20H%206%205%20V%205%20H%207%20C%207%2C4%208%2C1%2010%2C1%20h%202%203%20c%202%2C0%203%2C3%203%2C4%20h%202%20V%204%20h%20-2%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%208%2C10%20H%209%20C%209.6%2C10%2010%2C9.6%2010%2C9%2010%2C8.8%209.9%2C8.6%209.8%2C8.5%209.7%2C8.8%209.4%2C9%209%2C9%20H%208%20C%207.6%2C9%207.3%2C8.8%207.2%2C8.5%207.1%2C8.6%207%2C8.8%207%2C9%20c%200%2C0.6%200.4%2C1%201%2C1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017%2C6%20C%2017%2C5.6%2017%2C5.3%2017%2C5%20H%208%20c%200%2C0.3%200%2C0.6%200%2C1%20h%209%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017.8%2C8.5%20C%2017.7%2C8.8%2017.4%2C9%2017%2C9%20H%2016%20C%2015.6%2C9%2015.3%2C8.8%2015.2%2C8.5%2015.1%2C8.6%2015%2C8.8%2015%2C9%20c%200%2C0.6%200.4%2C1%201%2C1%20h%201%20c%200.6%2C0%201%2C-0.4%201%2C-1%200%2C-0.2%20-0.1%2C-0.4%20-0.2%2C-0.5%20z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  width: 20px;
  height: 14px;
  background-size: 20px 14px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.dg-control-round__icon_name_traffic:active:after,
.no-touch .dg-control-round__icon_name_traffic:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2214%22%20viewBox%3D%220%200%2020%2014%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%2018%2C5%20C%2018%2C4%2017%2C1%2015%2C1%20H%2012%2010%20C%208%2C1%207%2C4%207%2C5%20H%205%20v%202%20h%201%20v%204%20c%200%2C0.6%200%2C1%201%2C1%20v%202%20h%202%20v%20-2%20h%207%20v%202%20h%202%20v%20-2%20c%201%2C0%201%2C-0.4%201%2C-1%20V%207%20h%201%20V%205%20H%2018%20z%20M%2010%2C3%20h%202%203%20c%202%2C0%202%2C1%202%2C3%20H%208%20C%208%2C4%208%2C3%2010%2C3%20z%20M%209%2C10%20H%208%20C%207.4%2C10%207%2C9.6%207%2C9%207%2C8.4%207.4%2C8%208%2C8%20h%201%20c%200.6%2C0%201%2C0.4%201%2C1%200%2C0.6%20-0.4%2C1%20-1%2C1%20z%20m%208%2C0%20H%2016%20C%2015.4%2C10%2015%2C9.6%2015%2C9%2015%2C8.4%2015.4%2C8%2016%2C8%20h%201%20c%200.6%2C0%201%2C0.4%201%2C1%200%2C0.6%20-0.4%2C1%20-1%2C1%20z%20M%204%2C4%20H%206%20V%203%20H%204%20C%201%2C3%201%2C6%201%2C7%20H%200%20v%201%20h%201%20v%204%20H%203%20V%2011%20H%205%20V%207%20H%202%20C%202%2C6%202%2C4%204%2C4%20z%20M%203%2C9%204%2C10%20H%202%20V%209%20h%201%20z%22%20fill%3D%22%23424242%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%20%20%20%20%3Cg%20fill%3D%22%23fff%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22m%2016%2C8%20h%201%20c%200.4%2C0%200.7%2C0.2%200.8%2C0.5%20C%2017.9%2C8.4%2018%2C8.2%2018%2C8%2018%2C7.4%2017.6%2C7%2017%2C7%20h%20-1%20c%20-0.6%2C0%20-1%2C0.4%20-1%2C1%200%2C0.2%200.1%2C0.4%200.2%2C0.5%20C%2015.3%2C8.2%2015.6%2C8%2016%2C8%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%208%2C8%20H%209%20C%209.4%2C8%209.7%2C8.2%209.8%2C8.5%209.9%2C8.4%2010%2C8.2%2010%2C8%2010%2C7.4%209.6%2C7%209%2C7%20H%208%20C%207.4%2C7%207%2C7.4%207%2C8%207%2C8.2%207.1%2C8.4%207.2%2C8.5%207.3%2C8.2%207.6%2C8%208%2C8%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%206%2C3%20H%204%20C%204%2C3%204%2C3%204%2C3%202%2C3%202%2C5%202%2C6%20H%202%20C%202.1%2C5%202.5%2C4%204%2C4%20H%205%206%20V%203%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0%207H1V8H0z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2015%2C2%20H%2012%2010%20C%208%2C2%208%2C3%208%2C5%20H%208%20C%208%2C3.7%208.3%2C3%2010%2C3%20h%202%203%20c%201.7%2C0%201.9%2C0.7%202%2C2%20h%200%20C%2017%2C3%2017%2C2%2015%2C2%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3%209L4%209%203%208%202%208%202%209%202%209%202%209%203%209z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%207%2C11%20C%206%2C11%206%2C10.6%206%2C10%20v%201%20c%200%2C0.6%200%2C1%201%2C1%20v%20-1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22m%2018%2C11%20v%201%20c%201%2C0%201%2C-0.4%201%2C-1%20v%20-1%20c%200%2C0.6%200%2C1%20-1%2C1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19%206H20V7H19z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3%2011L1%2011%201%2012%203%2012%203%2011%205%2011%205%207%205%207%205%2010%203%2010z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M16%2013H18V14H16z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%206H6V7H5z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M9%2013L7%2013%207%2014%209%2014%209%2012%2016%2012%2016%2011%209%2011z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20fill%3D%22%232e2e2e%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%202%2C6%20C%202%2C6.4%202%2C6.7%202%2C7%20H%205%20V%206%20H%202%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2%209L2%2010%204%2010%203%209z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%204%2C3%20H%206%20V%202%20H%204%20C%201%2C2%201%2C5%201%2C6%20H%200%20V%207%20H%201%20C%201%2C6%201%2C3%204%2C3%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2018%2C4%20C%2018%2C3%2017%2C0%2015%2C0%20H%2012%2010%20C%208%2C0%207%2C3%207%2C4%20H%206%205%20V%205%20H%207%20C%207%2C4%208%2C1%2010%2C1%20h%202%203%20c%202%2C0%203%2C3%203%2C4%20h%202%20V%204%20h%20-2%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%208%2C10%20H%209%20C%209.6%2C10%2010%2C9.6%2010%2C9%2010%2C8.8%209.9%2C8.6%209.8%2C8.5%209.7%2C8.8%209.4%2C9%209%2C9%20H%208%20C%207.6%2C9%207.3%2C8.8%207.2%2C8.5%207.1%2C8.6%207%2C8.8%207%2C9%20c%200%2C0.6%200.4%2C1%201%2C1%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017%2C6%20C%2017%2C5.6%2017%2C5.3%2017%2C5%20H%208%20c%200%2C0.3%200%2C0.6%200%2C1%20h%209%20z%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2017.8%2C8.5%20C%2017.7%2C8.8%2017.4%2C9%2017%2C9%20H%2016%20C%2015.6%2C9%2015.3%2C8.8%2015.2%2C8.5%2015.1%2C8.6%2015%2C8.8%2015%2C9%20c%200%2C0.6%200.4%2C1%201%2C1%20h%201%20c%200.6%2C0%201%2C-0.4%201%2C-1%200%2C-0.2%20-0.1%2C-0.4%20-0.2%2C-0.5%20z%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-control-round__icon_state_active.dg-control-round__icon_name_traffic:active:after,
.dg-control-round__icon_state_active.dg-control-round__icon_name_traffic:after,
.no-touch
  .dg-control-round__icon_state_active.dg-control-round__icon_name_traffic:hover:after {
  background-image: none;
}
a.dg-traffic-control {
  z-index: 0;
  color: #f2f2f2;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font:
    400 15px/32px "Arial narrow",
    Arial,
    sans-serif;
}
a.dg-traffic-control_color_green:after,
a.dg-traffic-control_color_red:after,
a.dg-traffic-control_color_yellow:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  -webkit-box-shadow:
    inset 0 1px 0 0 rgba(0, 0, 0, 0.2),
    0 1px 0 0 #fff;
  box-shadow:
    inset 0 1px 0 0 rgba(0, 0, 0, 0.2),
    0 1px 0 0 #fff;
}
.no-touch a.dg-traffic-control:hover {
  color: #f2f2f2;
}
.no-touch a.dg-traffic-control_color_green:hover:after,
.no-touch a.dg-traffic-control_color_red:hover:after,
.no-touch a.dg-traffic-control_color_yellow:hover:after {
  width: 22px;
  height: 22px;
}
a.dg-traffic-control_color_green:after {
  background: #3fc03b;
}
.no-touch a.dg-traffic-control_color_green:hover:after,
a.dg-traffic-control_color_green:active:after {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#2aa731),
      to(#53e13a)
    )
    #3ec435;
  background: -webkit-linear-gradient(bottom, #2aa731, #53e13a) #3ec435;
  background: linear-gradient(to top, #2aa731, #53e13a) #3ec435;
}
a.dg-traffic-control_color_yellow:after {
  background: #f3b223;
}
.no-touch a.dg-traffic-control_color_yellow:hover:after,
a.dg-traffic-control_color_yellow:active:after {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#ef931b),
      to(#f7be26)
    )
    #f4a820;
  background: -webkit-linear-gradient(bottom, #ef931b, #f7be26) #f4a820;
  background: linear-gradient(to top, #ef931b, #f7be26) #f4a820;
}
a.dg-traffic-control_color_red:after {
  background: #eb240c;
}
.no-touch a.dg-traffic-control_color_red:hover:after,
a.dg-traffic-control_color_red:active:after {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#c01c0a),
      to(#f73416)
    )
    #db2811;
  background: -webkit-linear-gradient(bottom, #c01c0a, #f73416) #db2811;
  background: linear-gradient(to top, #c01c0a, #f73416) #db2811;
}
.leaflet-rulerMarker-pane {
  z-index: 600;
}
.dg-ruler__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.dg-ruler__label-spacer {
  display: block;
}
.dg-ruler__label-container {
  display: none;
  padding: 2px 4px;
  border: 4px solid #fff;
  border-radius: 13px;
  background: #0da5d5;
  background-clip: padding-box;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
}
.dg-ruler__point {
  display: inline-block;
  margin: 2px 4px 0 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #fff;
}
.dg-ruler__label-remove-link {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%206%2C0%20C%202.687%2C0%200%2C2.687%200%2C6%200%2C9.313%202.687%2C12%206%2C12%209.313%2C12%2012%2C9.313%2012%2C6%2012%2C2.687%209.313%2C0%206%2C0%20z%20M%209.401%2C9.398%208.8%2C9.6%206%2C6.8%203.199%2C9.6%202.59%2C9.415%202.375%2C8.774%205.199%2C6%202.399%2C3.175%202.62%2C2.591%203.175%2C2.375%205.949%2C5.225%208.774%2C2.375%209.415%2C2.605%209.566%2C3.196%206.824%2C6%209.6%2C8.8%209.401%2C9.398%20z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  display: none;
  margin: 1px 0 0 4px;
  vertical-align: top;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.no-touch .dg-ruler__label-remove-link:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.dg-ruler__remove-link-overlay {
  position: absolute;
  top: -7px;
  right: -7px;
  bottom: -7px;
  width: 40px;
}
.no-touch .dg-ruler__remove-link-overlay {
  display: none;
}
.dg-control-round__icon_name_ruler:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%229%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2012.999%2C0%20v%204.001%20h%20-1%20V%200%20h%20-2%20v%202%20h%20-1%20V%200%20h%20-2%20V%202%20H%206%20V%200%20H%203.998%20v%204.001%20h%20-1%20V%200%20h%20-3%20V%208%20H%2016%20V%200%20z%22%20fill%3D%22%23616161%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%202.999%2C4%20h%201%20v%201%20h%20-1%20z%20m%203%2C-2%20h%201%20v%201%20h%20-1%20z%20m%203%2C0%20h%201%20v%201%20h%20-1%20z%20m%203%2C2%20h%201%20v%201%20h%20-1%20z%22%20fill%3D%22%23444%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C8%20H%2016%20V%209%20H%200%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C0%20H%203%20V%201%20H%200%20z%20m%2013%2C0%20h%203%20v%201%20h%20-3%20z%20m%20-3%2C0%20h%202%20V%201%20H%2010%20z%20M%207%2C0%20H%209%20V%201%20H%207%20z%20M%204%2C0%20H%206%20V%201%20H%204%20z%22%20fill%3D%22%23444%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  width: 16px;
  height: 9px;
  background-size: 16px 9px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.dg-control-round__icon_name_ruler:active:after,
.no-touch .dg-control-round__icon_name_ruler:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%229%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2012.999%2C0%20v%204.001%20h%20-1%20V%200%20h%20-2%20v%202%20h%20-1%20V%200%20h%20-2%20V%202%20H%206%20V%200%20H%203.998%20v%204.001%20h%20-1%20V%200%20h%20-3%20V%208%20H%2016%20V%200%20z%22%20fill%3D%22%23424242%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%202.999%2C4%20h%201%20v%201%20h%20-1%20z%20m%203%2C-2%20h%201%20v%201%20h%20-1%20z%20m%203%2C0%20h%201%20v%201%20h%20-1%20z%20m%203%2C2%20h%201%20v%201%20h%20-1%20z%22%20fill%3D%22%232e2e2e%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C8%20H%2016%20V%209%20H%200%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C0%20H%203%20V%201%20H%200%20z%20m%2013%2C0%20h%203%20v%201%20h%20-3%20z%20m%20-3%2C0%20h%202%20V%201%20H%2010%20z%20M%207%2C0%20H%209%20V%201%20H%207%20z%20M%204%2C0%20H%206%20V%201%20H%204%20z%22%20fill%3D%22%232e2e2e%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.dg-control-round__icon_state_active.dg-control-round__icon_name_ruler:active:after,
.dg-control-round__icon_state_active.dg-control-round__icon_name_ruler:after,
.no-touch
  .dg-control-round__icon_state_active.dg-control-round__icon_name_ruler:hover:after {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%229%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%2012.999%2C0%20v%204.001%20h%20-1%20V%200%20h%20-2%20v%202%20h%20-1%20V%200%20h%20-2%20V%202%20H%206%20V%200%20H%203.999%20v%204.001%20h%20-1%20V%200%20h%20-3%20V%208%20H%2016%20V%200%20z%22%20fill%3D%22%2321a7d6%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22m%202.999%2C4%20h%201%20v%201%20h%20-1%20z%20m%203%2C-2%20h%201%20v%201%20h%20-1%20z%20m%203%2C0%20h%201%20v%201%20h%20-1%20z%20m%203%2C2%20h%201%20v%201%20h%20-1%20z%22%20fill%3D%22%23147596%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C8%20H%2016%20V%209%20H%200%20z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cpath%20d%3D%22M%200%2C0%20H%203%20V%201%20H%200%20z%20m%2013%2C0%20h%203%20v%201%20h%20-3%20z%20m%20-3%2C0%20h%202%20V%201%20H%2010%20z%20M%207%2C0%20H%209%20V%201%20H%207%20z%20M%204%2C0%20H%206%20V%201%20H%204%20z%22%20fill%3D%22%23147596%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.btn {
  --duration: 250ms;
  --font-size: 1rem;
  --font-shadow: var(--font-size);
  --bs-gradient: 0;
  --bs-btn-focus-box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
  width: fit-content;
  border-radius: 56px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: var(--font-size);
  box-shadow: none;
  border: none;
  white-space: nowrap;
  padding: 13px 17px;
  background: #f6efec;
  box-shadow:
    0px 4px 14px rgba(0, 0, 0, 0.08),
    inset 0px 2px 2px #fff,
    inset 0px -1px 2px rgba(0, 0, 0, 0.09);
  transition:
    box-shadow var(--duration) ease,
    background var(--duration) ease,
    color var(--duration) ease;
}
.btn:hover {
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0.08),
    inset 0px 2px 2px #fff,
    inset 0px -1px 2px rgba(0, 0, 0, 0.09);
}
.btn:active {
  background-image: inherit;
}
.btn:focus-visible {
  outline: #333 1px solid;
}
.btn div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
}
.btn div span {
  display: block;
  backface-visibility: hidden;
  font-style: normal;
}
.btn-icon {
  width: 55px;
  height: 55px;
  padding: 11px;
}
.btn-icon img {
  width: 25px;
}
.btn-big {
  border-radius: 18px;
  padding: 22px 26px;
  font-size: 1rem;
  box-shadow:
    0px 7px 15px rgba(0, 0, 0, 0.03),
    inset 0px 2px 2px rgba(255, 255, 255, 0.5),
    inset 0px -2px 2px rgba(167, 0, 0, 0.2);
}
.btn-primary {
  --bs-btn-hover-color: #1a1a1a;
  --bs-btn-hover-bg: #faf5f3;
  --bs-btn-active-color: #1a1a1a;
  --bs-btn-active-bg: #f1ebe9;
  color: #333;
  background: #f6efec;
}
.btn-primary.indicator {
  position: relative;
  padding-left: 2.25rem;
}
.btn-primary.indicator::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #5eff00;
  left: 0.95rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px 4px rgba(94, 255, 0, 0.5);
  z-index: 10;
}
.btn-secondary {
  --bs-btn-active-color: #004bb1;
  --bs-btn-active-bg: #d4e5ff;
  --bs-btn-hover-color: #004bb1;
  --bs-btn-hover-bg: #e7f0ff;
  color: #004bb1;
  background: rgba(0, 0, 0, 0);
  outline: 1px solid;
  outline-color: #69a7be;
  outline-offset: -1px;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:active {
  box-shadow: none;
}
.btn-blue {
  --bs-btn-active-color: #e6e6e6;
  --bs-btn-active-bg: #8dbccd;
  --bs-btn-hover-color: #f2f2f2;
  --bs-btn-hover-bg: #7bb1c6;
  color: #fff;
  background: #69a7be;
}
.btn-blue.btn-big {
  --bs-btn-active-color: white;
  --bs-btn-active-bg: #69a7be;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: #73bcd6;
  box-shadow:
    0px 5px 18px rgba(0, 0, 0, 0.25),
    inset 0px -2px 2px rgba(0, 0, 0, 0.2);
}
.btn-blue.btn-big:hover {
  box-shadow:
    0px 3px 5px rgba(0, 0, 0, 0.2),
    inset 0px -2px 2px rgba(0, 0, 0, 0.2);
}
.btn-blue.btn-big:active {
  box-shadow: none;
}
.btn-transparent {
  --bs-btn-active-bg: rgba(255, 255, 255, 0.3);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.2);
}
.btn-transparent.btn-blue {
  --bs-btn-active-color: #e6e6e6;
  --bs-btn-active-bg: #8dbccd;
  --bs-btn-hover-color: #f2f2f2;
  --bs-btn-hover-bg: #7bb1c6;
  color: #fff;
  background: #69a7be;
}
.btn-text {
  border: 0;
  outline: none;
  background: none;
}
.btn.disabled,
.btn:disabled {
  background-color: inherit;
  color: inherit;
  box-shadow:
    0px 4px 14px rgba(0, 0, 0, 0.04),
    inset 0px 2px 2px #fff,
    inset 0px -1px 2px rgba(0, 0, 0, 0.09);
}
.btn-check:checked + .btn,
:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
  background-image: 0;
  border-color: inherit;
  box-shadow: inherit;
}
.link {
  position: relative;
}
.link-primary {
  color: #f6efec;
  font-weight: bold;
}
.link-arrow {
  padding-right: 19px;
}
.link-arrow::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%277%27 height=%2710%27 viewBox=%270 0 7 10%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1 1L5 5L1 9%27 stroke=%27%233E41C9%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3e%3c/svg%3e");
  position: absolute;
  width: 7px;
  height: 10px;
  top: 6px;
  right: 0;
}
.link-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.link-social img {
  width: 24px;
  height: auto;
  max-height: 24px;
  margin: auto;
}
.link-social:hover {
  transform: scale(0.9);
}
.link-social:active {
  transform: scale(0.8);
}
.link-phone {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.33);
}
.link-phone span {
  color: #333;
}
.link-card {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 57px;
  position: relative;
  background-color: #fbf9f8;
  border-radius: 10px;
  min-height: 57px;
  transition: all 0.2s ease;
  box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.08);
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #935e1e;
}
.link-card:hover {
  box-shadow: none;
}
.link-card.big {
  background-color: #fff;
  box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  padding: 18px 59px 18px 10px;
  font-weight: 700;
}
.link-card.big:hover {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.08);
}
.link-card.big::after {
  top: 12px;
}
.link-card::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 37px;
  height: 37px;
  background: url(/local/templates/main/design/public/img/ui/arrow-right.svg) no-repeat;
  background-size: contain;
}
.link-card.simple::after {
  display: none;
}
a.primary {
  color: #f6efec;
}
a.primary:hover {
  color: #fff;
}
a.primary:active {
  color: #fff;
}
input.invalid {
  outline: 1px solid #ffb08e !important;
}
input,
select,
label,
textarea {
  width: 100%;
}
input,
select,
textarea {
  border: 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  min-width: 160px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}
.input-search-content {
  position: relative;
  overflow: hidden;
  padding: 12px 11px 11px 12px;
  font-size: 0.875rem;
  border-radius: 27px;
  background: #fff;
  border: 1px solid #fbf9f8;
  box-shadow: inset 0px 1px 6px rgba(0, 0, 0, 0.1);
  outline: 0;
}
.input-search-content input[type="text"] {
  padding: 0px;
  outline: 0;
}
.input-search-content::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 19px;
  top: 0.8rem;
  right: 0.75rem;
  background-image: url(/local/templates/main/design/public/img/ui/icon-search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
input,
input[type="text"],
textarea {
  outline: 1px solid rgba(246, 239, 236, 0.2);
  padding: 12px 11px 11px 12px;
}
fieldset legend {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.375rem;
  white-space: nowrap;
}
.list-columns-2 {
  column-count: 2;
}
@media (max-width: 767.98px) {
  .list-columns-2 {
    column-count: 1;
  }
}
.list-links ul {
  row-gap: 1.5rem;
}
.list-links li a {
  display: block;
  position: relative;
  padding: 1.5rem 1.125rem;
  padding-right: 1.75rem;
  background-color: #f8f8f8;
  color: #333;
  border-radius: 20px;
}
.list-links li a span {
  position: absolute;
  right: 17px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.list-links li a svg {
  transform: scaleX(-1);
  width: 12px;
  height: 19px;
}
.list-links li a svg path {
  stroke: #69a7be;
}
.list-links li a:hover {
  background-color: #ebebeb;
}
.list-links li a:hover svg {
  animation: xSlideReversed 0.2s;
}
.list-links li a:hover svg path {
  stroke: #4a90aa;
}
.list-links li a:active {
  background-color: #dfdfdf;
}
.list-links li a:active svg path {
  stroke: #428198;
}
.article-simple ul {
  list-style: none;
  margin-top: 1.7rem;
}
.article-simple ul li {
  color: #333;
  padding-left: 1.1rem;
  margin-bottom: 0rem;
  position: relative;
}
.article-simple ul li::before {
  content: "";
  position: absolute;
  margin-left: 0.4rem;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 0.35rem;
  height: 0.35rem;
  background-color: #333;
  border-radius: 50%;
}
.article-img {
  border-radius: 28px;
  max-width: 988px;
}
@media (min-width: 992px) {
  .article-img--w-100 {
    max-width: 100%;
  }
}
.article-img--aspect-7-3 {
  aspect-ratio: 7/3;
  object-fit: cover;
  max-height: 420px;
}
.article-img--wrapper {
  position: relative;
  width: fit-content;
}
.article-img--wrapper .btn {
  position: absolute;
  bottom: 54px;
  right: 107px;
}
@media (max-width: 991px) {
  .article-img--wrapper .btn {
    right: 0;
    left: 0;
    bottom: 32px;
    margin: auto;
    width: fit-content;
  }
}
.article-page-container {
  margin: 0px auto;
  padding: 0 15px;
  font-family: "NTSomic";
  font-size: 16px;
}
.article-page-container .article-title {
  font-family: "IgraSans";
  font-weight: 400;
  line-height: 150%;
  font-size: 36px;
  color: #935e1e;
  position: relative;
  z-index: 3;
  margin-bottom: 0.85rem;
}
.article-page-container .meta-info {
  display: flex;
  justify-content: space-between;
  color: #7d7d7d;
  margin-bottom: 1.3rem;
}
.article-page-container .article-intro-text {
  line-height: 1.5;
  color: #333;
  margin-bottom: 2.45rem;
}
.article-page-container .advice-box {
  border-radius: 20px;
  padding: 20px 30px;
  background-color: #fff;
  margin-bottom: 1.5rem;
}
.article-page-container .advice-box-content {
  line-height: 1.5;
  color: #333;
}
.article-page-container .doctor-signature {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.article-page-container .doctor-name {
  font-weight: 600;
  color: #333;
}
.article-page-container .appointment-action {
  padding-top: 20px;
  text-align: center;
}
.article-page-container .btn-appointment {
  font-size: 16px;
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  background-color: #69a7be;
  color: #fff;
  min-height: 60px;
  transition: background-color 0.3s ease;
}
.article-page-container .btn-appointment:hover {
  background-color: #61acc7;
}
article {
  margin-bottom: 3rem;
}
article .single-photo {
  max-width: 530px;
  margin: 0 auto;
  margin-bottom: 1.45rem;
}
article .single-photo-top-caption {
  text-align: center;
  margin-bottom: 8px;
  font-size: 0.95em;
  line-height: 1.3;
}
article .single-photo-bottom-caption {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 1em;
}
article .single-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid #ddd;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}
article .row {
  gap: 1rem;
  justify-content: center;
  align-items: start;
}
article .row .single-photo {
  padding-left: 0;
  padding-right: 0;
  max-width: 330px;
  margin: 0;
  margin-bottom: 1.45rem;
}
@media (min-width: 768px) {
  article .row .single-photo {
    flex: 1;
  }
}
article .comparison-container {
  display: flex;
  justify-content: space-around;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 1.45rem;
  border: 1px solid #eee;
}
article .comparison-container .photo-pair {
  flex: 1;
  text-align: center;
}
article .comparison-container .photo-pair img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
article .comparison-container .photo-pair .caption {
  margin-top: 0.65rem;
  font-size: 1em;
}
article a {
  color: #207690;
}
article a:hover {
  color: #47a0bb;
}
article h3,
article .h3 {
  font-size: 20px;
}
article h1,
article .h1,
article h2,
article .h2,
article h3,
article .h3,
article h4,
article .h4,
article h5,
article .h5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
article h6,
article .h6 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: normal;
}
article img {
  margin-bottom: 1.875rem;
  border-radius: 10px;
}
article table {
  width: 100%;
  display: table;
}
article table thead tr {
  background-color: #f8f4f2;
}
article table thead tr th {
  padding: 20px;
  font-weight: 400;
}
article table tbody tr {
  transition: filter 0.3s ease;
}
article table tbody tr:hover {
  filter: brightness(95%);
}
article table tbody tr:nth-child(odd) {
  background-color: #fff;
}
article table tbody tr:nth-child(even) {
  background-color: #f8f4f2;
}
article table tbody tr td {
  padding: 20px;
}
article > ol {
  counter-reset: num;
}
article > ol ul {
  counter-reset: num;
}
article ol {
  list-style-type: none;
  padding-left: 1.4rem;
}
article ol li {
  margin-bottom: 1rem;
  position: relative;
}
article ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  left: -1.5rem;
  top: 0.03rem;
  width: 23px;
  height: 22px;
  text-align: center;
}
article ul {
  list-style: none;
  margin-top: 1.7rem;
}
article ul li {
  color: #735d41;
  padding-left: 1.7rem;
  margin-bottom: 1rem;
  position: relative;
}
article ul li::before {
  content: "";
  position: absolute;
  margin-left: 0.6rem;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 0.35rem;
  height: 0.35rem;
  background-color: #69a7be;
  border-radius: 50%;
}
legend {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  white-space: nowrap;
}
.subtitle {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .subtitle {
    font-size: 14px;
  }
}
.gallery-item {
  height: inherit;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}
.gallery-item img {
  height: inherit;
  width: 100%;
  object-fit: cover;
}
.gallery-content {
  position: absolute;
  bottom: 33px;
  right: 39px;
  max-width: 450px;
  font-weight: 400;
}
@media (max-width: 560px) {
  .gallery-content {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
  }
}
.gallery-content--wrapper {
  padding: 22px 24px 23px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(13.5px);
}
.gallery-content--description {
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 13px;
}
@media (max-width: 560px) {
  .gallery-content--description {
    margin-bottom: 0;
  }
}
.gallery-content--parameters {
  display: flex;
  gap: 35px;
}
@media (max-width: 560px) {
  .gallery-content--parameters {
    display: none;
  }
}
.gallery-content--parameters-item {
  display: flex;
  flex-direction: column;
}
.gallery-content--parameters-item > p {
  font-size: 32px;
  line-height: 140%;
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .gallery-content--parameters-item > p {
    font-size: 16px;
  }
}
.gallery-content--parameters-item > span {
  font-size: 14px;
  line-height: 140%;
}
.accordion--price {
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-y: 19px;
  --bs-accordion-btn-padding-x: 26px;
  --bs-accordion-btn-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-transform: rotate(-90deg);
  --bs-accordion-btn-icon-width: 24px;
}
.accordion--price .accordion-button {
  font-weight: 400;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  padding-right: 48px;
}
.accordion--price .accordion-button.collapsed {
  border-bottom: 1px solid #e3e3e3;
}
.accordion--price .accordion-button:not(.no-arrow)::after {
  right: 18px;
  background-size: contain;
  position: absolute;
}
.accordion--price .accordion-button.no-arrow::after {
  display: none;
}
.accordion--price .accordion button {
  line-height: 140%;
}
.accordion--price .accordion-button,
.accordion--price .accordion-item {
  border-radius: 0;
  box-shadow: none;
}
.accordion-item {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.accordion-item:not(:last-child) {
  margin-bottom: 1rem;
}
.accordion-button.collapsed,
.accordion-item.collapsed {
  border-radius: 20px;
}
.accordion-button.collapsed.no-arrow,
.accordion-item.collapsed.no-arrow {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion-button,
.accordion-item {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.accordion-button {
  font-size: 1.15rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .accordion-button {
    font-size: 1rem;
  }
}
.accordion-button:not(.no-arrow)::after {
  background-position: center;
}
.accordion-button.no-arrow::after {
  background-image: none;
  display: none;
}
.accordion button {
  line-height: 130%;
}
.accordion-body {
  padding-top: 0;
  padding-bottom: 0.4rem;
}
.accordion-body a {
  color: #777;
  text-decoration: none;
}
.accordion-body a:hover {
  color: #525252;
}
.accordion-body:last-child {
  padding-bottom: 1.4rem;
}
.pagination .navigation {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
  margin: 0 0.25rem;
}
.pagination .navigation.active:hover {
  color: #f2f2f2;
  background-color: #fefefd;
}
.pagination .navigation.active:active {
  color: #e6e6e6;
  background-color: #fff;
}
.pagination .navigation.inactive {
  color: #b3b3b3;
}
.pagination .navigation.current {
  color: #fff;
  background-color: #f6efec;
}
.page-title {
  margin-top: -71px;
  padding-top: calc(6.5rem + 71px);
}
.breadcrumbs {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ul {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.0625rem;
  padding: 0;
  font-size: 0.875rem;
}
.breadcrumbs ul li {
  color: rgba(0, 0, 0, 0.3);
}
.breadcrumbs ul li a {
  color: #979797;
  transition: opacity 0.2s ease;
}
.breadcrumbs ul li a:hover {
  opacity: 0.8;
}
.breadcrumbs ul li a:active {
  opacity: 0.6;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: "/";
  margin-left: 1.0625rem;
  color: #e1e1e1;
}
.breadcrumbs-servises ul li a {
  color: #fff;
}
.alert {
  width: inherit;
  padding: 8px 10px;
  border-radius: 8px;
}
.alert-success {
  color: #69a7be;
  background-color: rgba(31, 246, 78, 0.1);
}
.alert-error {
  color: red;
  background-color: rgba(255, 0, 0, 0.05);
}
.alert-info {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}
.alert-dismissible {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
@media (min-width: 992px) {
  .actions--services-detail {
    margin-top: 624px;
  }
}
.main-cards {
  margin-top: -14.375rem;
}
.spa-wellness-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spa-wellness-card {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 20px;
  font-family: "NTSomic";
}
.spa-wellness-card article {
  margin-bottom: 0.5rem;
}
.spa-wellness-card article p:last-child {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.spa-wellness-title {
  font-size: 2rem;
  font-family: "IgraSans";
  color: #935e1e;
  margin-bottom: 29px;
  line-height: 1.2;
}
.spa-wellness-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.spa-wellness-image-wrapper {
  margin-bottom: 20px;
  border-radius: 20px;
  max-height: 494px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spa-wellness-duration {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-top: 25px;
  margin-bottom: 20px;
}
.spa-wellness-footer .btn-signup {
  font-size: 16px;
  width: 100%;
  padding: 15px;
  border-radius: 16px;
  background-color: #69a7be;
  color: #fff;
  min-height: 60px;
  transition: background-color 0.3s ease;
}
.spa-wellness-footer .btn-signup:hover {
  background-color: #61acc7;
}
.promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.promo-cards a {
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 10px;
}
.promo-cards a img {
  height: 316px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0;
}
.promo-cards .promo-card {
  flex-basis: calc(50% - 10px);
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: rgba(218, 228, 229, 0.24);
  border-radius: 10px;
  padding-top: 342px;
  padding-left: 24px;
  padding-right: 9px;
  padding-bottom: 35px;
}
.promo-cards .promo-card del {
  position: relative;
  text-decoration: none;
  font-weight: 400;
}
.promo-cards .promo-card del:before {
  content: "";
  border-bottom: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54%;
}
.promo-cards .promo-card img {
  position: absolute;
  height: 316px;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
}
.promo-cards .promo-card-title {
  margin-left: -23px;
  padding-left: 17px;
  border-left: 6px solid #bea586;
  margin-bottom: 36px;
  font-size: 24px;
}
.promo-cards .promo-card-text {
  color: #797979;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.promo-cards .promo-card-price {
  font-size: 16px;
  line-height: 1.5;
}
.promo-cards .promo-card-price span {
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .promo-cards .promo-card {
    flex-basis: 100%;
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .cards {
    display: flex;
    flex-direction: column;
  }
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 20px;
  background: #a7c2c2;
  transition: opacity 0.2s ease;
}
@media (max-width: 991.98px) {
  .card {
    grid-column: auto !important;
  }
}
.card:nth-child(1) {
  grid-column: 1/3;
  backdrop-filter: blur(30px);
}
.card:nth-child(2),
.card:nth-child(3),
.card:nth-child(4),
.card:nth-child(8) {
  grid-column: span 1;
}
.card:nth-child(5) {
  grid-column: 3;
  grid-row: 2/4;
}
.card:nth-child(6) {
  grid-column: 1/3;
}
.card:nth-child(7) {
  grid-column: 1/3;
}
.card--grid-1 {
  grid-column: span 2;
}
.card--grid-2 {
  grid-column: span 3;
}
.card--grid-3 {
  grid-column: span 3;
}
.card-body {
  position: relative;
  border-radius: 1.25rem;
  z-index: 1;
  padding: 1rem 1.25rem;
  width: 100%;
  text-align: left;
}
.card-body.big {
  padding: 5rem 0;
}
@media (max-width: 767.98px) {
  .card-body.big {
    padding: 1rem 0;
  }
}
.card-text {
  left: 12px;
  right: 12px;
  z-index: 5;
  bottom: 16px;
  position: absolute;
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 15px;
  backdrop-filter: blur(37.7000007629px);
  background: rgba(255, 255, 255, 0.59);
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  color: #935e1e;
}
.card-title {
  font-family: "IgraSans";
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #fff;
}
.card-title img {
  width: auto;
  height: 1.875rem;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
  top: -0.125rem;
  left: 0.222rem;
}
.card--image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 3;
  object-fit: cover;
  bottom: 0;
}
.card--image img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
}
.card--image-cover img {
  object-fit: cover;
}
.card--image-contain img {
  object-fit: contain;
}
.card--image-left {
  grid-column: span 2;
}
.card--image-left .card--image {
  margin-left: -2.25rem;
}
.card--image-left-w-padding {
  grid-column: span 2;
}
.card--image-right,
.card--image-right-w-padding {
  flex-direction: row-reverse;
}
.card--image-right {
  grid-column: span 2;
}
.card--image-right .card--image {
  margin-right: -2.25rem;
}
.card--image-right-w-padding {
  grid-column: span 2;
}
.card:hover {
  opacity: 0.9;
}
.card:active {
  opacity: 0.8;
}
.card-main {
  border-radius: 1.25rem;
  padding: 0 2.25rem;
  min-height: 13.625rem;
  background-color: #f9f5f3;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .card-main {
    grid-column: auto !important;
  }
}
.card-main:nth-child(1) {
  grid-column: 1/3;
  background-color: rgba(249, 245, 243, 0.5);
  backdrop-filter: blur(30px);
}
.card-main:nth-child(2),
.card-main:nth-child(3),
.card-main:nth-child(4),
.card-main:nth-child(8) {
  grid-column: span 1;
}
.card-main:nth-child(5) {
  grid-column: 3;
  grid-row: 2/4;
}
.card-main:nth-child(6) {
  grid-column: 1/3;
}
.card-main:nth-child(7) {
  grid-column: 1/3;
}
.card-main--grid-1 {
  grid-column: span 2;
}
.card-main--grid-2 {
  grid-column: span 3;
}
.card-main--grid-3 {
  grid-column: span 3;
}
.card-main-body {
  padding: 1rem 0;
}
.card-main-body.big {
  padding: 5rem 0;
}
@media (max-width: 767.98px) {
  .card-main-body.big {
    padding: 1rem 0;
  }
}
.card-main-text {
  color: rgba(51, 51, 51, 0.7);
}
.card-main-title img {
  width: auto;
  height: 1.875rem;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
  top: -0.125rem;
  left: 0.222rem;
}
.card-main--image {
  height: 100%;
}
@media (max-width: 991.98px) {
  .card-main--image {
    display: none;
  }
}
.card-main--image img {
  height: 100%;
  width: 100%;
}
.card-main--image-cover img {
  object-fit: cover;
}
.card-main--image-contain img {
  object-fit: contain;
}
.card-main--image-left {
  grid-column: span 2;
}
.card-main--image-left .card--image {
  margin-left: -2.25rem;
}
.card-main--image-left-w-padding {
  grid-column: span 2;
}
.card-main--image-right,
.card-main--image-right-w-padding {
  flex-direction: row-reverse;
}
.card-main--image-right {
  grid-column: span 2;
}
.card-main--image-right .card--image {
  margin-right: -2.25rem;
}
.card-main--image-right-w-padding {
  grid-column: span 2;
}
.card-button {
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
}
.card-button-text {
  position: relative;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  padding-right: 4rem;
  width: 100%;
  text-overflow: ellipsis;
}
.card-button-image {
  max-width: 91px;
  max-height: 80px;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: -0.5rem;
  pointer-events: none;
}
.card-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.timepicker {
  position: absolute;
  background: #fff;
  color: #333;
  padding: 1rem 1.75rem;
  padding-bottom: 5rem;
  box-shadow: 0px 12px 28.2px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 320px;
  z-index: 10;
  display: none;
}
.timepicker.active {
  display: block;
}
.timepicker-header {
  margin-bottom: 1.875rem;
  text-align: center;
  font-weight: 600;
}
.timepicker-inputs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 1.125rem;
}
.timepicker-input {
  display: block;
  width: fit-content;
}
.timepicker-input input {
  display: none;
}
.timepicker-input input:checked + span {
  color: #fff;
  background: #2f80ed;
}
.timepicker-input span {
  display: block;
  width: fit-content;
  background: #f3f3f3;
  padding: 0.625rem;
  border-radius: 0.625rem;
  font-weight: normal;
  cursor: pointer;
}
.timepicker-input span:hover {
  color: #0d0d0d;
  background: #e6e6e6;
}
.timepicker-input span:active {
  color: #1a1a1a;
  background: #dadada;
}
.timepicker-input span:focus-visible {
  outline: 1px solid #333;
}
input[type="text"].form-input,
textarea.form-input {
  padding: 17px 12px;
}
input.form-input,
textarea.form-input {
  outline: none;
  box-shadow: none;
}
input.form-input:hover,
input.form-input:active,
input.form-input:focus-visible,
textarea.form-input:hover,
textarea.form-input:active,
textarea.form-input:focus-visible {
  box-shadow: none;
  outline: none;
}
.form-input {
  font-size: 1.25rem;
  padding: 17px 12px;
  border: 1px solid #f0e8e5;
  border-radius: 10px;
  outline: none;
  box-shadow: none;
}
.form-input::placeholder {
  color: #919191;
}
.form-input:hover,
.form-input:active,
.form-input:focus-visible {
  box-shadow: none;
  outline: none;
}
.form-input.datepicker-input.in-edit {
  border-color: #f0e8e5;
}
.form-input.datepicker-input.in-edit:focus,
.form-input.datepicker-input.in-edit:active {
  box-shadow: none;
}
.form-input-radio {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.form-input-radio input {
  display: none;
}
.form-input-radio input:checked ~ .form-input-radio--element::before {
  background-color: #69a7be;
}
.form-input-radio--element {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 0.5;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #666;
}
.form-input-radio--element:hover::before {
  background-color: rgba(105, 167, 190, 0.5);
}
.form-input-radio--element::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% - 4.5px);
  border-radius: 50%;
  outline: 1px solid #69a7be;
  outline-offset: 4px;
  padding: 4px;
  width: 9px;
  height: 9px;
  transition: 0.2s all;
}
.form-input-error {
  color: #ff6e00;
  line-height: 1;
  padding: 10px 8px;
}
.form-agreement {
  color: rgba(0, 0, 0, 0.5);
  padding-left: 38px;
}
.form-agreement::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  left: 0;
  top: 6px;
  background: url(/local/templates/main/design/public/img/ui/checkmark.svg) no-repeat;
  background-size: contain;
}
.form-agreement a {
  color: #935e1e;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.form-agreement a:hover {
  opacity: 0.7;
}
.form-agreement a:active {
  opacity: 0.8;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select,
.select-wrapper button,
.select-wrapper input {
  appearance: none;
  border: 0;
  outline: 0;
  line-height: 1;
  text-align: left;
  width: 100%;
  padding: 1.25rem 1.35rem;
  border-radius: 0.333rem;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}
.select-wrapper select::placeholder,
.select-wrapper select:placeholder-shown,
.select-wrapper button::placeholder,
.select-wrapper button:placeholder-shown,
.select-wrapper input::placeholder,
.select-wrapper input:placeholder-shown {
  line-height: 1;
}
.select-wrapper select:focus,
.select-wrapper button:focus,
.select-wrapper input:focus {
  outline: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.select-wrapper select:hover,
.select-wrapper button:hover,
.select-wrapper input:hover {
  background-color: #f0e8e5;
}
.select-wrapper select:disabled,
.select-wrapper button:disabled,
.select-wrapper input:disabled {
  background-color: #eee;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}
.select-wrapper select:disabled:hover,
.select-wrapper button:disabled:hover,
.select-wrapper input:disabled:hover {
  background-color: #eee;
}
.select-wrapper select:disabled::after,
.select-wrapper button:disabled::after,
.select-wrapper input:disabled::after {
  border-top-color: #ccc;
}
.select-wrapper input {
  padding: 1.125rem 1.35rem;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid rgba(0, 0, 0, 0);
  border-right: 7px solid rgba(0, 0, 0, 0);
  border-top: 7px solid #d9c4ba;
  pointer-events: none;
}
.mobile-main-sections {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .mobile-main-sections {
    display: none;
  }
}
.mobile-main-sections .advantages-mob {
  margin-bottom: 0 !important;
}
.mobile-main-sections-embla {
  position: relative;
  overflow: hidden;
  margin-left: -16px;
  margin-right: -16px;
  max-height: 450px;
  margin-bottom: 124px;
}
.mobile-main-sections-embla__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 50%;
  background: rgba(239, 239, 239, 0.2);
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.mobile-main-sections-embla__button-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(239, 239, 239, 0.2);
  outline: none;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(180deg);
}
.mobile-main-sections__servises {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding: 0 16px;
  color: #935e1e;
  font-size: 16px;
  line-height: 187%;
  letter-spacing: 0.41em;
  font-family: "IgraSans";
  text-align: center;
  text-transform: uppercase;
}
.mobile-main-sections__block {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
}
.mobile-main-sections__block:first-child {
  margin-left: 64px;
}
.mobile-main-sections__circle {
  position: relative;
  width: 244px;
  height: 244px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 50%;
}
.mobile-main-sections__circle__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mobile-main-sections__circle__ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mobile-main-sections__why {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 8px;
  margin-bottom: 124px;
}
.mobile-main-sections__why__h {
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  font-family: "IgraSans";
  color: #935e1e;
}
.mobile-main-sections__why__p {
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  font-family: "NTSomic";
  color: #666;
}
.mobile-main-sections__advanteges {
  display: flex;
  flex-direction: row;
  gap: 64px;
  padding: 0 16px;
}
.mobile-main-sections__advanteges__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #e5d4bf;
  border-radius: 13px;
  flex-shrink: 0;
  width: 100%;
  max-width: 590px;
  height: 450px;
  padding-top: 59px;
  padding-bottom: 72px;
}
.mobile-main-sections__advanteges__item-h {
  font-size: 24px !important;
  max-width: 260px !important;
  z-index: 1 !important;
}
.mobile-main-sections__advanteges__item-p {
  font-size: 16px !important;
  max-width: 260px !important;
  z-index: 1 !important;
}
.mobile-main-sections__advanteges__item:first-child {
  margin-left: 64px;
}
.panel {
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swipe-section {
  margin-top: -80px;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .swipe-section {
    display: none;
  }
}
.cursor {
  z-index: 10000;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    background-color 0.3s,
    width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 0px;
  height: 0px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  text-align: center;
  color: #666;
  text-transform: none;
}
.cursor div {
  overflow: hidden;
}
.cursor span {
  display: inline-block;
  transition: 0.2s;
  transform: translateY(100%);
}
.cursor.active {
  width: 120px;
  height: 120px;
}
.cursor.active span {
  transform: translateY(0%);
  transition-delay: 0.2s;
}
.cursor.hidden {
  opacity: 0 !important;
}
a.cursor-target {
  cursor: none;
}
.blocks {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
  width: 100%;
  flex-direction: row;
}
.blocks__block {
  position: relative;
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  flex-direction: column;
  color: #935e1e;
  font-size: 16px;
  line-height: 187%;
  letter-spacing: 0.41em;
  font-family: "IgraSans";
  text-align: center;
  text-transform: uppercase;
}
.blocks__block p {
  margin-top: 80px;
  z-index: 1;
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}
.blocks__block__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.blocks__block__lines__line {
  object-fit: cover;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 200%;
  stroke-dashoffset: -200%;
  transition: stroke-dashoffset 1s ease;
}
.blocks__block__circle {
  margin-top: 80px;
  z-index: 1;
  position: absolute;
  width: 184px;
  height: 184px;
  margin-bottom: 335px;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0 !important;
  transition: opacity 0.6s ease;
}
@media (max-width: 1024px) {
  .blocks__block__circle {
    display: none;
  }
}
.blocks__block__circle__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  pointer-events: none;
}
.blocks__block__circle__ring {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blocks__block__circle-mobile {
  z-index: 1;
  width: 184px;
  height: 184px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  margin-bottom: 24px;
}
.blocks__block__circle-mobile__media-mobile {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.blocks .blocks__block__lines__line:nth-child(2) {
  opacity: 0.3;
  transition-duration: 2.4s;
}
.blocks .blocks__block__lines__line:nth-child(3) {
  opacity: 0.4;
  transition-duration: 2.2s;
}
.blocks .blocks__block__lines__line:nth-child(4) {
  opacity: 0.5;
  transition-duration: 2s;
}
.blocks .blocks__block__lines__line:nth-child(5) {
  opacity: 1;
  transition-duration: 1.8s;
}
.blocks .blocks__block__lines__line:nth-child(6) {
  opacity: 1;
  transition-duration: 1.6s;
}
.blocks .blocks__block__lines__line:nth-child(7) {
  opacity: 0.5;
  transition-duration: 1.4s;
}
.blocks .blocks__block__lines__line:nth-child(8) {
  opacity: 0.4;
  transition-duration: 1.2s;
}
.blocks .blocks__block__lines__line:nth-child(9) {
  opacity: 0.3;
  transition-duration: 1s;
}
.blocks__block:hover .blocks__block__lines__line {
  stroke-dashoffset: 0;
}
.blocks__block:hover p {
  color: #666;
}
.blocks__block:hover .blocks__block__circle {
  opacity: 1 !important;
}
.mainlines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .mainlines {
    display: none;
  }
}
.mainlines__line {
  stroke: var(--line, #c9b39a);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.mainlines-second {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 1062px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mainlines-second__line-second {
  stroke: var(--line, #c9b39a);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.is-modal-open {
  overflow: hidden;
}
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.details-modal {
  position: fixed;
  inset: 0;
  background: rgba(246, 243, 240, 0.98);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  pointer-events: auto;
  overflow: hidden;
}
.advanteges {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.advanteges__track {
  width: auto;
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 50px;
  padding: 0 30px;
  will-change: transform;
}
.advanteges__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.advanteges__lines__line {
  stroke: var(--line, #c9b39a);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.advanteges__lines__line:nth-child(1) {
  opacity: 0.3;
}
.advanteges__lines__line:nth-child(2) {
  opacity: 0.5;
}
.advanteges__lines__line:nth-child(3) {
  opacity: 0.8;
}
.advanteges__lines__line:nth-child(4) {
  opacity: 1;
}
.advanteges__lines__line:nth-child(5) {
  opacity: 1;
}
.advanteges__lines__line:nth-child(6) {
  opacity: 0.8;
}
.advanteges__lines__line:nth-child(7) {
  opacity: 0.5;
}
.advanteges__lines__line:nth-child(8) {
  opacity: 0.3;
}
.advanteges__item {
  padding-top: 59px;
  padding-bottom: 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #e5d4bf;
  border-radius: 13px;
  flex-shrink: 0;
  width: 90vw;
  max-width: 590px;
  height: 450px;
}
.advanteges__item p {
  z-index: 1;
}
.advanteges__number {
  margin-bottom: 33px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  min-width: 33px;
  min-height: 33px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: #935e1e;
}
.advanteges__h {
  text-transform: uppercase;
  max-width: 280px;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  color: #666;
  font-family: "NTSomic";
}
.advanteges__p {
  max-width: 380px;
  height: 85px;
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #666;
  text-transform: none;
}
.advanteges__a {
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #935e1e;
  transition: opacity 0.2s ease;
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.advanteges__a:hover {
  opacity: 0.9;
}
.advanteges__a:active {
  opacity: 0.8;
}
.advanteges__item__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  height: 100%;
  object-fit: cover;
}
.why {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 50px;
}
.why__pinWrapStickly {
  position: sticky;
  top: 0;
  height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
}
.why__pinWrapStickly__pinWrap {
  height: 100dvh;
  width: 100dvw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.why__h {
  z-index: 1;
  font-weight: 400;
  font-size: 32px;
  line-height: 187%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  font-family: "IgraSans";
  color: #935e1e;
  max-width: 620px;
}
.why__p {
  z-index: 1;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  font-family: "NTSomic";
  color: #666;
  max-width: 460px;
}
.why__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.why__lines__line {
  stroke: var(--line, #c9b39a);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.why__lines__line:nth-child(1) {
  opacity: 0.3;
}
.why__lines__line:nth-child(2) {
  opacity: 0.5;
}
.why__lines__line:nth-child(3) {
  opacity: 0.8;
}
.why__lines__line:nth-child(4) {
  opacity: 1;
}
.why__lines__line:nth-child(5) {
  opacity: 1;
}
.why__lines__line:nth-child(6) {
  opacity: 0.8;
}
.why__lines__line:nth-child(7) {
  opacity: 0.5;
}
.why__lines__line:nth-child(8) {
  opacity: 0.3;
}
.split-word {
  display: inline-block;
  will-change: transform, opacity;
}
.modalroot {
  z-index: 200;
}
.footer-panel {
  display: flex;
  flex-direction: column !important;
  justify-content: space-between !important;
}
.footer-panel-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1215px;
  padding-left: 24px;
  padding-right: 24px;
}
.cosmetology {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #f6f3f0;
}
.cosmetology__cancel {
  margin-left: 83px;
  width: 64px;
  height: 64px;
  transition: filter 0.2s ease;
  cursor: pointer;
  z-index: 100;
}
.cosmetology__cancel:hover {
  filter: brightness(95%);
}
.cosmetology__cancel:active {
  filter: brightness(90%);
}
.cosmetology__text {
  z-index: 10;
  position: relative;
}
.cosmetology__text h2,
.cosmetology__text .h2 {
  font-family: "IgraSans";
  font-size: 32px;
  line-height: 187%;
  letter-spacing: 0.41em;
  font-weight: 400;
  color: #935e1e;
  margin-left: 83px;
  margin-bottom: 30px;
  user-select: none;
  text-transform: uppercase;
  transform: translateY(150px);
}
.cosmetology__text h3,
.cosmetology__text .h3 {
  text-transform: none;
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 24px;
  line-height: 187%;
  color: #666;
  margin-left: 83px;
  margin-bottom: 30px;
  max-width: 51%;
}
.cosmetology__text p {
  text-transform: none;
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  color: #666;
  margin-left: 83px;
  margin-bottom: 30px;
  max-width: 51%;
}
.cosmetology__text ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "NTSomic";
  margin-left: 110px;
  color: #69a7be;
  list-style-type: none;
}
.cosmetology__text li {
  display: flex;
  text-transform: none;
  font-weight: 400;
  line-height: 187%;
  font-size: 16px;
  color: #666;
}
.cosmetology__text li::before {
  content: "•";
  font-size: 32px;
  color: #69a7be;
  padding-right: 32px;
}
.cosmetology__face {
  position: absolute;
  z-index: 3;
  right: -400px;
  height: 100vh;
  width: auto;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30%);
}
.cosmetology__correction {
  right: -600px;
}
.cosmetology__linesq {
  position: absolute;
  inset: 0;
  left: -200px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.cosmetology__linesq__lineq {
  opacity: 1;
  vector-effect: non-scaling-stroke;
}
.cosmetology__linesk {
  position: absolute;
  inset: 0;
  left: -200px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cosmetology__linesk__linek {
  opacity: 1;
  vector-effect: non-scaling-stroke;
}
.preloader {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  z-index: 100000;
  background-color: #f6f3f0;
}
.preloader-video {
  opacity: 0;
  height: 396px;
  width: auto;
  position: absolute;
}
@media (max-width: 768px) {
  .preloader-video {
    transform: scale(0.5);
  }
}
.preloader-logo {
  opacity: 0;
  height: 348px;
  width: auto;
  margin-top: 50px;
  margin-left: 7px;
  width: auto;
  position: absolute;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .preloader-logo {
    transform: scale(0.5);
  }
}
.preloader-text {
  width: 352px;
  opacity: 0;
  position: absolute;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .preloader-text {
    width: 252px;
  }
}
.preloader-text-second {
  opacity: 0;
  width: 423px;
}
@media (max-width: 1024px) {
  .preloader-text-second {
    width: 323px;
  }
}
body.modal-open {
  padding-right: 0 !important;
}
#modal-alert.modal {
  --bs-modal-header-padding: 2rem 1.5rem 0;
  --bs-modal-padding: 0 1.5rem;
  --footer-padding: 0 1.5rem 1rem;
  --bs-modal-width: 350px;
}
.modal {
  --bs-modal-header-padding: 4rem 2.625rem 0;
  --bs-modal-padding: 0 2.625rem;
  --footer-padding: 0 2.625rem 2.25rem;
  z-index: 20000;
}
.modal-backdrop {
  z-index: 19000;
}
.modal.success .modal-doctor,
.modal.success form,
.modal.success .modal-subtitle {
  display: none !important;
}
.modal.success .modal-success {
  display: block;
}
.modal-comment {
  display: none;
}
.modal-comment.show {
  display: flex;
}
.modal-success {
  display: none;
  padding-left: 6rem;
  position: relative;
}
.modal-success-form {
  display: none;
}
.modal-success.form .modal-success-form {
  display: block;
}
.modal-success.form .modal-success-appointment {
  display: none;
}
.modal-success::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 4rem;
  background: url(/local/templates/main/design/public/img/ui/success.svg) no-repeat;
  background-size: contain;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.375rem;
}
.modal-input {
  box-shadow: 0px 4px 9.2px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  width: 100%;
  background: #fff;
}
.modal-input input,
.modal-input input[type="text"] {
  padding: 18px 18px;
  outline: none;
  box-shadow: none;
}
.modal-input input:hover,
.modal-input input:active,
.modal-input input:focus-visible,
.modal-input input[type="text"]:hover,
.modal-input input[type="text"]:active,
.modal-input input[type="text"]:focus-visible {
  box-shadow: none;
  outline: none;
}
.modal-input.select {
  position: relative;
}
.modal-input.select::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 11px;
  height: 100%;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2713%27 height=%277%27 viewBox=%270 0 13 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M6.5 7L0.870835 0.25L12.1292 0.250001L6.5 7Z%27 fill=%27%23D9C4BA%27/%3e%3c/svg%3e")
    no-repeat center;
  background-size: contain;
}
.modal-input.select input {
  color: #333;
}
.modal-input.select input::placeholder {
  color: #333;
}
.modal-appointment {
  --bs-modal-width: 738px;
  --bs-modal-header-padding: 3.375rem 3.875rem 0;
  --bs-modal-padding: 0 3.875rem;
  --footer-padding: 0 3.875rem 3.125rem;
}
.modal-appointment .js-modal-input {
  padding-bottom: 0.5rem;
}
.modal-appointment .modal-title {
  font-size: 2rem;
  font-weight: normal;
  margin-right: auto;
}
.modal-appointment .modal-doctor-image {
  width: 125px;
  height: 125px;
}
.modal.fade {
  opacity: 0;
  transition: 150ms opacity;
}
.modal.fade .modal-dialog {
  transform: none;
}
.modal .modal-content {
  opacity: 0;
}
.modal.show {
  opacity: 1;
  transition: 150ms opacity;
}
.modal.show .modal-content {
  opacity: 1;
}
.modal-header {
  position: relative;
}
.modal-header .btn-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 26px;
  top: 26px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
@media (max-width: 575px) {
  .modal-header .btn-close {
    right: 20px;
    top: 20px;
  }
}
.modal-header .btn-close:hover {
  opacity: 0.8;
}
.modal-header .btn-close:focus,
.modal-header .btn-close:focus-visible,
.modal-header .btn-close:active {
  box-shadow: none;
  outline: 0;
}
.modal-header .btn-close:active {
  opacity: 0.6;
}
.modal-footer {
  padding: var(--footer-padding);
}
.modal-footer .modal-message {
  width: 100%;
}
.modal-footer .modal-message .alert {
  margin-top: 1rem;
}
.modal-content .loader {
  border-radius: 28px;
}
.loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.2);
  align-items: center;
  justify-content: center;
  cursor: wait;
  animation: fadeout 0.5s;
}
.loader svg {
  animation: spin 1s linear infinite;
  width: 80px;
  height: 80px;
}
.loader.active {
  display: flex;
  animation: fadein 0.5s;
}
.header__bg,
.header__bg-large {
  position: absolute;
  inset: 0px;
  z-index: 90;
  pointer-events: none;
  background: rgba(246, 243, 240, 0.07);
  backdrop-filter: blur(25px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    rgba(0, 0, 0, 0.7) 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 70%,
    rgba(0, 0, 0, 0.7) 85%,
    transparent 100%
  );
}
.header__bg-large {
  height: 260px;
  z-index: -1;
}
.header a {
  transition: all 0.2s ease;
}
.header a:hover {
  opacity: 0.8;
}
.header__inner {
  padding: 22px 36px;
  position: relative;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 22px 16px;
  }
}
#title-header-search-input {
  background-color: rgba(0, 0, 0, 0);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  max-width: 465px;
  height: 36px;
}
.header {
  background: rgba(0, 0, 0, 0);
  position: fixed;
  width: 100%;
  display: flex;
  top: 0;
  left: 0;
  height: 80px;
  margin: 0 auto;
  z-index: 120;
  isolation: isolate;
  color: #935e1e;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}
.header__search {
  box-shadow: inset 0px 0px 0px 1px rgba(147, 94, 30, 0.2274509804);
  width: 100%;
  margin-right: 36px;
  position: relative;
  border-radius: 20px;
  max-width: 460px;
}
@media (max-width: 1024px) {
  .header__search {
    display: none;
  }
}
.header__search::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 19px;
  top: 0.5rem;
  right: 0.75rem;
  background-image: url(/local/templates/main/design/public/img/ui/icon-search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__menu-button--close {
  padding: 0;
  border: none;
  border-radius: 50%;
  outline: none;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu-button--close img {
  width: 37px;
  height: 37px;
}
.header__left {
  display: flex;
  align-items: center;
  width: 100%;
}
.header__left__logo {
  margin-right: 12px;
  fill: #935e1e;
}
.header__left__logos {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__left__logos:hover {
  opacity: 1 !important;
}
.header__left__burger {
  background-color: #f6f3f0;
  position: relative;
  min-width: 33px;
  min-height: 18px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  margin-right: 46px;
  background-color: rgba(0, 0, 0, 0);
}
.header__left__burger span {
  position: absolute;
  height: 2px;
  background-color: #935e1e;
  transition: opacity 0.2s ease;
}
.header__left__burger span:nth-of-type(1) {
  top: 0;
  width: 100%;
}
.header__left__burger span:nth-of-type(2) {
  top: 9px;
  width: 100%;
}
.header__left__burger span:nth-of-type(3) {
  top: 17px;
  width: 75%;
}
.header__left__burger:hover span {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .header__left__burger {
    display: none;
  }
}
.header__left__name {
  fill: #935e1e;
  width: 135px;
  height: 13px;
  margin-right: 54px;
}
.header__left__find {
  cursor: pointer;
  fill: #935e1e;
  transition: opacity 0.2s ease;
}
.header__left__find:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .header__left__find {
    display: none;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 52px;
}
.header__right a {
  font-family: "GolosText";
  color: #935e1e;
  white-space: nowrap;
  font-size: 1.125rem;
  margin-top: auto;
  margin-bottom: auto;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header__right a:hover {
  opacity: 0.7;
}
@media (max-width: 1200px) {
  .header__right a {
    display: none;
  }
}
.header__right p {
  white-space: nowrap;
  font-size: 1.125rem;
  margin-top: auto;
  margin-bottom: auto;
  letter-spacing: 0.12em;
}
@media (max-width: 1200px) {
  .header__right p {
    display: none;
  }
}
.header__right span {
  color: #bea586;
}
.header__right__profile {
  fill: #935e1e;
  transition: opacity 0.2s ease;
}
.header__right__profile:hover {
  opacity: 0.7;
}
.header__right-order {
  border: none;
  background-color: #935e1e;
  height: 36px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 27px;
  width: 100%;
  max-width: 172px;
  font-family: "GolosText";
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .header__right-order {
    display: none;
  }
}
.header__right-order:hover {
  opacity: 0.9;
}
.header__right-order:active {
  opacity: 0.8;
}
.nav-mobile {
  background: rgba(239, 239, 239, 0.53);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  width: calc(100% - 1.5rem);
  margin: 0 0.75rem;
  bottom: 11px;
  padding: 9px;
  z-index: 1050;
}
.nav-mobile .btn-icon {
  margin: 0 3.5px;
}
.offcanvas {
  z-index: 0;
  text-transform: none;
}
.offcanvas__menu {
  overflow-y: auto;
}
.offcanvas__menu-links--start {
  padding-right: 10.5rem;
  padding-left: 1.5rem;
}
@media (max-width: 1399.98px) {
  .offcanvas__menu-links--start {
    padding-right: 1.5rem;
  }
}
.offcanvas__menu-links--start > ul > li:first-child {
  font-weight: bold;
  margin-bottom: 11px !important;
}
.offcanvas__menu-links--services {
  padding-left: 1.5rem;
}
.offcanvas__menu-links--top {
  font-size: 1.125rem;
  margin-bottom: 11px;
}
.offcanvas__menu-links ul {
  font-size: 1.125rem;
}
.offcanvas__menu-links ul li:not(:last-child) {
  margin-bottom: 14px;
}
.offcanvas__menu .services {
  column-count: 3;
}
@media (max-width: 767.98px) {
  .offcanvas__menu .services {
    column-count: 2;
  }
}
@media (max-width: 575.98px) {
  .offcanvas__menu .services {
    column-count: 1;
  }
}
.offcanvas__menu .services li {
  max-width: 280px;
}
.offcanvas__menu-category {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.offcanvas__menu-body {
  padding-top: 80px;
  padding-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .offcanvas__menu-body {
    padding-bottom: 0.5rem;
  }
}
.offcanvas__menu-body.container-fluid,
.offcanvas__menu-body.container-xxl {
  max-width: 1920px;
}
@media (min-width: 991px) {
  .offcanvas__menu-body {
    padding-bottom: 0.2rem;
  }
}
.offcanvas__menu-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #e0e0e0;
}
.offcanvas__menu .link-social {
  background-color: #f9f5f3;
}
.offcanvas__menu .indicator-btn {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.offcanvas__menu .indicator-btn .main {
  position: relative;
  text-align: center;
  padding: 1rem 1.5rem 1rem 2.75rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  background-color: #484848;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex-wrap: wrap;
  z-index: 7;
}
.offcanvas__menu .indicator-btn .main:hover {
  background-color: #555;
}
.offcanvas__menu .indicator-btn .main::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #5eff00;
  left: 1.25rem;
  position: absolute;
  top: 50%;
  box-shadow: 0 0 8px 4px rgba(94, 255, 0, 0.5);
  z-index: 10;
}
.offcanvas__menu .indicator-btn .main span {
  margin-left: 0.333rem;
  font-weight: bold;
}
.offcanvas__menu .indicator-btn .main > * {
  display: inline-block;
  white-space: normal;
}
.offcanvas__menu .indicator-btn .placeholder {
  position: relative;
  margin-top: -1rem;
  background-color: #f6efec;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  z-index: 5;
}
.offcanvas__menu .indicator-btn .placeholder p {
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 1rem;
  padding: 0;
}
.offcanvas__menu.offcanvas-top {
  --bs-offcanvas-box-shadow: none;
  background-color: #f6f3f0;
  box-shadow: 0px 12px 28.2px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 20px 20px;
  top: 0;
  opacity: 0;
  transition: opacity 200ms;
}
@media (max-width: 991.98px) {
  .offcanvas__menu.offcanvas-top {
    top: 0;
  }
}
.offcanvas__menu.offcanvas-top .offcanvas__menu-body {
  opacity: 0;
  transition: opacity 200ms;
  font-size: 0.875rem;
}
.offcanvas__menu.show {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.offcanvas__menu.show .offcanvas__menu-body {
  opacity: 1;
  transition: opacity 200ms;
}
@media (min-width: 768px) {
  .indicator-btn {
    display: none;
  }
}
table.table-hov tr {
  transition: filter 0.3s ease;
}
table.table-hov tr:hover {
  filter: brightness(98%);
}
table.table-hov tr td.w-15 {
  width: 15%;
}
table.table-hov tr td.w-85 {
  width: 85%;
}
.main-banner {
  color: #fff;
  background: #f6efec;
  padding-bottom: 2rem;
}
@media (max-width: 575.98px) {
  .main-banner {
    color: #333;
    background: none;
  }
}
.main-banner .splide__arrow {
  background: #f6efec;
}
.main-banner .splide__arrow svg path {
  stroke: #fff;
}
.main-banner .splide__pagination__page {
  background: #69a7be;
}
.main-banner .splide__pagination__page.is-active {
  background: #fff;
}
@media (max-width: 575.98px) {
  .main-banner .splide__pagination__page.is-active {
    background: #f6efec;
  }
}
.main-banner--item {
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
@media (max-width: 575.98px) {
  .main-banner--item {
    background-size: 50%;
  }
}
.main-banner--item-content {
  background: rgba(146, 222, 175, 0.34);
  backdrop-filter: blur(8.3px);
  border-radius: 35px;
}
.main-banner--item-content h1,
.main-banner--item-content .h1 {
  line-height: 95%;
}
@media (max-width: 575.98px) {
  .main-banner--item-content h1,
  .main-banner--item-content .h1 {
    color: #f6efec;
  }
}
.main-banner--item-content p {
  line-height: 136%;
}
.banner--main {
  --banner-main-height: 426px;
  --banner-main-top-padding: 85px;
  margin-top: -71px;
  padding-top: 71px;
  background: url(/local/templates/main/design/public/img/backgrounds/banner-main.png) no-repeat center;
  background-size: contain;
  padding-bottom: 20.5rem;
}
.banner--main .h1 {
  font-family: "Alice";
}
@media (max-width: 1199.98px) {
  .banner--main {
    background-size: cover;
  }
}
@media (max-width: 767.98px) {
  .banner--main {
    padding-bottom: 15rem;
  }
}
.banner--main .splide__slide {
  transition: none !important;
}
.banner--main .splide__arrow--next {
  top: 38% !important;
  margin-right: 3.5rem;
}
.banner--main .splide__arrow--prev {
  top: 38% !important;
  margin-left: 3.5rem;
}
.banner--main .splide__pagination {
  position: relative;
  top: -1rem;
  gap: 6px;
}
.banner--main .splide__pagination__page.is-active {
  border-radius: 50%;
  height: 6px;
  width: 6px;
  margin-bottom: 5px;
  box-shadow: 0 0 0 2.5px #c3c7c9;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767.98px) {
  .banner--main .banner--container {
    margin-bottom: 27%;
  }
}
.banner--main .banner--container-image {
  height: 100%;
  width: 42%;
  background: url(/local/templates/main/design/public/img/backgrounds/banner-main-item-circle.svg) no-repeat;
  background-position: 92% 30%;
  position: relative;
  right: -2rem;
}
@media (max-width: 1199.98px) {
  .banner--main .banner--container-image {
    margin-right: 25px;
  }
}
@media (max-width: 767.98px) {
  .banner--main .banner--container-image {
    margin-right: 0;
    position: absolute;
    background-size: 0;
    width: fit-content;
    right: 11rem;
  }
}
.banner--main.container {
  max-width: calc(1200px + 1.5rem);
}
.banner--main-item {
  height: calc(var(--banner-main-height) - 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  background:
    url(/local/templates/main/design/public/img/backgrounds/banner-main-item.svg) no-repeat center,
    linear-gradient(
      55.16deg,
      rgba(255, 183, 163, 0.5) 18.62%,
      rgba(166, 188, 254, 0.5) 79.56%
    );
  backdrop-filter: blur(15px);
  padding: 0 7.75rem;
}
.banner--main-item > div {
  opacity: 0;
  transition: opacity 0.5s;
}
.banner--main-item--wrapper {
  padding-top: var(--banner-main-top-padding);
  overflow: hidden;
  border-radius: 30px;
  height: calc(
    var(--banner-main-height) + var(--banner-main-top-padding) - 1rem
  );
}
@media (max-width: 767.98px) {
  .banner--main-item--wrapper {
    padding-top: 2rem;
    height: calc(var(--banner-main-height) * 1.05);
  }
}
.banner--main-item--wrapper.is-active .banner--main-item > div {
  opacity: 1;
}
.banner--main-item--link {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: block;
}
@media (min-width: 768px) {
  .banner--main-item--link {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .banner--main-item {
    padding: 0 2.75rem;
  }
}
@media (max-width: 767.98px) {
  .banner--main-item {
    padding: 1rem 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }
}
.banner--main-item--title {
  margin-bottom: 2.375rem;
}
@media (max-width: 767.98px) {
  .banner--main-item--title {
    padding-top: 3%;
    margin-bottom: 2.225rem;
  }
}
.banner--main-item--text {
  margin-bottom: 1.775rem;
  max-width: 65%;
}
.banner--main-item--button .btn-primary {
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  .banner--main-item--button .btn-primary {
    display: none;
  }
}
.banner--main-item--additional {
  width: 166px;
  height: 166px;
  background: url(/local/templates/main/design/public/img/backgrounds/banner-main-additional.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(17% + 7.275rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-wrap-style: balance;
}
@media (max-width: 1199.98px) {
  .banner--main-item--additional {
    left: calc(15% + 5.275rem);
    width: 155px;
    height: 155px;
  }
}
@media (max-width: 767.98px) {
  .banner--main-item--additional {
    left: 0.9rem;
    bottom: 1rem;
    width: 144px;
    height: 144px;
  }
}
.banner--main-item--image {
  position: absolute;
  bottom: 0;
}
.banner--main-item--image img {
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 767.98px) {
  .banner--main-item--image img {
    height: calc(var(--banner-main-height) / 1.45);
  }
}
.banner--main-item--image.round {
  bottom: 65px;
  width: inherit;
  background-position: 70% 20%;
}
@media (max-width: 767.98px) {
  .banner--main-item--image.round {
    bottom: 25px;
    left: -23px;
  }
}
.banner--main-item--image.round img {
  border-radius: 50%;
  width: 285px;
  height: 285px;
}
@media (max-width: 767.98px) {
  .banner--main-item--image.round img {
    width: 188px;
    height: 188px;
  }
}
footer {
  background-color: #f6efec;
  flex-shrink: 0;
}
.footer-main__wrapper {
  border-bottom: 1px solid #e3dedc;
}
.footer-main a:not(.btn) {
  color: #935e1e;
  transition: all 0.2s ease;
}
.footer-main a:hover:not(.btn) {
  opacity: 0.8;
}
.footer-main__links {
  font-size: 12px;
  color: #999;
}
.footer-main__links:first-child li:not(:last-child) {
  margin-bottom: 1.125rem;
}
.footer-main__links ul {
  margin-bottom: 0;
}
.footer-main__links li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.footer__credits {
  font-size: 14px;
}
.footer__credits-madeby {
  padding: 0.75rem 0;
  color: #999;
  font-size: 0.75rem;
}
.footer__credits-madeby img {
  width: 28px;
  height: 28px;
  margin-left: 0.25rem;
}
@media screen and (max-width: 768px) {
  .footer__credits-madeby img {
    margin-left: 0.5rem;
    margin-right: 0.25rem;
  }
}
.footer-list {
  padding-left: 0;
  list-style: none;
}
.login-wrapper {
  max-width: 467px;
  width: 100%;
  padding: 52px 69px 50px;
  background: #fafafa;
  border: 1px solid #f2e2db;
  backdrop-filter: blur(50px);
  border-radius: 1.25rem;
}
@media (max-width: 575.98px) {
  .login-wrapper {
    padding: 2rem 1rem 1.5rem;
  }
}
.login-back {
  top: 0.5rem;
  left: 0.25rem;
}
.login-back img {
  width: 50px;
  height: 50px;
}
.login-auth {
  padding: 76px 59px 50px;
}
@media (max-width: 575.98px) {
  .login-auth {
    padding: 4rem 1rem 1.5rem;
  }
}
.login-auth .form-input {
  max-width: 327px;
}
.login-register {
  padding: 76px 40px 32px;
}
@media (max-width: 575.98px) {
  .login-register {
    padding: 4rem 1rem 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .login-wrapper,
  .login-auth,
  .login-register {
    max-width: unset;
  }
  .login-wrapper .form-input,
  .login-auth .form-input,
  .login-register .form-input {
    max-width: unset;
  }
}
@media (max-width: 767.98px) {
  .main-doctors.doctors-slider ul.splide__pagination li:nth-child(n + 7) {
    display: none;
  }
}
.main-doctors.doctors-slider .splide__track {
  padding: 0 1rem !important;
}
.main-doctors.doctors-slider .splide__pagination {
  gap: 2px;
}
.main-doctors.doctors-slider .splide__pagination__page {
  background-color: #e9e1de;
}
.main-doctors.doctors-slider .splide__pagination__page.is-active {
  background-color: #e0d9d6;
}
.doctor-card__button {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: none;
  border-radius: 47px;
  padding: 16px 20px;
  max-width: 183px;
  max-height: 42px;
  box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, #a7c2c2 0%, #85a4a4 100%);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.doctor-card__button:hover {
  filter: brightness(95%);
}
.doctor-card__button:active {
  filter: brightness(90%);
}
.doctor-card--small {
  border-radius: 1.25rem;
  padding: 1.25rem 0.5rem;
  gap: 1.125rem;
  height: 100%;
  border: 1px solid #ece6df;
  background-color: #f4efea;
}
.doctor-card--small .doctor-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
@media (max-width: 767.98px) {
  .doctor-card--small .doctor-photo {
    display: none;
  }
}
.doctor-card--small .doctor-photo-mobile {
  width: 250px;
  height: 250px;
}
@media (min-width: 768px) {
  .doctor-card--small .doctor-photo-mobile {
    display: none;
  }
}
.doctor-card--small .doctor-photo-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doctor-card--small .doctor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.doctor-name {
  margin-bottom: 0.625rem;
}
.doctor-specialty {
  color: #999;
  overflow-wrap: break-word;
  hyphens: auto;
  font-size: 0.875rem;
}
.doctor-top img {
  width: 250px;
  height: 323px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}
.doctor-top--desc {
  padding: 22px 26px;
  background: #f3f3f3;
  border-radius: 10px;
}
.nav-tabs {
  flex-wrap: nowrap;
}
.nav-item {
  flex: 50%;
}
.nav-link {
  background-color: #ede8e1;
  width: 100%;
  padding: 1rem 0.75rem;
  border-top: 2px solid rgba(0, 0, 0, 0) !important;
}
.nav-link.active {
  background-color: rgba(0, 0, 0, 0);
  border-top: 2px solid #d9c4ba !important;
}
table.table {
  font-size: 0.875rem;
  --bs-table-color: $body-color;
  --bs-table-bg: #f8f4f2;
  --bs-table-striped-bg: white;
  --bs-table-striped-color: $body-color;
}
table.table > :not(caption) > * > * {
  padding: 20px;
}
table.table .row-disabled {
  color: #969696;
}
thead.table-light tr th {
  background-color: #f8f4f2;
  color: #333;
}
.btn-logout {
  border-radius: 47px;
  padding: 15px 20px 17px;
  max-width: 232px;
  height: 42px;
  box-shadow:
    0 4px 14px 0 rgba(0, 0, 0, 0.08),
    inset 0 -1px 2px 0 rgba(0, 0, 0, 0.15),
    inset 0 2px 2px 0 #fff;
  background: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin-top: 80px;
}
.plug {
  border: 2px solid #d9c4ba;
  padding: 20px;
  background-color: #fff;
  color: #333;
  border-radius: 1rem;
}
.service-hero {
  min-height: 580px;
}
@media (max-width: 1024px) {
  .service-hero {
    min-height: auto;
    margin-bottom: 24px;
  }
}
.service-h1 {
  font-family: "IgraSans";
  font-weight: 400;
  line-height: 187%;
  font-size: 32px;
  letter-spacing: 0.35em;
  color: #935e1e;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .service-h1 {
    line-height: 137%;
  }
}
.service-h1-content {
  font-family: "IgraSans";
  font-weight: 400;
  line-height: 187%;
  font-size: 32px;
  letter-spacing: 0.35em;
  color: #935e1e;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .service-h1-content {
    line-height: 137%;
  }
}
.service-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  gap: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: -385px;
}
@media (max-width: 1024px) {
  .service-top {
    margin-right: auto;
  }
}
.service-top > img {
  border-radius: 10px;
}
.service-top-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 370px;
}
@media (max-width: 1024px) {
  .service-top-mini {
    max-width: 100%;
    width: 100%;
  }
}
.service-prices table.table {
  border-bottom: 1px solid #e3e3e3;
  font-size: 1rem;
}
table.table-striped tr td:last-child {
  vertical-align: middle;
  white-space: nowrap;
}
.cosmetologyPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: none;
}
.cosmetologyPage__container {
  display: flex;
  flex-direction: column;
  max-width: 1214px;
  width: 100%;
  position: relative;
}
.cosmetologyPage__container__img {
  position: absolute;
  border-radius: 0 20px 20px 0;
  max-width: 1175px;
  min-width: 1175px;
  height: 590px;
  object-fit: cover;
  top: -12px;
  right: -146px;
}
@media (max-width: 1024px) {
  .cosmetologyPage__container__img {
    display: none;
  }
}
.cosmetologyPage__container__imgLeft {
  top: 0;
  max-width: 1175px;
  min-width: 1175px;
  height: 590px;
  object-fit: cover;
  position: absolute;
  transform: scaleX(-1);
  right: 1027px;
  top: -12px;
}
@media (max-width: 1024px) {
  .cosmetologyPage__container__imgLeft {
    display: none;
  }
}
.cosmetologyPage__container__imgTop {
  max-width: 1175px;
  min-width: 1175px;
  height: 590px;
  object-fit: cover;
  position: absolute;
  right: -146px;
  top: -600px;
}
@media (max-width: 1024px) {
  .cosmetologyPage__container__imgTop {
    display: none;
  }
}
.cosmetologyPage__container__imgTopLeft {
  max-width: 1175px;
  min-width: 1175px;
  height: 590px;
  object-fit: cover;
  position: absolute;
  top: -600px;
  right: 1027px;
  transform: scaleX(-1);
}
@media (max-width: 1024px) {
  .cosmetologyPage__container__imgTopLeft {
    display: none;
  }
}
.cosmetologyPage__container__main {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-top: 100px;
  gap: 30px;
}
.cosmetologyPage__container__main__h2 {
  font-family: "IgraSans";
  font-weight: 400;
  font-size: 32px;
  line-height: 187%;
  letter-spacing: 0.35em;
  color: #935e1e;
  text-transform: uppercase;
  z-index: 1;
}
.cosmetologyPage__container__main__p {
  display: flex;
  gap: 14px;
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  z-index: 1;
}
.cosmetologyPage__container__main__p1 {
  transition: all 0.2s ease;
}
.cosmetologyPage__container__main__p1:hover {
  filter: brightness(0.95);
}
.cosmetologyPage__container__main__p1:active {
  filter: brightness(0.9);
}
.cosmetologyPage__container__details {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  right: 0;
  top: 250px;
}
.cosmetologyPage__container__details__item {
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #935e1e;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  max-width: 310px;
  flex-grow: 1;
  height: 64px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cosmetologyPage__container__details__item__svg {
  min-width: 37px;
  min-height: 37px;
}
.cosmetologyPage__container__details__item:hover {
  filter: brightness(95%);
}
.cosmetologyPage__container__details__item:active {
  filter: brightness(90%);
}
.cosmetologyPage__container__banners {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 40px;
  right: 0;
  top: 770px;
}
.cosmetologyPage__container__banners__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  height: 292px;
  width: 310px;
  border-radius: 20px;
  background: #a7c2c2;
}
.cosmetologyPage__container__banners__item2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  height: 334px;
  width: 310px;
  border-radius: 20px;
  background: #bea586;
}
.cosmetologyPage__container__banners__image {
  position: absolute;
  bottom: 0;
}
.cosmetologyPage__container__banners__p {
  font-family: "IgraSans";
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #fff;
}
.cosmetologyPage__container__banners__banner {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 15px;
  width: 288px;
  height: 62px;
  backdrop-filter: blur(37.7000007629px);
  background: rgba(255, 255, 255, 0.59);
  font-family: "NTSomic";
  font-weight: 400;
  font-size: 16px;
  color: #935e1e;
}
.cosmetologyPage__container__text {
  max-width: 814px;
  flex-direction: column;
  display: flex;
  color: #666;
  font-family: "NTSomic";
  font-size: 16px;
  margin-bottom: 80px;
}
.cosmetologyPage__container__text__p {
  font-weight: 400;
  line-height: 150%;
  color: #666;
}
.cosmetologyPage__container__text__h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 18px;
}
.cosmetologyPage__container__text__p:nth-child(2) {
  margin-bottom: 18px;
}
.cosmetologyPage__container__h3 {
  font-family: "NTSomic";
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  color: #333;
  margin-bottom: 30px;
}
.cosmetologyPage__container__doctors {
  display: flex;
  flex-direction: row;
  gap: 54px;
  margin-bottom: 80px;
}
.cosmetologyPage__container__h4 {
  font-family: "NTSomic";
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #333;
  margin-bottom: 24px;
}
.legal-about {
  display: flex;
  flex-direction: column;
}
.legal-about-top {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: nowrap;
  width: fit-content;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-about-top-image img {
  width: fit-content;
  height: auto;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 3px;
}
.legal-about ul {
  margin-bottom: 1rem;
}
.legal-about ul li {
  margin-left: 1.5rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .legal-about ul {
    margin-bottom: 1rem;
  }
  .legal-about ul li {
    margin-left: 0.65rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }
}
.clinic-about {
  display: flex;
  flex-direction: column;
}
.clinic-about-top {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: nowrap;
  width: fit-content;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.clinic-about-top-image img {
  width: fit-content;
  height: auto;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 3px;
}
.clinic-about ul {
  margin-bottom: 1rem;
}
.clinic-about ul li {
  margin-left: 1.5rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .clinic-about ul {
    margin-bottom: 1rem;
  }
  .clinic-about ul li {
    margin-left: 0.65rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }
}
.legal-contacts {
  display: flex;
  flex-direction: column;
}
.legal-contacts-top {
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  flex-wrap: nowrap;
  width: fit-content;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-contacts-top-image img {
  width: fit-content;
  height: auto;
  cursor: pointer;
  border: 1px solid #eee;
  padding: 3px;
}
.legal-contacts ul {
  margin-bottom: 1rem;
}
.legal-contacts ul li {
  margin-left: 1.5rem;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
@media (max-width: 768px) {
  .legal-contacts ul {
    margin-bottom: 1rem;
  }
  .legal-contacts ul li {
    margin-left: 0.65rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }
}
.accordion-row {
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-y: 19px;
  --bs-accordion-btn-padding-x: 26px;
  --bs-accordion-btn-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml;charset=UTF-8,%3csvg width=%2714%27 height=%2723%27 viewBox=%270 0 14 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M1.14648 0.560701C1.53697 0.170216 2.17006 0.170216 2.56055 0.560699L13.5605 11.5607L10.7324 11.5607L1.14648 1.97476C0.756001 1.58428 0.756 0.951183 1.14648 0.560701Z%27 fill=%27%23DDD6CC%27/%3e%3cpath d=%27M1.14649 22.5604C1.53697 22.9509 2.17006 22.9509 2.56055 22.5604L13.5605 11.5607L10.7324 11.5607L1.1465 21.1464C0.756012 21.5368 0.756007 22.1699 1.14649 22.5604Z%27 fill=%27%23DDD6CC%27/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-transform: rotate(-90deg);
  --bs-accordion-btn-icon-width: 24px;
}
.accordion-row .accordion-header {
  margin: 0;
}
.accordion-row .accordion-button {
  font-weight: 400;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  padding-right: 48px;
}
.accordion-row .accordion-button.collapsed {
  border-bottom: 1px solid #e3e3e3;
}
.accordion-row .accordion-button::after {
  right: 18px;
  background-size: contain;
  position: absolute;
}
.accordion-row .accordion-elem {
  padding: 20px;
  transition: filter 0.3s ease;
}
.accordion-row .accordion-elem::marker:nth-child(odd) {
  background-color: #fff;
}
.accordion-row .accordion-elem::marker:nth-child(even) {
  background-color: #f8f4f2;
}
.accordion-row .accordion-elem:hover {
  filter: brightness(95%);
}
.accordion-row .accordion-elem::before {
  display: none;
}
.accordion-row .accordion-elem:nth-child(odd) {
  background-color: #fff;
}
.accordion-row .accordion-elem:nth-child(even) {
  background-color: #f8f4f2;
}
.accordion-row .accordion button {
  line-height: 140%;
}
.accordion-row .accordion-button,
.accordion-row .accordion-item {
  border-radius: 0;
  box-shadow: none;
}
.accordion-item ol {
  list-style-type: decimal;
  margin: 0;
  padding-left: 1.5rem;
}
.accordion-item ol li {
  margin-bottom: 0;
  margin-left: 1.5rem;
}
.accordion-button {
  font-size: 1.15rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .accordion-button {
    font-size: 1rem;
  }
}
.accordion-button::after {
  background-position: center;
}
.accordion button {
  line-height: 130%;
}
.adult-img {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  max-height: 300px;
  margin-bottom: 30px;
}
.adult-img.auto-height {
  max-height: 100%;
  margin-bottom: 0.5rem;
}
.adult-img img {
  filter: blur(12px);
  transition: filter 0.4s ease;
}
.adult-img.auto-height img {
  margin-bottom: 0rem;
}
.adult-img::after {
  content: "18+";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  pointer-events: none;
}
.adult-img.is-unlocked {
  cursor: default;
}
.adult-img.is-unlocked img {
  filter: none;
}
.adult-img.is-unlocked::after {
  content: none;
}
.group-censured {
  column-count: 3;
  column-gap: 0.5rem;
  padding: 0.5rem;
}
.group-censured-photo {
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  break-inside: avoid;
  height: fit-content;
  padding: 0.45rem;
}
.group-censured-photo-content {
  border: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: fit-content;
  align-items: center;
  justify-content: center;
}
.group-censured-photo-content-image:not(:first-child) {
  display: none;
  position: absolute;
}
.group-censured-photo-content-image:first-child {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.group-censured-photo-content-image:first-child img {
  margin-bottom: 0.5rem;
}
.group-censured.two-column {
  column-count: 2;
  column-gap: 0.5rem;
  padding: 0.5rem;
}
.smart-scroll {
  transition: none !important;
}
article {
  font-family: "NTSomic";
}
article h1,
article .h1 {
  font-family: "IgraSans";
  font-weight: 400;
  line-height: 187%;
  font-size: 32px;
  letter-spacing: 0.35em;
  color: #935e1e;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
article p {
  line-height: 150%;
}
.main-wrapper {
  flex-grow: 1;
  flex-shrink: 0;
  padding-top: 71px;
  padding-bottom: 75px;
}
@media (min-width: 992px) {
  .main-wrapper {
    padding-bottom: 4rem;
  }
}
.fs-7 {
  font-size: 0.875rem !important;
}
[x-cloak] {
  display: none !important;
}

/* End */


/* Start:/local/templates/main/components/bitrix/search.title/header/style.css?177130713855*/
.title-search-result {
    z-index: 99999 !important;
}
/* End */


/* Start:/local/templates/main/components/sporina/cookie.notification/footer/style.css?17713071382006*/
.sporina-cookie-notification {
  position: fixed;
  z-index: 100000;
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 1.5rem 2.25rem 1rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.sporina-cookie-right {
  bottom: 20px;
  right: 20px;
  margin-left: 20px;
  max-width: 580px;
}

.sporina-cookie-left {
  bottom: 20px;
  left: 20px;
  right: auto;
  max-width: 420px;
}

.sporina-cookie-content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sporina-cookie-text {
  flex: 1;
}

.sporina-cookie-policy-link {
  color: #3498db;
  text-decoration: underline;
  margin-left: 5px;
}

.sporina-cookie-policy-link:hover {
  text-decoration: none;
  color: #5dade2;
}

.sporina-cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-direction: column;
  align-self: flex-end;
}

.sporina-cookie-btn {
  padding: 8px 16px;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sporina-cookie-decline {
  background-color: #e74c3c;
  color: #ffffff;
}

.sporina-cookie-decline:hover {
  background-color: #c0392b;
  transform: translateY(-1px);
}

.sporina-cookie-notification {
  transition: transform 300ms ease-in-out;
}

.sporina-cookie-notification.sporina-cookie-hidden {
  transform: translateY(100%);
}

/* Для левой/правой позиции достаточно сдвига вниз */

@media (max-width: 768px) {
  .sporina-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .sporina-cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-direction: row;
  }

  .sporina-cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

/* End */
/* /local/templates/main/design/public/main.css?1772603982591699 */
/* /local/templates/main/components/bitrix/search.title/header/style.css?177130713855 */
/* /local/templates/main/components/sporina/cookie.notification/footer/style.css?17713071382006 */
